1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/*
* Point.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
VCMI_LIB_NAMESPACE_BEGIN
class int3;
// A point with x/y coordinate, used mostly for graphic rendering
class Point
{
public:
int x, y;
//constructors
constexpr Point() : x(0), y(0)
{
}
constexpr Point(int X, int Y)
: x(X)
, y(Y)
{
}
constexpr static Point makeInvalid()
{
return Point(std::numeric_limits<int>::min(), std::numeric_limits<int>::min());
}
explicit DLL_LINKAGE Point(const int3 &a);
template<typename T>
constexpr Point operator+(const T &b) const
{
return Point(x+b.x,y+b.y);
}
template<typename T>
constexpr Point operator/(const T &div) const
{
return Point(x/div, y/div);
}
template<typename T>
constexpr Point operator*(const T &mul) const
{
return Point(x*mul, y*mul);
}
constexpr Point operator/(const Point &b) const
{
return Point(x/b.x,y/b.y);
}
constexpr Point operator*(const Point &b) const
{
return Point(x*b.x,y*b.y);
}
template<typename T>
constexpr Point& operator+=(const T &b)
{
x += b.x;
y += b.y;
return *this;
}
constexpr Point operator-() const
{
return Point(-x, -y);
}
template<typename T>
constexpr Point operator-(const T &b) const
{
return Point(x - b.x, y - b.y);
}
template<typename T>
constexpr Point& operator-=(const T &b)
{
x -= b.x;
y -= b.y;
return *this;
}
template<typename T> constexpr Point& operator=(const T &t)
{
x = t.x;
y = t.y;
return *this;
}
template<typename T> constexpr bool operator==(const T &t) const
{
return x == t.x && y == t.y;
}
template<typename T> constexpr bool operator!=(const T &t) const
{
return !(*this == t);
}
constexpr bool isValid() const
{
return x > std::numeric_limits<int>::min() && y > std::numeric_limits<int>::min();
}
constexpr int lengthSquared() const
{
return x * x + y * y;
}
int length() const
{
return std::sqrt(lengthSquared());
}
double angle() const
{
return std::atan2(y, x); // rad
}
template <typename Handler>
void serialize(Handler &h)
{
h & x;
h & y;
}
};
VCMI_LIB_NAMESPACE_END
|