Merge branch 'point-rect'

This commit is contained in:
Dmitry Marakasov 2014-12-30 16:29:58 +03:00
commit 4dd9bbc9e7
5 changed files with 297 additions and 13 deletions

View File

@ -19,8 +19,6 @@
3. This notice may not be removed or altered from any source distribution. 3. This notice may not be removed or altered from any source distribution.
*/ */
#include <cassert>
#include <SDL2pp/Point.hh> #include <SDL2pp/Point.hh>
namespace SDL2pp { namespace SDL2pp {
@ -88,6 +86,14 @@ Point Point::operator-(const Point& other) const {
return Point(x - other.x, y - other.y); return Point(x - other.x, y - other.y);
} }
Point Point::operator/(int value) const {
return Point(x / value, y / value);
}
Point Point::operator*(int value) const {
return Point(x * value, y * value);
}
Point& Point::operator+=(const Point& other) { Point& Point::operator+=(const Point& other) {
x += other.x; x += other.x;
y += other.y; y += other.y;
@ -102,4 +108,18 @@ Point& Point::operator-=(const Point& other) {
return *this; return *this;
} }
Point& Point::operator/=(int value) {
x /= value;
y /= value;
return *this;
}
Point& Point::operator*=(int value) {
x *= value;
y *= value;
return *this;
}
} }

View File

@ -159,27 +159,47 @@ public:
void SetY(int ny); void SetY(int ny);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Get sum of two points /// \brief Get point's memberwise addition with another point
/// ///
/// \param other Point to add /// \param other Point to add
/// ///
/// \returns New Point representing memberwise addition of two points /// \returns New Point representing memberwise addition with another point
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Point operator+(const Point& other) const; Point operator+(const Point& other) const;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Get subtraction of two points /// \brief Get point's memberwise subtraction with another point
/// ///
/// \param other Point to subtract /// \param other Point to subtract
/// ///
/// \returns New Point representing memberwise subtraction of two points /// \returns New Point representing memberwise subtraction of another point
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Point operator-(const Point& other) const; Point operator-(const Point& other) const;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Add another point /// \brief Get point's memberwise division by an integer
///
/// \param value Divisor
///
/// \returns New Point representing memberwise division of point by and integer
///
////////////////////////////////////////////////////////////
Point operator/(int value) const;
////////////////////////////////////////////////////////////
/// \brief Get point's memberwise multiplication by an integer
///
/// \param value Multiplier
///
/// \returns New Point representing memberwise multiplication of point by an integer
///
////////////////////////////////////////////////////////////
Point operator*(int value) const;
////////////////////////////////////////////////////////////
/// \brief Memberwise add another point
/// ///
/// \param other Point to add to the current one /// \param other Point to add to the current one
/// ///
@ -189,7 +209,7 @@ public:
Point& operator+=(const Point& other); Point& operator+=(const Point& other);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Substact another point /// \brief Memberwise subtract another point
/// ///
/// \param other Point to subtract from the current one /// \param other Point to subtract from the current one
/// ///
@ -197,6 +217,26 @@ public:
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Point& operator-=(const Point& other); Point& operator-=(const Point& other);
////////////////////////////////////////////////////////////
/// \brief Memberwise divide by an inteher
///
/// \param value Divisor
///
/// \returns Reference to self
///
////////////////////////////////////////////////////////////
Point& operator/=(int value);
////////////////////////////////////////////////////////////
/// \brief Memberwise multiply by an integer
///
/// \param value Multiplier
///
/// \returns Reference to self
///
////////////////////////////////////////////////////////////
Point& operator*=(int value);
}; };
} }

View File

