TransformMatrixPlugin.as
7.99 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/**
* VERSION: 0.96
* DATE: 1/9/2010
* ACTIONSCRIPT VERSION: 3.0
* UPDATES AND DOCUMENTATION AT: http://www.TweenMax.com
**/
package com.greensock.plugins {
import com.greensock.*;
import flash.display.*;
import flash.geom.Matrix;
import flash.geom.Transform;
/**
* TransformMatrixPlugin allows you to tween a DisplayObject's transform.matrix values directly
* (<code>a, b, c, d, tx, and ty</code>) or use common properties like <code>x, y, scaleX, scaleY, skewX, skewY,</code> and <code>rotation</code>.
* To skew without adjusting scale visually, use skewX2 and skewY2 instead of skewX and skewY.
* <br /><br />
*
* <b>USAGE:</b><br /><br />
* <code>
* import com.greensock.TweenLite; <br />
* import com.greensock.plugins.TweenPlugin; <br />
* import com.greensock.plugins.TransformMatrixPlugin; <br />
* TweenPlugin.activate([TransformMatrixPlugin]); //activation is permanent in the SWF, so this line only needs to be run once.<br /><br />
*
* TweenLite.to(mc, 1, {transformMatrix:{x:50, y:300, scaleX:2, scaleY:2}}); <br /><br />
*
* //-OR-<br /><br />
*
* TweenLite.to(mc, 1, {transformMatrix:{tx:50, ty:300, a:2, d:2}}); <br /><br />
*
* </code>
*
* <b>Copyright 2010, GreenSock. All rights reserved.</b> This work is subject to the terms in <a href="http://www.greensock.com/terms_of_use.html">http://www.greensock.com/terms_of_use.html</a> or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership.
*
* @author Jack Doyle, jack@greensock.com
*/
public class TransformMatrixPlugin extends TweenPlugin {
/** @private **/
public static const API:Number = 1.0; //If the API/Framework for plugins changes in the future, this number helps determine compatibility
/** @private **/
private static const _DEG2RAD:Number = Math.PI / 180;
/** @private **/
private static const _RAD2DEG:Number = 180 / Math.PI;
/** @private **/
protected var _transform:Transform;
/** @private **/
protected var _matrix:Matrix;
/** @private **/
protected var _txStart:Number;
/** @private **/
protected var _txChange:Number;
/** @private **/
protected var _tyStart:Number;
/** @private **/
protected var _tyChange:Number;
/** @private **/
protected var _aStart:Number;
/** @private **/
protected var _aChange:Number;
/** @private **/
protected var _bStart:Number;
/** @private **/
protected var _bChange:Number;
/** @private **/
protected var _cStart:Number;
/** @private **/
protected var _cChange:Number;
/** @private **/
protected var _dStart:Number;
/** @private **/
protected var _dChange:Number;
/** @private **/
protected var _angleChange:Number = 0;
/** @private **/
public function TransformMatrixPlugin() {
super();
this.propName = "transformMatrix";
this.overwriteProps = ["x","y","scaleX","scaleY","rotation","transformMatrix","transformAroundPoint","transformAroundCenter"];
}
/** @private **/
override public function onInitTween(target:Object, value:*, tween:TweenLite):Boolean {
_transform = target.transform as Transform;
_matrix = _transform.matrix;
var matrix:Matrix = _matrix.clone();
_txStart = matrix.tx;
_tyStart = matrix.ty;
_aStart = matrix.a;
_bStart = matrix.b;
_cStart = matrix.c;
_dStart = matrix.d;
if ("x" in value) {
_txChange = (typeof(value.x) == "number") ? value.x - _txStart : Number(value.x);
} else if ("tx" in value) {
_txChange = value.tx - _txStart;
} else {
_txChange = 0;
}
if ("y" in value) {
_tyChange = (typeof(value.y) == "number") ? value.y - _tyStart : Number(value.y);
} else if ("ty" in value) {
_tyChange = value.ty - _tyStart;
} else {
_tyChange = 0;
}
_aChange = ("a" in value) ? value.a - _aStart : 0;
_bChange = ("b" in value) ? value.b - _bStart : 0;
_cChange = ("c" in value) ? value.c - _cStart : 0;
_dChange = ("d" in value) ? value.d - _dStart : 0;
if (("rotation" in value) || ("scale" in value) || ("scaleX" in value) || ("scaleY" in value) || ("skewX" in value) || ("skewY" in value) || ("skewX2" in value) || ("skewY2" in value)) {
var ratioX:Number, ratioY:Number;
var scaleX:Number = Math.sqrt(matrix.a * matrix.a + matrix.b * matrix.b); //Bugs in the Flex framework prevent DisplayObject.scaleX from working consistently, so we must determine it using the matrix.
if (matrix.a < 0 && matrix.d > 0) {
scaleX = -scaleX;
}
var scaleY:Number = Math.sqrt(matrix.c * matrix.c + matrix.d * matrix.d); //Bugs in the Flex framework prevent DisplayObject.scaleY from working consistently, so we must determine it using the matrix.
if (matrix.d < 0 && matrix.a > 0) {
scaleY = -scaleY;
}
var angle:Number = Math.atan2(matrix.b, matrix.a); //Bugs in the Flex framework prevent DisplayObject.rotation from working consistently, so we must determine it using the matrix
if (matrix.a < 0 && matrix.d >= 0) {
angle += (angle <= 0) ? Math.PI : -Math.PI;
}
var skewX:Number = Math.atan2(-_matrix.c, _matrix.d) - angle;
var finalAngle:Number = ("rotation" in value) ? (typeof(value.rotation) == "number") ? value.rotation * _DEG2RAD : Number(value.rotation) * _DEG2RAD + angle : angle;
var finalSkewX:Number = ("skewX" in value) ? (typeof(value.skewX) == "number") ? Number(value.skewX) * _DEG2RAD : Number(value.skewX) * _DEG2RAD + skewX : 0;
if ("skewY" in value) { //skewY is just a combonation of rotation and skewX
var skewY:Number = (typeof(value.skewY) == "number") ? value.skewY * _DEG2RAD : Number(value.skewY) * _DEG2RAD - skewX;
finalAngle += skewY + skewX;
finalSkewX -= skewY;
}
if (finalAngle != angle) {
if ("rotation" in value) {
_angleChange = finalAngle - angle;
finalAngle = angle; //to correctly affect the skewX calculations below
} else {
matrix.rotate(finalAngle - angle);
}
}
if ("scale" in value) {
ratioX = Number(value.scale) / scaleX;
ratioY = Number(value.scale) / scaleY;
if (typeof(value.scale) != "number") { //relative value
ratioX += 1;
ratioY += 1;
}
} else {
if ("scaleX" in value) {
ratioX = Number(value.scaleX) / scaleX;
if (typeof(value.scaleX) != "number") { //relative value
ratioX += 1;
}
}
if ("scaleY" in value) {
ratioY = Number(value.scaleY) / scaleY;
if (typeof(value.scaleY) != "number") { //relative value
ratioY += 1;
}
}
}
if (finalSkewX != skewX) {
matrix.c = -scaleY * Math.sin(finalSkewX + finalAngle);
matrix.d = scaleY * Math.cos(finalSkewX + finalAngle);
}
if ("skewX2" in value) {
if (typeof(value.skewX2) == "number") {
matrix.c = Math.tan(0 - (value.skewX2 * _DEG2RAD));
} else {
matrix.c += Math.tan(0 - (Number(value.skewX2) * _DEG2RAD));
}
}
if ("skewY2" in value) {
if (typeof(value.skewY2) == "number") {
matrix.b = Math.tan(value.skewY2 * _DEG2RAD);
} else {
matrix.b += Math.tan(Number(value.skewY2) * _DEG2RAD);
}
}
if (ratioX) {
matrix.a *= ratioX;
matrix.b *= ratioX;
}
if (ratioY) {
matrix.c *= ratioY;
matrix.d *= ratioY;
}
_aChange = matrix.a - _aStart;
_bChange = matrix.b - _bStart;
_cChange = matrix.c - _cStart;
_dChange = matrix.d - _dStart;
}
return true;
}
/** @private **/
override public function set changeFactor(n:Number):void {
_matrix.a = _aStart + (n * _aChange);
_matrix.b = _bStart + (n * _bChange);
_matrix.c = _cStart + (n * _cChange);
_matrix.d = _dStart + (n * _dChange);
if (_angleChange) {
_matrix.rotate(_angleChange * n);
}
_matrix.tx = _txStart + (n * _txChange);
_matrix.ty = _tyStart + (n * _tyChange);
_transform.matrix = _matrix;
}
}
}