@loaders.gl/i3s 3.1.0-beta.7 → 3.1.0
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 +126 -139
- package/dist/es5/bundle.js +1 -1
- package/dist/es5/bundle.js.map +1 -1
- package/dist/es5/i3s-attribute-loader.js +147 -62
- package/dist/es5/i3s-attribute-loader.js.map +1 -1
- package/dist/es5/i3s-building-scene-layer-loader.js +36 -8
- package/dist/es5/i3s-building-scene-layer-loader.js.map +1 -1
- package/dist/es5/i3s-content-loader.js +36 -10
- package/dist/es5/i3s-content-loader.js.map +1 -1
- package/dist/es5/i3s-loader.js +175 -51
- package/dist/es5/i3s-loader.js.map +1 -1
- package/dist/es5/i3s-node-page-loader.js +51 -8
- package/dist/es5/i3s-node-page-loader.js.map +1 -1
- package/dist/es5/index.js +6 -6
- package/dist/es5/index.js.map +1 -1
- package/dist/es5/lib/helpers/i3s-nodepages-tiles.js +328 -173
- package/dist/es5/lib/helpers/i3s-nodepages-tiles.js.map +1 -1
- package/dist/es5/lib/parsers/constants.js +9 -28
- package/dist/es5/lib/parsers/constants.js.map +1 -1
- package/dist/es5/lib/parsers/parse-i3s-attribute.js +69 -27
- package/dist/es5/lib/parsers/parse-i3s-attribute.js.map +1 -1
- package/dist/es5/lib/parsers/parse-i3s-building-scene-layer.js +62 -28
- package/dist/es5/lib/parsers/parse-i3s-building-scene-layer.js.map +1 -1
- package/dist/es5/lib/parsers/parse-i3s-tile-content.js +416 -314
- package/dist/es5/lib/parsers/parse-i3s-tile-content.js.map +1 -1
- package/dist/es5/lib/parsers/parse-i3s.js +109 -49
- package/dist/es5/lib/parsers/parse-i3s.js.map +1 -1
- package/dist/es5/lib/utils/convert-i3s-obb-to-mbs.js +8 -4
- package/dist/es5/lib/utils/convert-i3s-obb-to-mbs.js.map +1 -1
- package/dist/es5/lib/utils/url-utils.js +14 -17
- package/dist/es5/lib/utils/url-utils.js.map +1 -1
- package/dist/es5/types.js +10 -2
- package/dist/es5/types.js.map +1 -1
- package/dist/esm/i3s-attribute-loader.js +1 -1
- package/dist/esm/i3s-attribute-loader.js.map +1 -1
- package/dist/esm/i3s-building-scene-layer-loader.js +1 -1
- package/dist/esm/i3s-building-scene-layer-loader.js.map +1 -1
- package/dist/esm/i3s-content-loader.js +1 -1
- package/dist/esm/i3s-content-loader.js.map +1 -1
- package/dist/esm/i3s-loader.js +1 -1
- package/dist/esm/i3s-loader.js.map +1 -1
- package/dist/esm/i3s-node-page-loader.js +1 -1
- package/dist/esm/i3s-node-page-loader.js.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/lib/helpers/i3s-nodepages-tiles.js +33 -23
- package/dist/esm/lib/helpers/i3s-nodepages-tiles.js.map +1 -1
- package/dist/esm/lib/parsers/constants.js +2 -18
- package/dist/esm/lib/parsers/constants.js.map +1 -1
- package/dist/esm/lib/parsers/parse-i3s-tile-content.js +44 -61
- package/dist/esm/lib/parsers/parse-i3s-tile-content.js.map +1 -1
- package/dist/esm/lib/parsers/parse-i3s.js +40 -25
- package/dist/esm/lib/parsers/parse-i3s.js.map +1 -1
- package/dist/esm/lib/utils/url-utils.js +2 -3
- package/dist/esm/lib/utils/url-utils.js.map +1 -1
- package/dist/esm/types.js +7 -0
- package/dist/esm/types.js.map +1 -1
- package/dist/i3s-content-worker.js +62 -81
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/lib/helpers/i3s-nodepages-tiles.d.ts +20 -20
- package/dist/lib/helpers/i3s-nodepages-tiles.d.ts.map +1 -1
- package/dist/lib/helpers/i3s-nodepages-tiles.js +33 -32
- package/dist/lib/parsers/constants.d.ts +1 -17
- package/dist/lib/parsers/constants.d.ts.map +1 -1
- package/dist/lib/parsers/constants.js +3 -21
- package/dist/lib/parsers/parse-i3s-attribute.d.ts +1 -1
- package/dist/lib/parsers/parse-i3s-tile-content.d.ts +2 -2
- package/dist/lib/parsers/parse-i3s-tile-content.d.ts.map +1 -1
- package/dist/lib/parsers/parse-i3s-tile-content.js +35 -61
- package/dist/lib/parsers/parse-i3s.d.ts +5 -3
- package/dist/lib/parsers/parse-i3s.d.ts.map +1 -1
- package/dist/lib/parsers/parse-i3s.js +37 -32
- package/dist/lib/utils/url-utils.d.ts +6 -6
- package/dist/lib/utils/url-utils.d.ts.map +1 -1
- package/dist/lib/utils/url-utils.js +5 -5
- package/dist/types.d.ts +289 -74
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +6 -1
- package/package.json +8 -8
- package/src/index.ts +3 -3
- package/src/lib/helpers/i3s-nodepages-tiles.ts +71 -55
- package/src/lib/parsers/constants.ts +2 -22
- package/src/lib/parsers/parse-i3s-tile-content.ts +74 -103
- package/src/lib/parsers/parse-i3s.ts +48 -37
- package/src/lib/utils/url-utils.ts +7 -7
- package/src/types.ts +302 -93
|
@@ -7,6 +7,14 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
});
|
|
8
8
|
exports.default = void 0;
|
|
9
9
|
|
|
10
|
+
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
|
11
|
+
|
|
12
|
+
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
13
|
+
|
|
14
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
15
|
+
|
|
16
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
17
|
+
|
|
10
18
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
19
|
|
|
12
20
|
var _core = require("@loaders.gl/core");
|
|
@@ -19,8 +27,21 @@ var _parseI3s = require("../parsers/parse-i3s");
|
|
|
19
27
|
|
|
20
28
|
var _urlUtils = require("../utils/url-utils");
|
|
21
29
|
|
|
22
|
-
|
|
23
|
-
|
|
30
|
+
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
31
|
+
|
|
32
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
33
|
+
|
|
34
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
35
|
+
|
|
36
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
37
|
+
|
|
38
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
39
|
+
|
|
40
|
+
var I3SNodePagesTiles = function () {
|
|
41
|
+
function I3SNodePagesTiles(tileset, options) {
|
|
42
|
+
var _tileset$nodePages, _tileset$nodePages2;
|
|
43
|
+
|
|
44
|
+
(0, _classCallCheck2.default)(this, I3SNodePagesTiles);
|
|
24
45
|
(0, _defineProperty2.default)(this, "tileset", void 0);
|
|
25
46
|
(0, _defineProperty2.default)(this, "nodePages", []);
|
|
26
47
|
(0, _defineProperty2.default)(this, "pendingNodePages", []);
|
|
@@ -29,210 +50,344 @@ class I3SNodePagesTiles {
|
|
|
29
50
|
(0, _defineProperty2.default)(this, "lodSelectionMetricType", void 0);
|
|
30
51
|
(0, _defineProperty2.default)(this, "textureDefinitionsSelectedFormats", []);
|
|
31
52
|
(0, _defineProperty2.default)(this, "textureLoaderOptions", {});
|
|
32
|
-
this.tileset = {
|
|
33
|
-
|
|
34
|
-
this.
|
|
35
|
-
this.lodSelectionMetricType = tileset.nodePages.lodSelectionMetricType;
|
|
53
|
+
this.tileset = _objectSpread({}, tileset);
|
|
54
|
+
this.nodesPerPage = ((_tileset$nodePages = tileset.nodePages) === null || _tileset$nodePages === void 0 ? void 0 : _tileset$nodePages.nodesPerPage) || 64;
|
|
55
|
+
this.lodSelectionMetricType = (_tileset$nodePages2 = tileset.nodePages) === null || _tileset$nodePages2 === void 0 ? void 0 : _tileset$nodePages2.lodSelectionMetricType;
|
|
36
56
|
this.options = options;
|
|
37
57
|
this.initSelectedFormatsForTextureDefinitions(tileset);
|
|
38
58
|
}
|
|
39
59
|
|
|
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
|
-
if (textureData.name) {
|
|
97
|
-
textureUrl = "".concat(this.tileset.url, "/nodes/").concat(node.mesh.material.resource, "/textures/").concat(textureData.name);
|
|
60
|
+
(0, _createClass2.default)(I3SNodePagesTiles, [{
|
|
61
|
+
key: "getNodeById",
|
|
62
|
+
value: function () {
|
|
63
|
+
var _getNodeById = (0, _asyncToGenerator2.default)(_regenerator.default.mark(function _callee(id) {
|
|
64
|
+
var pageIndex, _this$options$i3s, nodePageUrl, nodeIndex;
|
|
65
|
+
|
|
66
|
+
return _regenerator.default.wrap(function _callee$(_context) {
|
|
67
|
+
while (1) {
|
|
68
|
+
switch (_context.prev = _context.next) {
|
|
69
|
+
case 0:
|
|
70
|
+
pageIndex = Math.floor(id / this.nodesPerPage);
|
|
71
|
+
|
|
72
|
+
if (!(!this.nodePages[pageIndex] && !this.pendingNodePages[pageIndex])) {
|
|
73
|
+
_context.next = 8;
|
|
74
|
+
break;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
nodePageUrl = (0, _urlUtils.getUrlWithToken)("".concat(this.tileset.url, "/nodepages/").concat(pageIndex), (_this$options$i3s = this.options.i3s) === null || _this$options$i3s === void 0 ? void 0 : _this$options$i3s.token);
|
|
78
|
+
this.pendingNodePages[pageIndex] = {
|
|
79
|
+
status: 'Pending',
|
|
80
|
+
promise: (0, _core.load)(nodePageUrl, _i3sNodePageLoader.I3SNodePageLoader, this.options)
|
|
81
|
+
};
|
|
82
|
+
_context.next = 6;
|
|
83
|
+
return this.pendingNodePages[pageIndex].promise;
|
|
84
|
+
|
|
85
|
+
case 6:
|
|
86
|
+
this.nodePages[pageIndex] = _context.sent;
|
|
87
|
+
this.pendingNodePages[pageIndex].status = 'Done';
|
|
88
|
+
|
|
89
|
+
case 8:
|
|
90
|
+
if (!(this.pendingNodePages[pageIndex].status === 'Pending')) {
|
|
91
|
+
_context.next = 12;
|
|
92
|
+
break;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
_context.next = 11;
|
|
96
|
+
return this.pendingNodePages[pageIndex].promise;
|
|
97
|
+
|
|
98
|
+
case 11:
|
|
99
|
+
this.nodePages[pageIndex] = _context.sent;
|
|
100
|
+
|
|
101
|
+
case 12:
|
|
102
|
+
nodeIndex = id % this.nodesPerPage;
|
|
103
|
+
return _context.abrupt("return", this.nodePages[pageIndex].nodes[nodeIndex]);
|
|
104
|
+
|
|
105
|
+
case 14:
|
|
106
|
+
case "end":
|
|
107
|
+
return _context.stop();
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}, _callee, this);
|
|
111
|
+
}));
|
|
112
|
+
|
|
113
|
+
function getNodeById(_x) {
|
|
114
|
+
return _getNodeById.apply(this, arguments);
|
|
98
115
|
}
|
|
99
116
|
|
|
100
|
-
|
|
101
|
-
|
|
117
|
+
return getNodeById;
|
|
118
|
+
}()
|
|
119
|
+
}, {
|
|
120
|
+
key: "formTileFromNodePages",
|
|
121
|
+
value: function () {
|
|
122
|
+
var _formTileFromNodePages = (0, _asyncToGenerator2.default)(_regenerator.default.mark(function _callee2(id) {
|
|
123
|
+
var node, children, _iterator, _step, child, childNode, contentUrl, textureUrl, materialDefinition, textureFormat, attributeUrls, isDracoGeometry, _ref, url, isDracoGeometryResult, _this$getInformationF, textureData, nodeMaterialDefinition, lodSelection;
|
|
124
|
+
|
|
125
|
+
return _regenerator.default.wrap(function _callee2$(_context2) {
|
|
126
|
+
while (1) {
|
|
127
|
+
switch (_context2.prev = _context2.next) {
|
|
128
|
+
case 0:
|
|
129
|
+
_context2.next = 2;
|
|
130
|
+
return this.getNodeById(id);
|
|
131
|
+
|
|
132
|
+
case 2:
|
|
133
|
+
node = _context2.sent;
|
|
134
|
+
children = [];
|
|
135
|
+
_iterator = _createForOfIteratorHelper(node.children || []);
|
|
136
|
+
_context2.prev = 5;
|
|
137
|
+
|
|
138
|
+
_iterator.s();
|
|
139
|
+
|
|
140
|
+
case 7:
|
|
141
|
+
if ((_step = _iterator.n()).done) {
|
|
142
|
+
_context2.next = 15;
|
|
143
|
+
break;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
child = _step.value;
|
|
147
|
+
_context2.next = 11;
|
|
148
|
+
return this.getNodeById(child);
|
|
149
|
+
|
|
150
|
+
case 11:
|
|
151
|
+
childNode = _context2.sent;
|
|
152
|
+
children.push({
|
|
153
|
+
id: child.toString(),
|
|
154
|
+
obb: childNode.obb
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
case 13:
|
|
158
|
+
_context2.next = 7;
|
|
159
|
+
break;
|
|
160
|
+
|
|
161
|
+
case 15:
|
|
162
|
+
_context2.next = 20;
|
|
163
|
+
break;
|
|
164
|
+
|
|
165
|
+
case 17:
|
|
166
|
+
_context2.prev = 17;
|
|
167
|
+
_context2.t0 = _context2["catch"](5);
|
|
168
|
+
|
|
169
|
+
_iterator.e(_context2.t0);
|
|
170
|
+
|
|
171
|
+
case 20:
|
|
172
|
+
_context2.prev = 20;
|
|
173
|
+
|
|
174
|
+
_iterator.f();
|
|
175
|
+
|
|
176
|
+
return _context2.finish(20);
|
|
177
|
+
|
|
178
|
+
case 23:
|
|
179
|
+
textureFormat = 'jpg';
|
|
180
|
+
attributeUrls = [];
|
|
181
|
+
isDracoGeometry = false;
|
|
182
|
+
|
|
183
|
+
if (node && node.mesh) {
|
|
184
|
+
_ref = node.mesh.geometry && this.getContentUrl(node.mesh.geometry) || {
|
|
185
|
+
isDracoGeometry: false
|
|
186
|
+
}, url = _ref.url, isDracoGeometryResult = _ref.isDracoGeometry;
|
|
187
|
+
contentUrl = url;
|
|
188
|
+
isDracoGeometry = isDracoGeometryResult;
|
|
189
|
+
_this$getInformationF = this.getInformationFromMaterial(node.mesh.material), textureData = _this$getInformationF.textureData, nodeMaterialDefinition = _this$getInformationF.materialDefinition;
|
|
190
|
+
materialDefinition = nodeMaterialDefinition;
|
|
191
|
+
textureFormat = textureData.format || textureFormat;
|
|
192
|
+
|
|
193
|
+
if (textureData.name) {
|
|
194
|
+
textureUrl = "".concat(this.tileset.url, "/nodes/").concat(node.mesh.material.resource, "/textures/").concat(textureData.name);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
if (this.tileset.attributeStorageInfo) {
|
|
198
|
+
attributeUrls = (0, _urlUtils.generateTilesetAttributeUrls)(this.tileset, node.mesh.attribute.resource);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
lodSelection = this.getLodSelection(node);
|
|
203
|
+
return _context2.abrupt("return", (0, _parseI3s.normalizeTileNonUrlData)({
|
|
204
|
+
id: id.toString(),
|
|
205
|
+
lodSelection: lodSelection,
|
|
206
|
+
obb: node.obb,
|
|
207
|
+
contentUrl: contentUrl,
|
|
208
|
+
textureUrl: textureUrl,
|
|
209
|
+
attributeUrls: attributeUrls,
|
|
210
|
+
materialDefinition: materialDefinition,
|
|
211
|
+
textureFormat: textureFormat,
|
|
212
|
+
textureLoaderOptions: this.textureLoaderOptions,
|
|
213
|
+
children: children,
|
|
214
|
+
isDracoGeometry: isDracoGeometry
|
|
215
|
+
}));
|
|
216
|
+
|
|
217
|
+
case 29:
|
|
218
|
+
case "end":
|
|
219
|
+
return _context2.stop();
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}, _callee2, this, [[5, 17, 20, 23]]);
|
|
223
|
+
}));
|
|
224
|
+
|
|
225
|
+
function formTileFromNodePages(_x2) {
|
|
226
|
+
return _formTileFromNodePages.apply(this, arguments);
|
|
102
227
|
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
const lodSelection = this.getLodSelection(node);
|
|
106
|
-
return (0, _parseI3s.normalizeTileNonUrlData)({
|
|
107
|
-
id,
|
|
108
|
-
lodSelection,
|
|
109
|
-
obb: node.obb,
|
|
110
|
-
contentUrl,
|
|
111
|
-
textureUrl,
|
|
112
|
-
attributeUrls,
|
|
113
|
-
materialDefinition,
|
|
114
|
-
textureFormat,
|
|
115
|
-
textureLoaderOptions: this.textureLoaderOptions,
|
|
116
|
-
children,
|
|
117
|
-
isDracoGeometry
|
|
118
|
-
});
|
|
119
|
-
}
|
|
120
228
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
229
|
+
return formTileFromNodePages;
|
|
230
|
+
}()
|
|
231
|
+
}, {
|
|
232
|
+
key: "getContentUrl",
|
|
233
|
+
value: function getContentUrl(meshGeometryData) {
|
|
234
|
+
var result = null;
|
|
235
|
+
var geometryDefinition = this.tileset.geometryDefinitions[meshGeometryData.definition];
|
|
236
|
+
var geometryIndex = -1;
|
|
237
|
+
|
|
238
|
+
if (this.options.i3s && this.options.i3s.useDracoGeometry) {
|
|
239
|
+
geometryIndex = geometryDefinition.geometryBuffers.findIndex(function (buffer) {
|
|
240
|
+
return buffer.compressedAttributes && buffer.compressedAttributes.encoding === 'draco';
|
|
241
|
+
});
|
|
242
|
+
}
|
|
125
243
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
244
|
+
if (geometryIndex === -1) {
|
|
245
|
+
geometryIndex = geometryDefinition.geometryBuffers.findIndex(function (buffer) {
|
|
246
|
+
return !buffer.compressedAttributes;
|
|
247
|
+
});
|
|
248
|
+
}
|
|
129
249
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
250
|
+
if (geometryIndex !== -1) {
|
|
251
|
+
var isDracoGeometry = Boolean(geometryDefinition.geometryBuffers[geometryIndex].compressedAttributes);
|
|
252
|
+
result = {
|
|
253
|
+
url: "".concat(this.tileset.url, "/nodes/").concat(meshGeometryData.resource, "/geometries/").concat(geometryIndex),
|
|
254
|
+
isDracoGeometry: isDracoGeometry
|
|
255
|
+
};
|
|
256
|
+
}
|
|
133
257
|
|
|
134
|
-
|
|
135
|
-
const isDracoGeometry = Boolean(geometryDefinition.geometryBuffers[geometryIndex].compressedAttributes);
|
|
136
|
-
result = {
|
|
137
|
-
url: "".concat(this.tileset.url, "/nodes/").concat(meshGeometryData.resource, "/geometries/").concat(geometryIndex),
|
|
138
|
-
isDracoGeometry
|
|
139
|
-
};
|
|
258
|
+
return result;
|
|
140
259
|
}
|
|
260
|
+
}, {
|
|
261
|
+
key: "getLodSelection",
|
|
262
|
+
value: function getLodSelection(node) {
|
|
263
|
+
var lodSelection = [];
|
|
264
|
+
|
|
265
|
+
if (this.lodSelectionMetricType === 'maxScreenThresholdSQ') {
|
|
266
|
+
lodSelection.push({
|
|
267
|
+
metricType: 'maxScreenThreshold',
|
|
268
|
+
maxError: Math.sqrt(node.lodThreshold / (Math.PI * 0.25))
|
|
269
|
+
});
|
|
270
|
+
}
|
|
141
271
|
|
|
142
|
-
return result;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
getLodSelection(node) {
|
|
146
|
-
const lodSelection = [];
|
|
147
|
-
|
|
148
|
-
if (this.lodSelectionMetricType === 'maxScreenThresholdSQ') {
|
|
149
272
|
lodSelection.push({
|
|
150
|
-
metricType:
|
|
151
|
-
maxError:
|
|
273
|
+
metricType: this.lodSelectionMetricType,
|
|
274
|
+
maxError: node.lodThreshold
|
|
152
275
|
});
|
|
276
|
+
return lodSelection;
|
|
153
277
|
}
|
|
278
|
+
}, {
|
|
279
|
+
key: "getInformationFromMaterial",
|
|
280
|
+
value: function getInformationFromMaterial(material) {
|
|
281
|
+
var informationFromMaterial = {
|
|
282
|
+
textureData: {
|
|
283
|
+
name: null
|
|
284
|
+
}
|
|
285
|
+
};
|
|
154
286
|
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
maxError: node.lodThreshold
|
|
158
|
-
});
|
|
159
|
-
return lodSelection;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
getInformationFromMaterial(material) {
|
|
163
|
-
const textureDataDefault = {
|
|
164
|
-
name: null,
|
|
165
|
-
format: null
|
|
166
|
-
};
|
|
167
|
-
|
|
168
|
-
if (material) {
|
|
169
|
-
const materialDefinition = this.tileset.materialDefinitions[material.definition];
|
|
170
|
-
const textureSetDefinitionIndex = materialDefinition && materialDefinition.pbrMetallicRoughness && materialDefinition.pbrMetallicRoughness.baseColorTexture && materialDefinition.pbrMetallicRoughness.baseColorTexture.textureSetDefinitionId;
|
|
171
|
-
|
|
172
|
-
if (textureSetDefinitionIndex || textureSetDefinitionIndex === 0) {
|
|
173
|
-
const textureData = this.textureDefinitionsSelectedFormats[textureSetDefinitionIndex] || textureDataDefault;
|
|
174
|
-
return [textureData, materialDefinition];
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
return [textureDataDefault, materialDefinition];
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
return [textureDataDefault, null];
|
|
181
|
-
}
|
|
287
|
+
if (material) {
|
|
288
|
+
var _this$tileset$materia;
|
|
182
289
|
|
|
183
|
-
|
|
184
|
-
this.textureDefinitionsSelectedFormats = [];
|
|
185
|
-
const possibleI3sFormats = this.getSupportedTextureFormats();
|
|
186
|
-
const textureSetDefinitions = tileset.textureSetDefinitions || [];
|
|
290
|
+
var materialDefinition = (_this$tileset$materia = this.tileset.materialDefinitions) === null || _this$tileset$materia === void 0 ? void 0 : _this$tileset$materia[material.definition];
|
|
187
291
|
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
let selectedFormat = null;
|
|
292
|
+
if (materialDefinition) {
|
|
293
|
+
var _materialDefinition$p, _materialDefinition$p2;
|
|
191
294
|
|
|
192
|
-
|
|
193
|
-
|
|
295
|
+
informationFromMaterial.materialDefinition = materialDefinition;
|
|
296
|
+
var textureSetDefinitionIndex = materialDefinition === null || materialDefinition === void 0 ? void 0 : (_materialDefinition$p = materialDefinition.pbrMetallicRoughness) === null || _materialDefinition$p === void 0 ? void 0 : (_materialDefinition$p2 = _materialDefinition$p.baseColorTexture) === null || _materialDefinition$p2 === void 0 ? void 0 : _materialDefinition$p2.textureSetDefinitionId;
|
|
194
297
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
298
|
+
if (typeof textureSetDefinitionIndex === 'number') {
|
|
299
|
+
informationFromMaterial.textureData = this.textureDefinitionsSelectedFormats[textureSetDefinitionIndex] || informationFromMaterial.textureData;
|
|
300
|
+
}
|
|
198
301
|
}
|
|
199
302
|
}
|
|
200
303
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
304
|
+
return informationFromMaterial;
|
|
305
|
+
}
|
|
306
|
+
}, {
|
|
307
|
+
key: "initSelectedFormatsForTextureDefinitions",
|
|
308
|
+
value: function initSelectedFormatsForTextureDefinitions(tileset) {
|
|
309
|
+
this.textureDefinitionsSelectedFormats = [];
|
|
310
|
+
var possibleI3sFormats = this.getSupportedTextureFormats();
|
|
311
|
+
var textureSetDefinitions = tileset.textureSetDefinitions || [];
|
|
312
|
+
|
|
313
|
+
var _iterator2 = _createForOfIteratorHelper(textureSetDefinitions),
|
|
314
|
+
_step2;
|
|
315
|
+
|
|
316
|
+
try {
|
|
317
|
+
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
318
|
+
var textureSetDefinition = _step2.value;
|
|
319
|
+
var formats = textureSetDefinition && textureSetDefinition.formats || [];
|
|
320
|
+
var selectedFormat = null;
|
|
321
|
+
|
|
322
|
+
var _iterator3 = _createForOfIteratorHelper(possibleI3sFormats),
|
|
323
|
+
_step3;
|
|
324
|
+
|
|
325
|
+
try {
|
|
326
|
+
var _loop = function _loop() {
|
|
327
|
+
var i3sFormat = _step3.value;
|
|
328
|
+
var format = formats.find(function (value) {
|
|
329
|
+
return value.format === i3sFormat;
|
|
330
|
+
});
|
|
331
|
+
|
|
332
|
+
if (format) {
|
|
333
|
+
selectedFormat = format;
|
|
334
|
+
return "break";
|
|
335
|
+
}
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {
|
|
339
|
+
var _ret = _loop();
|
|
340
|
+
|
|
341
|
+
if (_ret === "break") break;
|
|
342
|
+
}
|
|
343
|
+
} catch (err) {
|
|
344
|
+
_iterator3.e(err);
|
|
345
|
+
} finally {
|
|
346
|
+
_iterator3.f();
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
if (selectedFormat && selectedFormat.format === 'ktx2') {
|
|
350
|
+
this.textureLoaderOptions.basis = {
|
|
351
|
+
format: (0, _textures.selectSupportedBasisFormat)(),
|
|
352
|
+
containerFormat: 'ktx2',
|
|
353
|
+
module: 'encoder'
|
|
354
|
+
};
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
this.textureDefinitionsSelectedFormats.push(selectedFormat);
|
|
358
|
+
}
|
|
359
|
+
} catch (err) {
|
|
360
|
+
_iterator2.e(err);
|
|
361
|
+
} finally {
|
|
362
|
+
_iterator2.f();
|
|
207
363
|
}
|
|
208
|
-
|
|
209
|
-
this.textureDefinitionsSelectedFormats.push(selectedFormat);
|
|
210
364
|
}
|
|
211
|
-
}
|
|
365
|
+
}, {
|
|
366
|
+
key: "getSupportedTextureFormats",
|
|
367
|
+
value: function getSupportedTextureFormats() {
|
|
368
|
+
var formats = [];
|
|
212
369
|
|
|
213
|
-
|
|
214
|
-
|
|
370
|
+
if (!this.options.i3s || this.options.i3s.useCompressedTextures) {
|
|
371
|
+
var supportedCompressedFormats = (0, _textures.getSupportedGPUTextureFormats)();
|
|
215
372
|
|
|
216
|
-
|
|
217
|
-
|
|
373
|
+
if (supportedCompressedFormats.has('etc2')) {
|
|
374
|
+
formats.push('ktx-etc2');
|
|
375
|
+
}
|
|
218
376
|
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
377
|
+
if (supportedCompressedFormats.has('dxt')) {
|
|
378
|
+
formats.push('dds');
|
|
379
|
+
}
|
|
222
380
|
|
|
223
|
-
|
|
224
|
-
formats.push('dds');
|
|
381
|
+
formats.push('ktx2');
|
|
225
382
|
}
|
|
226
383
|
|
|
227
|
-
formats.push('
|
|
384
|
+
formats.push('jpg');
|
|
385
|
+
formats.push('png');
|
|
386
|
+
return formats;
|
|
228
387
|
}
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
return formats;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
}
|
|
388
|
+
}]);
|
|
389
|
+
return I3SNodePagesTiles;
|
|
390
|
+
}();
|
|
236
391
|
|
|
237
392
|
exports.default = I3SNodePagesTiles;
|
|
238
393
|
//# sourceMappingURL=i3s-nodepages-tiles.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/lib/helpers/i3s-nodepages-tiles.ts"],"names":["I3SNodePagesTiles","constructor","tileset","options","nodesPerPage","nodePages","lodSelectionMetricType","initSelectedFormatsForTextureDefinitions","getNodeById","id","pageIndex","Math","floor","pendingNodePages","nodePageUrl","url","i3s","token","status","promise","I3SNodePageLoader","nodeIndex","nodes","formTileFromNodePages","node","children","child","childNode","push","obb","contentUrl","textureUrl","materialDefinition","textureFormat","attributeUrls","isDracoGeometry","mesh","isDracoGeometryResult","geometry","getContentUrl","textureData","nodeMaterialDefinition","getInformationFromMaterial","material","format","name","resource","attributeStorageInfo","attribute","lodSelection","getLodSelection","textureLoaderOptions","meshGeometryData","result","geometryDefinition","geometryDefinitions","definition","geometryIndex","useDracoGeometry","geometryBuffers","findIndex","buffer","compressedAttributes","encoding","Boolean","metricType","maxError","sqrt","lodThreshold","PI","textureDataDefault","materialDefinitions","textureSetDefinitionIndex","pbrMetallicRoughness","baseColorTexture","textureSetDefinitionId","textureDefinitionsSelectedFormats","possibleI3sFormats","getSupportedTextureFormats","textureSetDefinitions","textureSetDefinition","formats","selectedFormat","i3sFormat","find","value","basis","containerFormat","module","useCompressedTextures","supportedCompressedFormats","has"],"mappings":"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","sourcesContent":["import {load} from '@loaders.gl/core';\nimport {getSupportedGPUTextureFormats, selectSupportedBasisFormat} from '@loaders.gl/textures';\nimport {Tileset, NodePage} from '../../types';\nimport {I3SNodePageLoader} from '../../i3s-node-page-loader';\nimport {normalizeTileNonUrlData} from '../parsers/parse-i3s';\nimport {getUrlWithToken, generateTilesetAttributeUrls} from '../utils/url-utils';\n\n/**\n * class I3SNodePagesTiles - loads nodePages and form i3s tiles from them\n */\nexport default class I3SNodePagesTiles {\n tileset: Tileset;\n nodePages: NodePage[] = [];\n pendingNodePages: {promise: Promise<NodePage>; status: 'Pending' | 'Done'}[] = [];\n nodesPerPage: number;\n options: {[key: string]: any};\n lodSelectionMetricType: any;\n textureDefinitionsSelectedFormats: any[] = [];\n private textureLoaderOptions: {[key: string]: any} = {};\n\n /**\n * @constructs\n * Create a I3SNodePagesTiles instance.\n * @param tileset - i3s tileset header ('layers/0')\n * @param options - i3s loader options\n */\n constructor(tileset: Tileset, options: object) {\n this.tileset = {...tileset}; // spread the tileset to avoid circular reference\n this.nodesPerPage = tileset.nodePages.nodesPerPage;\n this.lodSelectionMetricType = tileset.nodePages.lodSelectionMetricType;\n this.options = options;\n\n this.initSelectedFormatsForTextureDefinitions(tileset);\n }\n\n /**\n * Loads some nodePage and return a particular node from it\n * @param id - id of node through all node pages\n */\n async getNodeById(id: number) {\n const pageIndex = Math.floor(id / this.nodesPerPage);\n if (!this.nodePages[pageIndex] && !this.pendingNodePages[pageIndex]) {\n const nodePageUrl = getUrlWithToken(\n `${this.tileset.url}/nodepages/${pageIndex}`,\n this.options.i3s?.token\n );\n this.pendingNodePages[pageIndex] = {\n status: 'Pending',\n promise: load(nodePageUrl, I3SNodePageLoader, this.options)\n };\n this.nodePages[pageIndex] = await this.pendingNodePages[pageIndex].promise;\n this.pendingNodePages[pageIndex].status = 'Done';\n }\n if (this.pendingNodePages[pageIndex].status === 'Pending') {\n this.nodePages[pageIndex] = await this.pendingNodePages[pageIndex].promise;\n }\n const nodeIndex = id % this.nodesPerPage;\n return this.nodePages[pageIndex].nodes[nodeIndex];\n }\n\n /**\n * Forms tile header using node and tileset data\n * @param id - id of node through all node pages\n */\n // eslint-disable-next-line complexity\n async formTileFromNodePages(id: number) {\n const node = await this.getNodeById(id);\n const children: any[] = [];\n for (const child of node.children || []) {\n const childNode = await this.getNodeById(child);\n children.push({\n id: child,\n obb: childNode.obb\n });\n }\n\n let contentUrl = null;\n let textureUrl: string | null = null;\n let materialDefinition = null;\n let textureFormat = 'jpeg';\n let attributeUrls: string[] = [];\n let isDracoGeometry = false;\n\n if (node && node.mesh) {\n // Get geometry resource URL and type (compressed / non-compressed)\n const {url, isDracoGeometry: isDracoGeometryResult} = (node.mesh.geometry &&\n this.getContentUrl(node.mesh.geometry)) || {url: null, isDracoGeometry: null};\n contentUrl = url;\n isDracoGeometry = isDracoGeometryResult;\n\n const [textureData, nodeMaterialDefinition] = this.getInformationFromMaterial(\n node.mesh.material\n );\n materialDefinition = nodeMaterialDefinition;\n textureFormat = textureData.format || textureFormat;\n if (textureData.name) {\n textureUrl = `${this.tileset.url}/nodes/${node.mesh.material.resource}/textures/${textureData.name}`;\n }\n\n if (this.tileset.attributeStorageInfo) {\n attributeUrls = generateTilesetAttributeUrls(this.tileset, node.mesh.attribute.resource);\n }\n }\n\n const lodSelection = this.getLodSelection(node);\n\n return normalizeTileNonUrlData({\n id,\n lodSelection,\n obb: node.obb,\n contentUrl,\n textureUrl,\n attributeUrls,\n materialDefinition,\n textureFormat,\n textureLoaderOptions: this.textureLoaderOptions,\n children,\n isDracoGeometry\n });\n }\n\n /**\n * Forms url and type of geometry resource by nodepage's data and `geometryDefinitions` in the tileset\n * @param {Object} meshGeometryData - data about the node's mesh from the nodepage\n * @returns {Object} -\n * {string} url - url to the geometry resource\n * {boolean} isDracoGeometry - whether the geometry resource contain DRACO compressed geometry\n */\n private getContentUrl(meshGeometryData) {\n let result = {};\n const geometryDefinition = this.tileset.geometryDefinitions[meshGeometryData.definition];\n let geometryIndex = -1;\n // Try to find DRACO geometryDefinition of `useDracoGeometry` option is set\n if (this.options.i3s && this.options.i3s.useDracoGeometry) {\n geometryIndex = geometryDefinition.geometryBuffers.findIndex(\n (buffer) => buffer.compressedAttributes && buffer.compressedAttributes.encoding === 'draco'\n );\n }\n // If DRACO geometry is not applicable try to select non-compressed geometry\n if (geometryIndex === -1) {\n geometryIndex = geometryDefinition.geometryBuffers.findIndex(\n (buffer) => !buffer.compressedAttributes\n );\n }\n if (geometryIndex !== -1) {\n const isDracoGeometry = Boolean(\n geometryDefinition.geometryBuffers[geometryIndex].compressedAttributes\n );\n result = {\n url: `${this.tileset.url}/nodes/${meshGeometryData.resource}/geometries/${geometryIndex}`,\n isDracoGeometry\n };\n }\n return result;\n }\n\n /**\n * Forms 1.6 compatible LOD selection object from a nodepage's node data\n * @param {Object} node - a node from nodepage\n * @returns {Object[]} - Array of object of following properties:\n * {string} metricType - the label of the LOD metric\n * {number} maxError - the value of the metric\n */\n private getLodSelection(node): object[] {\n const lodSelection: object[] = [];\n if (this.lodSelectionMetricType === 'maxScreenThresholdSQ') {\n lodSelection.push({\n metricType: 'maxScreenThreshold',\n maxError: Math.sqrt(node.lodThreshold / (Math.PI * 0.25))\n });\n }\n lodSelection.push({\n metricType: this.lodSelectionMetricType,\n maxError: node.lodThreshold\n });\n return lodSelection;\n }\n\n /**\n * Returns information about texture and material from `materialDefinitions`\n * @param {Object} material - material data from nodepage\n * @returns {Object[]} - Couple [textureData, materialDefinition]\n * {string} textureData.name - path name of the texture\n * {string} textureData.format - format of the texture\n * materialDefinition - PBR-like material definition from `materialDefinitions`\n */\n private getInformationFromMaterial(material) {\n const textureDataDefault = {name: null, format: null};\n if (material) {\n const materialDefinition = this.tileset.materialDefinitions[material.definition];\n const textureSetDefinitionIndex =\n materialDefinition &&\n materialDefinition.pbrMetallicRoughness &&\n materialDefinition.pbrMetallicRoughness.baseColorTexture &&\n materialDefinition.pbrMetallicRoughness.baseColorTexture.textureSetDefinitionId;\n if (textureSetDefinitionIndex || textureSetDefinitionIndex === 0) {\n const textureData =\n this.textureDefinitionsSelectedFormats[textureSetDefinitionIndex] || textureDataDefault;\n return [textureData, materialDefinition];\n }\n return [textureDataDefault, materialDefinition];\n }\n return [textureDataDefault, null];\n }\n\n /**\n * Sets preferable and supported format for each textureDefinition of the tileset\n * @param {Object} tileset - I3S layer data\n * @returns {void}\n */\n private initSelectedFormatsForTextureDefinitions(tileset) {\n this.textureDefinitionsSelectedFormats = [];\n const possibleI3sFormats = this.getSupportedTextureFormats();\n const textureSetDefinitions = tileset.textureSetDefinitions || [];\n for (const textureSetDefinition of textureSetDefinitions) {\n const formats = (textureSetDefinition && textureSetDefinition.formats) || [];\n let selectedFormat: {format: string; name: string} | null = null;\n for (const i3sFormat of possibleI3sFormats) {\n const format = formats.find((value) => value.format === i3sFormat);\n if (format) {\n selectedFormat = format;\n break;\n }\n }\n // For I3S 1.8 need to define basis target format to decode\n if (selectedFormat && selectedFormat.format === 'ktx2') {\n this.textureLoaderOptions.basis = {\n format: selectSupportedBasisFormat(),\n containerFormat: 'ktx2',\n module: 'encoder'\n };\n }\n\n this.textureDefinitionsSelectedFormats.push(selectedFormat);\n }\n }\n\n /**\n * Returns the array of supported texture format\n * @returns list of format strings\n */\n private getSupportedTextureFormats(): string[] {\n const formats: string[] = [];\n if (!this.options.i3s || this.options.i3s.useCompressedTextures) {\n // I3S 1.7 selection\n const supportedCompressedFormats = getSupportedGPUTextureFormats();\n // List of possible in i3s formats:\n // https://github.com/Esri/i3s-spec/blob/master/docs/1.7/textureSetDefinitionFormat.cmn.md\n if (supportedCompressedFormats.has('etc2')) {\n formats.push('ktx-etc2');\n }\n if (supportedCompressedFormats.has('dxt')) {\n formats.push('dds');\n }\n\n // I3S 1.8 selection\n // ktx2 wraps basis texture which at the edge case can be decoded as uncompressed image\n formats.push('ktx2');\n }\n\n formats.push('jpg');\n formats.push('png');\n return formats;\n }\n}\n"],"file":"i3s-nodepages-tiles.js"}
|
|
1
|
+
{"version":3,"sources":["../../../../src/lib/helpers/i3s-nodepages-tiles.ts"],"names":["I3SNodePagesTiles","tileset","options","nodesPerPage","nodePages","lodSelectionMetricType","initSelectedFormatsForTextureDefinitions","id","pageIndex","Math","floor","pendingNodePages","nodePageUrl","url","i3s","token","status","promise","I3SNodePageLoader","nodeIndex","nodes","getNodeById","node","children","child","childNode","push","toString","obb","textureFormat","attributeUrls","isDracoGeometry","mesh","geometry","getContentUrl","isDracoGeometryResult","contentUrl","getInformationFromMaterial","material","textureData","nodeMaterialDefinition","materialDefinition","format","name","textureUrl","resource","attributeStorageInfo","attribute","lodSelection","getLodSelection","textureLoaderOptions","meshGeometryData","result","geometryDefinition","geometryDefinitions","definition","geometryIndex","useDracoGeometry","geometryBuffers","findIndex","buffer","compressedAttributes","encoding","Boolean","metricType","maxError","sqrt","lodThreshold","PI","informationFromMaterial","materialDefinitions","textureSetDefinitionIndex","pbrMetallicRoughness","baseColorTexture","textureSetDefinitionId","textureDefinitionsSelectedFormats","possibleI3sFormats","getSupportedTextureFormats","textureSetDefinitions","textureSetDefinition","formats","selectedFormat","i3sFormat","find","value","basis","containerFormat","module","useCompressedTextures","supportedCompressedFormats","has"],"mappings":"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","sourcesContent":["import {load} from '@loaders.gl/core';\nimport {getSupportedGPUTextureFormats, selectSupportedBasisFormat} from '@loaders.gl/textures';\nimport {I3SNodePageLoader} from '../../i3s-node-page-loader';\nimport {normalizeTileNonUrlData} from '../parsers/parse-i3s';\nimport {getUrlWithToken, generateTilesetAttributeUrls} from '../utils/url-utils';\nimport type {LoaderOptions} from '@loaders.gl/loader-utils';\nimport {\n I3STilesetHeader,\n LodSelection,\n NodePage,\n NodeInPage,\n Obb,\n MeshMaterial,\n I3SMaterialDefinition,\n I3STextureFormat,\n MeshGeometry,\n I3STileHeader\n} from '../../types';\n\n/**\n * class I3SNodePagesTiles - loads nodePages and form i3s tiles from them\n */\nexport default class I3SNodePagesTiles {\n tileset: I3STilesetHeader;\n nodePages: NodePage[] = [];\n pendingNodePages: {promise: Promise<NodePage>; status: 'Pending' | 'Done'}[] = [];\n nodesPerPage: number;\n options: LoaderOptions;\n lodSelectionMetricType?: string;\n textureDefinitionsSelectedFormats: ({format: I3STextureFormat; name: string} | null)[] = [];\n private textureLoaderOptions: {[key: string]: any} = {};\n\n /**\n * @constructs\n * Create a I3SNodePagesTiles instance.\n * @param tileset - i3s tileset header ('layers/0')\n * @param options - i3s loader options\n */\n constructor(tileset: I3STilesetHeader, options: LoaderOptions) {\n this.tileset = {...tileset}; // spread the tileset to avoid circular reference\n this.nodesPerPage = tileset.nodePages?.nodesPerPage || 64;\n this.lodSelectionMetricType = tileset.nodePages?.lodSelectionMetricType;\n this.options = options;\n\n this.initSelectedFormatsForTextureDefinitions(tileset);\n }\n\n /**\n * Loads some nodePage and return a particular node from it\n * @param id - id of node through all node pages\n */\n async getNodeById(id: number): Promise<NodeInPage> {\n const pageIndex = Math.floor(id / this.nodesPerPage);\n if (!this.nodePages[pageIndex] && !this.pendingNodePages[pageIndex]) {\n const nodePageUrl = getUrlWithToken(\n `${this.tileset.url}/nodepages/${pageIndex}`,\n this.options.i3s?.token\n );\n this.pendingNodePages[pageIndex] = {\n status: 'Pending',\n promise: load(nodePageUrl, I3SNodePageLoader, this.options)\n };\n this.nodePages[pageIndex] = await this.pendingNodePages[pageIndex].promise;\n this.pendingNodePages[pageIndex].status = 'Done';\n }\n if (this.pendingNodePages[pageIndex].status === 'Pending') {\n this.nodePages[pageIndex] = await this.pendingNodePages[pageIndex].promise;\n }\n const nodeIndex = id % this.nodesPerPage;\n return this.nodePages[pageIndex].nodes[nodeIndex];\n }\n\n /**\n * Forms tile header using node and tileset data\n * @param id - id of node through all node pages\n */\n // eslint-disable-next-line complexity\n async formTileFromNodePages(id: number): Promise<I3STileHeader> {\n const node: NodeInPage = await this.getNodeById(id);\n const children: {id: string; obb: Obb}[] = [];\n for (const child of node.children || []) {\n const childNode = await this.getNodeById(child);\n children.push({\n id: child.toString(),\n obb: childNode.obb\n });\n }\n\n let contentUrl: string | undefined;\n let textureUrl: string | undefined;\n let materialDefinition: I3SMaterialDefinition | undefined;\n let textureFormat: I3STextureFormat = 'jpg';\n let attributeUrls: string[] = [];\n let isDracoGeometry: boolean = false;\n\n if (node && node.mesh) {\n // Get geometry resource URL and type (compressed / non-compressed)\n const {url, isDracoGeometry: isDracoGeometryResult} = (node.mesh.geometry &&\n this.getContentUrl(node.mesh.geometry)) || {isDracoGeometry: false};\n contentUrl = url;\n isDracoGeometry = isDracoGeometryResult;\n\n const {textureData, materialDefinition: nodeMaterialDefinition} =\n this.getInformationFromMaterial(node.mesh.material);\n materialDefinition = nodeMaterialDefinition;\n textureFormat = textureData.format || textureFormat;\n if (textureData.name) {\n textureUrl = `${this.tileset.url}/nodes/${node.mesh.material.resource}/textures/${textureData.name}`;\n }\n\n if (this.tileset.attributeStorageInfo) {\n attributeUrls = generateTilesetAttributeUrls(this.tileset, node.mesh.attribute.resource);\n }\n }\n\n const lodSelection = this.getLodSelection(node);\n\n return normalizeTileNonUrlData({\n id: id.toString(),\n lodSelection,\n obb: node.obb,\n contentUrl,\n textureUrl,\n attributeUrls,\n materialDefinition,\n textureFormat,\n textureLoaderOptions: this.textureLoaderOptions,\n children,\n isDracoGeometry\n });\n }\n\n /**\n * Forms url and type of geometry resource by nodepage's data and `geometryDefinitions` in the tileset\n * @param - data about the node's mesh from the nodepage\n * @returns -\n * {string} url - url to the geometry resource\n * {boolean} isDracoGeometry - whether the geometry resource contain DRACO compressed geometry\n */\n private getContentUrl(meshGeometryData: MeshGeometry) {\n let result: {url: string; isDracoGeometry: boolean} | null = null;\n // @ts-ignore\n const geometryDefinition = this.tileset.geometryDefinitions[meshGeometryData.definition];\n let geometryIndex = -1;\n // Try to find DRACO geometryDefinition of `useDracoGeometry` option is set\n if (this.options.i3s && this.options.i3s.useDracoGeometry) {\n geometryIndex = geometryDefinition.geometryBuffers.findIndex(\n (buffer) => buffer.compressedAttributes && buffer.compressedAttributes.encoding === 'draco'\n );\n }\n // If DRACO geometry is not applicable try to select non-compressed geometry\n if (geometryIndex === -1) {\n geometryIndex = geometryDefinition.geometryBuffers.findIndex(\n (buffer) => !buffer.compressedAttributes\n );\n }\n if (geometryIndex !== -1) {\n const isDracoGeometry = Boolean(\n geometryDefinition.geometryBuffers[geometryIndex].compressedAttributes\n );\n result = {\n url: `${this.tileset.url}/nodes/${meshGeometryData.resource}/geometries/${geometryIndex}`,\n isDracoGeometry\n };\n }\n return result;\n }\n\n /**\n * Forms 1.6 compatible LOD selection object from a nodepage's node data\n * @param node - a node from nodepage\n * @returns- Array of LodSelection\n */\n private getLodSelection(node: NodeInPage): LodSelection[] {\n const lodSelection: LodSelection[] = [];\n if (this.lodSelectionMetricType === 'maxScreenThresholdSQ') {\n lodSelection.push({\n metricType: 'maxScreenThreshold',\n // @ts-ignore\n maxError: Math.sqrt(node.lodThreshold / (Math.PI * 0.25))\n });\n }\n lodSelection.push({\n metricType: this.lodSelectionMetricType,\n // @ts-ignore\n maxError: node.lodThreshold\n });\n return lodSelection;\n }\n\n /**\n * Returns information about texture and material from `materialDefinitions`\n * @param material - material data from nodepage\n * @returns - Couple {textureData, materialDefinition}\n * {string} textureData.name - path name of the texture\n * {string} textureData.format - format of the texture\n * materialDefinition - PBR-like material definition from `materialDefinitions`\n */\n private getInformationFromMaterial(material: MeshMaterial) {\n const informationFromMaterial: {\n textureData: {name: string | null; format?: I3STextureFormat};\n materialDefinition?: I3SMaterialDefinition;\n } = {textureData: {name: null}};\n\n if (material) {\n const materialDefinition = this.tileset.materialDefinitions?.[material.definition];\n if (materialDefinition) {\n informationFromMaterial.materialDefinition = materialDefinition;\n const textureSetDefinitionIndex =\n materialDefinition?.pbrMetallicRoughness?.baseColorTexture?.textureSetDefinitionId;\n\n if (typeof textureSetDefinitionIndex === 'number') {\n informationFromMaterial.textureData =\n this.textureDefinitionsSelectedFormats[textureSetDefinitionIndex] ||\n informationFromMaterial.textureData;\n }\n }\n }\n return informationFromMaterial;\n }\n\n /**\n * Sets preferable and supported format for each textureDefinition of the tileset\n * @param tileset - I3S layer data\n * @returns\n */\n private initSelectedFormatsForTextureDefinitions(tileset: I3STilesetHeader): void {\n this.textureDefinitionsSelectedFormats = [];\n const possibleI3sFormats = this.getSupportedTextureFormats();\n const textureSetDefinitions = tileset.textureSetDefinitions || [];\n for (const textureSetDefinition of textureSetDefinitions) {\n const formats = (textureSetDefinition && textureSetDefinition.formats) || [];\n let selectedFormat: {name: string; format: I3STextureFormat} | null = null;\n for (const i3sFormat of possibleI3sFormats) {\n const format = formats.find((value) => value.format === i3sFormat);\n if (format) {\n selectedFormat = format;\n break;\n }\n }\n // For I3S 1.8 need to define basis target format to decode\n if (selectedFormat && selectedFormat.format === 'ktx2') {\n this.textureLoaderOptions.basis = {\n format: selectSupportedBasisFormat(),\n containerFormat: 'ktx2',\n module: 'encoder'\n };\n }\n\n this.textureDefinitionsSelectedFormats.push(selectedFormat);\n }\n }\n\n /**\n * Returns the array of supported texture format\n * @returns list of format strings\n */\n private getSupportedTextureFormats(): I3STextureFormat[] {\n const formats: I3STextureFormat[] = [];\n if (!this.options.i3s || this.options.i3s.useCompressedTextures) {\n // I3S 1.7 selection\n const supportedCompressedFormats = getSupportedGPUTextureFormats();\n // List of possible in i3s formats:\n // https://github.com/Esri/i3s-spec/blob/master/docs/1.7/textureSetDefinitionFormat.cmn.md\n if (supportedCompressedFormats.has('etc2')) {\n formats.push('ktx-etc2');\n }\n if (supportedCompressedFormats.has('dxt')) {\n formats.push('dds');\n }\n\n // I3S 1.8 selection\n // ktx2 wraps basis texture which at the edge case can be decoded as uncompressed image\n formats.push('ktx2');\n }\n\n formats.push('jpg');\n formats.push('png');\n return formats;\n }\n}\n"],"file":"i3s-nodepages-tiles.js"}
|