@loaders.gl/terrain 3.1.3 → 4.0.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js +2 -2
- package/dist/bundle.js.map +1 -0
- package/dist/index.js +14 -24
- package/dist/index.js.map +1 -0
- package/dist/lib/decode-quantized-mesh.js +241 -200
- package/dist/lib/decode-quantized-mesh.js.map +1 -0
- package/dist/lib/delatin/index.js +443 -397
- package/dist/lib/delatin/index.js.map +1 -0
- package/dist/lib/helpers/skirt.js +91 -119
- package/dist/lib/helpers/skirt.js.map +1 -0
- package/dist/lib/parse-quantized-mesh.js +90 -89
- package/dist/lib/parse-quantized-mesh.js.map +1 -0
- package/dist/lib/parse-terrain.js +166 -148
- package/dist/lib/parse-terrain.js.map +1 -0
- package/dist/lib/utils/version.js +2 -7
- package/dist/lib/utils/version.js.map +1 -0
- package/dist/quantized-mesh-loader.js +16 -21
- package/dist/quantized-mesh-loader.js.map +1 -0
- package/dist/quantized-mesh-worker.js +1 -1
- package/dist/terrain-loader.js +24 -32
- package/dist/terrain-loader.js.map +1 -0
- package/dist/terrain-worker.js +1 -1
- package/dist/workers/quantized-mesh-worker.js +4 -5
- package/dist/workers/quantized-mesh-worker.js.map +1 -0
- package/dist/workers/terrain-worker.js +4 -5
- package/dist/workers/terrain-worker.js.map +1 -0
- package/package.json +8 -8
- package/dist/es5/bundle.js +0 -7
- package/dist/es5/bundle.js.map +0 -1
- package/dist/es5/index.js +0 -77
- package/dist/es5/index.js.map +0 -1
- package/dist/es5/lib/decode-quantized-mesh.js +0 -299
- package/dist/es5/lib/decode-quantized-mesh.js.map +0 -1
- package/dist/es5/lib/delatin/index.js +0 -506
- package/dist/es5/lib/delatin/index.js.map +0 -1
- package/dist/es5/lib/helpers/skirt.js +0 -120
- package/dist/es5/lib/helpers/skirt.js.map +0 -1
- package/dist/es5/lib/parse-quantized-mesh.js +0 -119
- package/dist/es5/lib/parse-quantized-mesh.js.map +0 -1
- package/dist/es5/lib/parse-terrain.js +0 -219
- package/dist/es5/lib/parse-terrain.js.map +0 -1
- package/dist/es5/lib/utils/version.js +0 -9
- package/dist/es5/lib/utils/version.js.map +0 -1
- package/dist/es5/quantized-mesh-loader.js +0 -28
- package/dist/es5/quantized-mesh-loader.js.map +0 -1
- package/dist/es5/terrain-loader.js +0 -36
- package/dist/es5/terrain-loader.js.map +0 -1
- package/dist/es5/workers/quantized-mesh-worker.js +0 -8
- package/dist/es5/workers/quantized-mesh-worker.js.map +0 -1
- package/dist/es5/workers/terrain-worker.js +0 -8
- package/dist/es5/workers/terrain-worker.js.map +0 -1
- package/dist/esm/bundle.js +0 -5
- package/dist/esm/bundle.js.map +0 -1
- package/dist/esm/index.js +0 -16
- package/dist/esm/index.js.map +0 -1
- package/dist/esm/lib/decode-quantized-mesh.js +0 -268
- package/dist/esm/lib/decode-quantized-mesh.js.map +0 -1
- package/dist/esm/lib/delatin/index.js +0 -464
- package/dist/esm/lib/delatin/index.js.map +0 -1
- package/dist/esm/lib/helpers/skirt.js +0 -99
- package/dist/esm/lib/helpers/skirt.js.map +0 -1
- package/dist/esm/lib/parse-quantized-mesh.js +0 -96
- package/dist/esm/lib/parse-quantized-mesh.js.map +0 -1
- package/dist/esm/lib/parse-terrain.js +0 -180
- package/dist/esm/lib/parse-terrain.js.map +0 -1
- package/dist/esm/lib/utils/version.js +0 -2
- package/dist/esm/lib/utils/version.js.map +0 -1
- package/dist/esm/quantized-mesh-loader.js +0 -18
- package/dist/esm/quantized-mesh-loader.js.map +0 -1
- package/dist/esm/terrain-loader.js +0 -26
- package/dist/esm/terrain-loader.js.map +0 -1
- package/dist/esm/workers/quantized-mesh-worker.js +0 -4
- package/dist/esm/workers/quantized-mesh-worker.js.map +0 -1
- package/dist/esm/workers/terrain-worker.js +0 -4
- package/dist/esm/workers/terrain-worker.js.map +0 -1
|
@@ -1,268 +0,0 @@
|
|
|
1
|
-
const QUANTIZED_MESH_HEADER = new Map([['centerX', Float64Array.BYTES_PER_ELEMENT], ['centerY', Float64Array.BYTES_PER_ELEMENT], ['centerZ', Float64Array.BYTES_PER_ELEMENT], ['minHeight', Float32Array.BYTES_PER_ELEMENT], ['maxHeight', Float32Array.BYTES_PER_ELEMENT], ['boundingSphereCenterX', Float64Array.BYTES_PER_ELEMENT], ['boundingSphereCenterY', Float64Array.BYTES_PER_ELEMENT], ['boundingSphereCenterZ', Float64Array.BYTES_PER_ELEMENT], ['boundingSphereRadius', Float64Array.BYTES_PER_ELEMENT], ['horizonOcclusionPointX', Float64Array.BYTES_PER_ELEMENT], ['horizonOcclusionPointY', Float64Array.BYTES_PER_ELEMENT], ['horizonOcclusionPointZ', Float64Array.BYTES_PER_ELEMENT]]);
|
|
2
|
-
|
|
3
|
-
function decodeZigZag(value) {
|
|
4
|
-
return value >> 1 ^ -(value & 1);
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
function decodeHeader(dataView) {
|
|
8
|
-
let position = 0;
|
|
9
|
-
const header = {};
|
|
10
|
-
|
|
11
|
-
for (const [key, bytesCount] of QUANTIZED_MESH_HEADER) {
|
|
12
|
-
const getter = bytesCount === 8 ? dataView.getFloat64 : dataView.getFloat32;
|
|
13
|
-
header[key] = getter.call(dataView, position, true);
|
|
14
|
-
position += bytesCount;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
return {
|
|
18
|
-
header,
|
|
19
|
-
headerEndPosition: position
|
|
20
|
-
};
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
function decodeVertexData(dataView, headerEndPosition) {
|
|
24
|
-
let position = headerEndPosition;
|
|
25
|
-
const elementsPerVertex = 3;
|
|
26
|
-
const vertexCount = dataView.getUint32(position, true);
|
|
27
|
-
const vertexData = new Uint16Array(vertexCount * elementsPerVertex);
|
|
28
|
-
position += Uint32Array.BYTES_PER_ELEMENT;
|
|
29
|
-
const bytesPerArrayElement = Uint16Array.BYTES_PER_ELEMENT;
|
|
30
|
-
const elementArrayLength = vertexCount * bytesPerArrayElement;
|
|
31
|
-
const uArrayStartPosition = position;
|
|
32
|
-
const vArrayStartPosition = uArrayStartPosition + elementArrayLength;
|
|
33
|
-
const heightArrayStartPosition = vArrayStartPosition + elementArrayLength;
|
|
34
|
-
let u = 0;
|
|
35
|
-
let v = 0;
|
|
36
|
-
let height = 0;
|
|
37
|
-
|
|
38
|
-
for (let i = 0; i < vertexCount; i++) {
|
|
39
|
-
u += decodeZigZag(dataView.getUint16(uArrayStartPosition + bytesPerArrayElement * i, true));
|
|
40
|
-
v += decodeZigZag(dataView.getUint16(vArrayStartPosition + bytesPerArrayElement * i, true));
|
|
41
|
-
height += decodeZigZag(dataView.getUint16(heightArrayStartPosition + bytesPerArrayElement * i, true));
|
|
42
|
-
vertexData[i] = u;
|
|
43
|
-
vertexData[i + vertexCount] = v;
|
|
44
|
-
vertexData[i + vertexCount * 2] = height;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
position += elementArrayLength * 3;
|
|
48
|
-
return {
|
|
49
|
-
vertexData,
|
|
50
|
-
vertexDataEndPosition: position
|
|
51
|
-
};
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
function decodeIndex(buffer, position, indicesCount, bytesPerIndex, encoded = true) {
|
|
55
|
-
let indices;
|
|
56
|
-
|
|
57
|
-
if (bytesPerIndex === 2) {
|
|
58
|
-
indices = new Uint16Array(buffer, position, indicesCount);
|
|
59
|
-
} else {
|
|
60
|
-
indices = new Uint32Array(buffer, position, indicesCount);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
if (!encoded) {
|
|
64
|
-
return indices;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
let highest = 0;
|
|
68
|
-
|
|
69
|
-
for (let i = 0; i < indices.length; ++i) {
|
|
70
|
-
const code = indices[i];
|
|
71
|
-
indices[i] = highest - code;
|
|
72
|
-
|
|
73
|
-
if (code === 0) {
|
|
74
|
-
++highest;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
return indices;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
function decodeTriangleIndices(dataView, vertexData, vertexDataEndPosition) {
|
|
82
|
-
let position = vertexDataEndPosition;
|
|
83
|
-
const elementsPerVertex = 3;
|
|
84
|
-
const vertexCount = vertexData.length / elementsPerVertex;
|
|
85
|
-
const bytesPerIndex = vertexCount > 65536 ? Uint32Array.BYTES_PER_ELEMENT : Uint16Array.BYTES_PER_ELEMENT;
|
|
86
|
-
|
|
87
|
-
if (position % bytesPerIndex !== 0) {
|
|
88
|
-
position += bytesPerIndex - position % bytesPerIndex;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
const triangleCount = dataView.getUint32(position, true);
|
|
92
|
-
position += Uint32Array.BYTES_PER_ELEMENT;
|
|
93
|
-
const triangleIndicesCount = triangleCount * 3;
|
|
94
|
-
const triangleIndices = decodeIndex(dataView.buffer, position, triangleIndicesCount, bytesPerIndex);
|
|
95
|
-
position += triangleIndicesCount * bytesPerIndex;
|
|
96
|
-
return {
|
|
97
|
-
triangleIndicesEndPosition: position,
|
|
98
|
-
triangleIndices
|
|
99
|
-
};
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
function decodeEdgeIndices(dataView, vertexData, triangleIndicesEndPosition) {
|
|
103
|
-
let position = triangleIndicesEndPosition;
|
|
104
|
-
const elementsPerVertex = 3;
|
|
105
|
-
const vertexCount = vertexData.length / elementsPerVertex;
|
|
106
|
-
const bytesPerIndex = vertexCount > 65536 ? Uint32Array.BYTES_PER_ELEMENT : Uint16Array.BYTES_PER_ELEMENT;
|
|
107
|
-
const westVertexCount = dataView.getUint32(position, true);
|
|
108
|
-
position += Uint32Array.BYTES_PER_ELEMENT;
|
|
109
|
-
const westIndices = decodeIndex(dataView.buffer, position, westVertexCount, bytesPerIndex, false);
|
|
110
|
-
position += westVertexCount * bytesPerIndex;
|
|
111
|
-
const southVertexCount = dataView.getUint32(position, true);
|
|
112
|
-
position += Uint32Array.BYTES_PER_ELEMENT;
|
|
113
|
-
const southIndices = decodeIndex(dataView.buffer, position, southVertexCount, bytesPerIndex, false);
|
|
114
|
-
position += southVertexCount * bytesPerIndex;
|
|
115
|
-
const eastVertexCount = dataView.getUint32(position, true);
|
|
116
|
-
position += Uint32Array.BYTES_PER_ELEMENT;
|
|
117
|
-
const eastIndices = decodeIndex(dataView.buffer, position, eastVertexCount, bytesPerIndex, false);
|
|
118
|
-
position += eastVertexCount * bytesPerIndex;
|
|
119
|
-
const northVertexCount = dataView.getUint32(position, true);
|
|
120
|
-
position += Uint32Array.BYTES_PER_ELEMENT;
|
|
121
|
-
const northIndices = decodeIndex(dataView.buffer, position, northVertexCount, bytesPerIndex, false);
|
|
122
|
-
position += northVertexCount * bytesPerIndex;
|
|
123
|
-
return {
|
|
124
|
-
edgeIndicesEndPosition: position,
|
|
125
|
-
westIndices,
|
|
126
|
-
southIndices,
|
|
127
|
-
eastIndices,
|
|
128
|
-
northIndices
|
|
129
|
-
};
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
function decodeVertexNormalsExtension(extensionDataView) {
|
|
133
|
-
return new Uint8Array(extensionDataView.buffer, extensionDataView.byteOffset, extensionDataView.byteLength);
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
function decodeWaterMaskExtension(extensionDataView) {
|
|
137
|
-
return extensionDataView.buffer.slice(extensionDataView.byteOffset, extensionDataView.byteOffset + extensionDataView.byteLength);
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
function decodeExtensions(dataView, indicesEndPosition) {
|
|
141
|
-
const extensions = {};
|
|
142
|
-
|
|
143
|
-
if (dataView.byteLength <= indicesEndPosition) {
|
|
144
|
-
return {
|
|
145
|
-
extensions,
|
|
146
|
-
extensionsEndPosition: indicesEndPosition
|
|
147
|
-
};
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
let position = indicesEndPosition;
|
|
151
|
-
|
|
152
|
-
while (position < dataView.byteLength) {
|
|
153
|
-
const extensionId = dataView.getUint8(position, true);
|
|
154
|
-
position += Uint8Array.BYTES_PER_ELEMENT;
|
|
155
|
-
const extensionLength = dataView.getUint32(position, true);
|
|
156
|
-
position += Uint32Array.BYTES_PER_ELEMENT;
|
|
157
|
-
const extensionView = new DataView(dataView.buffer, position, extensionLength);
|
|
158
|
-
|
|
159
|
-
switch (extensionId) {
|
|
160
|
-
case 1:
|
|
161
|
-
{
|
|
162
|
-
extensions.vertexNormals = decodeVertexNormalsExtension(extensionView);
|
|
163
|
-
break;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
case 2:
|
|
167
|
-
{
|
|
168
|
-
extensions.waterMask = decodeWaterMaskExtension(extensionView);
|
|
169
|
-
break;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
default:
|
|
173
|
-
{}
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
position += extensionLength;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
return {
|
|
180
|
-
extensions,
|
|
181
|
-
extensionsEndPosition: position
|
|
182
|
-
};
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
export const DECODING_STEPS = {
|
|
186
|
-
header: 0,
|
|
187
|
-
vertices: 1,
|
|
188
|
-
triangleIndices: 2,
|
|
189
|
-
edgeIndices: 3,
|
|
190
|
-
extensions: 4
|
|
191
|
-
};
|
|
192
|
-
const DEFAULT_OPTIONS = {
|
|
193
|
-
maxDecodingStep: DECODING_STEPS.extensions
|
|
194
|
-
};
|
|
195
|
-
export default function decode(data, userOptions) {
|
|
196
|
-
const options = Object.assign({}, DEFAULT_OPTIONS, userOptions);
|
|
197
|
-
const view = new DataView(data);
|
|
198
|
-
const {
|
|
199
|
-
header,
|
|
200
|
-
headerEndPosition
|
|
201
|
-
} = decodeHeader(view);
|
|
202
|
-
|
|
203
|
-
if (options.maxDecodingStep < DECODING_STEPS.vertices) {
|
|
204
|
-
return {
|
|
205
|
-
header
|
|
206
|
-
};
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
const {
|
|
210
|
-
vertexData,
|
|
211
|
-
vertexDataEndPosition
|
|
212
|
-
} = decodeVertexData(view, headerEndPosition);
|
|
213
|
-
|
|
214
|
-
if (options.maxDecodingStep < DECODING_STEPS.triangleIndices) {
|
|
215
|
-
return {
|
|
216
|
-
header,
|
|
217
|
-
vertexData
|
|
218
|
-
};
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
const {
|
|
222
|
-
triangleIndices,
|
|
223
|
-
triangleIndicesEndPosition
|
|
224
|
-
} = decodeTriangleIndices(view, vertexData, vertexDataEndPosition);
|
|
225
|
-
|
|
226
|
-
if (options.maxDecodingStep < DECODING_STEPS.edgeIndices) {
|
|
227
|
-
return {
|
|
228
|
-
header,
|
|
229
|
-
vertexData,
|
|
230
|
-
triangleIndices
|
|
231
|
-
};
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
const {
|
|
235
|
-
westIndices,
|
|
236
|
-
southIndices,
|
|
237
|
-
eastIndices,
|
|
238
|
-
northIndices,
|
|
239
|
-
edgeIndicesEndPosition
|
|
240
|
-
} = decodeEdgeIndices(view, vertexData, triangleIndicesEndPosition);
|
|
241
|
-
|
|
242
|
-
if (options.maxDecodingStep < DECODING_STEPS.extensions) {
|
|
243
|
-
return {
|
|
244
|
-
header,
|
|
245
|
-
vertexData,
|
|
246
|
-
triangleIndices,
|
|
247
|
-
westIndices,
|
|
248
|
-
northIndices,
|
|
249
|
-
eastIndices,
|
|
250
|
-
southIndices
|
|
251
|
-
};
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
const {
|
|
255
|
-
extensions
|
|
256
|
-
} = decodeExtensions(view, edgeIndicesEndPosition);
|
|
257
|
-
return {
|
|
258
|
-
header,
|
|
259
|
-
vertexData,
|
|
260
|
-
triangleIndices,
|
|
261
|
-
westIndices,
|
|
262
|
-
northIndices,
|
|
263
|
-
eastIndices,
|
|
264
|
-
southIndices,
|
|
265
|
-
extensions
|
|
266
|
-
};
|
|
267
|
-
}
|
|
268
|
-
//# sourceMappingURL=decode-quantized-mesh.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/lib/decode-quantized-mesh.ts"],"names":["QUANTIZED_MESH_HEADER","Map","Float64Array","BYTES_PER_ELEMENT","Float32Array","decodeZigZag","value","decodeHeader","dataView","position","header","key","bytesCount","getter","getFloat64","getFloat32","call","headerEndPosition","decodeVertexData","elementsPerVertex","vertexCount","getUint32","vertexData","Uint16Array","Uint32Array","bytesPerArrayElement","elementArrayLength","uArrayStartPosition","vArrayStartPosition","heightArrayStartPosition","u","v","height","i","getUint16","vertexDataEndPosition","decodeIndex","buffer","indicesCount","bytesPerIndex","encoded","indices","highest","length","code","decodeTriangleIndices","triangleCount","triangleIndicesCount","triangleIndices","triangleIndicesEndPosition","decodeEdgeIndices","westVertexCount","westIndices","southVertexCount","southIndices","eastVertexCount","eastIndices","northVertexCount","northIndices","edgeIndicesEndPosition","decodeVertexNormalsExtension","extensionDataView","Uint8Array","byteOffset","byteLength","decodeWaterMaskExtension","slice","decodeExtensions","indicesEndPosition","extensions","extensionsEndPosition","extensionId","getUint8","extensionLength","extensionView","DataView","vertexNormals","waterMask","DECODING_STEPS","vertices","edgeIndices","DEFAULT_OPTIONS","maxDecodingStep","decode","data","userOptions","options","Object","assign","view"],"mappings":"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","sourcesContent":["// Copyright (C) 2018-2019 HERE Europe B.V.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n// SOFTWARE.\n\nconst QUANTIZED_MESH_HEADER = new Map([\n ['centerX', Float64Array.BYTES_PER_ELEMENT],\n ['centerY', Float64Array.BYTES_PER_ELEMENT],\n ['centerZ', Float64Array.BYTES_PER_ELEMENT],\n\n ['minHeight', Float32Array.BYTES_PER_ELEMENT],\n ['maxHeight', Float32Array.BYTES_PER_ELEMENT],\n\n ['boundingSphereCenterX', Float64Array.BYTES_PER_ELEMENT],\n ['boundingSphereCenterY', Float64Array.BYTES_PER_ELEMENT],\n ['boundingSphereCenterZ', Float64Array.BYTES_PER_ELEMENT],\n ['boundingSphereRadius', Float64Array.BYTES_PER_ELEMENT],\n\n ['horizonOcclusionPointX', Float64Array.BYTES_PER_ELEMENT],\n ['horizonOcclusionPointY', Float64Array.BYTES_PER_ELEMENT],\n ['horizonOcclusionPointZ', Float64Array.BYTES_PER_ELEMENT]\n]);\n\nfunction decodeZigZag(value) {\n return (value >> 1) ^ -(value & 1);\n}\n\nfunction decodeHeader(dataView) {\n let position = 0;\n const header = {};\n\n for (const [key, bytesCount] of QUANTIZED_MESH_HEADER) {\n const getter = bytesCount === 8 ? dataView.getFloat64 : dataView.getFloat32;\n\n header[key] = getter.call(dataView, position, true);\n position += bytesCount;\n }\n\n return {header, headerEndPosition: position};\n}\n\nfunction decodeVertexData(dataView, headerEndPosition) {\n let position = headerEndPosition;\n const elementsPerVertex = 3;\n const vertexCount = dataView.getUint32(position, true);\n const vertexData = new Uint16Array(vertexCount * elementsPerVertex);\n\n position += Uint32Array.BYTES_PER_ELEMENT;\n\n const bytesPerArrayElement = Uint16Array.BYTES_PER_ELEMENT;\n const elementArrayLength = vertexCount * bytesPerArrayElement;\n const uArrayStartPosition = position;\n const vArrayStartPosition = uArrayStartPosition + elementArrayLength;\n const heightArrayStartPosition = vArrayStartPosition + elementArrayLength;\n\n let u = 0;\n let v = 0;\n let height = 0;\n\n for (let i = 0; i < vertexCount; i++) {\n u += decodeZigZag(dataView.getUint16(uArrayStartPosition + bytesPerArrayElement * i, true));\n v += decodeZigZag(dataView.getUint16(vArrayStartPosition + bytesPerArrayElement * i, true));\n height += decodeZigZag(\n dataView.getUint16(heightArrayStartPosition + bytesPerArrayElement * i, true)\n );\n\n vertexData[i] = u;\n vertexData[i + vertexCount] = v;\n vertexData[i + vertexCount * 2] = height;\n }\n\n position += elementArrayLength * 3;\n\n return {vertexData, vertexDataEndPosition: position};\n}\n\nfunction decodeIndex(buffer, position, indicesCount, bytesPerIndex, encoded = true) {\n let indices;\n\n if (bytesPerIndex === 2) {\n indices = new Uint16Array(buffer, position, indicesCount);\n } else {\n indices = new Uint32Array(buffer, position, indicesCount);\n }\n\n if (!encoded) {\n return indices;\n }\n\n let highest = 0;\n\n for (let i = 0; i < indices.length; ++i) {\n const code = indices[i];\n\n indices[i] = highest - code;\n\n if (code === 0) {\n ++highest;\n }\n }\n\n return indices;\n}\n\nfunction decodeTriangleIndices(dataView, vertexData, vertexDataEndPosition) {\n let position = vertexDataEndPosition;\n const elementsPerVertex = 3;\n const vertexCount = vertexData.length / elementsPerVertex;\n const bytesPerIndex =\n vertexCount > 65536 ? Uint32Array.BYTES_PER_ELEMENT : Uint16Array.BYTES_PER_ELEMENT;\n\n if (position % bytesPerIndex !== 0) {\n position += bytesPerIndex - (position % bytesPerIndex);\n }\n\n const triangleCount = dataView.getUint32(position, true);\n position += Uint32Array.BYTES_PER_ELEMENT;\n\n const triangleIndicesCount = triangleCount * 3;\n const triangleIndices = decodeIndex(\n dataView.buffer,\n position,\n triangleIndicesCount,\n bytesPerIndex\n );\n position += triangleIndicesCount * bytesPerIndex;\n\n return {\n triangleIndicesEndPosition: position,\n triangleIndices\n };\n}\n\nfunction decodeEdgeIndices(dataView, vertexData, triangleIndicesEndPosition) {\n let position = triangleIndicesEndPosition;\n const elementsPerVertex = 3;\n const vertexCount = vertexData.length / elementsPerVertex;\n const bytesPerIndex =\n vertexCount > 65536 ? Uint32Array.BYTES_PER_ELEMENT : Uint16Array.BYTES_PER_ELEMENT;\n\n const westVertexCount = dataView.getUint32(position, true);\n position += Uint32Array.BYTES_PER_ELEMENT;\n\n const westIndices = decodeIndex(dataView.buffer, position, westVertexCount, bytesPerIndex, false);\n position += westVertexCount * bytesPerIndex;\n\n const southVertexCount = dataView.getUint32(position, true);\n position += Uint32Array.BYTES_PER_ELEMENT;\n\n const southIndices = decodeIndex(\n dataView.buffer,\n position,\n southVertexCount,\n bytesPerIndex,\n false\n );\n position += southVertexCount * bytesPerIndex;\n\n const eastVertexCount = dataView.getUint32(position, true);\n position += Uint32Array.BYTES_PER_ELEMENT;\n\n const eastIndices = decodeIndex(dataView.buffer, position, eastVertexCount, bytesPerIndex, false);\n position += eastVertexCount * bytesPerIndex;\n\n const northVertexCount = dataView.getUint32(position, true);\n position += Uint32Array.BYTES_PER_ELEMENT;\n\n const northIndices = decodeIndex(\n dataView.buffer,\n position,\n northVertexCount,\n bytesPerIndex,\n false\n );\n position += northVertexCount * bytesPerIndex;\n\n return {\n edgeIndicesEndPosition: position,\n westIndices,\n southIndices,\n eastIndices,\n northIndices\n };\n}\n\nfunction decodeVertexNormalsExtension(extensionDataView) {\n return new Uint8Array(\n extensionDataView.buffer,\n extensionDataView.byteOffset,\n extensionDataView.byteLength\n );\n}\n\nfunction decodeWaterMaskExtension(extensionDataView) {\n return extensionDataView.buffer.slice(\n extensionDataView.byteOffset,\n extensionDataView.byteOffset + extensionDataView.byteLength\n );\n}\n\ntype Extensions = {\n vertexNormals?: any;\n waterMask?: any;\n};\n\nfunction decodeExtensions(dataView, indicesEndPosition) {\n const extensions: Extensions = {};\n\n if (dataView.byteLength <= indicesEndPosition) {\n return {extensions, extensionsEndPosition: indicesEndPosition};\n }\n\n let position = indicesEndPosition;\n\n while (position < dataView.byteLength) {\n const extensionId = dataView.getUint8(position, true);\n position += Uint8Array.BYTES_PER_ELEMENT;\n\n const extensionLength = dataView.getUint32(position, true);\n position += Uint32Array.BYTES_PER_ELEMENT;\n\n const extensionView = new DataView(dataView.buffer, position, extensionLength);\n\n switch (extensionId) {\n case 1: {\n extensions.vertexNormals = decodeVertexNormalsExtension(extensionView);\n\n break;\n }\n case 2: {\n extensions.waterMask = decodeWaterMaskExtension(extensionView);\n\n break;\n }\n default: {\n // console.warn(`Unknown extension with id ${extensionId}`)\n }\n }\n\n position += extensionLength;\n }\n\n return {extensions, extensionsEndPosition: position};\n}\n\nexport const DECODING_STEPS = {\n header: 0,\n vertices: 1,\n triangleIndices: 2,\n edgeIndices: 3,\n extensions: 4\n};\n\nconst DEFAULT_OPTIONS = {\n maxDecodingStep: DECODING_STEPS.extensions\n};\n\nexport default function decode(data, userOptions) {\n const options = Object.assign({}, DEFAULT_OPTIONS, userOptions);\n const view = new DataView(data);\n const {header, headerEndPosition} = decodeHeader(view);\n\n if (options.maxDecodingStep < DECODING_STEPS.vertices) {\n return {header};\n }\n\n const {vertexData, vertexDataEndPosition} = decodeVertexData(view, headerEndPosition);\n\n if (options.maxDecodingStep < DECODING_STEPS.triangleIndices) {\n return {header, vertexData};\n }\n\n const {triangleIndices, triangleIndicesEndPosition} = decodeTriangleIndices(\n view,\n vertexData,\n vertexDataEndPosition\n );\n\n if (options.maxDecodingStep < DECODING_STEPS.edgeIndices) {\n return {header, vertexData, triangleIndices};\n }\n\n const {westIndices, southIndices, eastIndices, northIndices, edgeIndicesEndPosition} =\n decodeEdgeIndices(view, vertexData, triangleIndicesEndPosition);\n\n if (options.maxDecodingStep < DECODING_STEPS.extensions) {\n return {\n header,\n vertexData,\n triangleIndices,\n westIndices,\n northIndices,\n eastIndices,\n southIndices\n };\n }\n\n const {extensions} = decodeExtensions(view, edgeIndicesEndPosition);\n\n return {\n header,\n vertexData,\n triangleIndices,\n westIndices,\n northIndices,\n eastIndices,\n southIndices,\n extensions\n };\n}\n"],"file":"decode-quantized-mesh.js"}
|