forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStaticTilemapLayer.js
More file actions
1488 lines (1329 loc) · 57.5 KB
/
Copy pathStaticTilemapLayer.js
File metadata and controls
1488 lines (1329 loc) · 57.5 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
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Class = require('../../utils/Class');
var Components = require('../../gameobjects/components');
var GameEvents = require('../../core/events');
var GameObject = require('../../gameobjects/GameObject');
var StaticTilemapLayerRender = require('./StaticTilemapLayerRender');
var TilemapComponents = require('../components');
var TransformMatrix = require('../../gameobjects/components/TransformMatrix');
var Utils = require('../../renderer/webgl/Utils');
/**
* @classdesc
* A Static Tilemap Layer is a Game Object that renders LayerData from a Tilemap when used in combination
* with one, or more, Tilesets.
*
* A Static Tilemap Layer is optimized for rendering speed over flexibility. You cannot apply per-tile
* effects like tint or alpha, or change the tiles or tilesets the layer uses.
*
* Use a Static Tilemap Layer instead of a Dynamic Tilemap Layer when you don't need tile manipulation features.
*
* @class StaticTilemapLayer
* @extends Phaser.GameObjects.GameObject
* @memberof Phaser.Tilemaps
* @constructor
* @since 3.0.0
*
* @extends Phaser.GameObjects.Components.Alpha
* @extends Phaser.GameObjects.Components.BlendMode
* @extends Phaser.GameObjects.Components.ComputedSize
* @extends Phaser.GameObjects.Components.Depth
* @extends Phaser.GameObjects.Components.Flip
* @extends Phaser.GameObjects.Components.GetBounds
* @extends Phaser.GameObjects.Components.Origin
* @extends Phaser.GameObjects.Components.Pipeline
* @extends Phaser.GameObjects.Components.Transform
* @extends Phaser.GameObjects.Components.Visible
* @extends Phaser.GameObjects.Components.ScrollFactor
*
* @param {Phaser.Scene} scene - The Scene to which this Game Object belongs.
* @param {Phaser.Tilemaps.Tilemap} tilemap - The Tilemap this layer is a part of.
* @param {integer} layerIndex - The index of the LayerData associated with this layer.
* @param {(string|string[]|Phaser.Tilemaps.Tileset|Phaser.Tilemaps.Tileset[])} tileset - The tileset, or an array of tilesets, used to render this layer. Can be a string or a Tileset object.
* @param {number} [x=0] - The world x position where the top left of this layer will be placed.
* @param {number} [y=0] - The world y position where the top left of this layer will be placed.
*/
var StaticTilemapLayer = new Class({
Extends: GameObject,
Mixins: [
Components.Alpha,
Components.BlendMode,
Components.ComputedSize,
Components.Depth,
Components.Flip,
Components.GetBounds,
Components.Origin,
Components.Pipeline,
Components.Transform,
Components.Visible,
Components.ScrollFactor,
StaticTilemapLayerRender
],
initialize:
function StaticTilemapLayer (scene, tilemap, layerIndex, tileset, x, y)
{
GameObject.call(this, scene, 'StaticTilemapLayer');
/**
* Used internally by physics system to perform fast type checks.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#isTilemap
* @type {boolean}
* @readonly
* @since 3.0.0
*/
this.isTilemap = true;
/**
* The Tilemap that this layer is a part of.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#tilemap
* @type {Phaser.Tilemaps.Tilemap}
* @since 3.0.0
*/
this.tilemap = tilemap;
/**
* The index of the LayerData associated with this layer.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#layerIndex
* @type {integer}
* @since 3.0.0
*/
this.layerIndex = layerIndex;
/**
* The LayerData associated with this layer. LayerData can only be associated with one
* tilemap layer.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#layer
* @type {Phaser.Tilemaps.LayerData}
* @since 3.0.0
*/
this.layer = tilemap.layers[layerIndex];
// Link the LayerData with this static tilemap layer
this.layer.tilemapLayer = this;
/**
* The Tileset/s associated with this layer.
*
* As of Phaser 3.14 this property is now an array of Tileset objects, previously it was a single reference.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#tileset
* @type {Phaser.Tilemaps.Tileset[]}
* @since 3.0.0
*/
this.tileset = [];
/**
* Used internally by the Canvas renderer.
* This holds the tiles that are visible within the camera in the last frame.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#culledTiles
* @type {array}
* @since 3.0.0
*/
this.culledTiles = [];
/**
* Canvas only.
*
* You can control if the Cameras should cull tiles before rendering them or not.
* By default the camera will try to cull the tiles in this layer, to avoid over-drawing to the renderer.
*
* However, there are some instances when you may wish to disable this, and toggling this flag allows
* you to do so. Also see `setSkipCull` for a chainable method that does the same thing.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#skipCull
* @type {boolean}
* @since 3.12.0
*/
this.skipCull = false;
/**
* Canvas only.
*
* The total number of tiles drawn by the renderer in the last frame.
*
* This only works when rending with Canvas.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#tilesDrawn
* @type {integer}
* @readonly
* @since 3.12.0
*/
this.tilesDrawn = 0;
/**
* Canvas only.
*
* The total number of tiles in this layer. Updated every frame.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#tilesTotal
* @type {integer}
* @readonly
* @since 3.12.0
*/
this.tilesTotal = this.layer.width * this.layer.height;
/**
* Canvas only.
*
* The amount of extra tiles to add into the cull rectangle when calculating its horizontal size.
*
* See the method `setCullPadding` for more details.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#cullPaddingX
* @type {integer}
* @default 1
* @since 3.12.0
*/
this.cullPaddingX = 1;
/**
* Canvas only.
*
* The amount of extra tiles to add into the cull rectangle when calculating its vertical size.
*
* See the method `setCullPadding` for more details.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#cullPaddingY
* @type {integer}
* @default 1
* @since 3.12.0
*/
this.cullPaddingY = 1;
/**
* Canvas only.
*
* The callback that is invoked when the tiles are culled.
*
* By default it will call `TilemapComponents.CullTiles` but you can override this to call any function you like.
*
* It will be sent 3 arguments:
*
* 1. The Phaser.Tilemaps.LayerData object for this Layer
* 2. The Camera that is culling the layer. You can check its `dirty` property to see if it has changed since the last cull.
* 3. A reference to the `culledTiles` array, which should be used to store the tiles you want rendered.
*
* See the `TilemapComponents.CullTiles` source code for details on implementing your own culling system.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#cullCallback
* @type {function}
* @since 3.12.0
*/
this.cullCallback = TilemapComponents.CullTiles;
/**
* A reference to the renderer.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#renderer
* @type {(Phaser.Renderer.Canvas.CanvasRenderer|Phaser.Renderer.WebGL.WebGLRenderer)}
* @private
* @since 3.0.0
*/
this.renderer = scene.sys.game.renderer;
/**
* An array of vertex buffer objects, used by the WebGL renderer.
*
* As of Phaser 3.14 this property is now an array, where each element maps to a Tileset instance. Previously it was a single instance.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#vertexBuffer
* @type {WebGLBuffer[]}
* @private
* @since 3.0.0
*/
this.vertexBuffer = [];
/**
* An array of ArrayBuffer objects, used by the WebGL renderer.
*
* As of Phaser 3.14 this property is now an array, where each element maps to a Tileset instance. Previously it was a single instance.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#bufferData
* @type {ArrayBuffer[]}
* @private
* @since 3.0.0
*/
this.bufferData = [];
/**
* An array of Float32 Array objects, used by the WebGL renderer.
*
* As of Phaser 3.14 this property is now an array, where each element maps to a Tileset instance. Previously it was a single instance.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#vertexViewF32
* @type {Float32Array[]}
* @private
* @since 3.0.0
*/
this.vertexViewF32 = [];
/**
* An array of Uint32 Array objects, used by the WebGL renderer.
*
* As of Phaser 3.14 this property is now an array, where each element maps to a Tileset instance. Previously it was a single instance.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#vertexViewU32
* @type {Uint32Array[]}
* @private
* @since 3.0.0
*/
this.vertexViewU32 = [];
/**
* An array of booleans, used by the WebGL renderer.
*
* As of Phaser 3.14 this property is now an array, where each element maps to a Tileset instance. Previously it was a single boolean.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#dirty
* @type {boolean[]}
* @private
* @since 3.0.0
*/
this.dirty = [];
/**
* An array of integers, used by the WebGL renderer.
*
* As of Phaser 3.14 this property is now an array, where each element maps to a Tileset instance. Previously it was a single integer.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#vertexCount
* @type {integer[]}
* @private
* @since 3.0.0
*/
this.vertexCount = [];
/**
* The rendering (draw) order of the tiles in this layer.
*
* The default is 0 which is 'right-down', meaning it will draw the tiles starting from the top-left,
* drawing to the right and then moving down to the next row.
*
* The draw orders are:
*
* 0 = right-down
* 1 = left-down
* 2 = right-up
* 3 = left-up
*
* This can be changed via the `setRenderOrder` method.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#_renderOrder
* @type {integer}
* @default 0
* @private
* @since 3.12.0
*/
this._renderOrder = 0;
/**
* A temporary Transform Matrix, re-used internally during batching.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#_tempMatrix
* @private
* @type {Phaser.GameObjects.Components.TransformMatrix}
* @since 3.14.0
*/
this._tempMatrix = new TransformMatrix();
/**
* An array holding the mapping between the tile indexes and the tileset they belong to.
*
* @name Phaser.Tilemaps.StaticTilemapLayer#gidMap
* @type {Phaser.Tilemaps.Tileset[]}
* @since 3.14.0
*/
this.gidMap = [];
this.setTilesets(tileset);
this.setAlpha(this.layer.alpha);
this.setPosition(x, y);
this.setOrigin();
this.setSize(tilemap.tileWidth * this.layer.width, tilemap.tileHeight * this.layer.height);
this.updateVBOData();
this.initPipeline('TextureTintPipeline');
scene.sys.game.events.on(GameEvents.CONTEXT_RESTORED, function ()
{
this.updateVBOData();
}, this);
},
/**
* Populates the internal `tileset` array with the Tileset references this Layer requires for rendering.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#setTilesets
* @private
* @since 3.14.0
*
* @param {(string|string[]|Phaser.Tilemaps.Tileset|Phaser.Tilemaps.Tileset[])} tileset - The tileset, or an array of tilesets, used to render this layer. Can be a string or a Tileset object.
*/
setTilesets: function (tilesets)
{
var gidMap = [];
var setList = [];
var map = this.tilemap;
if (!Array.isArray(tilesets))
{
tilesets = [ tilesets ];
}
for (var i = 0; i < tilesets.length; i++)
{
var tileset = tilesets[i];
if (typeof tileset === 'string')
{
tileset = map.getTileset(tileset);
}
if (tileset)
{
setList.push(tileset);
var s = tileset.firstgid;
for (var t = 0; t < tileset.total; t++)
{
gidMap[s + t] = tileset;
}
}
}
this.gidMap = gidMap;
this.tileset = setList;
},
/**
* Prepares the VBO data arrays for population by the `upload` method.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#updateVBOData
* @private
* @since 3.14.0
*
* @return {this} This Tilemap Layer object.
*/
updateVBOData: function ()
{
for (var i = 0; i < this.tileset.length; i++)
{
this.dirty[i] = true;
this.vertexCount[i] = 0;
this.vertexBuffer[i] = null;
this.bufferData[i] = null;
this.vertexViewF32[i] = null;
this.vertexViewU32[i] = null;
}
return this;
},
/**
* Upload the tile data to a VBO.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#upload
* @since 3.0.0
*
* @param {Phaser.Cameras.Scene2D.Camera} camera - The camera to render to.
* @param {integer} tilesetIndex - The tileset index.
*
* @return {Phaser.Tilemaps.StaticTilemapLayer} This Tilemap Layer object.
*/
upload: function (camera, tilesetIndex)
{
var renderer = this.renderer;
var gl = renderer.gl;
var pipeline = renderer.pipelines.TextureTintPipeline;
if (this.dirty[tilesetIndex])
{
var tileset = this.tileset[tilesetIndex];
var mapWidth = this.layer.width;
var mapHeight = this.layer.height;
var width = tileset.image.source[0].width;
var height = tileset.image.source[0].height;
var mapData = this.layer.data;
var tile;
var row;
var col;
var renderOrder = this._renderOrder;
var minTileIndex = tileset.firstgid;
var maxTileIndex = tileset.firstgid + tileset.total;
var vertexBuffer = this.vertexBuffer[tilesetIndex];
var bufferData = this.bufferData[tilesetIndex];
var vOffset = -1;
var bufferSize = (mapWidth * mapHeight) * pipeline.vertexSize * 6;
this.vertexCount[tilesetIndex] = 0;
if (bufferData === null)
{
bufferData = new ArrayBuffer(bufferSize);
this.bufferData[tilesetIndex] = bufferData;
this.vertexViewF32[tilesetIndex] = new Float32Array(bufferData);
this.vertexViewU32[tilesetIndex] = new Uint32Array(bufferData);
}
if (renderOrder === 0)
{
// right-down
for (row = 0; row < mapHeight; row++)
{
for (col = 0; col < mapWidth; col++)
{
tile = mapData[row][col];
if (!tile || tile.index < minTileIndex || tile.index > maxTileIndex || !tile.visible)
{
continue;
}
vOffset = this.batchTile(vOffset, tile, tileset, width, height, camera, tilesetIndex);
}
}
}
else if (renderOrder === 1)
{
// left-down
for (row = 0; row < mapHeight; row++)
{
for (col = mapWidth - 1; col >= 0; col--)
{
tile = mapData[row][col];
if (!tile || tile.index < minTileIndex || tile.index > maxTileIndex || !tile.visible)
{
continue;
}
vOffset = this.batchTile(vOffset, tile, tileset, width, height, camera, tilesetIndex);
}
}
}
else if (renderOrder === 2)
{
// right-up
for (row = mapHeight - 1; row >= 0; row--)
{
for (col = 0; col < mapWidth; col++)
{
tile = mapData[row][col];
if (!tile || tile.index < minTileIndex || tile.index > maxTileIndex || !tile.visible)
{
continue;
}
vOffset = this.batchTile(vOffset, tile, tileset, width, height, camera, tilesetIndex);
}
}
}
else if (renderOrder === 3)
{
// left-up
for (row = mapHeight - 1; row >= 0; row--)
{
for (col = mapWidth - 1; col >= 0; col--)
{
tile = mapData[row][col];
if (!tile || tile.index < minTileIndex || tile.index > maxTileIndex || !tile.visible)
{
continue;
}
vOffset = this.batchTile(vOffset, tile, tileset, width, height, camera, tilesetIndex);
}
}
}
this.dirty[tilesetIndex] = false;
if (vertexBuffer === null)
{
vertexBuffer = renderer.createVertexBuffer(bufferData, gl.STATIC_DRAW);
this.vertexBuffer[tilesetIndex] = vertexBuffer;
}
else
{
renderer.setVertexBuffer(vertexBuffer);
gl.bufferSubData(gl.ARRAY_BUFFER, 0, bufferData);
}
}
return this;
},
/**
* Add a single tile into the batch.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#batchTile
* @private
* @since 3.12.0
*
* @param {integer} vOffset - The vertex offset.
* @param {any} tile - The tile being rendered.
* @param {any} tileset - The tileset being used for rendering.
* @param {integer} width - The width of the tileset image in pixels.
* @param {integer} height - The height of the tileset image in pixels.
* @param {Phaser.Cameras.Scene2D.Camera} camera - The camera the layer is being rendered with.
* @param {integer} tilesetIndex - The tileset index.
*
* @return {integer} The new vOffset value.
*/
batchTile: function (vOffset, tile, tileset, width, height, camera, tilesetIndex)
{
var texCoords = tileset.getTileTextureCoordinates(tile.index);
if (!texCoords)
{
return vOffset;
}
var tileWidth = tileset.tileWidth;
var tileHeight = tileset.tileHeight;
var halfTileWidth = tileWidth / 2;
var halfTileHeight = tileHeight / 2;
var u0 = texCoords.x / width;
var v0 = texCoords.y / height;
var u1 = (texCoords.x + tileWidth) / width;
var v1 = (texCoords.y + tileHeight) / height;
var matrix = this._tempMatrix;
var x = -halfTileWidth;
var y = -halfTileHeight;
if (tile.flipX)
{
tileWidth *= -1;
x += tileset.tileWidth;
}
if (tile.flipY)
{
tileHeight *= -1;
y += tileset.tileHeight;
}
var xw = x + tileWidth;
var yh = y + tileHeight;
matrix.applyITRS(halfTileWidth + tile.pixelX, halfTileHeight + tile.pixelY, tile.rotation, 1, 1);
var tint = Utils.getTintAppendFloatAlpha(0xffffff, camera.alpha * this.alpha * tile.alpha);
var tx0 = matrix.getX(x, y);
var ty0 = matrix.getY(x, y);
var tx1 = matrix.getX(x, yh);
var ty1 = matrix.getY(x, yh);
var tx2 = matrix.getX(xw, yh);
var ty2 = matrix.getY(xw, yh);
var tx3 = matrix.getX(xw, y);
var ty3 = matrix.getY(xw, y);
if (camera.roundPixels)
{
tx0 = Math.round(tx0);
ty0 = Math.round(ty0);
tx1 = Math.round(tx1);
ty1 = Math.round(ty1);
tx2 = Math.round(tx2);
ty2 = Math.round(ty2);
tx3 = Math.round(tx3);
ty3 = Math.round(ty3);
}
var vertexViewF32 = this.vertexViewF32[tilesetIndex];
var vertexViewU32 = this.vertexViewU32[tilesetIndex];
vertexViewF32[++vOffset] = tx0;
vertexViewF32[++vOffset] = ty0;
vertexViewF32[++vOffset] = u0;
vertexViewF32[++vOffset] = v0;
vertexViewF32[++vOffset] = 0;
vertexViewU32[++vOffset] = tint;
vertexViewF32[++vOffset] = tx1;
vertexViewF32[++vOffset] = ty1;
vertexViewF32[++vOffset] = u0;
vertexViewF32[++vOffset] = v1;
vertexViewF32[++vOffset] = 0;
vertexViewU32[++vOffset] = tint;
vertexViewF32[++vOffset] = tx2;
vertexViewF32[++vOffset] = ty2;
vertexViewF32[++vOffset] = u1;
vertexViewF32[++vOffset] = v1;
vertexViewF32[++vOffset] = 0;
vertexViewU32[++vOffset] = tint;
vertexViewF32[++vOffset] = tx0;
vertexViewF32[++vOffset] = ty0;
vertexViewF32[++vOffset] = u0;
vertexViewF32[++vOffset] = v0;
vertexViewF32[++vOffset] = 0;
vertexViewU32[++vOffset] = tint;
vertexViewF32[++vOffset] = tx2;
vertexViewF32[++vOffset] = ty2;
vertexViewF32[++vOffset] = u1;
vertexViewF32[++vOffset] = v1;
vertexViewF32[++vOffset] = 0;
vertexViewU32[++vOffset] = tint;
vertexViewF32[++vOffset] = tx3;
vertexViewF32[++vOffset] = ty3;
vertexViewF32[++vOffset] = u1;
vertexViewF32[++vOffset] = v0;
vertexViewF32[++vOffset] = 0;
vertexViewU32[++vOffset] = tint;
this.vertexCount[tilesetIndex] += 6;
return vOffset;
},
/**
* Sets the rendering (draw) order of the tiles in this layer.
*
* The default is 'right-down', meaning it will order the tiles starting from the top-left,
* drawing to the right and then moving down to the next row.
*
* The draw orders are:
*
* 0 = right-down
* 1 = left-down
* 2 = right-up
* 3 = left-up
*
* Setting the render order does not change the tiles or how they are stored in the layer,
* it purely impacts the order in which they are rendered.
*
* You can provide either an integer (0 to 3), or the string version of the order.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#setRenderOrder
* @since 3.12.0
*
* @param {(integer|string)} renderOrder - The render (draw) order value. Either an integer between 0 and 3, or a string: 'right-down', 'left-down', 'right-up' or 'left-up'.
*
* @return {this} This Tilemap Layer object.
*/
setRenderOrder: function (renderOrder)
{
var orders = [ 'right-down', 'left-down', 'right-up', 'left-up' ];
if (typeof renderOrder === 'string')
{
renderOrder = orders.indexOf(renderOrder);
}
if (renderOrder >= 0 && renderOrder < 4)
{
this._renderOrder = renderOrder;
for (var i = 0; i < this.tileset.length; i++)
{
this.dirty[i] = true;
}
}
return this;
},
/**
* Calculates interesting faces at the given tile coordinates of the specified layer. Interesting
* faces are used internally for optimizing collisions against tiles. This method is mostly used
* internally to optimize recalculating faces when only one tile has been changed.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#calculateFacesAt
* @since 3.0.0
*
* @param {integer} tileX - The x coordinate.
* @param {integer} tileY - The y coordinate.
*
* @return {Phaser.Tilemaps.StaticTilemapLayer} This Tilemap Layer object.
*/
calculateFacesAt: function (tileX, tileY)
{
TilemapComponents.CalculateFacesAt(tileX, tileY, this.layer);
return this;
},
/**
* Calculates interesting faces within the rectangular area specified (in tile coordinates) of the
* layer. Interesting faces are used internally for optimizing collisions against tiles. This method
* is mostly used internally.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#calculateFacesWithin
* @since 3.0.0
*
* @param {integer} [tileX=0] - The left most tile index (in tile coordinates) to use as the origin of the area.
* @param {integer} [tileY=0] - The top most tile index (in tile coordinates) to use as the origin of the area.
* @param {integer} [width=max width based on tileX] - How many tiles wide from the `tileX` index the area will be.
* @param {integer} [height=max height based on tileY] - How many tiles tall from the `tileY` index the area will be.
*
* @return {Phaser.Tilemaps.StaticTilemapLayer} This Tilemap Layer object.
*/
calculateFacesWithin: function (tileX, tileY, width, height)
{
TilemapComponents.CalculateFacesWithin(tileX, tileY, width, height, this.layer);
return this;
},
/**
* Creates a Sprite for every object matching the given tile indexes in the layer. You can
* optionally specify if each tile will be replaced with a new tile after the Sprite has been
* created. This is useful if you want to lay down special tiles in a level that are converted to
* Sprites, but want to replace the tile itself with a floor tile or similar once converted.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#createFromTiles
* @since 3.0.0
*
* @param {(integer|array)} indexes - The tile index, or array of indexes, to create Sprites from.
* @param {(integer|array)} replacements - The tile index, or array of indexes, to change a converted
* tile to. Set to `null` to leave the tiles unchanged. If an array is given, it is assumed to be a
* one-to-one mapping with the indexes array.
* @param {Phaser.Types.GameObjects.Sprite.SpriteConfig} spriteConfig - The config object to pass into the Sprite creator (i.e.
* scene.make.sprite).
* @param {Phaser.Scene} [scene=scene the map is within] - The Scene to create the Sprites within.
* @param {Phaser.Cameras.Scene2D.Camera} [camera=main camera] - The Camera to use when determining the world XY
*
* @return {Phaser.GameObjects.Sprite[]} An array of the Sprites that were created.
*/
createFromTiles: function (indexes, replacements, spriteConfig, scene, camera)
{
return TilemapComponents.CreateFromTiles(indexes, replacements, spriteConfig, scene, camera, this.layer);
},
/**
* Returns the tiles in the given layer that are within the cameras viewport.
* This is used internally.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#cull
* @since 3.0.0
*
* @param {Phaser.Cameras.Scene2D.Camera} [camera] - The Camera to run the cull check against.
*
* @return {Phaser.Tilemaps.Tile[]} An array of Tile objects.
*/
cull: function (camera)
{
return this.cullCallback(this.layer, camera, this.culledTiles);
},
/**
* Canvas only.
*
* You can control if the Cameras should cull tiles before rendering them or not.
* By default the camera will try to cull the tiles in this layer, to avoid over-drawing to the renderer.
*
* However, there are some instances when you may wish to disable this.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#setSkipCull
* @since 3.12.0
*
* @param {boolean} [value=true] - Set to `true` to stop culling tiles. Set to `false` to enable culling again.
*
* @return {this} This Tilemap Layer object.
*/
setSkipCull: function (value)
{
if (value === undefined) { value = true; }
this.skipCull = value;
return this;
},
/**
* Canvas only.
*
* When a Camera culls the tiles in this layer it does so using its view into the world, building up a
* rectangle inside which the tiles must exist or they will be culled. Sometimes you may need to expand the size
* of this 'cull rectangle', especially if you plan on rotating the Camera viewing the layer. Do so
* by providing the padding values. The values given are in tiles, not pixels. So if the tile width was 32px
* and you set `paddingX` to be 4, it would add 32px x 4 to the cull rectangle (adjusted for scale)
*
* @method Phaser.Tilemaps.StaticTilemapLayer#setCullPadding
* @since 3.12.0
*
* @param {integer} [paddingX=1] - The amount of extra horizontal tiles to add to the cull check padding.
* @param {integer} [paddingY=1] - The amount of extra vertical tiles to add to the cull check padding.
*
* @return {this} This Tilemap Layer object.
*/
setCullPadding: function (paddingX, paddingY)
{
if (paddingX === undefined) { paddingX = 1; }
if (paddingY === undefined) { paddingY = 1; }
this.cullPaddingX = paddingX;
this.cullPaddingY = paddingY;
return this;
},
/**
* Searches the entire map layer for the first tile matching the given index, then returns that Tile
* object. If no match is found, it returns null. The search starts from the top-left tile and
* continues horizontally until it hits the end of the row, then it drops down to the next column.
* If the reverse boolean is true, it scans starting from the bottom-right corner traveling up to
* the top-left.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#findByIndex
* @since 3.0.0
*
* @param {integer} index - The tile index value to search for.
* @param {integer} [skip=0] - The number of times to skip a matching tile before returning.
* @param {boolean} [reverse=false] - If true it will scan the layer in reverse, starting at the
* bottom-right. Otherwise it scans from the top-left.
*
* @return {Phaser.Tilemaps.Tile} A Tile object.
*/
findByIndex: function (findIndex, skip, reverse)
{
return TilemapComponents.FindByIndex(findIndex, skip, reverse, this.layer);
},
/**
* Find the first tile in the given rectangular area (in tile coordinates) of the layer that
* satisfies the provided testing function. I.e. finds the first tile for which `callback` returns
* true. Similar to Array.prototype.find in vanilla JS.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#findTile
* @since 3.0.0
*
* @param {function} callback - The callback. Each tile in the given area will be passed to this
* callback as the first and only parameter.
* @param {object} [context] - The context under which the callback should be run.
* @param {integer} [tileX=0] - The left most tile index (in tile coordinates) to use as the origin of the area to filter.
* @param {integer} [tileY=0] - The topmost tile index (in tile coordinates) to use as the origin of the area to filter.
* @param {integer} [width=max width based on tileX] - How many tiles wide from the `tileX` index the area will be.
* @param {integer} [height=max height based on tileY] - How many tiles tall from the `tileY` index the area will be.
* @param {Phaser.Types.Tilemaps.FilteringOptions} [filteringOptions] - Optional filters to apply when getting the tiles.
*
* @return {?Phaser.Tilemaps.Tile}
*/
findTile: function (callback, context, tileX, tileY, width, height, filteringOptions)
{
return TilemapComponents.FindTile(callback, context, tileX, tileY, width, height, filteringOptions, this.layer);
},
/**
* For each tile in the given rectangular area (in tile coordinates) of the layer, run the given
* filter callback function. Any tiles that pass the filter test (i.e. where the callback returns
* true) will returned as a new array. Similar to Array.prototype.Filter in vanilla JS.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#filterTiles
* @since 3.0.0
*
* @param {function} callback - The callback. Each tile in the given area will be passed to this
* callback as the first and only parameter. The callback should return true for tiles that pass the
* filter.
* @param {object} [context] - The context under which the callback should be run.
* @param {integer} [tileX=0] - The leftmost tile index (in tile coordinates) to use as the origin of the area to filter.
* @param {integer} [tileY=0] - The topmost tile index (in tile coordinates) to use as the origin of the area to filter.
* @param {integer} [width=max width based on tileX] - How many tiles wide from the `tileX` index the area will be.
* @param {integer} [height=max height based on tileY] - How many tiles tall from the `tileY` index the area will be.
* @param {Phaser.Types.Tilemaps.FilteringOptions} [filteringOptions] - Optional filters to apply when getting the tiles.
*
* @return {Phaser.Tilemaps.Tile[]} An array of Tile objects.
*/
filterTiles: function (callback, context, tileX, tileY, width, height, filteringOptions)
{
return TilemapComponents.FilterTiles(callback, context, tileX, tileY, width, height, filteringOptions, this.layer);
},
/**
* For each tile in the given rectangular area (in tile coordinates) of the layer, run the given
* callback. Similar to Array.prototype.forEach in vanilla JS.
*
* @method Phaser.Tilemaps.StaticTilemapLayer#forEachTile
* @since 3.0.0
*
* @param {function} callback - The callback. Each tile in the given area will be passed to this
* callback as the first and only parameter.
* @param {object} [context] - The context under which the callback should be run.
* @param {integer} [tileX=0] - The leftmost tile index (in tile coordinates) to use as the origin of the area to filter.
* @param {integer} [tileY=0] - The topmost tile index (in tile coordinates) to use as the origin of the area to filter.
* @param {integer} [width=max width based on tileX] - How many tiles wide from the `tileX` index the area will be.
* @param {integer} [height=max height based on tileY] - How many tiles tall from the `tileY` index the area will be.
* @param {Phaser.Types.Tilemaps.FilteringOptions} [filteringOptions] - Optional filters to apply when getting the tiles.
*
* @return {Phaser.Tilemaps.StaticTilemapLayer} This Tilemap Layer object.
*/
forEachTile: function (callback, context, tileX, tileY, width, height, filteringOptions)
{
TilemapComponents.ForEachTile(callback, context, tileX, tileY, width, height, filteringOptions, this.layer);
return this;
},
/**