Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 4x 3x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x 3x 3x 3x | import {
Math as CesiumMath,
Check,
destroyObject,
getElement,
} from "@cesium/engine";
import knockout from "../ThirdParty/knockout.js";
import InspectorShared from "../InspectorShared.js";
import VoxelInspectorViewModel from "./VoxelInspectorViewModel.js";
/**
* Inspector widget to aid in debugging voxels
*
* @alias VoxelInspector
* @constructor
*
* @param {Element|string} container The DOM element or ID that will contain the widget.
* @param {Scene} scene the Scene instance to use.
*/
function VoxelInspector(container, scene) {
//>>includeStart('debug', pragmas.debug);
Check.defined("container", container);
Check.typeOf.object("scene", scene);
//>>includeEnd('debug');
container = getElement(container);
const element = document.createElement("div");
const viewModel = new VoxelInspectorViewModel(scene);
this._viewModel = viewModel;
this._container = container;
this._element = element;
const text = document.createElement("div");
text.textContent = "Voxel Inspector";
text.className = "cesium-cesiumInspector-button";
text.setAttribute("data-bind", "click: toggleInspector");
element.appendChild(text);
element.className = "cesium-cesiumInspector cesium-VoxelInspector";
element.setAttribute(
"data-bind",
'css: { "cesium-cesiumInspector-visible" : inspectorVisible, "cesium-cesiumInspector-hidden" : !inspectorVisible}',
);
container.appendChild(element);
const panel = document.createElement("div");
panel.className = "cesium-cesiumInspector-dropDown";
element.appendChild(panel);
const { createSection, createCheckbox, createRangeInput, createButton } =
InspectorShared;
const displayPanelContents = createSection(
panel,
"Display",
"displayVisible",
"toggleDisplay",
);
const transformPanelContents = createSection(
panel,
"Transform",
"transformVisible",
"toggleTransform",
);
const clippingPanelContents = createSection(
panel,
"Clipping",
"clippingVisible",
"toggleClipping",
);
const shaderPanelContents = createSection(
panel,
"Shader",
"shaderVisible",
"toggleShader",
);
// Display
displayPanelContents.appendChild(createCheckbox("Depth Test", "depthTest"));
displayPanelContents.appendChild(createCheckbox("Show", "show"));
displayPanelContents.appendChild(
createCheckbox("Disable Update", "disableUpdate"),
);
displayPanelContents.appendChild(createCheckbox("Debug Draw", "debugDraw"));
displayPanelContents.appendChild(createCheckbox("Jitter", "jitter"));
displayPanelContents.appendChild(
createCheckbox("Nearest Sampling", "nearestSampling"),
);
displayPanelContents.appendChild(
createRangeInput("Screen Space Error", "screenSpaceError", 0, 128),
);
displayPanelContents.appendChild(
createRangeInput("Step Size", "stepSize", 0.0, 2.0),
);
// Transform
const maxTrans = 10.0;
const maxScale = 10.0;
const maxAngle = CesiumMath.PI;
transformPanelContents.appendChild(
createRangeInput("Translation X", "translationX", -maxTrans, +maxTrans),
);
transformPanelContents.appendChild(
createRangeInput("Translation Y", "translationY", -maxTrans, +maxTrans),
);
transformPanelContents.appendChild(
createRangeInput("Translation Z", "translationZ", -maxTrans, +maxTrans),
);
transformPanelContents.appendChild(
createRangeInput("Scale X", "scaleX", 0, +maxScale),
);
transformPanelContents.appendChild(
createRangeInput("Scale Y", "scaleY", 0, +maxScale),
);
transformPanelContents.appendChild(
createRangeInput("Scale Z", "scaleZ", 0, +maxScale),
);
transformPanelContents.appendChild(
createRangeInput("Heading", "angleX", -maxAngle, +maxAngle),
);
transformPanelContents.appendChild(
createRangeInput("Pitch", "angleY", -maxAngle, +maxAngle),
);
transformPanelContents.appendChild(
createRangeInput("Roll", "angleZ", -maxAngle, +maxAngle),
);
// Clipping
makeCoordinateRangeWithDynamicMinMax(
"Max X",
"Min X",
"Max Y",
"Min Y",
"Max Z",
"Min Z",
"clippingBoxMaxX",
"clippingBoxMinX",
"clippingBoxMaxY",
"clippingBoxMinY",
"clippingBoxMaxZ",
"clippingBoxMinZ",
"shapeIsBox",
clippingPanelContents,
);
makeCoordinateRangeWithDynamicMinMax(
"Max Longitude",
"Min Longitude",
"Max Latitude",
"Min Latitude",
"Max Height",
"Min Height",
"clippingEllipsoidMaxLongitude",
"clippingEllipsoidMinLongitude",
"clippingEllipsoidMaxLatitude",
"clippingEllipsoidMinLatitude",
"clippingEllipsoidMaxHeight",
"clippingEllipsoidMinHeight",
"shapeIsEllipsoid",
clippingPanelContents,
);
makeCoordinateRangeWithDynamicMinMax(
"Max Radius",
"Min Radius",
"Max Angle",
"Min Angle",
"Max Height",
"Min Height",
"clippingCylinderMaxRadius",
"clippingCylinderMinRadius",
"clippingCylinderMaxAngle",
"clippingCylinderMinAngle",
"clippingCylinderMaxHeight",
"clippingCylinderMinHeight",
"shapeIsCylinder",
clippingPanelContents,
);
// Shader
const shaderPanelEditor = document.createElement("div");
shaderPanelContents.appendChild(shaderPanelEditor);
const shaderEditor = document.createElement("textarea");
shaderEditor.setAttribute(
"data-bind",
"textInput: shaderString, event: { keydown: shaderEditorKeyPress }",
);
shaderPanelEditor.className = "cesium-cesiumInspector-styleEditor";
shaderPanelEditor.appendChild(shaderEditor);
const compileShaderButton = createButton(
"Compile (Ctrl+Enter)",
"compileShader",
);
shaderPanelEditor.appendChild(compileShaderButton);
const compilationText = document.createElement("label");
compilationText.style.display = "block";
compilationText.setAttribute(
"data-bind",
"text: shaderCompilationMessage, style: {color: shaderCompilationSuccess ? 'green' : 'red'}",
);
shaderPanelEditor.appendChild(compilationText);
knockout.applyBindings(viewModel, element);
}
Object.defineProperties(VoxelInspector.prototype, {
/**
* Gets the parent container.
* @memberof VoxelInspector.prototype
*
* @type {Element}
*/
container: {
get: function () {
return this._container;
},
},
/**
* Gets the view model.
* @memberof VoxelInspector.prototype
*
* @type {VoxelInspectorViewModel}
*/
viewModel: {
get: function () {
return this._viewModel;
},
},
});
/**
* @returns {boolean} true if the object has been destroyed, false otherwise.
*/
VoxelInspector.prototype.isDestroyed = function () {
return false;
};
/**
* Destroys the widget. Should be called if permanently
* removing the widget from layout.
*/
VoxelInspector.prototype.destroy = function () {
knockout.cleanNode(this._element);
this._container.removeChild(this._element);
this.viewModel.destroy();
return destroyObject(this);
};
function makeCoordinateRangeWithDynamicMinMax(
maxXTitle,
minXTitle,
maxYTitle,
minYTitle,
maxZTitle,
minZTitle,
maxXVar,
minXVar,
maxYVar,
minYVar,
maxZVar,
minZVar,
allowedShape,
parentContainer,
) {
const createRangeInput = InspectorShared.createRangeInputWithDynamicMinMax;
const boundsElement = parentContainer.appendChild(
document.createElement("div"),
);
boundsElement.setAttribute("data-bind", `if: ${allowedShape}`);
boundsElement.appendChild(createRangeInput(maxXTitle, maxXVar));
boundsElement.appendChild(createRangeInput(minXTitle, minXVar));
boundsElement.appendChild(createRangeInput(maxYTitle, maxYVar));
boundsElement.appendChild(createRangeInput(minYTitle, minYVar));
boundsElement.appendChild(createRangeInput(maxZTitle, maxZVar));
boundsElement.appendChild(createRangeInput(minZTitle, minZVar));
}
export default VoxelInspector;
|