cesium-native 0.46.0
Loading...
Searching...
No Matches
TilesetOptions.h
1#pragma once
2
3#include <Cesium3DTilesSelection/Library.h>
4#include <CesiumAsync/IAssetAccessor.h>
5#include <CesiumGeospatial/Ellipsoid.h>
6#include <CesiumGltf/Ktx2TranscodeTargets.h>
7
8#include <any>
9#include <functional>
10#include <memory>
11#include <optional>
12#include <string>
13#include <vector>
14
15namespace Cesium3DTilesSelection {
16
17class ITileExcluder;
18class TilesetLoadFailureDetails;
19
24struct CESIUM3DTILESSELECTION_API TilesetContentOptions {
31 bool enableWaterMask = false;
32
43 bool generateMissingNormalsSmooth = false;
44
50
57 bool applyTextureTransform = true;
58};
59
65struct CESIUM3DTILESSELECTION_API FogDensityAtHeight {
66
69
71 double fogDensity;
72};
73
77struct CESIUM3DTILESSELECTION_API TilesetOptions {
81 std::optional<std::string> credit;
82
86 bool showCreditsOnScreen = false;
87
97 double maximumScreenSpaceError = 16.0;
98
103 uint32_t maximumSimultaneousTileLoads = 20;
104
111 bool preloadAncestors = true;
112
119 bool preloadSiblings = true;
120
131 uint32_t loadingDescendantLimit = 20;
132
144 bool forbidHoles = false;
145
149 bool enableFrustumCulling = true;
150
154 bool enableOcclusionCulling = true;
155
165 bool delayRefinementForOcclusion = true;
166
170 bool enableFogCulling = true;
171
181 bool enforceCulledScreenSpaceError = true;
182
191 double culledScreenSpaceError = 64.0;
192
202 int64_t maximumCachedBytes = 512LL * 1024 * 1024;
203
216 std::vector<FogDensityAtHeight> fogDensityTable = {
217 {359.393, 2.0e-5}, {800.749, 2.0e-4}, {1275.6501, 1.0e-4},
218 {2151.1192, 7.0e-5}, {3141.7763, 5.0e-5}, {4777.5198, 4.0e-5},
219 {6281.2493, 3.0e-5}, {12364.307, 1.9e-5}, {15900.765, 1.0e-5},
220 {49889.0549, 8.5e-6}, {78026.8259, 6.2e-6}, {99260.7344, 5.8e-6},
221 {120036.3873, 5.3e-6}, {151011.0158, 5.2e-6}, {156091.1953, 5.1e-6},
222 {203849.3112, 4.2e-6}, {274866.9803, 4.0e-6}, {319916.3149, 3.4e-6},
223 {493552.0528, 2.6e-6}, {628733.5874, 2.2e-6}, {1000000.0, 0.0}};
224
234 bool renderTilesUnderCamera = true;
235
241 std::vector<std::shared_ptr<ITileExcluder>> excluders;
242
251 std::function<void(const TilesetLoadFailureDetails&)> loadErrorCallback;
252
262 bool enableLodTransitionPeriod = false;
263
273 float lodTransitionLength = 1.0f;
274
284 bool kickDescendantsWhileFadingIn = true;
285
295 double mainThreadLoadingTimeLimit = 0.0;
296
302 double tileCacheUnloadTimeLimit = 0.0;
303
309
317
326
330 std::vector<CesiumAsync::IAssetAccessor::THeader> requestHeaders;
331};
332
333} // namespace Cesium3DTilesSelection
A quadratic surface defined in Cartesian coordinates.
Definition Ellipsoid.h:39
static const Ellipsoid WGS84
An Ellipsoid instance initialized to the WGS84 standard.
Definition Ellipsoid.h:48
Classes that implement the 3D Tiles standard.
Defines the fog density at a certain height.
Options for configuring the parsing of a Tileset's content and construction of Gltf models.
CesiumGltf::Ktx2TranscodeTargets ktx2TranscodeTargets
For each possible input transmission format, this struct names the ideal target gpu-compressed pixel ...
Additional options for configuring a Tileset.
std::function< void(const TilesetLoadFailureDetails &)> loadErrorCallback
A callback function that is invoked when a tileset resource fails to load.
std::vector< std::shared_ptr< ITileExcluder > > excluders
A list of interfaces that are given an opportunity to exclude tiles from loading and rendering....
std::vector< CesiumAsync::IAssetAccessor::THeader > requestHeaders
HTTP headers to attach to requests made for this tileset.
std::optional< std::string > credit
A credit text for this tileset, if needed.
TilesetContentOptions contentOptions
Options for configuring the parsing of a Tileset's content and construction of Gltf models.
std::any rendererOptions
Arbitrary data that will be passed to IPrepareRendererResources::prepareInLoadThread.
For each possible input transmission format, this struct names the ideal target gpu-compressed pixel ...