mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 03:39:14 +00:00
21bd28542a
2d coord hash moved to hash.hpp file format version adds suffix to be more coherent don't use ESM::RefId::sEmpty RefId equality with string_view, conversion to refId unecessary action teleport remove test that mCellId is empty removes some const references, when copy is enough invalid refid => empty refid removes useless change
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
#ifndef OPENMW_COMPONENTS_ESM_ESM3EXTERIORCELLREFID_HPP
|
|
#define OPENMW_COMPONENTS_ESM_ESM3EXTERIORCELLREFID_HPP
|
|
|
|
#include <functional>
|
|
#include <iosfwd>
|
|
|
|
#include <utility>
|
|
|
|
#include <components/misc/hash.hpp>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESM3ExteriorCellRefId
|
|
{
|
|
public:
|
|
constexpr ESM3ExteriorCellRefId() = default;
|
|
|
|
constexpr explicit ESM3ExteriorCellRefId(int32_t x, int32_t y) noexcept
|
|
: mX(x)
|
|
, mY(y)
|
|
{
|
|
}
|
|
|
|
std::string toString() const;
|
|
|
|
std::string toDebugString() const;
|
|
|
|
int32_t getX() const { return mX; }
|
|
int32_t getY() const { return mY; }
|
|
|
|
constexpr bool operator==(ESM3ExteriorCellRefId rhs) const noexcept { return mX == rhs.mX && mY == rhs.mY; }
|
|
|
|
constexpr bool operator<(ESM3ExteriorCellRefId rhs) const noexcept { return mX < rhs.mX && mY < rhs.mY; }
|
|
|
|
friend std::ostream& operator<<(std::ostream& stream, ESM3ExteriorCellRefId value);
|
|
|
|
friend struct std::hash<ESM3ExteriorCellRefId>;
|
|
|
|
private:
|
|
int32_t mX = 0;
|
|
int32_t mY = 0;
|
|
};
|
|
}
|
|
|
|
namespace std
|
|
{
|
|
template <>
|
|
struct hash<ESM::ESM3ExteriorCellRefId>
|
|
{
|
|
std::size_t operator()(ESM::ESM3ExteriorCellRefId value) const noexcept
|
|
{
|
|
return Misc::hash2dCoord(value.mX, value.mY);
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif
|