-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathDebugInspector.js
136 lines (118 loc) · 4.08 KB
/
DebugInspector.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
import clone from "../Core/clone.js";
import Color from "../Core/Color.js";
import DrawCommand from "../Renderer/DrawCommand.js";
import ShaderSource from "../Renderer/ShaderSource.js";
import ShaderProgram from "../Renderer/ShaderProgram.js";
import defined from "../Core/defined.js";
/**
* @private
*/
function DebugInspector() {
this._cachedShowFrustumsShaders = {};
}
function getAttributeLocations(shaderProgram) {
var attributeLocations = {};
var attributes = shaderProgram.vertexAttributes;
for (var a in attributes) {
if (attributes.hasOwnProperty(a)) {
attributeLocations[a] = attributes[a].index;
}
}
return attributeLocations;
}
function createDebugShowFrustumsShaderProgram(scene, shaderProgram) {
var context = scene.context;
var sp = shaderProgram;
var fs = sp.fragmentShaderSource.clone();
var targets = [];
fs.sources = fs.sources.map(function (source) {
source = ShaderSource.replaceMain(source, "czm_Debug_main");
var re = /gl_FragData\[(\d+)\]/g;
var match;
while ((match = re.exec(source)) !== null) {
if (targets.indexOf(match[1]) === -1) {
targets.push(match[1]);
}
}
return source;
});
var length = targets.length;
var newMain = "";
newMain += "uniform vec3 debugShowCommandsColor;\n";
newMain += "uniform vec3 debugShowFrustumsColor;\n";
newMain += "void main() \n" + "{ \n" + " czm_Debug_main(); \n";
// set debugShowCommandsColor to Color(1.0, 1.0, 1.0, 1.0) to stop rendering scene.debugShowCommands
// set debugShowFrustumsColor to Color(1.0, 1.0, 1.0, 1.0) to stop rendering scene.debugShowFrustums
var i;
if (length > 0) {
for (i = 0; i < length; ++i) {
newMain +=
" gl_FragData[" + targets[i] + "].rgb *= debugShowCommandsColor;\n";
newMain +=
" gl_FragData[" + targets[i] + "].rgb *= debugShowFrustumsColor;\n";
}
} else {
newMain += " gl_FragColor.rgb *= debugShowCommandsColor;\n";
newMain += " gl_FragColor.rgb *= debugShowFrustumsColor;\n";
}
newMain += "}";
fs.sources.push(newMain);
var attributeLocations = getAttributeLocations(sp);
return ShaderProgram.fromCache({
context: context,
vertexShaderSource: sp.vertexShaderSource,
fragmentShaderSource: fs,
attributeLocations: attributeLocations,
});
}
DebugInspector.prototype.createShowFrustumsCommand = function (scene, command) {
// create debug command
var debugCommand = DrawCommand.shallowClone(command);
var shaderProgramId = command.shaderProgram.id;
if (!defined(this._cachedShowFrustumsShaders[shaderProgramId])) {
debugCommand.shaderProgram = createDebugShowFrustumsShaderProgram(
scene,
command.shaderProgram
);
this._cachedShowFrustumsShaders[shaderProgramId] =
debugCommand.shaderProgram;
} else {
debugCommand.shaderProgram = this._cachedShowFrustumsShaders[
shaderProgramId
];
}
// setup uniform for the shader
if (!defined(command.uniformMap) || typeof command.uniformMap !== "object") {
debugCommand.uniformMap = {};
} else {
debugCommand.uniformMap = clone(command.uniformMap);
}
if (scene.debugShowCommands) {
if (!defined(command._debugColor)) {
command._debugColor = Color.fromRandom();
}
debugCommand.uniformMap.debugShowCommandsColor = function () {
return command._debugColor;
};
} else {
debugCommand.uniformMap.debugShowCommandsColor = function () {
return new Color(1.0, 1.0, 1.0, 1.0);
};
}
if (scene.debugShowFrustums) {
// Support up to three frustums. If a command overlaps all
// three, it's code is not changed.
var r = command.debugOverlappingFrustums & (1 << 0) ? 1.0 : 0.0;
var g = command.debugOverlappingFrustums & (1 << 1) ? 1.0 : 0.0;
var b = command.debugOverlappingFrustums & (1 << 2) ? 1.0 : 0.0;
debugCommand.uniformMap.debugShowFrustumsColor = function () {
return new Color(r, g, b, 1.0);
};
} else {
debugCommand.uniformMap.debugShowFrustumsColor = function () {
return new Color(1.0, 1.0, 1.0, 1.0);
};
}
return debugCommand;
};
export default DebugInspector;