2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "CCGeometry.h"
|
2012-04-23 14:30:38 +08:00
|
|
|
#include "ccMacros.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// implementation of CCPoint
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-05-03 11:24:52 +08:00
|
|
|
CCPoint::CCPoint(void) : x(0), y(0)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-02 12:59:50 +08:00
|
|
|
CCPoint::CCPoint(float x, float y) : x(x), y(y)
|
2012-04-23 14:30:38 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-03 11:24:52 +08:00
|
|
|
CCPoint::CCPoint(const CCPoint& other) : x(other.x), y(other.y)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CCPoint::CCPoint(const CCSize& size) : x(size.width), y(size.height)
|
2012-04-23 14:30:38 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CCPoint& CCPoint::operator= (const CCPoint& other)
|
|
|
|
{
|
|
|
|
setPoint(other.x, other.y);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2013-05-03 11:24:52 +08:00
|
|
|
CCPoint& CCPoint::operator= (const CCSize& size)
|
|
|
|
{
|
|
|
|
setPoint(size.width, size.height);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2013-05-02 13:13:03 +08:00
|
|
|
CCPoint CCPoint::operator+(const CCPoint& right) const
|
|
|
|
{
|
|
|
|
return CCPoint(this->x + right.x, this->y + right.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCPoint CCPoint::operator-(const CCPoint& right) const
|
|
|
|
{
|
|
|
|
return CCPoint(this->x - right.x, this->y - right.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCPoint CCPoint::operator*(float a) const
|
|
|
|
{
|
|
|
|
return CCPoint(this->x * a, this->y * a);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCPoint CCPoint::operator/(float a) const
|
|
|
|
{
|
|
|
|
return CCPoint(this->x / a, this->y / a);
|
|
|
|
}
|
|
|
|
|
2012-04-23 14:30:38 +08:00
|
|
|
void CCPoint::setPoint(float x, float y)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
this->x = x;
|
|
|
|
this->y = y;
|
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
bool CCPoint::equals(const CCPoint& target) const
|
|
|
|
{
|
2013-04-18 06:16:49 +08:00
|
|
|
return (fabs(this->x - target.x) < FLT_EPSILON)
|
|
|
|
&& (fabs(this->y - target.y) < FLT_EPSILON);
|
2012-08-01 15:30:12 +08:00
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// implementation of CCSize
|
|
|
|
|
2013-05-03 11:24:52 +08:00
|
|
|
CCSize::CCSize(void) : width(0), height(0)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-03 11:24:52 +08:00
|
|
|
CCSize::CCSize(float width, float height) : width(width), height(height)
|
2012-04-23 14:30:38 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-03 11:24:52 +08:00
|
|
|
CCSize::CCSize(const CCSize& other) : width(other.width), height(other.height)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CCSize::CCSize(const CCPoint& point) : width(point.x), height(point.y)
|
2012-04-23 14:30:38 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CCSize& CCSize::operator= (const CCSize& other)
|
|
|
|
{
|
|
|
|
setSize(other.width, other.height);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2013-05-03 11:24:52 +08:00
|
|
|
CCSize& CCSize::operator= (const CCPoint& point)
|
|
|
|
{
|
|
|
|
setSize(point.x, point.y);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCSize CCSize::operator+(const CCSize& right) const
|
|
|
|
{
|
|
|
|
return CCSize(this->height + right.height, this->width + right.width);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCSize CCSize::operator-(const CCSize& right) const
|
|
|
|
{
|
|
|
|
return CCSize(this->height - right.height, this->width - right.width);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCSize CCSize::operator*(float a) const
|
|
|
|
{
|
|
|
|
return CCSize(this->height * a, this->width * a);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCSize CCSize::operator/(float a) const
|
|
|
|
{
|
|
|
|
return CCSize(this->height / a, this->width / a);
|
|
|
|
}
|
|
|
|
|
2012-04-23 14:30:38 +08:00
|
|
|
void CCSize::setSize(float width, float height)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
this->width = width;
|
|
|
|
this->height = height;
|
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
bool CCSize::equals(const CCSize& target) const
|
|
|
|
{
|
2013-04-18 06:16:49 +08:00
|
|
|
return (fabs(this->width - target.width) < FLT_EPSILON)
|
|
|
|
&& (fabs(this->height - target.height) < FLT_EPSILON);
|
2012-08-01 15:30:12 +08:00
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// implementation of CCRect
|
|
|
|
|
|
|
|
CCRect::CCRect(void)
|
|
|
|
{
|
2012-04-23 14:30:38 +08:00
|
|
|
setRect(0.0f, 0.0f, 0.0f, 0.0f);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CCRect::CCRect(float x, float y, float width, float height)
|
2012-04-23 14:30:38 +08:00
|
|
|
{
|
|
|
|
setRect(x, y, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCRect::CCRect(const CCRect& other)
|
|
|
|
{
|
|
|
|
setRect(other.origin.x, other.origin.y, other.size.width, other.size.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCRect& CCRect::operator= (const CCRect& other)
|
|
|
|
{
|
|
|
|
setRect(other.origin.x, other.origin.y, other.size.width, other.size.height);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCRect::setRect(float x, float y, float width, float height)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-01-29 14:03:03 +08:00
|
|
|
// CGRect can support width<0 or height<0
|
|
|
|
// CCAssert(width >= 0.0f && height >= 0.0f, "width and height of Rect must not less than 0.");
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
origin.x = x;
|
|
|
|
origin.y = y;
|
|
|
|
|
|
|
|
size.width = width;
|
|
|
|
size.height = height;
|
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
bool CCRect::equals(const CCRect& rect) const
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-08-01 15:30:12 +08:00
|
|
|
return (origin.equals(rect.origin) &&
|
|
|
|
size.equals(rect.size));
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
float CCRect::getMaxX() const
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-08-01 15:30:12 +08:00
|
|
|
return (float)(origin.x + size.width);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
float CCRect::getMidX() const
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-08-01 15:30:12 +08:00
|
|
|
return (float)(origin.x + size.width / 2.0);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
float CCRect::getMinX() const
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-08-01 15:30:12 +08:00
|
|
|
return origin.x;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
float CCRect::getMaxY() const
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-08-01 15:30:12 +08:00
|
|
|
return origin.y + size.height;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
float CCRect::getMidY() const
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-08-01 15:30:12 +08:00
|
|
|
return (float)(origin.y + size.height / 2.0);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
float CCRect::getMinY() const
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-08-01 15:30:12 +08:00
|
|
|
return origin.y;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
bool CCRect::containsPoint(const CCPoint& point) const
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
bool bRet = false;
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
if (point.x >= getMinX() && point.x <= getMaxX()
|
|
|
|
&& point.y >= getMinY() && point.y <= getMaxY())
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
bRet = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2012-08-01 15:30:12 +08:00
|
|
|
bool CCRect::intersectsRect(const CCRect& rect) const
|
|
|
|
{
|
|
|
|
return !( getMaxX() < rect.getMinX() ||
|
|
|
|
rect.getMaxX() < getMinX() ||
|
|
|
|
getMaxY() < rect.getMinY() ||
|
|
|
|
rect.getMaxY() < getMinY());
|
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|