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 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 | 4x 1x 3x 1x 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 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 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 | import {
defined,
destroyObject,
DeveloperError,
getElement,
} from "@cesium/engine";
import knockout from "../ThirdParty/knockout.js";
import InspectorShared from "../InspectorShared.js";
import CesiumInspectorViewModel from "./CesiumInspectorViewModel.js";
/**
* Inspector widget to aid in debugging
*
* @alias CesiumInspector
* @constructor
*
* @param {Element|string} container The DOM element or ID that will contain the widget.
* @param {Scene} scene The Scene instance to use.
*
* @demo {@link https://sandcastle.cesium.com/index.html?src=Cesium%20Inspector.html|Cesium Sandcastle Cesium Inspector Demo}
*/
function CesiumInspector(container, scene) {
//>>includeStart('debug', pragmas.debug);
if (!defined(container)) {
throw new DeveloperError("container is required.");
}
if (!defined(scene)) {
throw new DeveloperError("scene is required.");
}
//>>includeEnd('debug');
container = getElement(container);
const performanceContainer = document.createElement("div");
const viewModel = new CesiumInspectorViewModel(scene, performanceContainer);
this._viewModel = viewModel;
this._container = container;
const element = document.createElement("div");
this._element = element;
const text = document.createElement("div");
text.textContent = "Cesium Inspector";
text.className = "cesium-cesiumInspector-button";
text.setAttribute("data-bind", "click: toggleDropDown");
element.appendChild(text);
element.className = "cesium-cesiumInspector";
element.setAttribute(
"data-bind",
'css: { "cesium-cesiumInspector-visible" : dropDownVisible, "cesium-cesiumInspector-hidden" : !dropDownVisible }',
);
container.appendChild(this._element);
const panel = document.createElement("div");
panel.className = "cesium-cesiumInspector-dropDown";
element.appendChild(panel);
const createSection = InspectorShared.createSection;
const createCheckbox = InspectorShared.createCheckbox;
// General
const generalSection = createSection(
panel,
"General",
"generalVisible",
"toggleGeneral",
);
const debugShowFrustums = createCheckbox("Show Frustums", "frustums");
const frustumStatistics = document.createElement("div");
frustumStatistics.className = "cesium-cesiumInspector-frustumStatistics";
frustumStatistics.setAttribute(
"data-bind",
"visible: frustums, html: frustumStatisticText",
);
debugShowFrustums.appendChild(frustumStatistics);
generalSection.appendChild(debugShowFrustums);
generalSection.appendChild(
createCheckbox("Show Frustum Planes", "frustumPlanes"),
);
generalSection.appendChild(
createCheckbox("Performance Display", "performance"),
);
performanceContainer.className = "cesium-cesiumInspector-performanceDisplay";
generalSection.appendChild(performanceContainer);
const shaderCacheDisplay = document.createElement("div");
shaderCacheDisplay.className = "cesium-cesiumInspector-shaderCache";
shaderCacheDisplay.setAttribute("data-bind", "html: shaderCacheText");
generalSection.appendChild(shaderCacheDisplay);
const depthFrustum = document.createElement("div");
generalSection.appendChild(depthFrustum);
// Use a span with HTML binding so that we can indent with non-breaking spaces.
const gLabel = document.createElement("span");
gLabel.setAttribute(
"data-bind",
'html: " Frustum:"',
);
depthFrustum.appendChild(gLabel);
const gText = document.createElement("span");
gText.setAttribute("data-bind", "text: depthFrustumText");
depthFrustum.appendChild(gText);
const gMinusButton = document.createElement("input");
gMinusButton.type = "button";
gMinusButton.value = "-";
gMinusButton.className = "cesium-cesiumInspector-pickButton";
gMinusButton.setAttribute("data-bind", "click: decrementDepthFrustum");
depthFrustum.appendChild(gMinusButton);
const gPlusButton = document.createElement("input");
gPlusButton.type = "button";
gPlusButton.value = "+";
gPlusButton.className = "cesium-cesiumInspector-pickButton";
gPlusButton.setAttribute("data-bind", "click: incrementDepthFrustum");
depthFrustum.appendChild(gPlusButton);
// Primitives
const primSection = createSection(
panel,
"Primitives",
"primitivesVisible",
"togglePrimitives",
);
const pickPrimRequired = document.createElement("div");
pickPrimRequired.className = "cesium-cesiumInspector-pickSection";
primSection.appendChild(pickPrimRequired);
const pickPrimitiveButton = document.createElement("input");
pickPrimitiveButton.type = "button";
pickPrimitiveButton.value = "Pick a primitive";
pickPrimitiveButton.className = "cesium-cesiumInspector-pickButton";
pickPrimitiveButton.setAttribute(
"data-bind",
'css: {"cesium-cesiumInspector-pickButtonHighlight" : pickPrimitiveActive}, click: pickPrimitive',
);
let buttonWrap = document.createElement("div");
buttonWrap.className = "cesium-cesiumInspector-center";
buttonWrap.appendChild(pickPrimitiveButton);
pickPrimRequired.appendChild(buttonWrap);
pickPrimRequired.appendChild(
createCheckbox(
"Show bounding sphere",
"primitiveBoundingSphere",
"hasPickedPrimitive",
),
);
pickPrimRequired.appendChild(
createCheckbox(
"Show reference frame",
"primitiveReferenceFrame",
"hasPickedPrimitive",
),
);
this._primitiveOnly = createCheckbox(
"Show only selected",
"filterPrimitive",
"hasPickedPrimitive",
);
pickPrimRequired.appendChild(this._primitiveOnly);
// Terrain
const terrainSection = createSection(
panel,
"Terrain",
"terrainVisible",
"toggleTerrain",
);
const pickTileRequired = document.createElement("div");
pickTileRequired.className = "cesium-cesiumInspector-pickSection";
terrainSection.appendChild(pickTileRequired);
const pickTileButton = document.createElement("input");
pickTileButton.type = "button";
pickTileButton.value = "Pick a tile";
pickTileButton.className = "cesium-cesiumInspector-pickButton";
pickTileButton.setAttribute(
"data-bind",
'css: {"cesium-cesiumInspector-pickButtonHighlight" : pickTileActive}, click: pickTile',
);
buttonWrap = document.createElement("div");
buttonWrap.appendChild(pickTileButton);
buttonWrap.className = "cesium-cesiumInspector-center";
pickTileRequired.appendChild(buttonWrap);
const tileInfo = document.createElement("div");
pickTileRequired.appendChild(tileInfo);
const parentTile = document.createElement("input");
parentTile.type = "button";
parentTile.value = "Parent";
parentTile.className = "cesium-cesiumInspector-pickButton";
parentTile.setAttribute("data-bind", "click: selectParent");
const nwTile = document.createElement("input");
nwTile.type = "button";
nwTile.value = "NW";
nwTile.className = "cesium-cesiumInspector-pickButton";
nwTile.setAttribute("data-bind", "click: selectNW");
const neTile = document.createElement("input");
neTile.type = "button";
neTile.value = "NE";
neTile.className = "cesium-cesiumInspector-pickButton";
neTile.setAttribute("data-bind", "click: selectNE");
const swTile = document.createElement("input");
swTile.type = "button";
swTile.value = "SW";
swTile.className = "cesium-cesiumInspector-pickButton";
swTile.setAttribute("data-bind", "click: selectSW");
const seTile = document.createElement("input");
seTile.type = "button";
seTile.value = "SE";
seTile.className = "cesium-cesiumInspector-pickButton";
seTile.setAttribute("data-bind", "click: selectSE");
const tileText = document.createElement("div");
tileText.className = "cesium-cesiumInspector-tileText";
tileInfo.className = "cesium-cesiumInspector-frustumStatistics";
tileInfo.appendChild(tileText);
tileInfo.setAttribute("data-bind", "visible: hasPickedTile");
tileText.setAttribute("data-bind", "html: tileText");
const relativeText = document.createElement("div");
relativeText.className = "cesium-cesiumInspector-relativeText";
relativeText.textContent = "Select relative:";
tileInfo.appendChild(relativeText);
const table = document.createElement("table");
const tr1 = document.createElement("tr");
const tr2 = document.createElement("tr");
const td1 = document.createElement("td");
td1.appendChild(parentTile);
const td2 = document.createElement("td");
td2.appendChild(nwTile);
const td3 = document.createElement("td");
td3.appendChild(neTile);
tr1.appendChild(td1);
tr1.appendChild(td2);
tr1.appendChild(td3);
const td4 = document.createElement("td");
const td5 = document.createElement("td");
td5.appendChild(swTile);
const td6 = document.createElement("td");
td6.appendChild(seTile);
tr2.appendChild(td4);
tr2.appendChild(td5);
tr2.appendChild(td6);
table.appendChild(tr1);
table.appendChild(tr2);
tileInfo.appendChild(table);
pickTileRequired.appendChild(
createCheckbox(
"Show bounding volume",
"tileBoundingSphere",
"hasPickedTile",
),
);
pickTileRequired.appendChild(
createCheckbox("Show only selected", "filterTile", "hasPickedTile"),
);
terrainSection.appendChild(createCheckbox("Wireframe", "wireframe"));
terrainSection.appendChild(
createCheckbox("Suspend LOD update", "suspendUpdates"),
);
terrainSection.appendChild(
createCheckbox("Show tile coordinates", "tileCoordinates"),
);
knockout.applyBindings(viewModel, this._element);
}
Object.defineProperties(CesiumInspector.prototype, {
/**
* Gets the parent container.
* @memberof CesiumInspector.prototype
*
* @type {Element}
*/
container: {
get: function () {
return this._container;
},
},
/**
* Gets the view model.
* @memberof CesiumInspector.prototype
*
* @type {CesiumInspectorViewModel}
*/
viewModel: {
get: function () {
return this._viewModel;
},
},
});
/**
* @returns {boolean} true if the object has been destroyed, false otherwise.
*/
CesiumInspector.prototype.isDestroyed = function () {
return false;
};
/**
* Destroys the widget. Should be called if permanently
* removing the widget from layout.
*/
CesiumInspector.prototype.destroy = function () {
knockout.cleanNode(this._element);
this._container.removeChild(this._element);
this.viewModel.destroy();
return destroyObject(this);
};
export default CesiumInspector;
|