@loaders.gl/tile-converter 4.2.0-alpha.1 → 4.2.0-alpha.3

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.
Files changed (41) hide show
  1. package/dist/3d-tiles-converter/3d-tiles-converter.d.ts +19 -0
  2. package/dist/3d-tiles-converter/3d-tiles-converter.d.ts.map +1 -1
  3. package/dist/3d-tiles-converter/3d-tiles-converter.js +121 -30
  4. package/dist/3d-tiles-converter/3d-tiles-converter.js.map +1 -1
  5. package/dist/3d-tiles-converter/helpers/load-i3s.d.ts +28 -1
  6. package/dist/3d-tiles-converter/helpers/load-i3s.d.ts.map +1 -1
  7. package/dist/3d-tiles-converter/helpers/load-i3s.js +63 -4
  8. package/dist/3d-tiles-converter/helpers/load-i3s.js.map +1 -1
  9. package/dist/converter-cli.js +30 -21
  10. package/dist/converter-cli.js.map +1 -1
  11. package/dist/converter.min.cjs +137 -130
  12. package/dist/deps-installer/deps-installer.js +1 -1
  13. package/dist/i3s-converter/helpers/load-3d-tiles.d.ts.map +1 -1
  14. package/dist/i3s-converter/helpers/load-3d-tiles.js +22 -2
  15. package/dist/i3s-converter/helpers/load-3d-tiles.js.map +1 -1
  16. package/dist/i3s-converter/i3s-converter.js +1 -1
  17. package/dist/i3s-converter/i3s-converter.js.map +1 -1
  18. package/dist/i3s-server/bin/i3s-server.min.cjs +86 -86
  19. package/dist/index.cjs +590 -70
  20. package/dist/lib/json-schemas/conversion-dump-json-schema.d.ts +463 -0
  21. package/dist/lib/json-schemas/conversion-dump-json-schema.d.ts.map +1 -0
  22. package/dist/lib/json-schemas/conversion-dump-json-schema.js +463 -0
  23. package/dist/lib/json-schemas/conversion-dump-json-schema.js.map +1 -0
  24. package/dist/lib/utils/conversion-dump.d.ts +12 -5
  25. package/dist/lib/utils/conversion-dump.d.ts.map +1 -1
  26. package/dist/lib/utils/conversion-dump.js +44 -24
  27. package/dist/lib/utils/conversion-dump.js.map +1 -1
  28. package/dist/lib/utils/file-utils.d.ts +6 -0
  29. package/dist/lib/utils/file-utils.d.ts.map +1 -1
  30. package/dist/lib/utils/file-utils.js +7 -0
  31. package/dist/lib/utils/file-utils.js.map +1 -1
  32. package/dist/pgm-loader.js +1 -1
  33. package/package.json +15 -14
  34. package/src/3d-tiles-converter/3d-tiles-converter.ts +159 -34
  35. package/src/3d-tiles-converter/helpers/load-i3s.ts +106 -7
  36. package/src/converter-cli.ts +44 -29
  37. package/src/i3s-converter/helpers/load-3d-tiles.ts +52 -2
  38. package/src/i3s-converter/i3s-converter.ts +1 -1
  39. package/src/lib/json-schemas/conversion-dump-json-schema.ts +285 -0
  40. package/src/lib/utils/conversion-dump.ts +79 -27
  41. package/src/lib/utils/file-utils.ts +13 -0
