-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
Copy pathCesium3DTileBatchTable.js
1173 lines (1031 loc) · 37.7 KB
/
Cesium3DTileBatchTable.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
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
import Cartesian2 from "../Core/Cartesian2.js";
import Check from "../Core/Check.js";
import clone from "../Core/clone.js";
import Color from "../Core/Color.js";
import combine from "../Core/combine.js";
import defaultValue from "../Core/defaultValue.js";
import defined from "../Core/defined.js";
import deprecationWarning from "../Core/deprecationWarning.js";
import destroyObject from "../Core/destroyObject.js";
import DeveloperError from "../Core/DeveloperError.js";
import CesiumMath from "../Core/Math.js";
import RuntimeError from "../Core/RuntimeError.js";
import ContextLimits from "../Renderer/ContextLimits.js";
import DrawCommand from "../Renderer/DrawCommand.js";
import Pass from "../Renderer/Pass.js";
import RenderState from "../Renderer/RenderState.js";
import ShaderSource from "../Renderer/ShaderSource.js";
import BatchTexture from "./BatchTexture.js";
import BatchTableHierarchy from "./BatchTableHierarchy.js";
import BlendingState from "./BlendingState.js";
import Cesium3DTileColorBlendMode from "./Cesium3DTileColorBlendMode.js";
import CullFace from "./CullFace.js";
import getBinaryAccessor from "./getBinaryAccessor.js";
import StencilConstants from "./StencilConstants.js";
import StencilFunction from "./StencilFunction.js";
import StencilOperation from "./StencilOperation.js";
const DEFAULT_COLOR_VALUE = BatchTexture.DEFAULT_COLOR_VALUE;
const DEFAULT_SHOW_VALUE = BatchTexture.DEFAULT_SHOW_VALUE;
/**
* @private
* @constructor
*/
function Cesium3DTileBatchTable(
content,
featuresLength,
batchTableJson,
batchTableBinary,
colorChangedCallback,
) {
/**
* @readonly
*/
this.featuresLength = featuresLength;
let extensions;
if (defined(batchTableJson)) {
extensions = batchTableJson.extensions;
}
this._extensions = defaultValue(extensions, {});
const properties = initializeProperties(batchTableJson);
this._properties = properties;
this._batchTableHierarchy = initializeHierarchy(
this,
batchTableJson,
batchTableBinary,
);
const binaryProperties = getBinaryProperties(
featuresLength,
properties,
batchTableBinary,
);
this._binaryPropertiesByteLength =
countBinaryPropertyMemory(binaryProperties);
this._batchTableBinaryProperties = binaryProperties;
this._content = content;
this._batchTexture = new BatchTexture({
featuresLength: featuresLength,
colorChangedCallback: colorChangedCallback,
owner: content,
statistics: content.tileset.statistics,
});
}
// This can be overridden for testing purposes
Cesium3DTileBatchTable._deprecationWarning = deprecationWarning;
Object.defineProperties(Cesium3DTileBatchTable.prototype, {
/**
* Size of the batch table, including the batch table hierarchy's binary
* buffers and any binary properties. JSON data is not counted.
*
* @memberof Cesium3DTileBatchTable.prototype
* @type {number}
* @readonly
* @private
*/
batchTableByteLength: {
get: function () {
let totalByteLength = this._binaryPropertiesByteLength;
if (defined(this._batchTableHierarchy)) {
totalByteLength += this._batchTableHierarchy.byteLength;
}
totalByteLength += this._batchTexture.byteLength;
return totalByteLength;
},
},
});
function initializeProperties(jsonHeader) {
const properties = {};
if (!defined(jsonHeader)) {
return properties;
}
for (const propertyName in jsonHeader) {
if (
jsonHeader.hasOwnProperty(propertyName) &&
propertyName !== "HIERARCHY" && // Deprecated HIERARCHY property
propertyName !== "extensions" &&
propertyName !== "extras"
) {
properties[propertyName] = clone(jsonHeader[propertyName], true);
}
}
return properties;
}
function initializeHierarchy(batchTable, jsonHeader, binaryBody) {
if (!defined(jsonHeader)) {
return;
}
let hierarchy = batchTable._extensions["3DTILES_batch_table_hierarchy"];
const legacyHierarchy = jsonHeader.HIERARCHY;
if (defined(legacyHierarchy)) {
Cesium3DTileBatchTable._deprecationWarning(
"batchTableHierarchyExtension",
"The batch table HIERARCHY property has been moved to an extension. Use extensions.3DTILES_batch_table_hierarchy instead.",
);
batchTable._extensions["3DTILES_batch_table_hierarchy"] = legacyHierarchy;
hierarchy = legacyHierarchy;
}
if (!defined(hierarchy)) {
return;
}
return new BatchTableHierarchy({
extension: hierarchy,
binaryBody: binaryBody,
});
}
function getBinaryProperties(featuresLength, properties, binaryBody) {
let binaryProperties;
for (const name in properties) {
if (properties.hasOwnProperty(name)) {
const property = properties[name];
const byteOffset = property.byteOffset;
if (defined(byteOffset)) {
// This is a binary property
const componentType = property.componentType;
const type = property.type;
if (!defined(componentType)) {
throw new RuntimeError("componentType is required.");
}
if (!defined(type)) {
throw new RuntimeError("type is required.");
}
if (!defined(binaryBody)) {
throw new RuntimeError(
`Property ${name} requires a batch table binary.`,
);
}
const binaryAccessor = getBinaryAccessor(property);
const componentCount = binaryAccessor.componentsPerAttribute;
const classType = binaryAccessor.classType;
const typedArray = binaryAccessor.createArrayBufferView(
binaryBody.buffer,
binaryBody.byteOffset + byteOffset,
featuresLength,
);
if (!defined(binaryProperties)) {
binaryProperties = {};
}
// Store any information needed to access the binary data, including the typed array,
// componentCount (e.g. a VEC4 would be 4), and the type used to pack and unpack (e.g. Cartesian4).
binaryProperties[name] = {
typedArray: typedArray,
componentCount: componentCount,
type: classType,
};
}
}
}
return binaryProperties;
}
function countBinaryPropertyMemory(binaryProperties) {
if (!defined(binaryProperties)) {
return 0;
}
let byteLength = 0;
for (const name in binaryProperties) {
if (binaryProperties.hasOwnProperty(name)) {
byteLength += binaryProperties[name].typedArray.byteLength;
}
}
return byteLength;
}
Cesium3DTileBatchTable.getBinaryProperties = function (
featuresLength,
batchTableJson,
batchTableBinary,
) {
return getBinaryProperties(featuresLength, batchTableJson, batchTableBinary);
};
Cesium3DTileBatchTable.prototype.setShow = function (batchId, show) {
this._batchTexture.setShow(batchId, show);
};
Cesium3DTileBatchTable.prototype.setAllShow = function (show) {
this._batchTexture.setAllShow(show);
};
Cesium3DTileBatchTable.prototype.getShow = function (batchId) {
return this._batchTexture.getShow(batchId);
};
Cesium3DTileBatchTable.prototype.setColor = function (batchId, color) {
this._batchTexture.setColor(batchId, color);
};
Cesium3DTileBatchTable.prototype.setAllColor = function (color) {
this._batchTexture.setAllColor(color);
};
Cesium3DTileBatchTable.prototype.getColor = function (batchId, result) {
return this._batchTexture.getColor(batchId, result);
};
Cesium3DTileBatchTable.prototype.getPickColor = function (batchId) {
return this._batchTexture.getPickColor(batchId);
};
const scratchColor = new Color();
Cesium3DTileBatchTable.prototype.applyStyle = function (style) {
if (!defined(style)) {
this.setAllColor(DEFAULT_COLOR_VALUE);
this.setAllShow(DEFAULT_SHOW_VALUE);
return;
}
const content = this._content;
const length = this.featuresLength;
for (let i = 0; i < length; ++i) {
const feature = content.getFeature(i);
const color = defined(style.color)
? defaultValue(
style.color.evaluateColor(feature, scratchColor),
DEFAULT_COLOR_VALUE,
)
: DEFAULT_COLOR_VALUE;
const show = defined(style.show)
? defaultValue(style.show.evaluate(feature), DEFAULT_SHOW_VALUE)
: DEFAULT_SHOW_VALUE;
this.setColor(i, color);
this.setShow(i, show);
}
};
function getBinaryProperty(binaryProperty, index) {
const typedArray = binaryProperty.typedArray;
const componentCount = binaryProperty.componentCount;
if (componentCount === 1) {
return typedArray[index];
}
return binaryProperty.type.unpack(typedArray, index * componentCount);
}
function setBinaryProperty(binaryProperty, index, value) {
const typedArray = binaryProperty.typedArray;
const componentCount = binaryProperty.componentCount;
if (componentCount === 1) {
typedArray[index] = value;
} else {
binaryProperty.type.pack(value, typedArray, index * componentCount);
}
}
function checkBatchId(batchId, featuresLength) {
if (!defined(batchId) || batchId < 0 || batchId >= featuresLength) {
throw new DeveloperError(
`batchId is required and must be between zero and featuresLength - 1 (${featuresLength}` -
+").",
);
}
}
Cesium3DTileBatchTable.prototype.isClass = function (batchId, className) {
//>>includeStart('debug', pragmas.debug);
checkBatchId(batchId, this.featuresLength);
Check.typeOf.string("className", className);
//>>includeEnd('debug');
const hierarchy = this._batchTableHierarchy;
if (!defined(hierarchy)) {
return false;
}
return hierarchy.isClass(batchId, className);
};
Cesium3DTileBatchTable.prototype.isExactClass = function (batchId, className) {
//>>includeStart('debug', pragmas.debug);
Check.typeOf.string("className", className);
//>>includeEnd('debug');
return this.getExactClassName(batchId) === className;
};
Cesium3DTileBatchTable.prototype.getExactClassName = function (batchId) {
//>>includeStart('debug', pragmas.debug);
checkBatchId(batchId, this.featuresLength);
//>>includeEnd('debug');
const hierarchy = this._batchTableHierarchy;
if (!defined(hierarchy)) {
return undefined;
}
return hierarchy.getClassName(batchId);
};
Cesium3DTileBatchTable.prototype.hasProperty = function (batchId, name) {
//>>includeStart('debug', pragmas.debug);
checkBatchId(batchId, this.featuresLength);
Check.typeOf.string("name", name);
//>>includeEnd('debug');
return (
defined(this._properties[name]) ||
(defined(this._batchTableHierarchy) &&
this._batchTableHierarchy.hasProperty(batchId, name))
);
};
/**
* @private
*/
Cesium3DTileBatchTable.prototype.hasPropertyBySemantic = function () {
// Cesium 3D Tiles 1.0 formats do not have semantics
return false;
};
Cesium3DTileBatchTable.prototype.getPropertyIds = function (batchId, results) {
//>>includeStart('debug', pragmas.debug);
checkBatchId(batchId, this.featuresLength);
//>>includeEnd('debug');
results = defined(results) ? results : [];
results.length = 0;
const scratchPropertyIds = Object.keys(this._properties);
results.push.apply(results, scratchPropertyIds);
if (defined(this._batchTableHierarchy)) {
results.push.apply(
results,
this._batchTableHierarchy.getPropertyIds(batchId, scratchPropertyIds),
);
}
return results;
};
/**
* @private
*/
Cesium3DTileBatchTable.prototype.getPropertyBySemantic = function (
batchId,
name,
) {
// Cesium 3D Tiles 1.0 formats do not have semantics
return undefined;
};
Cesium3DTileBatchTable.prototype.getProperty = function (batchId, name) {
//>>includeStart('debug', pragmas.debug);
checkBatchId(batchId, this.featuresLength);
Check.typeOf.string("name", name);
//>>includeEnd('debug');
if (defined(this._batchTableBinaryProperties)) {
const binaryProperty = this._batchTableBinaryProperties[name];
if (defined(binaryProperty)) {
return getBinaryProperty(binaryProperty, batchId);
}
}
const propertyValues = this._properties[name];
if (defined(propertyValues)) {
return clone(propertyValues[batchId], true);
}
if (defined(this._batchTableHierarchy)) {
const hierarchyProperty = this._batchTableHierarchy.getProperty(
batchId,
name,
);
if (defined(hierarchyProperty)) {
return hierarchyProperty;
}
}
return undefined;
};
Cesium3DTileBatchTable.prototype.setProperty = function (batchId, name, value) {
const featuresLength = this.featuresLength;
//>>includeStart('debug', pragmas.debug);
checkBatchId(batchId, featuresLength);
Check.typeOf.string("name", name);
//>>includeEnd('debug');
if (defined(this._batchTableBinaryProperties)) {
const binaryProperty = this._batchTableBinaryProperties[name];
if (defined(binaryProperty)) {
setBinaryProperty(binaryProperty, batchId, value);
return;
}
}
if (defined(this._batchTableHierarchy)) {
if (this._batchTableHierarchy.setProperty(batchId, name, value)) {
return;
}
}
let propertyValues = this._properties[name];
if (!defined(propertyValues)) {
// Property does not exist. Create it.
this._properties[name] = new Array(featuresLength);
propertyValues = this._properties[name];
}
propertyValues[batchId] = clone(value, true);
};
function getGlslComputeSt(batchTable) {
// GLSL batchId is zero-based: [0, featuresLength - 1]
if (batchTable._batchTexture.textureDimensions.y === 1) {
return (
"uniform vec4 tile_textureStep; \n" +
"vec2 computeSt(float batchId) \n" +
"{ \n" +
" float stepX = tile_textureStep.x; \n" +
" float centerX = tile_textureStep.y; \n" +
" return vec2(centerX + (batchId * stepX), 0.5); \n" +
"} \n"
);
}
return (
"uniform vec4 tile_textureStep; \n" +
"uniform vec2 tile_textureDimensions; \n" +
"vec2 computeSt(float batchId) \n" +
"{ \n" +
" float stepX = tile_textureStep.x; \n" +
" float centerX = tile_textureStep.y; \n" +
" float stepY = tile_textureStep.z; \n" +
" float centerY = tile_textureStep.w; \n" +
" float xId = mod(batchId, tile_textureDimensions.x); \n" +
" float yId = floor(batchId / tile_textureDimensions.x); \n" +
" return vec2(centerX + (xId * stepX), centerY + (yId * stepY)); \n" +
"} \n"
);
}
Cesium3DTileBatchTable.prototype.getVertexShaderCallback = function (
handleTranslucent,
batchIdAttributeName,
diffuseAttributeOrUniformName,
) {
if (this.featuresLength === 0) {
return;
}
const that = this;
return function (source) {
// If the color blend mode is HIGHLIGHT, the highlight color will always be applied in the fragment shader.
// No need to apply the highlight color in the vertex shader as well.
const renamedSource = modifyDiffuse(
source,
diffuseAttributeOrUniformName,
false,
);
let newMain;
if (ContextLimits.maximumVertexTextureImageUnits > 0) {
// When VTF is supported, perform per-feature show/hide in the vertex shader
newMain = "";
if (handleTranslucent) {
newMain += "uniform bool tile_translucentCommand; \n";
}
newMain +=
`${
"uniform sampler2D tile_batchTexture; \n" +
"out vec4 tile_featureColor; \n" +
"out vec2 tile_featureSt; \n" +
"void main() \n" +
"{ \n" +
" vec2 st = computeSt("
}${batchIdAttributeName}); \n` +
` vec4 featureProperties = texture(tile_batchTexture, st); \n` +
` tile_color(featureProperties); \n` +
` float show = ceil(featureProperties.a); \n` + // 0 - false, non-zero - true
` gl_Position *= show; \n`; // Per-feature show/hide
if (handleTranslucent) {
newMain +=
" bool isStyleTranslucent = (featureProperties.a != 1.0); \n" +
" if (czm_pass == czm_passTranslucent) \n" +
" { \n" +
" if (!isStyleTranslucent && !tile_translucentCommand) \n" + // Do not render opaque features in the translucent pass
" { \n" +
" gl_Position *= 0.0; \n" +
" } \n" +
" } \n" +
" else \n" +
" { \n" +
" if (isStyleTranslucent) \n" + // Do not render translucent features in the opaque pass
" { \n" +
" gl_Position *= 0.0; \n" +
" } \n" +
" } \n";
}
newMain +=
" tile_featureColor = featureProperties; \n" +
" tile_featureSt = st; \n" +
"}";
} else {
// When VTF is not supported, color blend mode MIX will look incorrect due to the feature's color not being available in the vertex shader
newMain =
`${
"out vec2 tile_featureSt; \n" +
"void main() \n" +
"{ \n" +
" tile_color(vec4(1.0)); \n" +
" tile_featureSt = computeSt("
}${batchIdAttributeName}); \n` + `}`;
}
return `${renamedSource}\n${getGlslComputeSt(that)}${newMain}`;
};
};
function getDefaultShader(source, applyHighlight) {
source = ShaderSource.replaceMain(source, "tile_main");
if (!applyHighlight) {
return (
`${source}void tile_color(vec4 tile_featureColor) \n` +
`{ \n` +
` tile_main(); \n` +
`} \n`
);
}
// The color blend mode is intended for the RGB channels so alpha is always just multiplied.
// out_FragColor is multiplied by the tile color only when tile_colorBlend is 0.0 (highlight)
return (
`${source}uniform float tile_colorBlend; \n` +
`void tile_color(vec4 tile_featureColor) \n` +
`{ \n` +
` tile_main(); \n` +
` tile_featureColor = czm_gammaCorrect(tile_featureColor); \n` +
` out_FragColor.a *= tile_featureColor.a; \n` +
` float highlight = ceil(tile_colorBlend); \n` +
` out_FragColor.rgb *= mix(tile_featureColor.rgb, vec3(1.0), highlight); \n` +
`} \n`
);
}
function replaceDiffuseTextureCalls(source, diffuseAttributeOrUniformName) {
const functionCall = `texture(${diffuseAttributeOrUniformName}`;
let fromIndex = 0;
let startIndex = source.indexOf(functionCall, fromIndex);
let endIndex;
while (startIndex > -1) {
let nestedLevel = 0;
for (let i = startIndex; i < source.length; ++i) {
const character = source.charAt(i);
if (character === "(") {
++nestedLevel;
} else if (character === ")") {
--nestedLevel;
if (nestedLevel === 0) {
endIndex = i + 1;
break;
}
}
}
const extractedFunction = source.slice(startIndex, endIndex);
const replacedFunction = `tile_diffuse_final(${extractedFunction}, tile_diffuse)`;
source =
source.slice(0, startIndex) + replacedFunction + source.slice(endIndex);
fromIndex = startIndex + replacedFunction.length;
startIndex = source.indexOf(functionCall, fromIndex);
}
return source;
}
function modifyDiffuse(source, diffuseAttributeOrUniformName, applyHighlight) {
// If the glTF does not specify the _3DTILESDIFFUSE semantic, return the default shader.
// Otherwise if _3DTILESDIFFUSE is defined prefer the shader below that can switch the color mode at runtime.
if (!defined(diffuseAttributeOrUniformName)) {
return getDefaultShader(source, applyHighlight);
}
// Find the diffuse uniform. Examples matches:
// uniform vec3 u_diffuseColor;
// uniform sampler2D diffuseTexture;
let regex = new RegExp(
`(uniform|attribute|in)\\s+(vec[34]|sampler2D)\\s+${diffuseAttributeOrUniformName};`,
);
const uniformMatch = source.match(regex);
if (!defined(uniformMatch)) {
// Could not find uniform declaration of type vec3, vec4, or sampler2D
return getDefaultShader(source, applyHighlight);
}
const declaration = uniformMatch[0];
const type = uniformMatch[2];
source = ShaderSource.replaceMain(source, "tile_main");
source = source.replace(declaration, ""); // Remove uniform declaration for now so the replace below doesn't affect it
// If the tile color is white, use the source color. This implies the feature has not been styled.
// Highlight: tile_colorBlend is 0.0 and the source color is used
// Replace: tile_colorBlend is 1.0 and the tile color is used
// Mix: tile_colorBlend is between 0.0 and 1.0, causing the source color and tile color to mix
const finalDiffuseFunction =
"bool isWhite(vec3 color) \n" +
"{ \n" +
" return all(greaterThan(color, vec3(1.0 - czm_epsilon3))); \n" +
"} \n" +
"vec4 tile_diffuse_final(vec4 sourceDiffuse, vec4 tileDiffuse) \n" +
"{ \n" +
" vec4 blendDiffuse = mix(sourceDiffuse, tileDiffuse, tile_colorBlend); \n" +
" vec4 diffuse = isWhite(tileDiffuse.rgb) ? sourceDiffuse : blendDiffuse; \n" +
" return vec4(diffuse.rgb, sourceDiffuse.a); \n" +
"} \n";
// The color blend mode is intended for the RGB channels so alpha is always just multiplied.
// out_FragColor is multiplied by the tile color only when tile_colorBlend is 0.0 (highlight)
const highlight =
" tile_featureColor = czm_gammaCorrect(tile_featureColor); \n" +
" out_FragColor.a *= tile_featureColor.a; \n" +
" float highlight = ceil(tile_colorBlend); \n" +
" out_FragColor.rgb *= mix(tile_featureColor.rgb, vec3(1.0), highlight); \n";
let setColor;
if (type === "vec3" || type === "vec4") {
const sourceDiffuse =
type === "vec3"
? `vec4(${diffuseAttributeOrUniformName}, 1.0)`
: diffuseAttributeOrUniformName;
const replaceDiffuse =
type === "vec3" ? "tile_diffuse.xyz" : "tile_diffuse";
regex = new RegExp(diffuseAttributeOrUniformName, "g");
source = source.replace(regex, replaceDiffuse);
setColor =
` vec4 source = ${sourceDiffuse}; \n` +
` tile_diffuse = tile_diffuse_final(source, tile_featureColor); \n` +
` tile_main(); \n`;
} else if (type === "sampler2D") {
// Handles any number of nested parentheses
// E.g. texture(u_diffuse, uv)
// E.g. texture(u_diffuse, computeUV(index))
source = replaceDiffuseTextureCalls(source, diffuseAttributeOrUniformName);
setColor =
" tile_diffuse = tile_featureColor; \n" + " tile_main(); \n";
}
source =
`${
"uniform float tile_colorBlend; \n" + "vec4 tile_diffuse = vec4(1.0); \n"
}${finalDiffuseFunction}${declaration}\n${source}\n` +
`void tile_color(vec4 tile_featureColor) \n` +
`{ \n${setColor}`;
if (applyHighlight) {
source += highlight;
}
source += "} \n";
return source;
}
Cesium3DTileBatchTable.prototype.getFragmentShaderCallback = function (
handleTranslucent,
diffuseAttributeOrUniformName,
hasPremultipliedAlpha,
) {
if (this.featuresLength === 0) {
return;
}
return function (source) {
source = modifyDiffuse(source, diffuseAttributeOrUniformName, true);
if (ContextLimits.maximumVertexTextureImageUnits > 0) {
// When VTF is supported, per-feature show/hide already happened in the fragment shader
source +=
"uniform sampler2D tile_pickTexture; \n" +
"in vec2 tile_featureSt; \n" +
"in vec4 tile_featureColor; \n" +
"void main() \n" +
"{ \n" +
" tile_color(tile_featureColor); \n";
if (hasPremultipliedAlpha) {
source += " out_FragColor.rgb *= out_FragColor.a; \n";
}
source += "}";
} else {
if (handleTranslucent) {
source += "uniform bool tile_translucentCommand; \n";
}
source +=
"uniform sampler2D tile_pickTexture; \n" +
"uniform sampler2D tile_batchTexture; \n" +
"in vec2 tile_featureSt; \n" +
"void main() \n" +
"{ \n" +
" vec4 featureProperties = texture(tile_batchTexture, tile_featureSt); \n" +
" if (featureProperties.a == 0.0) { \n" + // show: alpha == 0 - false, non-zeo - true
" discard; \n" +
" } \n";
if (handleTranslucent) {
source +=
" bool isStyleTranslucent = (featureProperties.a != 1.0); \n" +
" if (czm_pass == czm_passTranslucent) \n" +
" { \n" +
" if (!isStyleTranslucent && !tile_translucentCommand) \n" + // Do not render opaque features in the translucent pass
" { \n" +
" discard; \n" +
" } \n" +
" } \n" +
" else \n" +
" { \n" +
" if (isStyleTranslucent) \n" + // Do not render translucent features in the opaque pass
" { \n" +
" discard; \n" +
" } \n" +
" } \n";
}
source += " tile_color(featureProperties); \n";
if (hasPremultipliedAlpha) {
source += " out_FragColor.rgb *= out_FragColor.a; \n";
}
source += "} \n";
}
return source;
};
};
Cesium3DTileBatchTable.prototype.getClassificationFragmentShaderCallback =
function () {
if (this.featuresLength === 0) {
return;
}
return function (source) {
source = ShaderSource.replaceMain(source, "tile_main");
if (ContextLimits.maximumVertexTextureImageUnits > 0) {
// When VTF is supported, per-feature show/hide already happened in the fragment shader
source +=
"uniform sampler2D tile_pickTexture;\n" +
"in vec2 tile_featureSt; \n" +
"in vec4 tile_featureColor; \n" +
"void main() \n" +
"{ \n" +
" tile_main(); \n" +
" out_FragColor = tile_featureColor; \n" +
" out_FragColor.rgb *= out_FragColor.a; \n" +
"}";
} else {
source +=
"uniform sampler2D tile_batchTexture; \n" +
"uniform sampler2D tile_pickTexture;\n" +
"in vec2 tile_featureSt; \n" +
"void main() \n" +
"{ \n" +
" tile_main(); \n" +
" vec4 featureProperties = texture(tile_batchTexture, tile_featureSt); \n" +
" if (featureProperties.a == 0.0) { \n" + // show: alpha == 0 - false, non-zero - true
" discard; \n" +
" } \n" +
" out_FragColor = featureProperties; \n" +
" out_FragColor.rgb *= out_FragColor.a; \n" +
"} \n";
}
return source;
};
};
function getColorBlend(batchTable) {
const tileset = batchTable._content.tileset;
const colorBlendMode = tileset.colorBlendMode;
const colorBlendAmount = tileset.colorBlendAmount;
if (colorBlendMode === Cesium3DTileColorBlendMode.HIGHLIGHT) {
return 0.0;
}
if (colorBlendMode === Cesium3DTileColorBlendMode.REPLACE) {
return 1.0;
}
if (colorBlendMode === Cesium3DTileColorBlendMode.MIX) {
// The value 0.0 is reserved for highlight, so clamp to just above 0.0.
return CesiumMath.clamp(colorBlendAmount, CesiumMath.EPSILON4, 1.0);
}
//>>includeStart('debug', pragmas.debug);
throw new DeveloperError(`Invalid color blend mode "${colorBlendMode}".`);
//>>includeEnd('debug');
}
Cesium3DTileBatchTable.prototype.getUniformMapCallback = function () {
if (this.featuresLength === 0) {
return;
}
const that = this;
return function (uniformMap) {
const batchUniformMap = {
tile_batchTexture: function () {
// PERFORMANCE_IDEA: we could also use a custom shader that avoids the texture read.
return defaultValue(
that._batchTexture.batchTexture,
that._batchTexture.defaultTexture,
);
},
tile_textureDimensions: function () {
return that._batchTexture.textureDimensions;
},
tile_textureStep: function () {
return that._batchTexture.textureStep;
},
tile_colorBlend: function () {
return getColorBlend(that);
},
tile_pickTexture: function () {
return that._batchTexture.pickTexture;
},
};
return combine(uniformMap, batchUniformMap);
};
};
Cesium3DTileBatchTable.prototype.getPickId = function () {
return "texture(tile_pickTexture, tile_featureSt)";
};
///////////////////////////////////////////////////////////////////////////
const StyleCommandsNeeded = {
ALL_OPAQUE: 0,
ALL_TRANSLUCENT: 1,
OPAQUE_AND_TRANSLUCENT: 2,
};
Cesium3DTileBatchTable.prototype.addDerivedCommands = function (
frameState,
commandStart,
) {
const commandList = frameState.commandList;
const commandEnd = commandList.length;
const tile = this._content._tile;
const finalResolution = tile._finalResolution;
const tileset = tile.tileset;
const bivariateVisibilityTest =
tileset.isSkippingLevelOfDetail &&
tileset.hasMixedContent &&
frameState.context.stencilBuffer;
const styleCommandsNeeded = getStyleCommandsNeeded(this);
for (let i = commandStart; i < commandEnd; ++i) {
const command = commandList[i];
if (command.pass === Pass.COMPUTE) {
continue;
}
let derivedCommands = command.derivedCommands.tileset;
if (!defined(derivedCommands) || command.dirty) {
derivedCommands = {};
command.derivedCommands.tileset = derivedCommands;
derivedCommands.originalCommand = deriveCommand(command);
command.dirty = false;
}
const originalCommand = derivedCommands.originalCommand;
if (
styleCommandsNeeded !== StyleCommandsNeeded.ALL_OPAQUE &&
command.pass !== Pass.TRANSLUCENT
) {
if (!defined(derivedCommands.translucent)) {
derivedCommands.translucent = deriveTranslucentCommand(originalCommand);
}
}
if (
styleCommandsNeeded !== StyleCommandsNeeded.ALL_TRANSLUCENT &&
command.pass !== Pass.TRANSLUCENT
) {
if (!defined(derivedCommands.opaque)) {
derivedCommands.opaque = deriveOpaqueCommand(originalCommand);
}
if (bivariateVisibilityTest) {
if (!finalResolution) {
if (!defined(derivedCommands.zback)) {
derivedCommands.zback = deriveZBackfaceCommand(
frameState.context,
originalCommand,
);
}
tileset._backfaceCommands.push(derivedCommands.zback);
}
if (
!defined(derivedCommands.stencil) ||
tile._selectionDepth !==
getLastSelectionDepth(derivedCommands.stencil)
) {
if (command.renderState.depthMask) {
derivedCommands.stencil = deriveStencilCommand(
originalCommand,
tile._selectionDepth,
);
} else {
// Ignore if tile does not write depth
derivedCommands.stencil = derivedCommands.opaque;
}
}
}
}
const opaqueCommand = bivariateVisibilityTest
? derivedCommands.stencil
: derivedCommands.opaque;
const translucentCommand = derivedCommands.translucent;
// If the command was originally opaque:
// * If the styling applied to the tile is all opaque, use the opaque command
// (with one additional uniform needed for the shader).
// * If the styling is all translucent, use new (cached) derived commands (front
// and back faces) with a translucent render state.
// * If the styling causes both opaque and translucent features in this tile,
// then use both sets of commands.
if (command.pass !== Pass.TRANSLUCENT) {
if (styleCommandsNeeded === StyleCommandsNeeded.ALL_OPAQUE) {
commandList[i] = opaqueCommand;
}
if (styleCommandsNeeded === StyleCommandsNeeded.ALL_TRANSLUCENT) {
commandList[i] = translucentCommand;
}
if (styleCommandsNeeded === StyleCommandsNeeded.OPAQUE_AND_TRANSLUCENT) {
// PERFORMANCE_IDEA: if the tile has multiple commands, we do not know what features are in what
// commands so this case may be overkill.
commandList[i] = opaqueCommand;
commandList.push(translucentCommand);
}
} else {
// Command was originally translucent so no need to derive new commands;
// as of now, a style can't change an originally translucent feature to
// opaque since the style's alpha is modulated, not a replacement. When
// this changes, we need to derive new opaque commands here.
commandList[i] = originalCommand;
}
}
};
function getStyleCommandsNeeded(batchTable) {
const translucentFeaturesLength =