@ -19,7 +19,7 @@
3. This notice may not be removed or altered from any source distribution. 3. This notice may not be removed or altered from any source distribution.
*/ */
#include <cassert> #include <algorithm>
#include <SDL2pp/Point.hh> #include <SDL2pp/Point.hh>
@ -41,6 +41,13 @@ Rect::Rect(const SDL_Rect& rect) {
h = rect.h; h = rect.h;
} }
Rect::Rect(const Point& corner, const Point& size) {
x = corner.x;
y = corner.y;
w = size.x;
h = size.y;
}
Rect::Rect(int nx, int ny, int nw, int nh) { Rect::Rect(int nx, int ny, int nw, int nh) {
x = nx; x = nx;
y = ny; y = ny;
@ -73,6 +80,18 @@ Rect Rect::FromCenter(int cx, int cy, int w, int h) {
return Rect(cx - w/2, cy - h/2, w, h); return Rect(cx - w/2, cy - h/2, w, h);
} }
Rect Rect::FromCenter(const Point& center, const Point& size) {
return Rect(center - size / 2, size);
}
Rect Rect::FromCorners(int x1, int y1, int x2, int y2) {
return Rect(x1, y1, x2 - x1 + 1, y2 - y1 + 1);
}
Rect Rect::FromCorners(const Point& p1, const Point& p2) {
return Rect(p1, p2 - p1 + Point(1, 1));
}
bool Rect::IsNull() const { bool Rect::IsNull() const {
return false; return false;
} }
@ -126,7 +145,36 @@ void Rect::SetY2(int y2) {
} }
bool Rect::Contains(const Point& point) const { bool Rect::Contains(const Point& point) const {
return !(point.x < x || point.y < y || point.x > GetX2() || point.y > GetY2()); return point.x >= x && point.y >= y && point.x <= GetX2() && point.y <= GetY2();
}
bool Rect::Contains(const Rect& rect) const {
return rect.x >= x && rect.y >= y && rect.GetX2() <= GetX2() && rect.GetY2() <= GetY2();
}
bool Rect::Intersects(const Rect& rect) const {
return !(rect.GetX2() < x || rect.GetY2() < y || rect.x > GetX2() || rect.y > GetY2());
}
Rect Rect::GetUnion(const Rect& rect) const {
return Rect::FromCorners(
std::min(x, rect.x),
std::min(y, rect.y),
std::max(GetX2(), rect.GetX2()),
std::max(GetY2(), rect.GetY2())
);
}
Optional<Rect> Rect::GetIntersection(const Rect& rect) const {
if (!Intersects(rect))
return NullOpt;
return Rect::FromCorners(
std::max(x, rect.x),
std::max(y, rect.y),
std::min(GetX2(), rect.GetX2()),
std::min(GetY2(), rect.GetY2())
);
} }
Rect Rect::operator+(const Point& offset) const { Rect Rect::operator+(const Point& offset) const {

View File

@ -66,6 +66,15 @@ public:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Rect(const SDL_Rect& rect); Rect(const SDL_Rect& rect);
////////////////////////////////////////////////////////////
/// \brief Construct the rect from given corner coordinates, and size
///
/// \param corner Coordinates of the top left rectangle corner
/// \param size Dimensions of the rectangle
///
////////////////////////////////////////////////////////////
Rect(const Point& corner, const Point& size);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Construct the rect from given corner coordinates, width and height /// \brief Construct the rect from given corner coordinates, width and height
/// ///
@ -90,6 +99,35 @@ public:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
static Rect FromCenter(int cx, int cy, int w, int h); static Rect FromCenter(int cx, int cy, int w, int h);
////////////////////////////////////////////////////////////
/// \brief Construct the rect from given center coordinates and size
///
/// \param center Coordinates of the rectangle center
/// \param size Dimensions of the rectangle
///
////////////////////////////////////////////////////////////
static Rect FromCenter(const Point& center, const Point& size);
////////////////////////////////////////////////////////////
/// \brief Construct the rect from given center coordinates, width and height
///
/// \param x1 X coordinate of the top left rectangle corner
/// \param y1 Y coordinate of the top left rectangle corner
/// \param x2 X coordinate of the bottom right rectangle corner
/// \param y2 Y coordinate of the bottom right rectangle corner
///
////////////////////////////////////////////////////////////
static Rect FromCorners(int x1, int y1, int x2, int y2);
////////////////////////////////////////////////////////////
/// \brief Construct the rect from given center coordinates and size
///
/// \param p1 Coordinates of the top left rectangle corner
/// \param p2 Coordinates of the bottom right rectangle corner
///
////////////////////////////////////////////////////////////
static Rect FromCorners(const Point& p1, const Point& p2);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Copy constructor /// \brief Copy constructor
/// ///
@ -253,6 +291,46 @@ public:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
bool Contains(const Point& point) const; bool Contains(const Point& point) const;
////////////////////////////////////////////////////////////
/// \brief Check whether the rect contains another rect
///
/// \param rect Rect to check
///
/// \returns True if the checked rect is contained in this rect
///
////////////////////////////////////////////////////////////
bool Contains(const Rect& rect) const;
////////////////////////////////////////////////////////////
/// \brief Check whether the rect intersects another rect
///
/// \param rect Rect to check
///
/// \returns True if the rects intersect
///
////////////////////////////////////////////////////////////
bool Intersects(const Rect& rect) const;
////////////////////////////////////////////////////////////
/// \brief Calculate union with another rect
///
/// \param rect Rect to union with
///
/// \returns Rect representing intersection area or NullOpt if there was no intersection
///
////////////////////////////////////////////////////////////
Rect GetUnion(const Rect& rect) const;
////////////////////////////////////////////////////////////
/// \brief Calculate intersection with another rect
///
/// \param rect Rect to intersect with
///
/// \returns Rect representing intersection area or NullOpt if there was no intersection
///
////////////////////////////////////////////////////////////
Optional<Rect> GetIntersection(const Rect& rect) const;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Get rectangle moved by a given offset /// \brief Get rectangle moved by a given offset
/// ///

View File

@ -66,6 +66,15 @@ BEGIN_TEST()
EXPECT_TRUE(sum.GetX() == 111 && sum.GetY() == 222); EXPECT_TRUE(sum.GetX() == 111 && sum.GetY() == 222);
EXPECT_TRUE(diff.GetX() == -111 && diff.GetY() == -222); EXPECT_TRUE(diff.GetX() == -111 && diff.GetY() == -222);
sum /= 111;
diff *= 2;
EXPECT_TRUE(sum == Point(1, 2));
EXPECT_TRUE(diff == Point(-222, -444));
EXPECT_TRUE(sum * 2 == Point(2, 4));
EXPECT_TRUE(diff / 2 == Point(-111, -222));
} }
{ {
@ -129,10 +138,12 @@ BEGIN_TEST()
} }
{ {
Rect r = Rect::FromCenter(100, 100, 5, 7); // Constructors
EXPECT_TRUE(Rect::FromCenter(100, 100, 5, 7) == Rect(98, 97, 5, 7));
EXPECT_TRUE(Rect::FromCenter(Point(100, 100), Point(5, 7)) == Rect(98, 97, 5, 7));
EXPECT_TRUE(r.GetX() == 98 && r.GetY() == 97); EXPECT_TRUE(Rect::FromCorners(10, 20, 30, 40) == Rect(10, 20, 21, 21));
EXPECT_TRUE(r.GetX2() == 102 && r.GetY2() == 103); EXPECT_TRUE(Rect::FromCorners(Point(10, 20), Point(30, 40)) == Rect(10, 20, 21, 21));
} }
{ {
@ -146,6 +157,74 @@ BEGIN_TEST()
EXPECT_TRUE(!r.Contains(Point(10, 19))); EXPECT_TRUE(!r.Contains(Point(10, 19)));
EXPECT_TRUE(!r.Contains(Point(15, 20))); EXPECT_TRUE(!r.Contains(Point(15, 20)));
EXPECT_TRUE(!r.Contains(Point(10, 25))); EXPECT_TRUE(!r.Contains(Point(10, 25)));
// Rect contains rect
EXPECT_TRUE(r.Contains(r));
EXPECT_TRUE(r.Contains(Rect(11, 21, 3, 3)));
EXPECT_TRUE(!r.Contains(Rect(9, 20, 5, 5)));
EXPECT_TRUE(!r.Contains(Rect(10, 19, 5, 5)));
EXPECT_TRUE(!r.Contains(Rect(10, 20, 6, 5)));
EXPECT_TRUE(!r.Contains(Rect(10, 20, 5, 6)));
}
{
// Rect intersections
// test both GetIntersection() and Intersects() as the former uses the latter
Rect rect(10, 20, 30, 40);
EXPECT_TRUE(rect.Intersects(rect));
EXPECT_TRUE(rect.GetIntersection(rect) == rect);
// simple intersection
EXPECT_TRUE(rect.GetIntersection(Rect(5, 15, 30, 40)) == Rect(10, 20, 25, 35));
EXPECT_TRUE(rect.GetIntersection(Rect(15, 25, 30, 40)) == Rect(15, 25, 25, 35));
// larger at left
EXPECT_TRUE(rect.GetIntersection(Rect(0, 0, 10, 80)) == NullOpt);
EXPECT_TRUE(rect.GetIntersection(Rect(0, 0, 11, 80)) == Rect(10, 20, 1, 40));
// larger at top
EXPECT_TRUE(rect.GetIntersection(Rect(0, 0, 50, 20)) == NullOpt);
EXPECT_TRUE(rect.GetIntersection(Rect(0, 0, 50, 21)) == Rect(10, 20, 30, 1));
// larger at bottom
EXPECT_TRUE(rect.GetIntersection(Rect(0, 60, 50, 20)) == NullOpt);
EXPECT_TRUE(rect.GetIntersection(Rect(0, 59, 50, 20)) == Rect(10, 59, 30, 1));
// larger at right
EXPECT_TRUE(rect.GetIntersection(Rect(40, 0, 20, 80)) == NullOpt);
EXPECT_TRUE(rect.GetIntersection(Rect(39, 0, 20, 80)) == Rect(39, 20, 1, 40));
// smaller at left
EXPECT_TRUE(rect.GetIntersection(Rect(0, 30, 10, 20)) == NullOpt);
EXPECT_TRUE(rect.GetIntersection(Rect(0, 30, 20, 20)) == Rect(10, 30, 10, 20));
// smaller at top
EXPECT_TRUE(rect.GetIntersection(Rect(20, 10, 10, 10)) == NullOpt);
EXPECT_TRUE(rect.GetIntersection(Rect(20, 10, 10, 20)) == Rect(20, 20, 10, 10));
// smaller at bottom
EXPECT_TRUE(rect.GetIntersection(Rect(20, 60, 10, 10)) == NullOpt);
EXPECT_TRUE(rect.GetIntersection(Rect(20, 50, 10, 20)) == Rect(20, 50, 10, 10));
// smaller at right
EXPECT_TRUE(rect.GetIntersection(Rect(40, 30, 10, 20)) == NullOpt);
EXPECT_TRUE(rect.GetIntersection(Rect(30, 30, 20, 20)) == Rect(30, 30, 10, 20));
// smaller
EXPECT_TRUE(rect.GetIntersection(Rect(20, 30, 10, 20)) == Rect(20, 30, 10, 20));
// larger
EXPECT_TRUE(rect.GetIntersection(Rect(0, 0, 100, 100)) == rect);
}
{
// Rect unions
EXPECT_TRUE(Rect(10, 20, 1, 1).GetUnion(Rect(30, 40, 1, 1)) == Rect::FromCorners(10, 20, 30, 40));
EXPECT_TRUE(Rect(30, 20, 1, 1).GetUnion(Rect(10, 40, 1, 1)) == Rect::FromCorners(10, 20, 30, 40));
EXPECT_TRUE(Rect(10, 40, 1, 1).GetUnion(Rect(30, 20, 1, 1)) == Rect::FromCorners(10, 20, 30, 40));
EXPECT_TRUE(Rect(30, 40, 1, 1).GetUnion(Rect(10, 20, 1, 1)) == Rect::FromCorners(10, 20, 30, 40));
} }
{ {
@ -163,4 +242,23 @@ BEGIN_TEST()
EXPECT_TRUE(r == Rect(-9, -18, 3, 4)); EXPECT_TRUE(r == Rect(-9, -18, 3, 4));
} }
{
// Construction from and comparison with SDL objects
SDL_Rect sdlrect = { 1, 2, 3, 4 };
SDL_Point sdlpoint = { 6, 7 };
EXPECT_TRUE(Rect(sdlrect) == Rect(1, 2, 3, 4));
EXPECT_TRUE(Point(sdlpoint) == Point(6, 7));
EXPECT_TRUE(Rect(sdlrect) != Rect(0, 2, 3, 4));
EXPECT_TRUE(Point(sdlpoint) != Point(0, 7));
EXPECT_TRUE(Rect(1, 2, 3, 4) == sdlrect);
EXPECT_TRUE(Point(6, 7) == sdlpoint);
EXPECT_TRUE(Rect(0, 2, 3, 4) != sdlrect);
EXPECT_TRUE(Point(0, 7) != sdlpoint);
}
END_TEST() END_TEST()