@@ -0,0 +1,463 @@
1
+ export const dumpJsonSchema = {
2
+ type: 'object',
3
+ properties: {
4
+ options: {
5
+ type: 'object',
6
+ properties: {
7
+ inputUrl: {
8
+ type: 'string'
9
+ },
10
+ outputPath: {
11
+ type: 'string'
12
+ },
13
+ tilesetName: {
14
+ type: 'string'
15
+ },
16
+ maxDepth: {
17
+ type: 'number'
18
+ },
19
+ slpk: {
20
+ type: 'boolean'
21
+ },
22
+ egmFilePath: {
23
+ type: 'string'
24
+ },
25
+ token: {
26
+ type: 'string'
27
+ },
28
+ draco: {
29
+ type: 'boolean'
30
+ },
31
+ mergeMaterials: {
32
+ type: 'boolean'
33
+ },
34
+ generateTextures: {
35
+ type: 'boolean'
36
+ },
37
+ generateBoundingVolumes: {
38
+ type: 'boolean'
39
+ },
40
+ metadataClass: {
41
+ type: 'string'
42
+ },
43
+ analyze: {
44
+ type: 'boolean'
45
+ }
46
+ },
47
+ required: ['inputUrl', 'outputPath', 'tilesetName']
48
+ },
49
+ tilesConverted: {
50
+ type: 'object',
51
+ patternProperties: {
52
+ '.*': {
53
+ type: 'object',
54
+ properties: {
55
+ nodes: {
56
+ type: 'array',
57
+ items: {
58
+ type: 'object',
59
+ properties: {
60
+ nodeId: {
61
+ type: ['number', 'string']
62
+ },
63
+ done: {
64
+ type: 'boolean'
65
+ },
66
+ progress: {
67
+ type: 'object',
68
+ patternProperties: {
69
+ '.*': {
70
+ type: 'boolean'
71
+ }
72
+ }
73
+ },
74
+ dumpMetadata: {
75
+ type: 'object',
76
+ properties: {
77
+ boundingVolumes: {
78
+ type: ['object', 'null'],
79
+ properties: {
80
+ mbs: {
81
+ type: 'array',
82
+ minItems: 4,
83
+ maxItems: 4,
84
+ items: {
85
+ type: 'number'
86
+ }
87
+ },
88
+ obb: {
89
+ type: 'object',
90
+ properties: {
91
+ center: {
92
+ type: 'array',
93
+ minItems: 3,
94
+ maxItems: 3,
95
+ items: {
96
+ type: 'number'
97
+ }
98
+ },
99
+ halfSize: {
100
+ type: 'array',
101
+ minItems: 3,
102
+ maxItems: 3,
103
+ items: {
104
+ type: 'number'
105
+ }
106
+ },
107
+ quaternion: {
108
+ type: 'array',
109
+ minItems: 4,
110
+ maxItems: 4,
111
+ items: {
112
+ type: 'number'
113
+ }
114
+ }
115
+ },
116
+ required: ['center', 'halfSize', 'quaternion']
117
+ }
118
+ },
119
+ required: ['mbs', 'obb']
120
+ },
121
+ attributesCount: {
122
+ type: 'number'
123
+ },
124
+ featureCount: {
125
+ type: 'number'
126
+ },
127
+ geometry: {
128
+ type: 'boolean'
129
+ },
130
+ hasUvRegions: {
131
+ type: 'boolean'
132
+ },
133
+ materialId: {
134
+ type: 'number'
135
+ },
136
+ texelCountHint: {
137
+ type: 'number'
138
+ },
139
+ vertexCount: {
140
+ type: 'number'
141
+ }
142
+ },
143
+ required: ['boundingVolumes', 'featureCount', 'geometry', 'hasUvRegions', 'materialId', 'vertexCount']
144
+ }
145
+ },
146
+ required: ['nodeId', 'done']
147
+ }
148
+ }
149
+ },
150
+ required: ['nodes']
151
+ }
152
+ }
153
+ },
154
+ textureSetDefinitions: {
155
+ type: 'array',
156
+ items: {
157
+ type: 'object',
158
+ properties: {
159
+ formats: {
160
+ type: 'array',
161
+ items: {
162
+ type: 'object',
163
+ properties: {
164
+ name: {
165
+ type: 'string'
166
+ },
167
+ format: {
168
+ enum: ['jpg', 'png', 'ktx-etc2', 'dds', 'ktx2']
169
+ }
170
+ },
171
+ required: ['name', 'format']
172
+ }
173
+ },
174
+ atlas: {
175
+ type: 'boolean'
176
+ }
177
+ },
178
+ required: ['formats']
179
+ }
180
+ },
181
+ attributeMetadataInfo: {
182
+ type: 'object',
183
+ properties: {
184
+ attributeStorageInfo: {
185
+ type: 'array',
186
+ items: {
187
+ type: 'object',
188
+ properties: {
189
+ key: {
190
+ type: 'string'
191
+ },
192
+ name: {
193
+ type: 'string'
194
+ },
195
+ header: {
196
+ type: 'array',
197
+ items: {
198
+ type: 'object',
199
+ properties: {
200
+ property: {
201
+ type: 'string'
202
+ },
203
+ valueType: {
204
+ type: 'string'
205
+ }
206
+ },
207
+ required: ['property', 'valueType']
208
+ }
209
+ },
210
+ ordering: {
211
+ type: 'array',
212
+ items: {
213
+ type: 'string'
214
+ }
215
+ },
216
+ attributeValues: {
217
+ $ref: '#/$defs/AttributeValue'
218
+ },
219
+ attributeByteCounts: {
220
+ $ref: '#/$defs/AttributeValue'
221
+ },
222
+ objectIds: {
223
+ $ref: '#/$defs/AttributeValue'
224
+ }
225
+ },
226
+ required: ['key', 'name', 'header']
227
+ }
228
+ },
229
+ fields: {
230
+ type: 'array',
231
+ items: {
232
+ type: 'object',
233
+ properties: {
234
+ name: {
235
+ type: 'string'
236
+ },
237
+ type: {
238
+ $ref: '#/$defs/ESRIField'
239
+ },
240
+ alias: {
241
+ type: 'string'
242
+ },
243
+ domain: {
244
+ $ref: '#/$defs/Domain'
245
+ }
246
+ },
247
+ required: ['name', 'type']
248
+ }
249
+ },
250
+ popupInfo: {
251
+ type: 'object',
252
+ properties: {
253
+ title: {
254
+ type: 'string'
255
+ },
256
+ description: {
257
+ type: 'string'
258
+ },
259
+ expressionInfos: {
260
+ type: 'array',
261
+ items: {}
262
+ },
263
+ fieldInfos: {
264
+ type: 'array',
265
+ items: {
266
+ $ref: '#/$defs/FieldInfo'
267
+ }
268
+ },
269
+ mediaInfos: {
270
+ type: 'array',
271
+ items: {}
272
+ },
273
+ popupElements: {
274
+ type: 'array',
275
+ items: {
276
+ type: 'object',
277
+ properties: {
278
+ text: {
279
+ type: 'string'
280
+ },
281
+ type: {
282
+ type: 'string'
283
+ },
284
+ fieldInfos: {
285
+ type: 'array',
286
+ items: {
287
+ $ref: '#/$defs/FieldInfo'
288
+ }
289
+ }
290
+ }
291
+ }
292
+ }
293
+ }
294
+ }
295
+ },
296
+ required: ['attributeStorageInfo', 'fields']
297
+ },
298
+ materialDefinitions: {
299
+ type: 'array',
300
+ items: {
301
+ type: 'object',
302
+ properties: {
303
+ pbrMetallicRoughness: {
304
+ type: 'object',
305
+ properties: {
306
+ baseColorFactor: {
307
+ type: 'array',
308
+ minItems: 4,
309
+ maxItems: 4,
310
+ items: {
311
+ type: 'number'
312
+ }
313
+ },
314
+ baseColorTexture: {
315
+ $ref: '#/$defs/I3SMaterialTexture'
316
+ },
317
+ metallicFactor: {
318
+ type: 'number'
319
+ },
320
+ roughnessFactor: {
321
+ type: 'number'
322
+ },
323
+ metallicRoughnessTexture: {
324
+ $ref: '#/$defs/I3SMaterialTexture'
325
+ }
326
+ },
327
+ required: ['metallicFactor', 'roughnessFactor']
328
+ },
329
+ normalTexture: {
330
+ $ref: '#/$defs/I3SMaterialTexture'
331
+ },
332
+ occlusionTexture: {
333
+ $ref: '#/$defs/I3SMaterialTexture'
334
+ },
335
+ emissiveTexture: {
336
+ $ref: '#/$defs/I3SMaterialTexture'
337
+ },
338
+ emissiveFactor: {
339
+ type: 'array',
340
+ minItems: 3,
341
+ maxItems: 3,
342
+ items: {
343
+ type: 'number'
344
+ }
345
+ },
346
+ alphaMode: {
347
+ enum: ['opaque', 'mask', 'blend']
348
+ },
349
+ alphaCutoff: {
350
+ type: 'number'
351
+ },
352
+ doubleSided: {
353
+ type: 'boolean'
354
+ },
355
+ cullFace: {
356
+ enum: ['none', 'front', 'back']
357
+ }
358
+ },
359
+ required: ['pbrMetallicRoughness', 'alphaMode']
360
+ }
361
+ }
362
+ },
363
+ required: ['options', 'tilesConverted'],
364
+ $defs: {
365
+ AttributeValue: {
366
+ type: 'object',
367
+ properties: {
368
+ valueType: {
369
+ type: 'string'
370
+ },
371
+ encoding: {
372
+ type: 'string'
373
+ },
374
+ valuesPerElement: {
375
+ type: 'number'
376
+ }
377
+ },
378
+ required: ['valueType']
379
+ },
380
+ ESRIField: {
381
+ enum: ['esriFieldTypeDate', 'esriFieldTypeSingle', 'esriFieldTypeDouble', 'esriFieldTypeGUID', 'esriFieldTypeGlobalID', 'esriFieldTypeInteger', 'esriFieldTypeOID', 'esriFieldTypeSmallInteger', 'esriFieldTypeString']
382
+ },
383
+ Domain: {
384
+ type: 'object',
385
+ properties: {
386
+ type: {
387
+ type: 'string'
388
+ },
389
+ name: {
390
+ type: 'string'
391
+ },
392
+ description: {
393
+ type: 'string'
394
+ },
395
+ fieldType: {
396
+ type: 'string'
397
+ },
398
+ range: {
399
+ type: 'array',
400
+ items: {
401
+ type: 'number'
402
+ }
403
+ },
404
+ codedValues: {
405
+ type: 'array',
406
+ items: {
407
+ type: 'object',
408
+ properties: {
409
+ name: {
410
+ type: 'string'
411
+ },
412
+ code: {
413
+ type: ['string', 'number']
414
+ }
415
+ },
416
+ required: ['name', 'code']
417
+ }
418
+ },
419
+ mergePolicy: {
420
+ type: 'string'
421
+ },
422
+ splitPolicy: {
423
+ type: 'string'
424
+ }
425
+ },
426
+ required: ['type', 'name']
427
+ },
428
+ FieldInfo: {
429
+ type: 'object',
430
+ properties: {
431
+ fieldName: {
432
+ type: 'string'
433
+ },
434
+ visible: {
435
+ type: 'boolean'
436
+ },
437
+ isEditable: {
438
+ type: 'boolean'
439
+ },
440
+ label: {
441
+ type: 'string'
442
+ }
443
+ },
444
+ required: ['fieldName', 'visible', 'isEditable', 'label']
445
+ },
446
+ I3SMaterialTexture: {
447
+ type: 'object',
448
+ properties: {
449
+ textureSetDefinitionId: {
450
+ type: 'number'
451
+ },
452
+ texCoord: {
453
+ type: 'number'
454
+ },
455
+ factor: {
456
+ type: 'number'
457
+ }
458
+ },
459
+ required: ['textureSetDefinitionId']
460
+ }
461
+ }
462
+ };
463
+ //# sourceMappingURL=conversion-dump-json-schema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conversion-dump-json-schema.js","names":["dumpJsonSchema","type","properties","options","inputUrl","outputPath","tilesetName","maxDepth","slpk","egmFilePath","token","draco","mergeMaterials","generateTextures","generateBoundingVolumes","metadataClass","analyze","required","tilesConverted","patternProperties","nodes","items","nodeId","done","progress","dumpMetadata","boundingVolumes","mbs","minItems","maxItems","obb","center","halfSize","quaternion","attributesCount","featureCount","geometry","hasUvRegions","materialId","texelCountHint","vertexCount","textureSetDefinitions","formats","name","format","enum","atlas","attributeMetadataInfo","attributeStorageInfo","key","header","property","valueType","ordering","attributeValues","$ref","attributeByteCounts","objectIds","fields","alias","domain","popupInfo","title","description","expressionInfos","fieldInfos","mediaInfos","popupElements","text","materialDefinitions","pbrMetallicRoughness","baseColorFactor","baseColorTexture","metallicFactor","roughnessFactor","metallicRoughnessTexture","normalTexture","occlusionTexture","emissiveTexture","emissiveFactor","alphaMode","alphaCutoff","doubleSided","cullFace","$defs","AttributeValue","encoding","valuesPerElement","ESRIField","Domain","fieldType","range","codedValues","code","mergePolicy","splitPolicy","FieldInfo","fieldName","visible","isEditable","label","I3SMaterialTexture","textureSetDefinitionId","texCoord","factor"],"sources":["../../../src/lib/json-schemas/conversion-dump-json-schema.ts"],"sourcesContent":["export const dumpJsonSchema = {\n type: 'object',\n properties: {\n options: {\n type: 'object',\n properties: {\n inputUrl: {type: 'string'},\n outputPath: {type: 'string'},\n tilesetName: {type: 'string'},\n maxDepth: {type: 'number'},\n slpk: {type: 'boolean'},\n egmFilePath: {type: 'string'},\n token: {type: 'string'},\n draco: {type: 'boolean'},\n mergeMaterials: {type: 'boolean'},\n generateTextures: {type: 'boolean'},\n generateBoundingVolumes: {type: 'boolean'},\n metadataClass: {type: 'string'},\n analyze: {type: 'boolean'}\n },\n required: ['inputUrl', 'outputPath', 'tilesetName']\n },\n tilesConverted: {\n type: 'object',\n patternProperties: {\n '.*': {\n type: 'object',\n properties: {\n nodes: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n nodeId: {type: ['number', 'string']},\n done: {type: 'boolean'},\n progress: {type: 'object', patternProperties: {'.*': {type: 'boolean'}}},\n dumpMetadata: {\n type: 'object',\n properties: {\n boundingVolumes: {\n type: ['object', 'null'],\n properties: {\n mbs: {\n type: 'array',\n minItems: 4,\n maxItems: 4,\n items: {type: 'number'}\n },\n obb: {\n type: 'object',\n properties: {\n center: {\n type: 'array',\n minItems: 3,\n maxItems: 3,\n items: {type: 'number'}\n },\n halfSize: {\n type: 'array',\n minItems: 3,\n maxItems: 3,\n items: {type: 'number'}\n },\n quaternion: {\n type: 'array',\n minItems: 4,\n maxItems: 4,\n items: {type: 'number'}\n }\n },\n required: ['center', 'halfSize', 'quaternion']\n }\n },\n required: ['mbs', 'obb']\n },\n attributesCount: {type: 'number'},\n featureCount: {type: 'number'},\n geometry: {type: 'boolean'},\n hasUvRegions: {type: 'boolean'},\n materialId: {type: 'number'},\n texelCountHint: {type: 'number'},\n vertexCount: {type: 'number'}\n },\n required: [\n 'boundingVolumes',\n 'featureCount',\n 'geometry',\n 'hasUvRegions',\n 'materialId',\n 'vertexCount'\n ]\n }\n },\n required: ['nodeId', 'done']\n }\n }\n },\n required: ['nodes']\n }\n }\n },\n textureSetDefinitions: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n formats: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n name: {type: 'string'},\n format: {enum: ['jpg', 'png', 'ktx-etc2', 'dds', 'ktx2']}\n },\n required: ['name', 'format']\n }\n },\n atlas: {type: 'boolean'}\n },\n required: ['formats']\n }\n },\n attributeMetadataInfo: {\n type: 'object',\n properties: {\n attributeStorageInfo: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n key: {type: 'string'},\n name: {type: 'string'},\n header: {\n type: 'array',\n items: {\n type: 'object',\n properties: {property: {type: 'string'}, valueType: {type: 'string'}},\n required: ['property', 'valueType']\n }\n },\n ordering: {type: 'array', items: {type: 'string'}},\n attributeValues: {$ref: '#/$defs/AttributeValue'},\n attributeByteCounts: {$ref: '#/$defs/AttributeValue'},\n objectIds: {$ref: '#/$defs/AttributeValue'}\n },\n required: ['key', 'name', 'header']\n }\n },\n fields: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n name: {type: 'string'},\n type: {$ref: '#/$defs/ESRIField'},\n alias: {type: 'string'},\n domain: {$ref: '#/$defs/Domain'}\n },\n required: ['name', 'type']\n }\n },\n popupInfo: {\n type: 'object',\n properties: {\n title: {type: 'string'},\n description: {type: 'string'},\n expressionInfos: {type: 'array', items: {}},\n fieldInfos: {type: 'array', items: {$ref: '#/$defs/FieldInfo'}},\n mediaInfos: {type: 'array', items: {}},\n popupElements: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n text: {type: 'string'},\n type: {type: 'string'},\n fieldInfos: {type: 'array', items: {$ref: '#/$defs/FieldInfo'}}\n }\n }\n }\n }\n }\n },\n required: ['attributeStorageInfo', 'fields']\n },\n materialDefinitions: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n pbrMetallicRoughness: {\n type: 'object',\n properties: {\n baseColorFactor: {\n type: 'array',\n minItems: 4,\n maxItems: 4,\n items: {type: 'number'}\n },\n baseColorTexture: {$ref: '#/$defs/I3SMaterialTexture'},\n metallicFactor: {type: 'number'},\n roughnessFactor: {type: 'number'},\n metallicRoughnessTexture: {$ref: '#/$defs/I3SMaterialTexture'}\n },\n required: ['metallicFactor', 'roughnessFactor']\n },\n normalTexture: {$ref: '#/$defs/I3SMaterialTexture'},\n occlusionTexture: {$ref: '#/$defs/I3SMaterialTexture'},\n emissiveTexture: {$ref: '#/$defs/I3SMaterialTexture'},\n emissiveFactor: {type: 'array', minItems: 3, maxItems: 3, items: {type: 'number'}},\n alphaMode: {enum: ['opaque', 'mask', 'blend']},\n alphaCutoff: {type: 'number'},\n doubleSided: {type: 'boolean'},\n cullFace: {enum: ['none', 'front', 'back']}\n },\n required: ['pbrMetallicRoughness', 'alphaMode']\n }\n }\n },\n required: ['options', 'tilesConverted'],\n $defs: {\n AttributeValue: {\n type: 'object',\n properties: {\n valueType: {type: 'string'},\n encoding: {type: 'string'},\n valuesPerElement: {type: 'number'}\n },\n required: ['valueType']\n },\n ESRIField: {\n enum: [\n 'esriFieldTypeDate',\n 'esriFieldTypeSingle',\n 'esriFieldTypeDouble',\n 'esriFieldTypeGUID',\n 'esriFieldTypeGlobalID',\n 'esriFieldTypeInteger',\n 'esriFieldTypeOID',\n 'esriFieldTypeSmallInteger',\n 'esriFieldTypeString'\n ]\n },\n Domain: {\n type: 'object',\n properties: {\n type: {type: 'string'},\n name: {type: 'string'},\n description: {type: 'string'},\n fieldType: {type: 'string'},\n range: {type: 'array', items: {type: 'number'}},\n codedValues: {\n type: 'array',\n items: {\n type: 'object',\n properties: {name: {type: 'string'}, code: {type: ['string', 'number']}},\n required: ['name', 'code']\n }\n },\n mergePolicy: {type: 'string'},\n splitPolicy: {type: 'string'}\n },\n required: ['type', 'name']\n },\n FieldInfo: {\n type: 'object',\n properties: {\n fieldName: {type: 'string'},\n visible: {type: 'boolean'},\n isEditable: {type: 'boolean'},\n label: {type: 'string'}\n },\n required: ['fieldName', 'visible', 'isEditable', 'label']\n },\n I3SMaterialTexture: {\n type: 'object',\n properties: {\n textureSetDefinitionId: {type: 'number'},\n texCoord: {type: 'number'},\n factor: {type: 'number'}\n },\n required: ['textureSetDefinitionId']\n }\n }\n};\n"],"mappings":"AAAA,OAAO,MAAMA,cAAc,GAAG;EAC5BC,IAAI,EAAE,QAAQ;EACdC,UAAU,EAAE;IACVC,OAAO,EAAE;MACPF,IAAI,EAAE,QAAQ;MACdC,UAAU,EAAE;QACVE,QAAQ,EAAE;UAACH,IAAI,EAAE;QAAQ,CAAC;QAC1BI,UAAU,EAAE;UAACJ,IAAI,EAAE;QAAQ,CAAC;QAC5BK,WAAW,EAAE;UAACL,IAAI,EAAE;QAAQ,CAAC;QAC7BM,QAAQ,EAAE;UAACN,IAAI,EAAE;QAAQ,CAAC;QAC1BO,IAAI,EAAE;UAACP,IAAI,EAAE;QAAS,CAAC;QACvBQ,WAAW,EAAE;UAACR,IAAI,EAAE;QAAQ,CAAC;QAC7BS,KAAK,EAAE;UAACT,IAAI,EAAE;QAAQ,CAAC;QACvBU,KAAK,EAAE;UAACV,IAAI,EAAE;QAAS,CAAC;QACxBW,cAAc,EAAE;UAACX,IAAI,EAAE;QAAS,CAAC;QACjCY,gBAAgB,EAAE;UAACZ,IAAI,EAAE;QAAS,CAAC;QACnCa,uBAAuB,EAAE;UAACb,IAAI,EAAE;QAAS,CAAC;QAC1Cc,aAAa,EAAE;UAACd,IAAI,EAAE;QAAQ,CAAC;QAC/Be,OAAO,EAAE;UAACf,IAAI,EAAE;QAAS;MAC3B,CAAC;MACDgB,QAAQ,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,aAAa;IACpD,CAAC;IACDC,cAAc,EAAE;MACdjB,IAAI,EAAE,QAAQ;MACdkB,iBAAiB,EAAE;QACjB,IAAI,EAAE;UACJlB,IAAI,EAAE,QAAQ;UACdC,UAAU,EAAE;YACVkB,KAAK,EAAE;cACLnB,IAAI,EAAE,OAAO;cACboB,KAAK,EAAE;gBACLpB,IAAI,EAAE,QAAQ;gBACdC,UAAU,EAAE;kBACVoB,MAAM,EAAE;oBAACrB,IAAI,EAAE,CAAC,QAAQ,EAAE,QAAQ;kBAAC,CAAC;kBACpCsB,IAAI,EAAE;oBAACtB,IAAI,EAAE;kBAAS,CAAC;kBACvBuB,QAAQ,EAAE;oBAACvB,IAAI,EAAE,QAAQ;oBAAEkB,iBAAiB,EAAE;sBAAC,IAAI,EAAE;wBAAClB,IAAI,EAAE;sBAAS;oBAAC;kBAAC,CAAC;kBACxEwB,YAAY,EAAE;oBACZxB,IAAI,EAAE,QAAQ;oBACdC,UAAU,EAAE;sBACVwB,eAAe,EAAE;wBACfzB,IAAI,EAAE,CAAC,QAAQ,EAAE,MAAM,CAAC;wBACxBC,UAAU,EAAE;0BACVyB,GAAG,EAAE;4BACH1B,IAAI,EAAE,OAAO;4BACb2B,QAAQ,EAAE,CAAC;4BACXC,QAAQ,EAAE,CAAC;4BACXR,KAAK,EAAE;8BAACpB,IAAI,EAAE;4BAAQ;0BACxB,CAAC;0BACD6B,GAAG,EAAE;4BACH7B,IAAI,EAAE,QAAQ;4BACdC,UAAU,EAAE;8BACV6B,MAAM,EAAE;gCACN9B,IAAI,EAAE,OAAO;gCACb2B,QAAQ,EAAE,CAAC;gCACXC,QAAQ,EAAE,CAAC;gCACXR,KAAK,EAAE;kCAACpB,IAAI,EAAE;gCAAQ;8BACxB,CAAC;8BACD+B,QAAQ,EAAE;gCACR/B,IAAI,EAAE,OAAO;gCACb2B,QAAQ,EAAE,CAAC;gCACXC,QAAQ,EAAE,CAAC;gCACXR,KAAK,EAAE;kCAACpB,IAAI,EAAE;gCAAQ;8BACxB,CAAC;8BACDgC,UAAU,EAAE;gCACVhC,IAAI,EAAE,OAAO;gCACb2B,QAAQ,EAAE,CAAC;gCACXC,QAAQ,EAAE,CAAC;gCACXR,KAAK,EAAE;kCAACpB,IAAI,EAAE;gCAAQ;8BACxB;4BACF,CAAC;4BACDgB,QAAQ,EAAE,CAAC,QAAQ,EAAE,UAAU,EAAE,YAAY;0BAC/C;wBACF,CAAC;wBACDA,QAAQ,EAAE,CAAC,KAAK,EAAE,KAAK;sBACzB,CAAC;sBACDiB,eAAe,EAAE;wBAACjC,IAAI,EAAE;sBAAQ,CAAC;sBACjCkC,YAAY,EAAE;wBAAClC,IAAI,EAAE;sBAAQ,CAAC;sBAC9BmC,QAAQ,EAAE;wBAACnC,IAAI,EAAE;sBAAS,CAAC;sBAC3BoC,YAAY,EAAE;wBAACpC,IAAI,EAAE;sBAAS,CAAC;sBAC/BqC,UAAU,EAAE;wBAACrC,IAAI,EAAE;sBAAQ,CAAC;sBAC5BsC,cAAc,EAAE;wBAACtC,IAAI,EAAE;sBAAQ,CAAC;sBAChCuC,WAAW,EAAE;wBAACvC,IAAI,EAAE;sBAAQ;oBAC9B,CAAC;oBACDgB,QAAQ,EAAE,CACR,iBAAiB,EACjB,cAAc,EACd,UAAU,EACV,cAAc,EACd,YAAY,EACZ,aAAa;kBAEjB;gBACF,CAAC;gBACDA,QAAQ,EAAE,CAAC,QAAQ,EAAE,MAAM;cAC7B;YACF;UACF,CAAC;UACDA,QAAQ,EAAE,CAAC,OAAO;QACpB;MACF;IACF,CAAC;IACDwB,qBAAqB,EAAE;MACrBxC,IAAI,EAAE,OAAO;MACboB,KAAK,EAAE;QACLpB,IAAI,EAAE,QAAQ;QACdC,UAAU,EAAE;UACVwC,OAAO,EAAE;YACPzC,IAAI,EAAE,OAAO;YACboB,KAAK,EAAE;cACLpB,IAAI,EAAE,QAAQ;cACdC,UAAU,EAAE;gBACVyC,IAAI,EAAE;kBAAC1C,IAAI,EAAE;gBAAQ,CAAC;gBACtB2C,MAAM,EAAE;kBAACC,IAAI,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM;gBAAC;cAC1D,CAAC;cACD5B,QAAQ,EAAE,CAAC,MAAM,EAAE,QAAQ;YAC7B;UACF,CAAC;UACD6B,KAAK,EAAE;YAAC7C,IAAI,EAAE;UAAS;QACzB,CAAC;QACDgB,QAAQ,EAAE,CAAC,SAAS;MACtB;IACF,CAAC;IACD8B,qBAAqB,EAAE;MACrB9C,IAAI,EAAE,QAAQ;MACdC,UAAU,EAAE;QACV8C,oBAAoB,EAAE;UACpB/C,IAAI,EAAE,OAAO;UACboB,KAAK,EAAE;YACLpB,IAAI,EAAE,QAAQ;YACdC,UAAU,EAAE;cACV+C,GAAG,EAAE;gBAAChD,IAAI,EAAE;cAAQ,CAAC;cACrB0C,IAAI,EAAE;gBAAC1C,IAAI,EAAE;cAAQ,CAAC;cACtBiD,MAAM,EAAE;gBACNjD,IAAI,EAAE,OAAO;gBACboB,KAAK,EAAE;kBACLpB,IAAI,EAAE,QAAQ;kBACdC,UAAU,EAAE;oBAACiD,QAAQ,EAAE;sBAAClD,IAAI,EAAE;oBAAQ,CAAC;oBAAEmD,SAAS,EAAE;sBAACnD,IAAI,EAAE;oBAAQ;kBAAC,CAAC;kBACrEgB,QAAQ,EAAE,CAAC,UAAU,EAAE,WAAW;gBACpC;cACF,CAAC;cACDoC,QAAQ,EAAE;gBAACpD,IAAI,EAAE,OAAO;gBAAEoB,KAAK,EAAE;kBAACpB,IAAI,EAAE;gBAAQ;cAAC,CAAC;cAClDqD,eAAe,EAAE;gBAACC,IAAI,EAAE;cAAwB,CAAC;cACjDC,mBAAmB,EAAE;gBAACD,IAAI,EAAE;cAAwB,CAAC;cACrDE,SAAS,EAAE;gBAACF,IAAI,EAAE;cAAwB;YAC5C,CAAC;YACDtC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ;UACpC;QACF,CAAC;QACDyC,MAAM,EAAE;UACNzD,IAAI,EAAE,OAAO;UACboB,KAAK,EAAE;YACLpB,IAAI,EAAE,QAAQ;YACdC,UAAU,EAAE;cACVyC,IAAI,EAAE;gBAAC1C,IAAI,EAAE;cAAQ,CAAC;cACtBA,IAAI,EAAE;gBAACsD,IAAI,EAAE;cAAmB,CAAC;cACjCI,KAAK,EAAE;gBAAC1D,IAAI,EAAE;cAAQ,CAAC;cACvB2D,MAAM,EAAE;gBAACL,IAAI,EAAE;cAAgB;YACjC,CAAC;YACDtC,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM;UAC3B;QACF,CAAC;QACD4C,SAAS,EAAE;UACT5D,IAAI,EAAE,QAAQ;UACdC,UAAU,EAAE;YACV4D,KAAK,EAAE;cAAC7D,IAAI,EAAE;YAAQ,CAAC;YACvB8D,WAAW,EAAE;cAAC9D,IAAI,EAAE;YAAQ,CAAC;YAC7B+D,eAAe,EAAE;cAAC/D,IAAI,EAAE,OAAO;cAAEoB,KAAK,EAAE,CAAC;YAAC,CAAC;YAC3C4C,UAAU,EAAE;cAAChE,IAAI,EAAE,OAAO;cAAEoB,KAAK,EAAE;gBAACkC,IAAI,EAAE;cAAmB;YAAC,CAAC;YAC/DW,UAAU,EAAE;cAACjE,IAAI,EAAE,OAAO;cAAEoB,KAAK,EAAE,CAAC;YAAC,CAAC;YACtC8C,aAAa,EAAE;cACblE,IAAI,EAAE,OAAO;cACboB,KAAK,EAAE;gBACLpB,IAAI,EAAE,QAAQ;gBACdC,UAAU,EAAE;kBACVkE,IAAI,EAAE;oBAACnE,IAAI,EAAE;kBAAQ,CAAC;kBACtBA,IAAI,EAAE;oBAACA,IAAI,EAAE;kBAAQ,CAAC;kBACtBgE,UAAU,EAAE;oBAAChE,IAAI,EAAE,OAAO;oBAAEoB,KAAK,EAAE;sBAACkC,IAAI,EAAE;oBAAmB;kBAAC;gBAChE;cACF;YACF;UACF;QACF;MACF,CAAC;MACDtC,QAAQ,EAAE,CAAC,sBAAsB,EAAE,QAAQ;IAC7C,CAAC;IACDoD,mBAAmB,EAAE;MACnBpE,IAAI,EAAE,OAAO;MACboB,KAAK,EAAE;QACLpB,IAAI,EAAE,QAAQ;QACdC,UAAU,EAAE;UACVoE,oBAAoB,EAAE;YACpBrE,IAAI,EAAE,QAAQ;YACdC,UAAU,EAAE;cACVqE,eAAe,EAAE;gBACftE,IAAI,EAAE,OAAO;gBACb2B,QAAQ,EAAE,CAAC;gBACXC,QAAQ,EAAE,CAAC;gBACXR,KAAK,EAAE;kBAACpB,IAAI,EAAE;gBAAQ;cACxB,CAAC;cACDuE,gBAAgB,EAAE;gBAACjB,IAAI,EAAE;cAA4B,CAAC;cACtDkB,cAAc,EAAE;gBAACxE,IAAI,EAAE;cAAQ,CAAC;cAChCyE,eAAe,EAAE;gBAACzE,IAAI,EAAE;cAAQ,CAAC;cACjC0E,wBAAwB,EAAE;gBAACpB,IAAI,EAAE;cAA4B;YAC/D,CAAC;YACDtC,QAAQ,EAAE,CAAC,gBAAgB,EAAE,iBAAiB;UAChD,CAAC;UACD2D,aAAa,EAAE;YAACrB,IAAI,EAAE;UAA4B,CAAC;UACnDsB,gBAAgB,EAAE;YAACtB,IAAI,EAAE;UAA4B,CAAC;UACtDuB,eAAe,EAAE;YAACvB,IAAI,EAAE;UAA4B,CAAC;UACrDwB,cAAc,EAAE;YAAC9E,IAAI,EAAE,OAAO;YAAE2B,QAAQ,EAAE,CAAC;YAAEC,QAAQ,EAAE,CAAC;YAAER,KAAK,EAAE;cAACpB,IAAI,EAAE;YAAQ;UAAC,CAAC;UAClF+E,SAAS,EAAE;YAACnC,IAAI,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO;UAAC,CAAC;UAC9CoC,WAAW,EAAE;YAAChF,IAAI,EAAE;UAAQ,CAAC;UAC7BiF,WAAW,EAAE;YAACjF,IAAI,EAAE;UAAS,CAAC;UAC9BkF,QAAQ,EAAE;YAACtC,IAAI,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM;UAAC;QAC5C,CAAC;QACD5B,QAAQ,EAAE,CAAC,sBAAsB,EAAE,WAAW;MAChD;IACF;EACF,CAAC;EACDA,QAAQ,EAAE,CAAC,SAAS,EAAE,gBAAgB,CAAC;EACvCmE,KAAK,EAAE;IACLC,cAAc,EAAE;MACdpF,IAAI,EAAE,QAAQ;MACdC,UAAU,EAAE;QACVkD,SAAS,EAAE;UAACnD,IAAI,EAAE;QAAQ,CAAC;QAC3BqF,QAAQ,EAAE;UAACrF,IAAI,EAAE;QAAQ,CAAC;QAC1BsF,gBAAgB,EAAE;UAACtF,IAAI,EAAE;QAAQ;MACnC,CAAC;MACDgB,QAAQ,EAAE,CAAC,WAAW;IACxB,CAAC;IACDuE,SAAS,EAAE;MACT3C,IAAI,EAAE,CACJ,mBAAmB,EACnB,qBAAqB,EACrB,qBAAqB,EACrB,mBAAmB,EACnB,uBAAuB,EACvB,sBAAsB,EACtB,kBAAkB,EAClB,2BAA2B,EAC3B,qBAAqB;IAEzB,CAAC;IACD4C,MAAM,EAAE;MACNxF,IAAI,EAAE,QAAQ;MACdC,UAAU,EAAE;QACVD,IAAI,EAAE;UAACA,IAAI,EAAE;QAAQ,CAAC;QACtB0C,IAAI,EAAE;UAAC1C,IAAI,EAAE;QAAQ,CAAC;QACtB8D,WAAW,EAAE;UAAC9D,IAAI,EAAE;QAAQ,CAAC;QAC7ByF,SAAS,EAAE;UAACzF,IAAI,EAAE;QAAQ,CAAC;QAC3B0F,KAAK,EAAE;UAAC1F,IAAI,EAAE,OAAO;UAAEoB,KAAK,EAAE;YAACpB,IAAI,EAAE;UAAQ;QAAC,CAAC;QAC/C2F,WAAW,EAAE;UACX3F,IAAI,EAAE,OAAO;UACboB,KAAK,EAAE;YACLpB,IAAI,EAAE,QAAQ;YACdC,UAAU,EAAE;cAACyC,IAAI,EAAE;gBAAC1C,IAAI,EAAE;cAAQ,CAAC;cAAE4F,IAAI,EAAE;gBAAC5F,IAAI,EAAE,CAAC,QAAQ,EAAE,QAAQ;cAAC;YAAC,CAAC;YACxEgB,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM;UAC3B;QACF,CAAC;QACD6E,WAAW,EAAE;UAAC7F,IAAI,EAAE;QAAQ,CAAC;QAC7B8F,WAAW,EAAE;UAAC9F,IAAI,EAAE;QAAQ;MAC9B,CAAC;MACDgB,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM;IAC3B,CAAC;IACD+E,SAAS,EAAE;MACT/F,IAAI,EAAE,QAAQ;MACdC,UAAU,EAAE;QACV+F,SAAS,EAAE;UAAChG,IAAI,EAAE;QAAQ,CAAC;QAC3BiG,OAAO,EAAE;UAACjG,IAAI,EAAE;QAAS,CAAC;QAC1BkG,UAAU,EAAE;UAAClG,IAAI,EAAE;QAAS,CAAC;QAC7BmG,KAAK,EAAE;UAACnG,IAAI,EAAE;QAAQ;MACxB,CAAC;MACDgB,QAAQ,EAAE,CAAC,WAAW,EAAE,SAAS,EAAE,YAAY,EAAE,OAAO;IAC1D,CAAC;IACDoF,kBAAkB,EAAE;MAClBpG,IAAI,EAAE,QAAQ;MACdC,UAAU,EAAE;QACVoG,sBAAsB,EAAE;UAACrG,IAAI,EAAE;QAAQ,CAAC;QACxCsG,QAAQ,EAAE;UAACtG,IAAI,EAAE;QAAQ,CAAC;QAC1BuG,MAAM,EAAE;UAACvG,IAAI,EAAE;QAAQ;MACzB,CAAC;MACDgB,QAAQ,EAAE,CAAC,wBAAwB;IACrC;EACF;AACF,CAAC"}
@@ -16,7 +16,7 @@ export type ConversionDumpOptions = {
16
16
  analyze: boolean;
17
17
  };
