forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTransform.js
More file actions
880 lines (656 loc) · 18.9 KB
/
Copy pathTransform.js
File metadata and controls
880 lines (656 loc) · 18.9 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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2016 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* 2D Transformation Component.
*
* @class
*/
Phaser.Component.Transform = function (gameObject, x, y, scaleX, scaleY)
{
if (x === undefined) { x = 0; }
if (y === undefined) { y = 0; }
if (scaleX === undefined) { scaleX = 1; }
if (scaleY === undefined) { scaleY = 1; }
this.gameObject = gameObject;
this.state = gameObject.state;
this.game = gameObject.state.game;
// Local Transform
// a = scale X
// b = shear Y
// c = shear X
// d = scale Y
// tx / ty = translation
// this.local = { a: scaleX, b: 0, c: 0, d: scaleY, tx: x, ty: y };
// World Transform
this.world = { a: scaleX, b: 0, c: 0, d: scaleY, tx: x, ty: y };
// Cached Transform Calculations
this.cache = { a: 1, b: 0, c: 0, d: 1, sr: 0, cr: 0 };
// GL Vertex Data
this.glVertextData = { x0: 0, y0: 0, x1: 0, y1: 0, x2: 0, y2: 0, x3: 0, y3: 0 };
this.hasLocalRotation = false;
// Private value holders, accessed via the getters and setters
this._posX = x;
this._posY = y;
this._scaleX = scaleX;
this._scaleY = scaleY;
this._rotation = 0;
this._pivotX = 0;
this._pivotY = 0;
this._anchorX = 0;
this._anchorY = 0;
this._worldRotation = 0;
this._worldScaleX = scaleX;
this._worldScaleY = scaleY;
this._dirty = true;
this.state.sys.updates.add(this);
// The parent Transform (NOT the parent GameObject, although very often they are related)
this.parent = null;
// Any child Transforms of this one - note that they don't have to belong to Game Objects
// that are children of the owner of this Transform
this.children = [];
};
Phaser.Component.Transform.prototype.constructor = Phaser.Component.Transform;
Phaser.Component.Transform.prototype = {
add: function (child)
{
return this.addAt(child, this.children.length);
},
addAt: function (child, index)
{
// Invalid child?
if (child === this || child.parent === this || index < 0 || index > this.children.length)
{
return child;
}
// Child already parented? Remove it
if (child.parent)
{
child.parent.remove(child);
}
child.parent = this;
this.children.splice(index, 0, child);
this.dirty = true;
this.updateAncestors();
return child;
},
remove: function (child)
{
// Invalid child?
if (child === this || child.parent !== this)
{
return child;
}
var index = this.children.indexOf(child);
if (index !== -1)
{
return this.removeAt(index);
}
},
removeAt: function (index)
{
// Valid index?
if (index >= 0 && index < this.children.length)
{
var child = this.children.splice(index, 1);
if (child[0])
{
child[0].parent = null;
return child[0];
}
}
},
setPosition: function (x, y)
{
if (y === undefined) { y = x; }
this._posX = x;
this._posY = y;
return this.update();
},
setScale: function (x, y)
{
if (y === undefined) { y = x; }
this._scaleX = x;
this._scaleY = y;
this.updateCache();
return this.update();
},
setPivot: function (x, y)
{
if (y === undefined) { y = x; }
this._pivotX = x;
this._pivotY = y;
return this.update();
},
setAnchor: function (x, y)
{
if (y === undefined) { y = x; }
this._anchorX = x;
this._anchorY = y;
this.dirty = true;
},
setRotation: function (rotation)
{
this.rotation = rotation;
return this.update();
},
// Updates the Transform.world object, ready for rendering
// Assuming this Transform is a root node (i.e. no transform parent)
updateFromRoot: function ()
{
if (this.hasLocalRotation)
{
// console.log(this.name, 'Transform.updateFromRoot');
this.world.a = this.cache.a;
this.world.b = this.cache.b;
this.world.c = this.cache.c;
this.world.d = this.cache.d;
this.world.tx = this._posX - ((this._pivotX * this.cache.a) + (this._pivotY * this.cache.c));
this.world.ty = this._posY - ((this._pivotX * this.cache.b) + (this._pivotY * this.cache.d));
this._worldRotation = Math.atan2(-this.cache.c, this.cache.d);
}
else
{
// console.log(this.name, 'Transform.updateFromRoot FAST');
this.world.a = this._scaleX;
this.world.b = 0;
this.world.c = 0;
this.world.d = this._scaleY;
this.world.tx = this._posX - (this._pivotX * this._scaleX);
this.world.ty = this._posY - (this._pivotY * this._scaleY);
this._worldRotation = 0;
}
this._worldScaleX = this._scaleX;
this._worldScaleY = this._scaleY;
return this;
},
updateFromParent: function ()
{
var parent = this.parent.world;
var tx = 0;
var ty = 0;
if (this.hasLocalRotation)
{
// console.log(this.name, 'Transform.updateFromParent', this.parent.name);
var a = this.cache.a;
var b = this.cache.b;
var c = this.cache.c;
var d = this.cache.d;
tx = this._posX - ((this._pivotX * a) + (this._pivotY * c));
ty = this._posY - ((this._pivotX * b) + (this._pivotY * d));
this.world.a = (a * parent.a) + (b * parent.c);
this.world.b = (a * parent.b) + (b * parent.d);
this.world.c = (c * parent.a) + (d * parent.c);
this.world.d = (c * parent.b) + (d * parent.d);
}
else
{
// console.log(this.name, 'Transform.updateFromParent FAST', this.parent.name);
tx = this._posX - (this._pivotX * this._scaleX);
ty = this._posY - (this._pivotY * this._scaleY);
this.world.a = this._scaleX * parent.a;
this.world.b = this._scaleX * parent.b;
this.world.c = this._scaleY * parent.c;
this.world.d = this._scaleY * parent.d;
}
this._worldRotation = Math.atan2(-this.world.c, this.world.d);
this.world.tx = (tx * parent.a) + (ty * parent.c) + parent.tx;
this.world.ty = (tx * parent.b) + (ty * parent.d) + parent.ty;
this._worldScaleX = this._scaleX * Math.sqrt((this.world.a * this.world.a) + (this.world.c * this.world.c));
this._worldScaleY = this._scaleY * Math.sqrt((this.world.b * this.world.b) + (this.world.d * this.world.d));
return this;
},
updateAncestors: function ()
{
// console.log(this.name, 'Transform.updateAncestors');
// No parent? Then just update the children and leave, our job is done
if (!this.parent)
{
// console.log(this.name, 'updateAncestors has no parent Transform');
this.updateFromRoot();
this.updateChildren();
this.dirty = false;
return this;
}
// console.log(this.name, 'start updateAncestors while');
// Gets all parent nodes, starting from this Transform.
// Then updates from the top, down, but only on the ancestors,
// not any other children - will give us accurate worldX etc properties
var node = this.parent;
var nodes = [];
do
{
nodes.push(node);
node = node.parent;
}
while (node);
// We've got all the ancestors in the 'nodes' array, let's loop it
while (nodes.length)
{
node = nodes.pop();
if (node.parent)
{
node.updateFromParent();
}
else
{
node.updateFromRoot();
}
}
// By this point all of this Transforms ancestors have been
// updated, in the correct order, so we can now do this one
// and any of its children too
this.update();
},
updateChildren: function ()
{
// console.log(this.name, 'Transform.updateChildren');
for (var i = 0; i < this.children.length; i++)
{
this.children[i].update();
}
},
updateFromDirtyParent: function ()
{
// console.log(this.name, 'is updateFromDirtyParent', this.parent.name);
this.updateFromParent();
if (this.gameObject.frame)
{
this.updateVertexData();
}
if (this.children.length)
{
for (var i = 0; i < this.children.length; i++)
{
this.children[i].updateFromDirtyParent();
}
}
this._dirty = false;
},
update: function ()
{
// if (this.parent)
// {
// console.log('**', this.name, 'Transform.update. Dirty?', this.dirty, 'Parent:', this.parent.name);
// }
// else
// {
// console.log('**', this.name, 'Transform.update. Dirty?', this.dirty, 'No Parent');
// }
if (!this._dirty)
{
return;
}
// If we got this far then this Transform is dirty
// so we need to update it from its parent
// and then force the update to all children
if (this.parent)
{
this.updateFromParent();
}
else
{
this.updateFromRoot();
}
var len = this.children.length;
if (len)
{
for (var i = 0; i < len; i++)
{
this.children[i].updateFromDirtyParent();
}
}
if (this.gameObject.frame)
{
// console.log(this.name, 'updateVertexData');
this.updateVertexData();
}
this._dirty = false;
},
updateCache: function ()
{
this.cache.a = this.cache.cr * this._scaleX;
this.cache.b = this.cache.sr * this._scaleX;
this.cache.c = -this.cache.sr * this._scaleY;
this.cache.d = this.cache.cr * this._scaleY;
},
updateVertexData: function ()
{
var frame = this.gameObject.frame;
var w0;
var h0;
var w1;
var h1;
if (frame.data.trim)
{
// If the sprite is trimmed, add the extra space before transforming
w1 = frame.x - (this._anchorX * frame.width);
w0 = w1 + frame.cutWidth;
h1 = frame.y - (this._anchorY * frame.height);
h0 = h1 + frame.cutHeight;
}
else
{
// w0 = frame.width * (1 - this._anchorX);
// w1 = frame.width * -this._anchorX;
// h0 = frame.height * (1 - this._anchorY);
// h1 = frame.height * -this._anchorY;
w0 = frame.cutWidth * (1 - this._anchorX);
w1 = frame.cutWidth * -this._anchorX;
h0 = frame.cutHeight * (1 - this._anchorY);
h1 = frame.cutHeight * -this._anchorY;
}
var resolution = frame.source.resolution;
var wt = this.world;
var a = wt.a / resolution;
var b = wt.b / resolution;
var c = wt.c / resolution;
var d = wt.d / resolution;
var tx = wt.tx;
var ty = wt.ty;
if (frame.rotated)
{
// var cw = frame.cutWidth;
var ch = frame.height;
var a0 = a;
var b0 = b;
var c0 = c;
var d0 = d;
var _w1 = w1;
var _w0 = w0;
// Offset before rotating
tx = (wt.c * ch) + tx;
ty = (wt.d * ch) + ty;
// Rotate matrix by 90 degrees with precalc values for sine and cosine of rad(90)
a = (a0 * 6.123233995736766e-17) + -c0;
b = (b0 * 6.123233995736766e-17) + -d0;
c = a0 + (c0 * 6.123233995736766e-17);
d = b0 + (d0 * 6.123233995736766e-17);
// Update UV coordinates
frame.updateUVsInverted();
// Rotate dimensions
w0 = h0;
w1 = h1;
h0 = _w0;
h1 = _w1;
}
if (frame.autoRound === 1 || (frame.autoRound === -1 && this.game.renderer.roundPixels))
{
tx |= 0;
ty |= 0;
}
var vert = this.glVertextData;
// Top Left Vert
vert.x0 = (a * w1) + (c * h1) + tx;
vert.y0 = (d * h1) + (b * w1) + ty;
// Top Right Vert
vert.x1 = (a * w0) + (c * h1) + tx;
vert.y1 = (d * h1) + (b * w0) + ty;
// Bottom Right Vert
vert.x2 = (a * w0) + (c * h0) + tx;
vert.y2 = (d * h0) + (b * w0) + ty;
// Bottom Left Vert
vert.x3 = (a * w1) + (c * h0) + tx;
vert.y3 = (d * h0) + (b * w1) + ty;
// console.log('Vertex Data for', this.name);
// console.log(vert);
},
getVertexData: function (interpolationPercentage)
{
return this.glVertextData;
},
cloneVertexData: function ()
{
var src = this.glVertextData;
return {
x0: src.x0,
y0: src.y0,
x1: src.x1,
y1: src.y1,
x2: src.x2,
y2: src.y2,
x3: src.x3,
y3: src.y3
};
}
};
Object.defineProperties(Phaser.Component.Transform.prototype, {
// Transform getters / setters
x: {
enumerable: true,
get: function ()
{
return this._posX;
},
set: function (value)
{
this._posX = value;
this.dirty = true;
}
},
y: {
enumerable: true,
get: function ()
{
return this._posY;
},
set: function (value)
{
this._posY = value;
this.dirty = true;
}
},
scale: {
enumerable: true,
get: function ()
{
return this._scaleX;
},
set: function (value)
{
this._scaleX = value;
this._scaleY = value;
this.dirty = true;
this.updateCache();
}
},
scaleX: {
enumerable: true,
get: function ()
{
return this._scaleX;
},
set: function (value)
{
this._scaleX = value;
this.dirty = true;
this.updateCache();
}
},
scaleY: {
enumerable: true,
get: function ()
{
return this._scaleY;
},
set: function (value)
{
this._scaleY = value;
this.dirty = true;
this.updateCache();
}
},
anchor: {
enumerable: true,
get: function ()
{
return this._anchorX;
},
set: function (value)
{
this.setAnchor(value);
}
},
anchorX: {
enumerable: true,
get: function ()
{
return this._anchorX;
},
set: function (value)
{
this._anchorX = value;
this.dirty = true;
}
},
anchorY: {
enumerable: true,
get: function ()
{
return this._anchorY;
},
set: function (value)
{
this._anchorY = value;
this.dirty = true;
}
},
pivotX: {
enumerable: true,
get: function ()
{
return this._pivotX;
},
set: function (value)
{
this._pivotX = value;
this.dirty = true;
this.updateCache();
}
},
pivotY: {
enumerable: true,
get: function ()
{
return this._pivotY;
},
set: function (value)
{
this._pivotY = value;
this.dirty = true;
this.updateCache();
}
},
angle: {
enumerable: true,
get: function ()
{
return Phaser.Math.wrapAngle(this.rotation * Phaser.Math.RAD_TO_DEG);
},
set: function (value)
{
this.rotation = Phaser.Math.wrapAngle(value) * Phaser.Math.DEG_TO_RAD;
}
},
rotation: {
enumerable: true,
get: function ()
{
return this._rotation;
},
set: function (value)
{
if (this._rotation === value)
{
return;
}
this._rotation = value;
this.dirty = true;
if (this._rotation % Phaser.Math.PI2)
{
this.cache.sr = Math.sin(this._rotation);
this.cache.cr = Math.cos(this._rotation);
this.updateCache();
this.hasLocalRotation = true;
}
else
{
this.hasLocalRotation = false;
}
}
},
// Sets this *component* as being dirty
dirty: {
enumerable: true,
get: function ()
{
return this._dirty;
},
set: function (value)
{
if (value)
{
if (!this._dirty)
{
this.state.sys.updates.add(this);
}
this._dirty = true;
}
else
{
this._dirty = false;
}
}
},
// GLOBAL read-only properties from here on
// Need *all* parents taken into account to get the correct values
name: {
enumerable: true,
get: function ()
{
return (this.gameObject) ? this.gameObject.name : '';
}
},
worldRotation: {
enumerable: true,
get: function ()
{
this.updateAncestors();
return this._worldRotation;
}
},
worldScaleX: {
enumerable: true,
get: function ()
{
this.updateAncestors();
return this._worldScaleX;
}
},
worldScaleY: {
enumerable: true,
get: function ()
{
this.updateAncestors();
return this._worldScaleY;
}
},
worldX: {
enumerable: true,
get: function ()
{
this.updateAncestors();
return this.world.tx;
}
},
worldY: {
enumerable: true,
get: function ()
{
this.updateAncestors();
return this.world.ty;
}
}
});