mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 19:43:06 +01:00
Clang-format sees the text behind `#pragma region` as code and formats it. Instead of stating the copyright and date there, it's now in the comment block right below it. The text "Copyright" is left in the `#pragma region` line, as clang-format sees it as a single identifier. I took the opportunity to normalize the dates, and add the copyright notice to the source files where it was missing them (except for third-party and the generated resources.h file).
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2018 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <openrct2/common.h>
|
|
|
|
struct SupportCall {
|
|
sint32 height;
|
|
sint16 slope;
|
|
|
|
friend bool operator==(const SupportCall& lhs, const SupportCall& rhs) {
|
|
if (lhs.height != rhs.height) return false;
|
|
if (lhs.slope != rhs.slope) return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool operator!=(const SupportCall &other) const {
|
|
return !(*this == other);
|
|
}
|
|
|
|
bool operator<(const SupportCall &other) const {
|
|
if (height != other.height) {
|
|
return height < other.height;
|
|
}
|
|
|
|
return slope < other.slope;
|
|
}
|
|
};
|
|
|
|
namespace GeneralSupportHeightCall {
|
|
bool CallsMatch(SupportCall tileSupportCalls[4]);
|
|
|
|
bool FindMostCommonSupportCall(SupportCall calls[4], SupportCall *out);
|
|
|
|
bool AssertEquals(const SupportCall *lhs, const SupportCall *rhs);
|
|
};
|