18
18
  type NodeDoneStatus = {
19
- nodeId: number;
19
+ nodeId: number | string;
20
20
  done: boolean;
21
21
  progress?: Record<string, boolean>;
22
22
  dumpMetadata?: DumpMetadata;
@@ -50,7 +50,7 @@ export declare class ConversionDump {
50
50
  /** Attributes Metadata */
51
51
  attributeMetadataInfo?: AttributeMetadataInfoObject;
52
52
  /** Array of materials definitions */
53
- materialDefinitions: I3SMaterialDefinition[];
53
+ materialDefinitions?: I3SMaterialDefinition[];
54
54
  constructor();
55
55
  /**
56
56
  * Create a dump with convertion options
@@ -86,7 +86,7 @@ export declare class ConversionDump {
86
86
  * @param fileName - source filename
87
87
  * @param nodeId - nodeId of the node
88
88
  */
89
- addNode(filename: string, nodeId: number, dumpMetadata: DumpMetadata): Promise<void>;
89
+ addNode(filename: string, nodeId: number | string, dumpMetadata?: DumpMetadata): Promise<void>;
90
90
  /**
91
91
  * Clear dump record got the source filename
92
92
  * @param fileName - source filename
@@ -104,17 +104,24 @@ export declare class ConversionDump {
104
104
  * @param resourceType - resource type to update status
105
105
  * @param value - value
106
106
  */
107
- updateDoneStatus(filename: string, nodeId: number, resourceType: string, value: boolean): void;
107
+ updateDoneStatus(filename: string, nodeId: number | string, resourceType: string, value: boolean): void;
108
108
  /**
109
109
  * Update dump file according to writing results
110
110
  * @param changedRecords - array of parameters ids for the written resources
111
111
  * @param writeResults - array of writing resource files results
112
112
  */
113
113
  updateConvertedTilesDump(changedRecords: {
114
- outputId?: number;
114
+ outputId?: number | string;
115
115
  sourceId?: string;
116
116
  resourceType?: string;
117
117
  }[], writeResults: PromiseSettledResult<string | null>[]): Promise<void>;
118
+ /**
119
+ * Update 3d-tiles-converter dump file
120
+ * @param filename - source filename
121
+ * @param nodeId - nodeId
122
+ * @param done - conversion status
123
+ */
124
+ updateConvertedNodesDumpFile(filename: string, nodeId: number | string, done: boolean): Promise<void>;
118
125
  /**
119
126
  * Check is source file conversion complete
120
127
  * @param filename - source filename
@@ -1 +1 @@
1
- {"version":3,"file":"conversion-dump.d.ts","sourceRoot":"","sources":["../../../src/lib/utils/conversion-dump.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"conversion-dump.d.ts","sourceRoot":"","sources":["../../../src/lib/utils/conversion-dump.ts"],"names":[],"mappings":"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"}