2002-08-24 15:31:37 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2003-03-06 21:46:56 +00:00
|
|
|
* Copyright (C) 2002-2003 The ScummVM project
|
2002-08-24 15:31:37 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-08-31 13:29:10 +00:00
|
|
|
#ifndef COMMON_RECT_H
|
|
|
|
#define COMMON_RECT_H
|
2002-08-24 15:31:37 +00:00
|
|
|
|
2002-08-31 13:29:10 +00:00
|
|
|
#include "scummsys.h"
|
|
|
|
|
|
|
|
namespace ScummVM {
|
2002-08-24 15:31:37 +00:00
|
|
|
|
|
|
|
/*! @brief simple class for handling both 2D position and size
|
|
|
|
|
|
|
|
This small class is an helper for position and size values.
|
|
|
|
*/
|
2003-05-15 21:25:35 +00:00
|
|
|
struct Point {
|
2003-05-15 21:40:36 +00:00
|
|
|
int16 x; //!< The horizontal part of the point
|
|
|
|
int16 y; //!< The vertical part of the point
|
2003-05-15 21:25:35 +00:00
|
|
|
|
|
|
|
Point() : x(0), y(0) {};
|
|
|
|
Point(const Point & p) : x(p.x), y(p.y) {};
|
2003-05-15 21:40:36 +00:00
|
|
|
explicit Point(int16 x1, int16 y1) : x(x1), y(y1) {};
|
2003-05-15 21:25:35 +00:00
|
|
|
Point & operator=(const Point & p) { x = p.x; y = p.y; return *this; };
|
|
|
|
bool operator==(const Point & p) const { return x == p.x && y == p.y; };
|
2003-05-15 21:52:10 +00:00
|
|
|
bool operator!=(const Point & p) const { return x != p.x || y != p.y; };
|
2002-08-24 15:31:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*! @brief simple class for handling a rectangular zone.
|
|
|
|
|
|
|
|
This small class is an helper for rectangles.
|
|
|
|
It is mostly used by the blitter class.
|
|
|
|
*/
|
2003-05-15 21:25:35 +00:00
|
|
|
struct Rect {
|
2003-05-15 21:40:36 +00:00
|
|
|
int16 top, left; //!< The point at the top left of the rectangle (part of the rect).
|
|
|
|
int16 bottom, right; //!< The point at the bottom right of the rectangle (not part of the rect).
|
2003-05-15 21:25:35 +00:00
|
|
|
|
|
|
|
Rect() : top(0), left(0), bottom(0), right(0) {}
|
2003-05-15 21:40:36 +00:00
|
|
|
Rect(int16 x, int16 y) : top(0), left(0), bottom(x), right(y) {}
|
|
|
|
Rect(int16 x1, int16 y1, int16 x2, int16 y2) : top(x1), left(y1), bottom(x2), right(y2) {}
|
|
|
|
int16 width() const { return right - left; }
|
|
|
|
int16 height() const { return top - bottom; }
|
2002-08-24 15:31:37 +00:00
|
|
|
|
2003-05-15 21:52:10 +00:00
|
|
|
/*! @brief check if given position is inside this rectangle
|
2002-08-24 15:31:37 +00:00
|
|
|
|
|
|
|
@param x the horizontal position to check
|
|
|
|
@param y the vertical position to check
|
|
|
|
|
2003-05-15 21:52:10 +00:00
|
|
|
@return true if the given position is inside this rectangle, false otherwise
|
2002-08-24 15:31:37 +00:00
|
|
|
*/
|
2003-05-15 21:52:10 +00:00
|
|
|
bool contains(int16 x, int16 y) const {
|
2003-05-15 21:25:35 +00:00
|
|
|
return (left <= x) && (x < right) && (top <= y) && (y < bottom);
|
2002-08-25 11:38:40 +00:00
|
|
|
}
|
2003-05-15 21:52:10 +00:00
|
|
|
|
|
|
|
/*! @brief check if given point is inside this rectangle
|
2002-08-24 15:31:37 +00:00
|
|
|
|
|
|
|
@param p the point to check
|
|
|
|
|
2003-05-15 21:52:10 +00:00
|
|
|
@return true if the given point is inside this rectangle, false otherwise
|
2002-08-24 15:31:37 +00:00
|
|
|
*/
|
2003-05-15 21:52:10 +00:00
|
|
|
bool contains(const Point & p) const {
|
2003-05-15 21:25:35 +00:00
|
|
|
return (left <= p.x) && (p.x < right) && (top <= p.y) && (p.y < bottom);
|
2002-08-25 11:38:40 +00:00
|
|
|
}
|
2003-05-15 21:52:10 +00:00
|
|
|
|
|
|
|
/*! @brief check if given rectangle is inside this rectangle
|
|
|
|
|
|
|
|
@param p the point to check
|
|
|
|
|
|
|
|
@return true if the given rectangle is inside the rectangle, false otherwise
|
|
|
|
*/
|
|
|
|
bool contains(const Rect & r) const {
|
|
|
|
return (left <= r.right) && (r.left < right) && (top <= r.bottom) && (r.top < bottom);
|
|
|
|
}
|
2003-05-15 22:15:24 +00:00
|
|
|
|
|
|
|
void grow(int16 offset) {
|
|
|
|
top -= offset;
|
|
|
|
left -= offset;
|
|
|
|
bottom += offset;
|
|
|
|
right += offset;
|
|
|
|
}
|
2002-08-24 15:31:37 +00:00
|
|
|
};
|
|
|
|
|
2002-08-31 13:29:10 +00:00
|
|
|
}; // End of namespace ScummVM
|
|
|
|
|
2002-08-24 15:31:37 +00:00
|
|
|
#endif
|