LinePath2D.as
19.1 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
/**
* VERSION: 0.11 (beta)
* DATE: 2010-05-04
* ACTIONSCRIPT VERSION: 3.0
* UPDATES AND DOCUMENTATION AT: http://www.GreenSock.com
**/
package com.greensock.motionPaths {
import flash.display.Graphics;
import flash.geom.Matrix;
import flash.geom.Point;
/**
* A LinePath2D defines a path (using as many Points as you want) on which a PathFollower can be
* placed and animated. A PathFollower's position along the path is described using the PathFollower's
* <code>progress</code> property, a value between 0 and 1 where 0 is at the beginning of the path,
* 0.5 is in the middle, and 1 is at the very end. To tween a PathFollower along the path, simply tween its
* <code>progress</code> property. To tween ALL of the followers on the path at once, you can tween the
* LinePath2D's <code>progress</code> property which performs better than tweening every PathFollower's
* <code>progress</code> property individually. PathFollowers automatically wrap so that if the
* <code>progress</code> value exceeds 1 it continues at the beginning of the path, meaning that tweening
* its <code>progress</code> from 0 to 2 would have the same effect as tweening it from 0 to 1 twice
* (it would appear to loop).<br /><br />
*
* Since LinePath2D extends the Shape class, you can add an instance to the display list to see a line representation
* of the path drawn which can be particularly helpful during the production phase. Use <code>lineStyle()</code>
* to adjust the color, thickness, and other attributes of the line that is drawn (or set the LinePath2D's
* <code>visible</code> property to false or don't add it to the display list if you don't want to see the line
* at all). You can also adjust all of its properties like <code>scaleX, scaleY, rotation, width, height, x,</code>
* and <code>y</code>. That means you can tween those values as well to achieve very dynamic, complex effects
* with ease.<br /><br />
*
* @example Example AS3 code:<listing version="3.0">
import com.greensock.~~;
import com.greensock.easing.~~;
import com.greensock.motionPaths.~~;
import flash.geom.Point;
//create a LinePath2D with 5 Points
var path:LinePath2D = new LinePath2D([new Point(0, 0),
new Point(100, 100),
new Point(350, 150),
new Point(50, 200),
new Point(550, 400)]);
//add it to the display list so we can see it (you can skip this if you prefer)
addChild(path);
//create an array containing 30 blue squares
var boxes:Array = [];
for (var i:int = 0; i < 30; i++) {
boxes.push(createSquare(10, 0x0000FF));
}
//distribute the blue squares evenly across the entire path and set them to autoRotate
path.distribute(boxes, 0, 1, true);
//put a red square exactly halfway through the 2nd segment
path.addFollower(createSquare(10, 0xFF0000), path.getSegmentProgress(2, 0.5));
//tween all of the squares through the path once (wrapping when they reach the end)
TweenMax.to(path, 20, {progress:1});
//while the squares are animating through the path, tween the path's position and rotation too!
TweenMax.to(path, 3, {rotation:180, x:550, y:400, ease:Back.easeOut, delay:3});
//method for creating squares
function createSquare(size:Number, color:uint=0xFF0000):Shape {
var s:Shape = new Shape();
s.graphics.beginFill(color, 1);
s.graphics.drawRect(-size * 0.5, -size * 0.5, size, size);
s.graphics.endFill();
this.addChild(s);
return s;
}
</listing>
*
* <b>NOTES</b><br />
* <ul>
* <li>All followers' positions are automatically updated when you alter the MotionPath that they're following.</li>
* <li>To tween all followers along the path at once, simply tween the MotionPath's <code>progress</code>
* property which will provide better performance than tweening each follower independently.</li>
* </ul>
*
* <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 LinePath2D extends MotionPath {
/** @private **/
protected var _first:PathPoint;
/** @private **/
protected var _points:Array;
/** @private **/
protected var _totalLength:Number;
/** @private **/
protected var _hasAutoRotate:Boolean;
/** @private **/
protected var _prevMatrix:Matrix;
/** If true, the LinePath2D will analyze every Point whenever it renders to see if any Point's x or y value has changed, thus making it possible to tween them dynamically. Setting <code>autoUpdatePoints</code> to <code>true</code> increases the CPU load due to the extra processing, so only set it to <code>true</code> if you plan to change one or more of the Points' position. **/
public var autoUpdatePoints:Boolean;
/**
* Constructor
*
* @param points An array of Points that define the line
* @param x The x coordinate of the origin of the line
* @param y The y coordinate of the origin of the line
* @param autoUpdatePoints If true, the LinePath2D will analyze every Point whenever it renders to see if any Point's x or y value has changed, thus making it possible to tween them dynamically. Setting <code>autoUpdatePoints</code> to <code>true</code> increases the CPU load due to the extra processing, so only set it to <code>true</code> if you plan to change one or more of the Points' position.
*/
public function LinePath2D(points:Array=null, x:Number=0, y:Number=0, autoUpdatePoints:Boolean=false) {
super();
_points = [];
_totalLength = 0;
this.autoUpdatePoints = autoUpdatePoints;
if (points != null) {
insertMultiplePoints(points, 0);
}
super.x = x;
super.y = y;
}
/**
* Adds a Point to the end of the current LinePath2D (essentially redefining its end point).
*
* @param point A Point describing the local coordinates through which the line should be drawn.
**/
public function appendPoint(point:Point):void {
_insertPoint(point, _points.length, false);
}
/**
* Inserts a Point at a particular index value in the <code>points</code> array, similar to splice() in an array.
* For example, if a LinePath2D instance has 3 Points already and you want to insert a new Point right after the
* first one, you would do:<br /><br /><code>
*
* var path:LinePath2D = new LinePath2D([new Point(0, 0), <br />
* new Point(100, 50), <br />
* new Point(200, 300)]); <br />
* path.insertPoint(new Point(50, 50), 1); <br /><br /></code>
*
* @param point A Point describing the local coordinates through which the line should be drawn.
* @param index The index value in the <code>points</code> array at which the Point should be inserted.
**/
public function insertPoint(point:Point, index:uint=0):void {
_insertPoint(point, index, false);
}
/** @private **/
protected function _insertPoint(point:Point, index:uint, skipOrganize:Boolean):void {
_points.splice(index, 0, new PathPoint(point));
if (!skipOrganize) {
_organize();
}
}
/**
* Appends multiple Points to the end of the <code>points</code> array. Identical to
* the <code>appendPoint()</code> method, but accepts an array of Points instead of just one.
*
* @param points An array of Points to append.
*/
public function appendMultiplePoints(points:Array):void {
insertMultiplePoints(points, _points.length);
}
/**
* Inserts multiple Points into the <code>points</code> array at a particular index/position.
* Identical to the <code>insertPoint()</code> method, but accepts an array of points instead of just one.
*
* @param points An array of Points to insert.
* @param index The index value in the <code>points</code> array at which the Points should be inserted.
*/
public function insertMultiplePoints(points:Array, index:uint=0):void {
var l:int = points.length;
for (var i:int = 0; i < l; i++) {
_insertPoint(points[i], index + i, true);
}
_organize();
}
/**
* Removes a particular Point instance from the <code>points</code> array.
*
* @param point The Point object to remove from the <code>points</code> array.
*/
public function removePoint(point:Point):void {
var i:int = _points.length;
while (--i > -1) {
if (_points[i].point == point) {
_points.splice(i, 1);
}
}
_organize();
}
/**
* Removes the Point that resides at a particular index/position in the <code>points</code> array.
* Just like in arrays, the index is zero-based. For example, to remove the second Point in the array,
* do <code>removePointByIndex(1)</code>;
*
* @param index The index value of the Point that should be removed from the <code>points</code> array.
*/
public function removePointByIndex(index:uint):void {
_points.splice(index, 1);
_organize();
}
/** @private **/
protected function _organize():void {
_totalLength = 0;
_hasAutoRotate = false;
var last:int = _points.length - 1;
if (last == -1) {
_first = null;
} else if (last == 0) {
_first = _points[0];
_first.progress = _first.xChange = _first.yChange = _first.length = 0;
return;
}
var pp:PathPoint;
for (var i:int = 0; i <= last; i++) {
if (_points[i] != null) {
pp = _points[i];
pp.x = pp.point.x;
pp.y = pp.point.y;
if (i == last) {
pp.length = 0;
pp.next = null;
} else {
pp.next = _points[i + 1];
pp.xChange = pp.next.x - pp.x;
pp.yChange = pp.next.y - pp.y;
pp.length = Math.sqrt(pp.xChange * pp.xChange + pp.yChange * pp.yChange);
_totalLength += pp.length;
}
}
}
_first = pp = _points[0];
var curTotal:Number = 0;
while (pp) {
pp.progress = curTotal / _totalLength;
curTotal += pp.length;
pp = pp.next;
}
_updateAngles();
}
/** @private **/
protected function _updateAngles():void {
var m:Matrix = this.transform.matrix;
var pp:PathPoint = _first;
while (pp) {
pp.angle = Math.atan2(pp.xChange * m.b + pp.yChange * m.d, pp.xChange * m.a + pp.yChange * m.c) * _RAD2DEG;
pp = pp.next;
}
_prevMatrix = m;
}
/** @private **/
override protected function renderAll():void {
if (_first == null || _points.length <= 1) {
return;
}
var updatedAngles:Boolean = false;
var px:Number, py:Number, pp:PathPoint, followerProgress:Number, pathProg:Number;
var m:Matrix = this.transform.matrix;
var a:Number = m.a, b:Number = m.b, c:Number = m.c, d:Number = m.d, tx:Number = m.tx, ty:Number = m.ty;
var f:PathFollower = _rootFollower;
if (autoUpdatePoints) {
pp = _first;
while (pp) {
if (pp.point.x != pp.x || pp.point.y != pp.y) {
_organize();
_redrawLine = true;
renderAll();
return;
}
pp = pp.next;
}
}
while (f) {
followerProgress = f.cachedProgress;
pp = _first;
while (pp != null && pp.next.progress < followerProgress) {
pp = pp.next;
}
if (pp != null) {
pathProg = (followerProgress - pp.progress) / (pp.length / _totalLength);
px = pp.x + pathProg * pp.xChange;
py = pp.y + pathProg * pp.yChange;
f.target.x = px * a + py * c + tx;
f.target.y = px * b + py * d + ty;
if (f.autoRotate) {
if (!updatedAngles && (_prevMatrix.a != a || _prevMatrix.b != b || _prevMatrix.c != c || _prevMatrix.d != d)) {
_updateAngles(); //only need to update the angles once during the render cycle
updatedAngles = true;
}
f.target.rotation = pp.angle + f.rotationOffset;
}
}
f = f.cachedNext;
}
if (_redrawLine && this.visible && this.parent) {
var g:Graphics = this.graphics;
g.clear();
g.lineStyle(_thickness, _color, _lineAlpha, _pixelHinting, _scaleMode, _caps, _joints, _miterLimit);
pp = _first;
g.moveTo(pp.x, pp.y);
while (pp) {
g.lineTo(pp.x, pp.y);
pp = pp.next;
}
_redrawLine = false;
}
}
/** @inheritDoc **/
override public function renderObjectAt(target:Object, progress:Number, autoRotate:Boolean=false, rotationOffset:Number=0):void {
if (progress > 1) {
progress -= int(progress);
} else if (progress < 0) {
progress -= int(progress) - 1;
}
if (_first == null) {
return;
}
var pp:PathPoint = _first;
while (pp.next != null && pp.next.progress < progress) {
pp = pp.next;
}
if (pp != null) {
var pathProg:Number = (progress - pp.progress) / (pp.length / _totalLength);
var px:Number = pp.x + pathProg * pp.xChange;
var py:Number = pp.y + pathProg * pp.yChange;
var m:Matrix = this.transform.matrix;
target.x = px * m.a + py * m.c + m.tx;
target.y = px * m.b + py * m.d + m.ty;
if (autoRotate) {
if (_prevMatrix.a != m.a || _prevMatrix.b != m.b || _prevMatrix.c != m.c || _prevMatrix.d != m.d) {
_updateAngles();
}
target.rotation = pp.angle + rotationOffset;
}
}
}
/**
* Translates the progress along a particular segment of the LinePath2D to an overall <code>progress</code>
* value, making it easy to position an object like "halfway along the 2nd segment of the line". For example:
* <br /><br /><code>
*
* path.addFollower(mc, path.getSegmentProgress(2, 0.5));
*
* </code>
*
* @param segment The segment number of the line. For example, a line defined by 3 Points would have two segments.
* @param progress The <code>progress</code> along the segment. For example, the midpoint of the second segment would be <code>getSegmentProgress(2, 0.5);</code>.
* @return The progress value (between 0 and 1) describing the overall progress on the entire LinePath2D.
*/
public function getSegmentProgress(segment:uint, progress:Number):Number {
if (_first == null) {
return 0;
} else if (_points.length <= segment) {
segment = _points.length;
}
var pp:PathPoint = _points[segment - 1];
return pp.progress + ((progress * pp.length) / _totalLength);
}
/**
* Allows you to snap an object like a Sprite, Point, MovieClip, etc. to the LinePath2D by determining
* the closest position along the line to the current position of the object. It will automatically
* create a PathFollower instance for the target object and reposition it on the LinePath2D.
*
* @param target The target object that should be repositioned onto the LinePath2D.
* @param autoRotate When <code>autoRotate</code> is <code>true</code>, the follower will automatically be rotated so that it is oriented to the angle of the path that it is following. To offset this value (like to always add 90 degrees for example), use the <code>rotationOffset</code> property.
* @param rotationOffset When <code>autoRotate</code> is <code>true</code>, this value will always be added to the resulting <code>rotation</code> of the target.
* @return A PathFollower instance that was created for the target.
*/
public function snap(target:Object, autoRotate:Boolean=false, rotationOffset:Number=0):PathFollower {
return this.addFollower(target, getClosestProgress(target), autoRotate, rotationOffset);
}
/**
* Finds the closest overall <code>progress</code> value on the LinePath2D based on the
* target object's current position (<code>x</code> and <code>y</code> properties). For example,
* to position the mc object on the LinePath2D at the spot that's closest to the Point x:100, y:50,
* you could do:<br /><br /><code>
*
* path.addFollower(mc, path.getClosestProgress(new Point(100, 50)));
*
* </code>
*
* @param target The target object whose position (x/y property values) are analyzed for proximity to the LinePath2D.
* @return The overall <code>progress</code> value describing the position on the LinePath2D that is closest to the target's current position.
*/
public function getClosestProgress(target:Object):Number {
if (_first == null || _points.length == 1) {
return 0;
}
var closestPath:PathPoint;
var closest:Number = 9999999999;
var length:Number = 0;
var halfPI:Number = Math.PI / 2;
var xTarg:Number = target.x;
var yTarg:Number = target.y;
var pp:PathPoint = _first;
var dxTarg:Number, dyTarg:Number, dxNext:Number, dyNext:Number, dTarg:Number, angle:Number, next:PathPoint, curDist:Number;
while (pp) {
dxTarg = xTarg - pp.x;
dyTarg = yTarg - pp.y;
next = (pp.next != null) ? pp.next : pp;
dxNext = next.x - pp.x;
dyNext = next.y - pp.y;
dTarg = Math.sqrt(dxTarg * dxTarg + dyTarg * dyTarg);
angle = Math.atan2(dyTarg, dxTarg) - Math.atan2(dyNext, dxNext);
if (angle < 0) {
angle = -angle;
}
if (angle > halfPI) { //obtuse
if (dTarg < closest) {
closest = dTarg;
closestPath = pp;
length = 0;
}
} else {
curDist = Math.cos(angle) * dTarg;
if (curDist < 0) {
curDist = -curDist;
}
if (curDist > pp.length) {
dxNext = xTarg - next.x;
dyNext = yTarg - next.y;
curDist = Math.sqrt(dxNext * dxNext + dyNext * dyNext);
if (curDist < closest) {
closest = curDist;
closestPath = pp;
length = pp.length;
}
} else {
curDist = Math.sin(angle) * dTarg;
if (curDist < closest) {
closest = curDist;
closestPath = pp;
length = Math.cos(angle) * dTarg;
}
}
}
pp = pp.next;
}
return closestPath.progress + (length / _totalLength);
}
//---- GETTERS / SETTERS ----------------------------------------------------------------------
/** Total length of the LinePath2D as though it were stretched out in a straight, flat line. **/
public function get totalLength():Number {
return _totalLength;
}
/** The array of Points through which the LinePath2D is drawn. IMPORTANT: Changes to the array are NOT automatically applied or reflected in the LinePath2D - just like the <code>filters</code> property of a DisplayObject, you must set the <code>points</code> property of a LinePath2D directly to ensure that any changes are applied internally. **/
public function get points():Array {
var a:Array = [];
var l:int = _points.length;
for (var i:int = 0; i < l; i++) {
a[i] = _points[i].point;
}
return a;
}
public function set points(value:Array):void {
_points = [];
insertMultiplePoints(value, 0);
}
}
}
import flash.geom.Point;
internal class PathPoint {
public var x:Number;
public var y:Number;
public var progress:Number;
public var xChange:Number;
public var yChange:Number;
public var point:Point;
public var length:Number;
public var angle:Number;
public var next:PathPoint;
public function PathPoint(point:Point) {
this.x = point.x;
this.y = point.y;
this.point = point;
}
}