Spaces:
Configuration error
Configuration error
File size: 23,120 Bytes
9f21d0a | 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 | <template>
<div class="cesium">
<div v-show="showUI" id="toolbarLeft">
<div class="toolbarButtons">
<UTooltip text="Satellite selection">
<button type="button" class="cesium-button cesium-toolbar-button" :class="{ 'toolbarButton--open': menu.cat }" @click="toggleMenu('cat')">
<UIcon name="lucide:satellite" />
</button>
</UTooltip>
<UTooltip text="Satellite components">
<button type="button" class="cesium-button cesium-toolbar-button" :class="{ 'toolbarButton--open': menu.sat }" @click="toggleMenu('sat')">
<UIcon name="lucide:orbit" />
</button>
</UTooltip>
<UTooltip text="Ground station">
<button type="button" class="cesium-button cesium-toolbar-button" :class="{ 'toolbarButton--open': menu.gs }" @click="toggleMenu('gs')">
<UIcon name="lucide:map-pin" />
</button>
</UTooltip>
<UTooltip text="Map">
<button type="button" class="cesium-button cesium-toolbar-button" :class="{ 'toolbarButton--open': menu.map }" @click="toggleMenu('map')">
<UIcon name="lucide:layers" />
</button>
</UTooltip>
<UTooltip text="View">
<button type="button" class="cesium-button cesium-toolbar-button" :class="{ 'toolbarButton--open': menu.view }" @click="toggleMenu('view')">
<UIcon name="lucide:telescope" />
</button>
</UTooltip>
<UTooltip v-if="cc.minimalUI" text="Mobile">
<button type="button" class="cesium-button cesium-toolbar-button" :class="{ 'toolbarButton--open': menu.ios }" @click="toggleMenu('ios')">
<UIcon name="lucide:smartphone" />
</button>
</UTooltip>
<UTooltip text="Render">
<button type="button" class="cesium-button cesium-toolbar-button" :class="{ 'toolbarButton--open': menu.render }" @click="toggleMenu('render')">
<UIcon name="lucide:gauge" />
</button>
</UTooltip>
<UTooltip text="Custom propagation">
<button type="button" class="cesium-button cesium-toolbar-button" :class="{ 'toolbarButton--open': menu.sim }" @click="toggleMenu('sim')">
<UIcon name="lucide:rocket" />
</button>
</UTooltip>
</div>
<!-- v-if (not v-show like the other panels): the virtualized list inside
measures its scroll element on mount, and mounting hidden (display:none)
yields a 0-height measurement that only a later ResizeObserver tick would
fix. Mounting on open guarantees a correct first paint; browser state
(search, expansion) is module-scoped in useSatelliteBrowser and survives
remounts. -->
<div v-if="menu.cat" class="toolbarSwitches toolbarSwitches--catalog">
<satellite-browser />
</div>
<div v-show="menu.sat" class="toolbarSwitches">
<!-- "Components", not "elements": an element set is the GP data a
satellite is built from, and this panel is about what is drawn. -->
<div class="toolbarTitle">Satellite components</div>
<label v-for="componentName in cc.sats.availableComponents" :key="componentName" class="toolbarSwitch">
<input v-model="enabledComponents" type="checkbox" :value="componentName" />
<span class="slider"></span>
{{ componentName }}
</label>
<!--
<label class="toolbarSwitch">
<input type="button" @click="cc.viewer.trackedEntity = undefined">
Untrack Entity
</label>
-->
</div>
<div v-show="menu.gs" class="toolbarSwitches">
<div class="toolbarTitle">Ground station</div>
<ground-station-list />
</div>
<div v-show="menu.map" class="toolbarSwitches">
<!-- The imagery is two groups rather than one list, each with the control
its invariant deserves: at most one basemap, so radios, and any number
of overlays, so checkboxes. Both bind by *provider* rather than by
token, so a layer carrying an opacity (`ArcGis_0.5`, which only a url
can set) still shows as the layer it is.
Either group goes inert when a surface model has taken over what it
describes. Dimmed, and still live: the selection is still the user's,
it simply is not being drawn while the globe is hidden. The Terrain
group below is the one exception, and says why. -->
<div class="toolbarTitle" :class="{ 'toolbarTitle--inert': inert.includes('layers') }">Basemap</div>
<label v-for="name in cc.baseLayers" :key="name" class="toolbarSwitch" :class="{ 'toolbarSwitch--inert': inert.includes('layers') }">
<input type="radio" name="basemap" :value="name" :checked="baseLayer === name" @change="setBaseLayer(name)" />
<span class="slider"></span>
{{ name }}
</label>
<div class="toolbarTitle" :class="{ 'toolbarTitle--inert': inert.includes('layers') }">Overlays</div>
<label v-for="name in cc.overlayLayers" :key="name" class="toolbarSwitch" :class="{ 'toolbarSwitch--inert': inert.includes('layers') }">
<input type="checkbox" :checked="hasOverlay(name)" @change="toggleOverlay(name, ($event.target as HTMLInputElement).checked)" />
<span class="slider"></span>
{{ name }}
</label>
<div v-if="inertReason('layers')" class="toolbarNote">{{ inertReason("layers") }}</div>
<div class="toolbarTitle" :class="{ 'toolbarTitle--inert': inert.includes('terrain') }">Terrain</div>
<!-- `:checked` against what the globe is using rather than `v-model` against
the store: while a surface model imposes a terrain, the stored choice is
not the terrain being drawn, and a radio's dot is the app saying what
is. Disabled only when imposed — the choice is genuinely not the user's
then, and a control that accepts a click and shows nothing is worse than
one that declines it. The store still remembers, and still comes back. -->
<label v-for="name in cc.terrainProviderNames" :key="name" class="toolbarSwitch" :class="{ 'toolbarSwitch--inert': inert.includes('terrain') }">
<input type="radio" name="terrain" :value="name" :checked="activeTerrain === name" :disabled="terrainImposed" @change="terrainProvider = name" />
<span class="slider"></span>
{{ name }}
</label>
<!-- Dimming says a group is not describing the picture; this says what is.
Without it the Terrain group is the confusing case: the selected row is
not what is in force, and nothing on screen names what is. -->
<div v-if="inertReason('terrain')" class="toolbarNote">{{ inertReason("terrain") }}</div>
<div class="toolbarTitle">Surface</div>
<label v-for="name in SURFACE_MODELS" :key="name" class="toolbarSwitch">
<input v-model="surfaceModel" type="radio" :value="name" />
<span class="slider"></span>
{{ name }}
</label>
<!-- Only for the model actually selected: the note explains why nothing
happened, and is noise against a model nobody asked for. -->
<div v-if="surfaceUnavailable" class="toolbarNote">{{ surfaceUnavailable }}</div>
<!-- Last, because it is the only group here that is about what is *behind*
the globe rather than on it. See src/config/starMaps.ts for what each
one is and what it costs.
Narrowed to the maps actually on the server, the same way the pixel
ratio ladder is narrowed to the rungs below this display: the
non-builtin ones are optional assets, and a radio that selects a sky
nobody can load is worse than one that is absent. The url vocabulary
is not narrowed with it — `?stars=` still accepts every name. -->
<div class="toolbarTitle">Star map</div>
<label v-for="name in starMapOptions" :key="name" class="toolbarSwitch">
<input v-model="starMap" type="radio" :value="name" />
<span class="slider"></span>
{{ name }}
</label>
</div>
<!-- Where you look from and with what, as against the Map panel's what you
are looking at. -->
<div v-show="menu.view" class="toolbarSwitches">
<div class="toolbarTitle">View</div>
<label v-for="name in cc.sceneModes" :key="name" class="toolbarSwitch">
<input v-model="sceneMode" type="radio" :value="name" />
<span class="slider"></span>
{{ name }}
</label>
<!-- Under the mode it belongs to, the same way the map panel's notes sit
under the selection they explain: the keys work whether or not this
says so, but nothing else in the app would say it. Hidden in
minimalUI — the iOS and iframe case — where there is no keyboard to
press and the panel is the smaller for it. -->
<div v-if="inSkyView && !cc.minimalUI" class="toolbarNote">WASD walks the observer, Q and E change height.</div>
<div class="toolbarTitle">Camera</div>
<label v-for="name in cc.cameraModes" :key="name" class="toolbarSwitch">
<input v-model="cameraMode" type="radio" :value="name" />
<span class="slider"></span>
{{ name }}
</label>
<!-- Only in the sky view, which is the only place an aim exists to hand
over, and only where the sensor could work at all. -->
<template v-if="inSkyView && compassOffered">
<div class="toolbarTitle">Aiming</div>
<label class="toolbarSwitch">
<input type="checkbox" :checked="compassActive" :disabled="compassPending" @change="onCompassToggle" />
<!-- The spinner stands in for the slider rather than joining it: both
occupy the row's left gutter, and one of the two is always the
answer to "what is this control doing". -->
<span v-if="compassPending" class="toolbarSpinner"></span>
<span v-else class="slider"></span>
Use compass
</label>
</template>
</div>
<div v-show="menu.ios" class="toolbarSwitches">
<div class="toolbarTitle">Mobile</div>
<label class="toolbarSwitch">
<input v-model="cc.viewer.scene.useWebVR" type="checkbox" />
<span class="slider"></span>
VR
</label>
<label class="toolbarSwitch">
<input v-model="cc.viewer.clock.shouldAnimate" type="checkbox" />
<span class="slider"></span>
Play
</label>
<label class="toolbarSwitch">
<input type="button" @click="cc.viewer.clockViewModel.multiplier *= 2" />
Increase play speed
</label>
<label class="toolbarSwitch">
<input type="button" @click="cc.viewer.clockViewModel.multiplier /= 2" />
Decrease play speed
</label>
<label class="toolbarSwitch">
<input type="button" @click="reload" />
Reload
</label>
</div>
<!-- Everything about how the globe is drawn, and what that costs. Four
sections: what reports the cost, then the three kinds of thing that
decide it — what is in the scene, how many pixels it is drawn into,
and what each edge pixel costs. -->
<div v-show="menu.render" class="toolbarSwitches">
<div class="toolbarTitle">Measurement</div>
<label class="toolbarSwitch">
<input v-model="showFps" type="checkbox" />
<span class="slider"></span>
FPS
</label>
<!-- The benchmarking framework (src/modules/benchmark). Beneath FPS because it is the same
question asked in more depth, and url-synced like the rest of this
menu, so a benchmarking session is a link. -->
<label class="toolbarSwitch">
<input v-model="showBenchmark" type="checkbox" />
<span class="slider"></span>
Benchmark
</label>
<!-- Not a measurement itself, but the setting that decides whether there
is one to be had: with render-on-demand on, the gap between frames
measures how idle the loop is rather than what a scene costs. -->
<label class="toolbarSwitch">
<input v-model="requestRenderMode" type="checkbox" />
<span class="slider"></span>
RequestRender
</label>
<div class="toolbarTitle">Scene effects</div>
<label class="toolbarSwitch">
<input v-model="cc.viewer.scene.fog.enabled" type="checkbox" />
<span class="slider"></span>
Fog
</label>
<label class="toolbarSwitch">
<input v-model="cc.viewer.scene.globe.enableLighting" type="checkbox" />
<span class="slider"></span>
Lighting
</label>
<label class="toolbarSwitch">
<input v-model="cc.viewer.scene.highDynamicRange" type="checkbox" />
<span class="slider"></span>
HDR
</label>
<label class="toolbarSwitch">
<input v-model="cc.viewer.scene.globe.showGroundAtmosphere" type="checkbox" />
<span class="slider"></span>
Atmosphere
</label>
<!-- The two halves of the same trade, in the order they multiply. Both
are ladders rather than switches because both costs are smooth —
see src/config/rendering.ts. -->
<div class="toolbarTitle">Pixel ratio</div>
<label v-for="ratio in pixelRatioOptions" :key="ratio" class="toolbarSwitch">
<input v-model="pixelRatio" type="radio" :value="ratio" />
<span class="slider"></span>
{{ ratio === "native" ? `${devicePixelRatio.toFixed(1)}x (Native)` : `${Number(ratio).toFixed(1)}x` }}
</label>
<div class="toolbarTitle">Antialiasing (MSAA)</div>
<label v-for="rate in MSAA_RATES" :key="rate" class="toolbarSwitch">
<input v-model="msaa" type="radio" :value="rate" />
<span class="slider"></span>
{{ rate === "off" ? "Off" : `${rate}x` }}
</label>
</div>
<propagation-panel v-show="menu.sim" />
</div>
<div id="toolbarRight">
<about-dialog v-if="showUI" />
<UTooltip v-if="showUI" text="Github">
<a class="cesium-button cesium-toolbar-button" href="https://github.com/Flowm/satvis/" target="_blank" rel="noopener">
<UIcon name="fa6-brands:github" />
</a>
</UTooltip>
<UTooltip text="Toggle UI">
<button type="button" class="cesium-button cesium-toolbar-button" @click="toggleUI">
<UIcon name="lucide:eye" />
</button>
</UTooltip>
</div>
<!-- Deliberately outside the showUI toggle: the entity info replaces the
Cesium InfoBox, which was visible with hidden UI and in minimalUI. -->
<entity-info-panel />
<sky-hud />
<!-- Pause, speed and scrubbing; `createViewer` builds no Cesium clock widgets. -->
<clock-deck v-if="showUI" />
<!-- Async, so nothing about it is in the
bundle a normal visitor downloads. -->
<benchmark-panel v-if="showBenchmark" @close="showBenchmark = false" />
</div>
</template>
<script setup lang="ts">
import { storeToRefs } from "pinia";
import { computed, defineAsyncComponent, onMounted, reactive, ref } from "vue";
import { useController } from "../composables/useController";
import { compassAvailable, useSkyCompass } from "../composables/useSkyCompass";
import { layerProvider } from "../config/layers";
import { MSAA_RATES, pixelRatiosFor } from "../config/rendering";
import { availableStarMaps, BUILTIN_STAR_MAP, type StarMapName } from "../config/starMaps";
import { type MapGroup, SURFACE_MODELS, type SurfaceModelName, surfaceEffects, viewModeNote } from "../config/surfaceModels";
import { SKY_MODE } from "../config/viewModes";
import { DeviceDetect } from "../modules/util/DeviceDetect";
import { useCesiumStore } from "../stores/cesium";
import { useSatStore } from "../stores/sat";
import AboutDialog from "./AboutDialog.vue";
import ClockDeck from "./ClockDeck.vue";
import EntityInfoPanel from "./EntityInfoPanel.vue";
import GroundStationList from "./GroundStationList.vue";
import SatelliteBrowser from "./SatelliteBrowser.vue";
import SkyHud from "./SkyHud.vue";
import PropagationPanel from "./PropagationPanel.vue";
type MenuKey = "cat" | "sat" | "gs" | "map" | "view" | "ios" | "render" | "sim";
// The benchmarking framework. Async, so nothing about it — the sweep, the
// report tables, the panel — is in the bundle a normal visitor downloads.
const BenchmarkPanel = defineAsyncComponent(() => import("./BenchmarkPanel.vue"));
const cc = useController();
const menu = reactive<Record<MenuKey, boolean>>({
cat: false,
sat: false,
gs: false,
map: false,
view: false,
ios: false,
render: false,
sim: false,
});
const showUI = ref(true);
const cesiumStore = useCesiumStore();
const { layers, terrainProvider, surfaceModel, starMap, sceneMode, cameraMode, pixelRatio, msaa, showFps, showBenchmark, requestRenderMode } = storeToRefs(cesiumStore);
// Which star maps the Map menu offers. Starts at the one that cannot be missing
// so the group is never empty, and widens once the probes answer — a one-byte
// ranged GET each (never a HEAD; see `starMapAvailable`), resolved once per page
// rather than per menu open, so the list is settled long before anyone opens the
// panel.
const starMapOptions = ref<StarMapName[]>([BUILTIN_STAR_MAP]);
void availableStarMaps().then((names) => {
starMapOptions.value = names;
});
// This display's own ratio: it names the `native` option and decides which of
// the fixed rungs are below it and so worth offering at all.
const devicePixelRatio = window.devicePixelRatio;
const pixelRatioOptions = pixelRatiosFor(devicePixelRatio);
// What the selection means here and now, from the one function the globe reads
// too — so a dimmed group and an unlit tileset cannot disagree.
const effects = computed(() => surfaceEffects(surfaceModel.value, sceneMode.value));
const inert = computed(() => effects.value.inert);
// The terrain the globe is actually using, and whether the user still owns the
// choice. A surface model that imposes one takes it over completely; a hidden
// globe does not — that choice is still theirs, it just is not being drawn yet.
const activeTerrain = computed(() => effects.value.terrain ?? terrainProvider.value);
const terrainImposed = computed(() => effects.value.terrain !== undefined);
// Why a group stopped describing the picture. Two different answers, and the
// distinction matters: an overridden terrain is still being drawn, just not the
// one the radio says, while a hidden globe is drawing neither.
//
// The imposed case also names the terrain that comes back, because the radio is
// showing what is in force rather than what the user picked — so without this
// their own choice would be stated nowhere at all.
function inertReason(group: MapGroup): string {
if (!inert.value.includes(group)) {
return "";
}
const forced = effects.value.terrain;
if (group === "terrain" && forced) {
return forced === terrainProvider.value ? `${surfaceModel.value} needs ${forced}` : `${surfaceModel.value} needs ${forced}, ${terrainProvider.value} returns`;
}
return `Hidden by ${surfaceModel.value}`;
}
// Named rather than merely flagged: "nothing happened" is the question this
// answers, and which view modes would have worked is the answer — derived from
// the rules themselves, never written out here, so widening one cannot leave this
// sentence asserting a restriction that is gone.
const surfaceUnavailable = computed(() => {
if (surfaceModel.value === "None" || !effects.value.unavailable.includes(surfaceModel.value as SurfaceModelName)) {
return "";
}
return viewModeNote(surfaceModel.value);
});
// The imagery stack, read and written a group at a time. `layers` is read-only
// because "at most one base layer" is an invariant of the list rather than of any
// one entry, so every write goes through the action that enforces it — and list
// order is z-order, which is why a basemap goes under and an overlay goes on top.
const isBaseToken = (token: string): boolean => {
const provider = layerProvider(token);
return provider !== undefined && cc.baseLayers.includes(provider);
};
/** The basemap in the stack, by provider name, or "" when a url left none. */
const baseLayer = computed(() => {
const token = layers.value.find(isBaseToken);
return token === undefined ? "" : (layerProvider(token) ?? "");
});
const hasOverlay = (name: string): boolean => layers.value.some((token) => layerProvider(token) === name);
function setBaseLayer(name: string): void {
cesiumStore.setLayers([name, ...layers.value.filter((token) => !isBaseToken(token))]);
}
function toggleOverlay(name: string, enabled: boolean): void {
const without = layers.value.filter((token) => layerProvider(token) !== name);
cesiumStore.setLayers(enabled ? [...without, name] : without);
}
const satStore = useSatStore();
const { enabledComponents } = storeToRefs(satStore);
const compassOffered = compassAvailable();
const { active: compassActive, pending: compassPending, toggle: toggleCompass } = useSkyCompass(cc);
const inSkyView = computed(() => sceneMode.value === SKY_MODE);
// Handing the aim to a sensor is an action with an outcome, and the outcome may be
// "no". The browser's own flip on click is the feedback that something was
// attempted — and iOS's permission prompt has to be raised from inside the click —
// so the switch moves first and is corrected afterwards.
//
// The correction has to be made by hand. Vue re-syncs a checkbox only when the value
// bound to it changes, and a refused sensor leaves `compassActive` exactly where it
// was, so the box would sit there checked and contradicting it.
async function onCompassToggle(event: Event): Promise<void> {
await toggleCompass();
(event.target as HTMLInputElement).checked = compassActive.value;
// Success closes the panel, which was covering the sky it was just asked to aim
// at — so the revert above is only ever seen when it means something.
if (compassActive.value) {
menu.view = false;
}
}
onMounted(() => {
showUI.value = !DeviceDetect.inIframe();
});
function toggleMenu(name: MenuKey) {
const oldState = menu[name];
(Object.keys(menu) as MenuKey[]).forEach((k) => {
menu[k] = false;
});
menu[name] = !oldState;
}
function toggleUI() {
showUI.value = !showUI.value;
// The controller knows whether there is a fullscreen button to hide; the deck
// follows the same flag through its own `v-if`.
cc.showUI = showUI.value;
}
function reload() {
window.location.reload();
}
</script>
|