-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
TextureAtlasSpec.js
947 lines (767 loc) · 35.6 KB
/
TextureAtlasSpec.js
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
/*global defineSuite*/
defineSuite([
'Scene/TextureAtlas',
'Core/BoundingRectangle',
'Core/Cartesian2',
'Core/loadImage',
'Core/Math',
'Core/PixelFormat',
'Core/PrimitiveType',
'Renderer/Buffer',
'Renderer/BufferUsage',
'Renderer/ClearCommand',
'Renderer/DrawCommand',
'Renderer/ShaderProgram',
'Renderer/VertexArray',
'Specs/createScene',
'ThirdParty/when'
], function(
TextureAtlas,
BoundingRectangle,
Cartesian2,
loadImage,
CesiumMath,
PixelFormat,
PrimitiveType,
Buffer,
BufferUsage,
ClearCommand,
DrawCommand,
ShaderProgram,
VertexArray,
createScene,
when) {
"use strict";
/*global jasmine,describe,xdescribe,it,xit,expect,beforeEach,afterEach,beforeAll,afterAll,spyOn*/
var scene;
var atlas;
var greenImage;
var tallGreenImage;
var blueImage;
var bigRedImage;
var bigBlueImage;
var bigGreenImage;
beforeAll(function() {
scene = createScene();
return when.join(
loadImage('./Data/Images/Green.png').then(function(image) {
greenImage = image;
}),
loadImage('./Data/Images/Green1x4.png').then(function(image) {
tallGreenImage = image;
}),
loadImage('./Data/Images/Blue.png').then(function(image) {
blueImage = image;
}),
loadImage('./Data/Images/Red16x16.png').then(function(image) {
bigRedImage = image;
}),
loadImage('./Data/Images/Blue10x10.png').then(function(image) {
bigBlueImage = image;
}),
loadImage('./Data/Images/Green4x4.png').then(function(image) {
bigGreenImage = image;
}));
});
afterAll(function() {
scene.destroyForSpecs();
});
afterEach(function() {
atlas = atlas && atlas.destroy();
});
function draw(texture, textureCoordinates) {
var x = textureCoordinates.x + textureCoordinates.width / 2.0;
var y = textureCoordinates.y + textureCoordinates.height / 2.0;
var context = scene.context;
var vs = '\
attribute vec4 position;\n\
void main() {\n\
gl_PointSize = 1.0;\n\
gl_Position = position;\n\
}';
var fs = '\
uniform sampler2D u_texture;\n\
void main() {\n\
gl_FragColor = texture2D(u_texture, vec2(' + x + ', ' + y + '));\n\
}';
var sp = ShaderProgram.fromCache({
context: context,
vertexShaderSource: vs,
fragmentShaderSource: fs,
attributeLocations: {
position: 0
}
});
sp.allUniforms.u_texture.value = texture;
var va = new VertexArray({
context : context,
attributes : [{
index : sp.vertexAttributes.position.index,
vertexBuffer : Buffer.createVertexBuffer({
context : context,
typedArray : new Float32Array([0, 0, 0, 1]),
usage : BufferUsage.STATIC_DRAW
}),
componentsPerAttribute : 4
}]
});
ClearCommand.ALL.execute(context);
expect(context.readPixels()).toEqual([0, 0, 0, 255]);
var command = new DrawCommand({
primitiveType : PrimitiveType.POINTS,
shaderProgram : sp,
vertexArray : va
});
command.execute(context);
sp = sp.destroy();
va = va.destroy();
return context.readPixels();
}
it('creates a single image atlas', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1, 1)
});
return atlas.addImage(greenImage.src, greenImage).then(function(index) {
expect(index).toEqual(0);
expect(atlas.numberOfImages).toEqual(1);
expect(atlas.borderWidthInPixels).toEqual(0);
var texture = atlas.texture;
var atlasWidth = 1.0;
var atlasHeight = 1.0;
expect(texture.pixelFormat).toEqual(PixelFormat.RGBA);
expect(texture.width).toEqual(atlasWidth);
expect(texture.height).toEqual(atlasHeight);
var coords = atlas.textureCoordinates[index];
expect(coords.x).toEqual(0.0 / atlasWidth);
expect(coords.y).toEqual(0.0 / atlasHeight);
expect(coords.width).toEqual(1.0 / atlasWidth);
expect(coords.height).toEqual(1.0 / atlasHeight);
});
});
it('renders a single image atlas', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1, 1)
});
return atlas.addImage(greenImage.src, greenImage).then(function(index) {
var texture = atlas.texture;
var coords = atlas.textureCoordinates[index];
expect(draw(texture, coords)).toEqual([0, 255, 0, 255]);
});
});
it('creates a single image atlas with default values', function() {
atlas = new TextureAtlas({
context : scene.context
});
return atlas.addImage(greenImage.src, greenImage).then(function(index) {
expect(index).toEqual(0);
expect(atlas.numberOfImages).toEqual(1);
expect(atlas.borderWidthInPixels).toEqual(1);
var texture = atlas.texture;
var atlasWidth = 16.0;
var atlasHeight = 16.0;
expect(texture.pixelFormat).toEqual(PixelFormat.RGBA);
expect(texture.width).toEqual(atlasWidth);
expect(texture.height).toEqual(atlasHeight);
var coords = atlas.textureCoordinates[index];
expect(coords.x).toEqual(0.0 / atlasWidth);
expect(coords.y).toEqual(0.0 / atlasHeight);
expect(coords.width).toEqual(1.0 / atlasWidth);
expect(coords.height).toEqual(1.0 / atlasHeight);
});
});
it('renders a single image atlas with default values', function() {
atlas = new TextureAtlas({
context : scene.context
});
return atlas.addImage(greenImage.src, greenImage).then(function(index) {
var texture = atlas.texture;
var coords = atlas.textureCoordinates[index];
expect(draw(texture, coords)).toEqual([0, 255, 0, 255]);
});
});
it('creates a single image atlas with non-square initialSize', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1.0, 5.0)
});
return atlas.addImage(tallGreenImage.src, tallGreenImage).then(function(index) {
expect(index).toEqual(0);
expect(atlas.numberOfImages).toEqual(1);
var texture = atlas.texture;
var atlasWidth = 1.0;
var atlasHeight = 5.0;
expect(texture.width).toEqual(atlasWidth);
expect(texture.height).toEqual(atlasHeight);
var coords = atlas.textureCoordinates[index];
expect(coords.x).toEqual(0.0 / atlasWidth);
expect(coords.y).toEqual(0.0 / atlasHeight);
expect(coords.width).toEqual(1.0 / atlasWidth);
expect(coords.height).toEqual(4.0 / atlasHeight);
});
});
it('renders a single image atlas with non-square initialSize', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1.0, 5.0)
});
return atlas.addImage(tallGreenImage.src, tallGreenImage).then(function(index) {
var texture = atlas.texture;
var coords = atlas.textureCoordinates[index];
expect(draw(texture, coords)).toEqual([0, 255, 0, 255]);
});
});
it('creates a two image atlas', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(2, 2)
});
var promises = [];
promises.push(atlas.addImage(greenImage.src, greenImage));
promises.push(atlas.addImage(blueImage.src, blueImage));
return when.all(promises, function(indices) {
var greenIndex = indices[0];
var blueIndex = indices[1];
expect(atlas.numberOfImages).toEqual(2);
var texture = atlas.texture;
var atlasWidth = 2.0;
var atlasHeight = 2.0;
expect(texture.width).toEqual(atlasWidth);
expect(texture.height).toEqual(atlasHeight);
var greenCoords = atlas.textureCoordinates[greenIndex];
expect(greenCoords.x).toEqual(0.0 / atlasWidth);
expect(greenCoords.y).toEqual(0.0 / atlasHeight);
expect(greenCoords.width).toEqual(1.0 / atlasWidth);
expect(greenCoords.height).toEqual(1.0 / atlasHeight);
var blueCoords = atlas.textureCoordinates[blueIndex];
expect(blueCoords.x).toEqual(1.0 / atlasWidth);
expect(blueCoords.y).toEqual(0.0 / atlasHeight);
expect(blueCoords.width).toEqual(1.0 / atlasWidth);
expect(blueCoords.height).toEqual(1.0 / atlasHeight);
});
});
it('renders a two image atlas', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(2, 2)
});
var promises = [];
promises.push(atlas.addImage(greenImage.src, greenImage));
promises.push(atlas.addImage(blueImage.src, blueImage));
return when.all(promises, function(indices) {
var greenIndex = indices[0];
var blueIndex = indices[1];
var texture = atlas.texture;
var greenCoords = atlas.textureCoordinates[greenIndex];
expect(draw(texture, greenCoords)).toEqual([0, 255, 0, 255]);
var blueCoords = atlas.textureCoordinates[blueIndex];
expect(draw(texture, blueCoords)).toEqual([0, 0, 255, 255]);
});
});
it('renders a four image atlas', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0
});
var promises = [];
promises.push(atlas.addImage(greenImage.src, greenImage));
promises.push(atlas.addImage(blueImage.src, blueImage));
promises.push(atlas.addImage(bigRedImage.src, bigRedImage));
promises.push(atlas.addImage(bigBlueImage.src, bigBlueImage));
return when.all(promises, function(indices) {
var greenIndex = indices.shift();
var blueIndex = indices.shift();
var bigRedIndex = indices.shift();
var bigBlueIndex = indices.shift();
expect(atlas.numberOfImages).toEqual(4);
var texture = atlas.texture;
var c0 = atlas.textureCoordinates[greenIndex];
var c1 = atlas.textureCoordinates[blueIndex];
var c2 = atlas.textureCoordinates[bigRedIndex];
var c3 = atlas.textureCoordinates[bigBlueIndex];
expect(draw(texture, c0)).toEqual([0, 255, 0, 255]);
expect(draw(texture, c1)).toEqual([0, 0, 255, 255]);
expect(draw(texture, c2)).toEqual([255, 0, 0, 255]);
expect(draw(texture, c3)).toEqual([0, 0, 255, 255]);
});
});
it('creates a four image atlas with non-zero borderWidthInPixels', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 2
});
var promises = [];
promises.push(atlas.addImage(greenImage.src, greenImage));
promises.push(atlas.addImage(blueImage.src, blueImage));
promises.push(atlas.addImage(bigRedImage.src, bigRedImage));
promises.push(atlas.addImage(bigBlueImage.src, bigBlueImage));
return when.all(promises, function(indices) {
var greenIndex = indices.shift();
var blueIndex = indices.shift();
var bigRedIndex = indices.shift();
var bigBlueIndex = indices.shift();
expect(atlas.borderWidthInPixels).toEqual(2);
expect(atlas.numberOfImages).toEqual(4);
var texture = atlas.texture;
var c0 = atlas.textureCoordinates[greenIndex];
var c1 = atlas.textureCoordinates[blueIndex];
var c2 = atlas.textureCoordinates[bigRedIndex];
var c3 = atlas.textureCoordinates[bigBlueIndex];
var atlasWidth = 68.0;
var atlasHeight = 68.0;
expect(texture.width).toEqual(atlasWidth);
expect(texture.height).toEqual(atlasHeight);
expect(c0.x).toEqualEpsilon(0.0 / atlasWidth, CesiumMath.EPSILON16);
expect(c0.y).toEqualEpsilon(0.0 / atlasHeight, CesiumMath.EPSILON16);
expect(c0.width).toEqualEpsilon(greenImage.width / atlasWidth, CesiumMath.EPSILON16);
expect(c0.height).toEqualEpsilon(greenImage.height / atlasHeight, CesiumMath.EPSILON16);
expect(c1.x).toEqualEpsilon((greenImage.width + atlas.borderWidthInPixels) / atlasWidth, CesiumMath.EPSILON16);
expect(c1.y).toEqualEpsilon(0.0 / atlasHeight, CesiumMath.EPSILON16);
expect(c1.width).toEqualEpsilon(blueImage.width / atlasWidth, CesiumMath.EPSILON16);
expect(c1.height).toEqualEpsilon(blueImage.width / atlasHeight, CesiumMath.EPSILON16);
expect(c2.x).toEqualEpsilon((bigRedImage.width + atlas.borderWidthInPixels) / atlasWidth, CesiumMath.EPSILON16);
expect(c2.y).toEqualEpsilon(0.0 / atlasHeight, CesiumMath.EPSILON16);
expect(c2.width).toEqualEpsilon(bigRedImage.width / atlasWidth, CesiumMath.EPSILON16);
expect(c2.height).toEqualEpsilon(bigRedImage.height / atlasHeight, CesiumMath.EPSILON16);
expect(c3.x).toEqualEpsilon(0.0 / atlasWidth, CesiumMath.EPSILON16);
expect(c3.y).toEqualEpsilon((greenImage.height + atlas.borderWidthInPixels) / atlasHeight, CesiumMath.EPSILON16);
expect(c3.width).toEqualEpsilon(bigBlueImage.width / atlasWidth, CesiumMath.EPSILON16);
expect(c3.height).toEqualEpsilon(bigBlueImage.height / atlasHeight, CesiumMath.EPSILON16);
});
});
it('renders a four image atlas with non-zero borderWidthInPixels', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 2
});
var promises = [];
promises.push(atlas.addImage(greenImage.src, greenImage));
promises.push(atlas.addImage(blueImage.src, blueImage));
promises.push(atlas.addImage(bigRedImage.src, bigRedImage));
promises.push(atlas.addImage(bigBlueImage.src, bigBlueImage));
return when.all(promises, function(indices) {
var greenIndex = indices.shift();
var blueIndex = indices.shift();
var bigRedIndex = indices.shift();
var bigBlueIndex = indices.shift();
expect(atlas.numberOfImages).toEqual(4);
var texture = atlas.texture;
var c0 = atlas.textureCoordinates[greenIndex];
var c1 = atlas.textureCoordinates[blueIndex];
var c2 = atlas.textureCoordinates[bigRedIndex];
var c3 = atlas.textureCoordinates[bigBlueIndex];
expect(draw(texture, c0)).toEqual([0, 255, 0, 255]);
expect(draw(texture, c1)).toEqual([0, 0, 255, 255]);
expect(draw(texture, c2)).toEqual([255, 0, 0, 255]);
expect(draw(texture, c3)).toEqual([0, 0, 255, 255]);
});
});
it('creates an atlas that dynamically resizes', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1, 1)
});
return atlas.addImage(blueImage.src, blueImage).then(function(blueIndex) {
expect(atlas.numberOfImages).toEqual(1);
var texture = atlas.texture;
var coordinates = atlas.textureCoordinates;
var atlasWidth = 1.0;
var atlasHeight = 1.0;
expect(texture.width).toEqual(atlasWidth);
expect(texture.height).toEqual(atlasHeight);
// blue image
expect(coordinates[blueIndex].x).toEqual(0.0 / atlasWidth);
expect(coordinates[blueIndex].y).toEqual(0.0 / atlasHeight);
expect(coordinates[blueIndex].width).toEqual(1.0 / atlasWidth);
expect(coordinates[blueIndex].height).toEqual(1.0 / atlasHeight);
//Add the big green image
return atlas.addImage(bigGreenImage.src, bigGreenImage).then(function(greenIndex) {
expect(atlas.numberOfImages).toEqual(2);
var texture = atlas.texture;
var coordinates = atlas.textureCoordinates;
var atlasWidth = 10.0;
var atlasHeight = 10.0;
expect(texture.width).toEqual(atlasWidth);
expect(texture.height).toEqual(atlasHeight);
// blue image
expect(coordinates[blueIndex].x).toEqual(0.0 / atlasWidth);
expect(coordinates[blueIndex].y).toEqual(0.0 / atlasHeight);
expect(coordinates[blueIndex].width).toEqual(1.0 / atlasWidth);
expect(coordinates[blueIndex].height).toEqual(1.0 / atlasHeight);
// big green image
expect(coordinates[greenIndex].x).toEqual(0.0 / atlasWidth);
expect(coordinates[greenIndex].y).toEqual(1.0 / atlasHeight);
expect(coordinates[greenIndex].width).toEqual(4.0 / atlasWidth);
expect(coordinates[greenIndex].height).toEqual(4.0 / atlasHeight);
});
});
});
it('renders an atlas that dynamically resizes', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1, 1)
});
return atlas.addImage(blueImage.src, blueImage).then(function(blueIndex) {
expect(atlas.numberOfImages).toEqual(1);
var texture = atlas.texture;
var coordinates = atlas.textureCoordinates;
var blueCoords = coordinates[blueIndex];
expect(draw(texture, blueCoords)).toEqual([0, 0, 255, 255]);
return atlas.addImage(bigGreenImage.src, bigGreenImage).then(function(greenIndex) {
expect(atlas.numberOfImages).toEqual(2);
var texture = atlas.texture;
var coordinates = atlas.textureCoordinates;
var blueCoords = coordinates[blueIndex];
expect(draw(texture, blueCoords)).toEqual([0, 0, 255, 255]);
var greenCoords = coordinates[greenIndex];
expect(draw(texture, greenCoords)).toEqual([0, 255, 0, 255]);
});
});
});
it('creates an atlas with smaller initialSize than first image', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1, 1)
});
return atlas.addImage(bigRedImage.src, bigRedImage).then(function(index) {
expect(atlas.numberOfImages).toEqual(1);
var texture = atlas.texture;
var coordinates = atlas.textureCoordinates;
var atlasWidth = 32.0;
var atlasHeight = 32.0;
expect(texture.width).toEqual(atlasWidth);
expect(texture.height).toEqual(atlasHeight);
expect(coordinates[index].x).toEqual(0.0 / atlasWidth);
expect(coordinates[index].y).toEqual(0.0 / atlasHeight);
expect(coordinates[index].width).toEqual(16.0 / atlasWidth);
expect(coordinates[index].height).toEqual(16.0 / atlasHeight);
});
});
it('renders an atlas with smaller initialSize than first image', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1, 1)
});
return atlas.addImage(bigRedImage.src, bigRedImage).then(function(index) {
var texture = atlas.texture;
var coords = atlas.textureCoordinates[index];
expect(draw(texture, coords)).toEqual([255, 0, 0, 255]);
});
});
it('creates a two image atlas with non-zero borderWidthInPixels that resizes', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 2,
initialSize : new Cartesian2(2, 2)
});
var greenPromise = atlas.addImage(greenImage.src, greenImage);
var bluePromise = atlas.addImage(blueImage.src, blueImage);
return when.all([greenPromise, bluePromise], function(indices) {
var greenIndex = indices.shift();
var blueIndex = indices.shift();
var texture = atlas.texture;
var coordinates = atlas.textureCoordinates;
var atlasWidth = 10.0;
var atlasHeight = 10.0;
expect(atlas.borderWidthInPixels).toEqual(2);
expect(atlas.numberOfImages).toEqual(2);
expect(texture.width).toEqual(atlasWidth);
expect(texture.height).toEqual(atlasHeight);
expect(coordinates[greenIndex].x).toEqual(0.0 / atlasWidth);
expect(coordinates[greenIndex].y).toEqual(0.0 / atlasHeight);
expect(coordinates[greenIndex].width).toEqual(1.0 / atlasWidth);
expect(coordinates[greenIndex].height).toEqual(1.0 / atlasHeight);
expect(coordinates[blueIndex].x).toEqual(4.0 / atlasWidth);
expect(coordinates[blueIndex].y).toEqual(0.0 / atlasHeight);
expect(coordinates[blueIndex].width).toEqual(1.0 / atlasWidth);
expect(coordinates[blueIndex].height).toEqual(1.0 / atlasHeight);
});
});
it('renders a two image atlas with non-zero borderWidthInPixels that resizes', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 2,
initialSize : new Cartesian2(2, 2)
});
var greenPromise = atlas.addImage(greenImage.src, greenImage);
var bluePromise = atlas.addImage(blueImage.src, blueImage);
return when.all([greenPromise, bluePromise], function(indices) {
var greenIndex = indices.shift();
var blueIndex = indices.shift();
var texture = atlas.texture;
var coordinates = atlas.textureCoordinates;
var greenCoords = coordinates[greenIndex];
var blueCoords = coordinates[blueIndex];
expect(draw(texture, greenCoords)).toEqual([0, 255, 0, 255]);
expect(draw(texture, blueCoords)).toEqual([0, 0, 255, 255]);
});
});
it('creates an atlas with non-square initialSize that resizes', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1.0, 1.0)
});
return atlas.addImage(tallGreenImage.src, tallGreenImage).then(function(index) {
expect(atlas.numberOfImages).toEqual(1);
var texture = atlas.texture;
var coordinates = atlas.textureCoordinates;
var atlasWidth = 2;
var atlasHeight = 8;
expect(texture.width).toEqual(atlasWidth);
expect(texture.height).toEqual(atlasHeight);
expect(coordinates[index].x).toEqual(0.0 / atlasWidth);
expect(coordinates[index].y).toEqual(0.0 / atlasHeight);
expect(coordinates[index].width).toEqual(tallGreenImage.width / atlasWidth);
expect(coordinates[index].height).toEqual(tallGreenImage.height / atlasHeight);
});
});
it('renders an atlas with non-square initialSize that resizes', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1.0, 1.0)
});
return atlas.addImage(tallGreenImage.src, tallGreenImage).then(function(index) {
var texture = atlas.texture;
var coords = atlas.textureCoordinates[index];
expect(draw(texture, coords)).toEqual([0, 255, 0, 255]);
});
});
it('renders an atlas that dynamically resizes twice', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1, 1)
});
var bluePromise = atlas.addImage(blueImage.src, blueImage);
var bigGreenPromise = atlas.addImage(bigGreenImage.src, bigGreenImage);
var bigRedPromise = atlas.addImage(bigRedImage.src, bigRedImage);
return when.all([bluePromise, bigGreenPromise, bigRedPromise], function(indices) {
var blueIndex = indices.shift();
var bigGreenIndex = indices.shift();
var bigRedIndex = indices.shift();
var texture = atlas.texture;
var blueCoordinates = atlas.textureCoordinates[blueIndex];
var bigGreenCoordinates = atlas.textureCoordinates[bigGreenIndex];
var bigRedCoordinates = atlas.textureCoordinates[bigRedIndex];
expect(draw(texture, blueCoordinates)).toEqual([0, 0, 255, 255]);
expect(draw(texture, bigGreenCoordinates)).toEqual([0, 255, 0, 255]);
expect(draw(texture, bigRedCoordinates)).toEqual([255, 0, 0, 255]);
});
});
it('promise resolves to index after calling addImage with Image', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(4, 4)
});
return atlas.addImage(blueImage.src, blueImage).then(function(blueIndex) {
expect(blueIndex).toEqual(0);
return atlas.addImage(greenImage.src, greenImage).then(function(greenIndex) {
expect(greenIndex).toEqual(1);
return atlas.addImage(blueImage.src, blueImage).then(function(index) {
expect(index).toEqual(blueIndex);
expect(atlas.numberOfImages).toEqual(2);
var texture = atlas.texture;
var coordinates = atlas.textureCoordinates;
var blueCoordinates = coordinates[blueIndex];
var greenCoordinates = coordinates[greenIndex];
expect(draw(texture, blueCoordinates)).toEqual([0, 0, 255, 255]);
expect(draw(texture, greenCoordinates)).toEqual([0, 255, 0, 255]);
});
});
});
});
it('creates an atlas with subregions', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1, 1)
});
atlas.addImage(greenImage.src, greenImage);
var promise1 = atlas.addSubRegion(greenImage.src, new BoundingRectangle(0.0, 0.0, 0.5, 0.5));
var promise2 = atlas.addSubRegion(greenImage.src, new BoundingRectangle(0.0, 0.5, 0.5, 0.5));
var promise3 = atlas.addSubRegion(greenImage.src, new BoundingRectangle(0.5, 0.0, 0.5, 0.5));
var promise4 = atlas.addSubRegion(greenImage.src, new BoundingRectangle(0.5, 0.5, 0.5, 0.5));
return when.all([promise1, promise2, promise3, promise4], function(indices) {
var index1 = indices.shift();
var index2 = indices.shift();
var index3 = indices.shift();
var index4 = indices.shift();
expect(atlas.numberOfImages).toEqual(5);
var coordinates = atlas.textureCoordinates;
var atlasWidth = 1.0;
var atlasHeight = 1.0;
expect(coordinates[index1].x).toEqual(0.0 / atlasWidth);
expect(coordinates[index1].y).toEqual(0.0 / atlasHeight);
expect(coordinates[index1].width).toEqual(0.5 / atlasWidth);
expect(coordinates[index1].height).toEqual(0.5 / atlasHeight);
expect(coordinates[index2].x).toEqual(0.0 / atlasWidth);
expect(coordinates[index2].y).toEqual(0.5 / atlasHeight);
expect(coordinates[index2].width).toEqual(0.5 / atlasWidth);
expect(coordinates[index2].height).toEqual(0.5 / atlasHeight);
expect(coordinates[index3].x).toEqual(0.5 / atlasWidth);
expect(coordinates[index3].y).toEqual(0.0 / atlasHeight);
expect(coordinates[index3].width).toEqual(0.5 / atlasWidth);
expect(coordinates[index3].height).toEqual(0.5 / atlasHeight);
expect(coordinates[index4].x).toEqual(0.5 / atlasWidth);
expect(coordinates[index4].y).toEqual(0.5 / atlasHeight);
expect(coordinates[index4].width).toEqual(0.5 / atlasWidth);
expect(coordinates[index4].height).toEqual(0.5 / atlasHeight);
});
});
it('creates an atlas that resizes with subregions', function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : 0,
initialSize : new Cartesian2(1, 1)
});
atlas.addImage(greenImage.src, greenImage);
var promise1 = atlas.addSubRegion(greenImage.src, new BoundingRectangle(0.0, 0.0, 0.5, 0.5));
var promise2 = atlas.addSubRegion(greenImage.src, new BoundingRectangle(0.0, 0.5, 0.5, 0.5));
var promise3 = atlas.addSubRegion(greenImage.src, new BoundingRectangle(0.5, 0.0, 0.5, 0.5));
var promise4 = atlas.addSubRegion(greenImage.src, new BoundingRectangle(0.5, 0.5, 0.5, 0.5));
return when.all([promise1, promise2, promise3, promise4], function(indices) {
var index1 = indices.shift();
var index2 = indices.shift();
var index3 = indices.shift();
var index4 = indices.shift();
expect(atlas.numberOfImages).toEqual(5);
return atlas.addImage(blueImage.src, blueImage).then(function(blueIndex) {
expect(atlas.numberOfImages).toEqual(6);
var coordinates = atlas.textureCoordinates;
var atlasWidth = 4.0;
var atlasHeight = 4.0;
expect(coordinates[index1].x).toEqual(0.0 / atlasWidth);
expect(coordinates[index1].y).toEqual(0.0 / atlasHeight);
expect(coordinates[index1].width).toEqual(0.5 / atlasWidth);
expect(coordinates[index1].height).toEqual(0.5 / atlasHeight);
expect(coordinates[index2].x).toEqual(0.0 / atlasWidth);
expect(coordinates[index2].y).toEqual(0.5 / atlasHeight);
expect(coordinates[index2].width).toEqual(0.5 / atlasWidth);
expect(coordinates[index2].height).toEqual(0.5 / atlasHeight);
expect(coordinates[index3].x).toEqual(0.5 / atlasWidth);
expect(coordinates[index3].y).toEqual(0.0 / atlasHeight);
expect(coordinates[index3].width).toEqual(0.5 / atlasWidth);
expect(coordinates[index3].height).toEqual(0.5 / atlasHeight);
expect(coordinates[index4].x).toEqual(0.5 / atlasWidth);
expect(coordinates[index4].y).toEqual(0.5 / atlasHeight);
expect(coordinates[index4].width).toEqual(0.5 / atlasWidth);
expect(coordinates[index4].height).toEqual(0.5 / atlasHeight);
expect(coordinates[blueIndex].x).toEqual(1.0 / atlasWidth);
expect(coordinates[blueIndex].y).toEqual(0.0 / atlasHeight);
expect(coordinates[blueIndex].width).toEqual(1.0 / atlasWidth);
expect(coordinates[blueIndex].height).toEqual(1.0 / atlasHeight);
});
});
});
it('creates a two image atlas using a url and a function', function() {
atlas = new TextureAtlas({
context : scene.context,
pixelFormat : PixelFormat.RGBA,
borderWidthInPixels : 0
});
var greenUrl = './Data/Images/Green.png';
var greenPromise = atlas.addImage(greenUrl, greenUrl);
var bluePromise = atlas.addImage('Blue Image', function(id) {
expect(id).toEqual('Blue Image');
return blueImage;
});
return when.all([greenPromise, bluePromise], function(results) {
var greenIndex = results[0];
var blueIndex = results[1];
expect(atlas.numberOfImages).toEqual(2);
var texture = atlas.texture;
var coordinates = atlas.textureCoordinates;
var blueCoordinates = coordinates[blueIndex];
var greenCoordinates = coordinates[greenIndex];
expect(draw(texture, blueCoordinates)).toEqual([0, 0, 255, 255]);
expect(draw(texture, greenCoordinates)).toEqual([0, 255, 0, 255]);
// after loading 'Blue Image', further adds should not call the function
return atlas.addImage('Blue Image', function(id) {
throw 'should not get here';
}).then(function(index) {
expect(index).toEqual(blueIndex);
});
});
});
it('GUID changes when atlas is modified', function() {
atlas = new TextureAtlas({
context : scene.context
});
var guid1 = atlas.guid;
return atlas.addImage(greenImage.src, greenImage).then(function(index) {
var guid2 = atlas.guid;
expect(guid1).not.toEqual(guid2);
return atlas.addSubRegion(greenImage.src, new BoundingRectangle(0.0, 0.0, 0.5, 0.5)).then(function(index) {
var guid3 = atlas.guid;
expect(guid2).not.toEqual(guid3);
});
});
});
it('throws with a negative borderWidthInPixels', function() {
expect(function() {
atlas = new TextureAtlas({
context : scene.context,
borderWidthInPixels : -1
});
}).toThrowDeveloperError();
});
it('throws with a initialSize less than one', function() {
expect(function() {
atlas = new TextureAtlas({
context : scene.context,
initialSize : new Cartesian2(0, 0)
});
}).toThrowDeveloperError();
});
it('throws without context', function() {
expect(function() {
return new TextureAtlas({});
}).toThrowDeveloperError();
});
it('addImage throws without id', function() {
atlas = new TextureAtlas({
context : scene.context
});
expect(function() {
atlas.addImage(undefined, blueImage);
}).toThrowDeveloperError();
});
it('addImage throws without image', function() {
atlas = new TextureAtlas({
context : scene.context
});
expect(function() {
atlas.addImage('./Data/Images/Green.png', undefined);
}).toThrowDeveloperError();
});
it('addSubRegion throws without id', function() {
atlas = new TextureAtlas({
context : scene.context
});
expect(function() {
atlas.addSubRegion(undefined, new BoundingRectangle());
}).toThrowDeveloperError();
});
it('addSubRegion throws without subregion', function() {
atlas = new TextureAtlas({
context : scene.context
});
expect(function() {
atlas.addSubRegion('asdf', undefined);
}).toThrowDeveloperError();
});
}, 'WebGL');