/**************************************************************************** Copyright (c) 2010-2012 cocos2d-x.org Copyright (c) 2013-2014 Chukong Technologies Inc. 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 "base/CCAffineTransform.h" #include #include using namespace std; NS_CC_BEGIN AffineTransform __CCAffineTransformMake(float a, float b, float c, float d, float tx, float ty) { AffineTransform t; t.a = a; t.b = b; t.c = c; t.d = d; t.tx = tx; t.ty = ty; return t; } Vector2 __CCPointApplyAffineTransform(const Vector2& point, const AffineTransform& t) { Vector2 p; p.x = (float)((double)t.a * point.x + (double)t.c * point.y + t.tx); p.y = (float)((double)t.b * point.x + (double)t.d * point.y + t.ty); return p; } Vector2 PointApplyTransform(const Vector2& point, const Matrix& transform) { Vector3 vec(point.x, point.y, 0); transform.transformPoint(&vec); return Vector2(vec.x, vec.y); } Size __CCSizeApplyAffineTransform(const Size& size, const AffineTransform& t) { Size s; s.width = (float)((double)t.a * size.width + (double)t.c * size.height); s.height = (float)((double)t.b * size.width + (double)t.d * size.height); return s; } AffineTransform AffineTransformMakeIdentity() { return __CCAffineTransformMake(1.0, 0.0, 0.0, 1.0, 0.0, 0.0); } extern const AffineTransform AffineTransformIdentity = AffineTransformMakeIdentity(); const AffineTransform AffineTransform::IDENTITY = AffineTransformMakeIdentity(); Rect RectApplyAffineTransform(const Rect& rect, const AffineTransform& anAffineTransform) { float top = rect.getMinY(); float left = rect.getMinX(); float right = rect.getMaxX(); float bottom = rect.getMaxY(); Vector2 topLeft = PointApplyAffineTransform(Vector2(left, top), anAffineTransform); Vector2 topRight = PointApplyAffineTransform(Vector2(right, top), anAffineTransform); Vector2 bottomLeft = PointApplyAffineTransform(Vector2(left, bottom), anAffineTransform); Vector2 bottomRight = PointApplyAffineTransform(Vector2(right, bottom), anAffineTransform); float minX = min(min(topLeft.x, topRight.x), min(bottomLeft.x, bottomRight.x)); float maxX = max(max(topLeft.x, topRight.x), max(bottomLeft.x, bottomRight.x)); float minY = min(min(topLeft.y, topRight.y), min(bottomLeft.y, bottomRight.y)); float maxY = max(max(topLeft.y, topRight.y), max(bottomLeft.y, bottomRight.y)); return Rect(minX, minY, (maxX - minX), (maxY - minY)); } Rect RectApplyTransform(const Rect& rect, const Matrix& transform) { float top = rect.getMinY(); float left = rect.getMinX(); float right = rect.getMaxX(); float bottom = rect.getMaxY(); Vector3 topLeft(left, top, 0); Vector3 topRight(right, top, 0); Vector3 bottomLeft(left, bottom, 0); Vector3 bottomRight(right, bottom, 0); transform.transformPoint(&topLeft); transform.transformPoint(&topRight); transform.transformPoint(&bottomLeft); transform.transformPoint(&bottomRight); float minX = min(min(topLeft.x, topRight.x), min(bottomLeft.x, bottomRight.x)); float maxX = max(max(topLeft.x, topRight.x), max(bottomLeft.x, bottomRight.x)); float minY = min(min(topLeft.y, topRight.y), min(bottomLeft.y, bottomRight.y)); float maxY = max(max(topLeft.y, topRight.y), max(bottomLeft.y, bottomRight.y)); return Rect(minX, minY, (maxX - minX), (maxY - minY)); } AffineTransform AffineTransformTranslate(const AffineTransform& t, float tx, float ty) { return __CCAffineTransformMake(t.a, t.b, t.c, t.d, t.tx + t.a * tx + t.c * ty, t.ty + t.b * tx + t.d * ty); } AffineTransform AffineTransformScale(const AffineTransform& t, float sx, float sy) { return __CCAffineTransformMake(t.a * sx, t.b * sx, t.c * sy, t.d * sy, t.tx, t.ty); } AffineTransform AffineTransformRotate(const AffineTransform& t, float anAngle) { float sine = sinf(anAngle); float cosine = cosf(anAngle); return __CCAffineTransformMake( t.a * cosine + t.c * sine, t.b * cosine + t.d * sine, t.c * cosine - t.a * sine, t.d * cosine - t.b * sine, t.tx, t.ty); } /* Concatenate `t2' to `t1' and return the result: t' = t1 * t2 */ AffineTransform AffineTransformConcat(const AffineTransform& t1, const AffineTransform& t2) { return __CCAffineTransformMake( t1.a * t2.a + t1.b * t2.c, t1.a * t2.b + t1.b * t2.d, //a,b t1.c * t2.a + t1.d * t2.c, t1.c * t2.b + t1.d * t2.d, //c,d t1.tx * t2.a + t1.ty * t2.c + t2.tx, //tx t1.tx * t2.b + t1.ty * t2.d + t2.ty); //ty } Matrix TransformConcat(const Matrix& t1, const Matrix& t2) { return t1 * t2; } /* Return true if `t1' and `t2' are equal, false otherwise. */ bool AffineTransformEqualToTransform(const AffineTransform& t1, const AffineTransform& t2) { return (t1.a == t2.a && t1.b == t2.b && t1.c == t2.c && t1.d == t2.d && t1.tx == t2.tx && t1.ty == t2.ty); } AffineTransform AffineTransformInvert(const AffineTransform& t) { float determinant = 1 / (t.a * t.d - t.b * t.c); return __CCAffineTransformMake(determinant * t.d, -determinant * t.b, -determinant * t.c, determinant * t.a, determinant * (t.c * t.ty - t.d * t.tx), determinant * (t.b * t.tx - t.a * t.ty) ); } NS_CC_END