createVectorTileGeometries.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. /**
  2. * Cesium - https://github.com/CesiumGS/cesium
  3. *
  4. * Copyright 2011-2020 Cesium Contributors
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * Columbus View (Pat. Pend.)
  19. *
  20. * Portions licensed separately.
  21. * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
  22. */
  23. define(['./when-54c2dc71', './Check-6c0211bc', './Math-1124a290', './Cartesian2-33d2657c', './Transforms-8be64844', './RuntimeError-2109023a', './WebGLConstants-76bb35d1', './ComponentDatatype-a26dd044', './GeometryAttribute-e9a8b203', './GeometryAttributes-4fcfcf40', './IndexDatatype-25023891', './createTaskProcessorWorker', './GeometryOffsetAttribute-d746452d', './VertexFormat-4d8b817a', './BoxGeometry-5b17b51c', './CylinderGeometryLibrary-8580810e', './CylinderGeometry-14abab0d', './EllipsoidGeometry-bbf1c319', './Color-680d93bf'], function (when, Check, _Math, Cartesian2, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, GeometryAttributes, IndexDatatype, createTaskProcessorWorker, GeometryOffsetAttribute, VertexFormat, BoxGeometry, CylinderGeometryLibrary, CylinderGeometry, EllipsoidGeometry, Color) { 'use strict';
  24. /**
  25. * Describes a renderable batch of geometry.
  26. *
  27. * @alias Vector3DTileBatch
  28. * @constructor
  29. *
  30. * @param {Object} options An object with the following properties:
  31. * @param {Number} options.offset The offset of the batch into the indices buffer.
  32. * @param {Number} options.count The number of indices in the batch.
  33. * @param {Color} options.color The color of the geometry in the batch.
  34. * @param {Number[]} options.batchIds An array where each element is the batch id of the geometry in the batch.
  35. *
  36. * @private
  37. */
  38. function Vector3DTileBatch(options) {
  39. /**
  40. * The offset of the batch into the indices buffer.
  41. * @type {Number}
  42. */
  43. this.offset = options.offset;
  44. /**
  45. * The number of indices in the batch.
  46. * @type {Number}
  47. */
  48. this.count = options.count;
  49. /**
  50. * The color of the geometry in the batch.
  51. * @type {Color}
  52. */
  53. this.color = options.color;
  54. /**
  55. * An array where each element is the batch id of the geometry in the batch.
  56. * @type {Number[]}
  57. */
  58. this.batchIds = options.batchIds;
  59. }
  60. var scratchCartesian = new Cartesian2.Cartesian3();
  61. var packedBoxLength = Transforms.Matrix4.packedLength + Cartesian2.Cartesian3.packedLength;
  62. var packedCylinderLength = Transforms.Matrix4.packedLength + 2;
  63. var packedEllipsoidLength = Transforms.Matrix4.packedLength + Cartesian2.Cartesian3.packedLength;
  64. var packedSphereLength = Cartesian2.Cartesian3.packedLength + 1;
  65. var scratchModelMatrixAndBV = {
  66. modelMatrix: new Transforms.Matrix4(),
  67. boundingVolume: new Transforms.BoundingSphere(),
  68. };
  69. function boxModelMatrixAndBoundingVolume(boxes, index) {
  70. var boxIndex = index * packedBoxLength;
  71. var dimensions = Cartesian2.Cartesian3.unpack(boxes, boxIndex, scratchCartesian);
  72. boxIndex += Cartesian2.Cartesian3.packedLength;
  73. var boxModelMatrix = Transforms.Matrix4.unpack(
  74. boxes,
  75. boxIndex,
  76. scratchModelMatrixAndBV.modelMatrix
  77. );
  78. Transforms.Matrix4.multiplyByScale(boxModelMatrix, dimensions, boxModelMatrix);
  79. var boundingVolume = scratchModelMatrixAndBV.boundingVolume;
  80. Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO, boundingVolume.center);
  81. boundingVolume.radius = Math.sqrt(3.0);
  82. return scratchModelMatrixAndBV;
  83. }
  84. function cylinderModelMatrixAndBoundingVolume(cylinders, index) {
  85. var cylinderIndex = index * packedCylinderLength;
  86. var cylinderRadius = cylinders[cylinderIndex++];
  87. var length = cylinders[cylinderIndex++];
  88. var scale = Cartesian2.Cartesian3.fromElements(
  89. cylinderRadius,
  90. cylinderRadius,
  91. length,
  92. scratchCartesian
  93. );
  94. var cylinderModelMatrix = Transforms.Matrix4.unpack(
  95. cylinders,
  96. cylinderIndex,
  97. scratchModelMatrixAndBV.modelMatrix
  98. );
  99. Transforms.Matrix4.multiplyByScale(cylinderModelMatrix, scale, cylinderModelMatrix);
  100. var boundingVolume = scratchModelMatrixAndBV.boundingVolume;
  101. Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO, boundingVolume.center);
  102. boundingVolume.radius = Math.sqrt(2.0);
  103. return scratchModelMatrixAndBV;
  104. }
  105. function ellipsoidModelMatrixAndBoundingVolume(ellipsoids, index) {
  106. var ellipsoidIndex = index * packedEllipsoidLength;
  107. var radii = Cartesian2.Cartesian3.unpack(ellipsoids, ellipsoidIndex, scratchCartesian);
  108. ellipsoidIndex += Cartesian2.Cartesian3.packedLength;
  109. var ellipsoidModelMatrix = Transforms.Matrix4.unpack(
  110. ellipsoids,
  111. ellipsoidIndex,
  112. scratchModelMatrixAndBV.modelMatrix
  113. );
  114. Transforms.Matrix4.multiplyByScale(ellipsoidModelMatrix, radii, ellipsoidModelMatrix);
  115. var boundingVolume = scratchModelMatrixAndBV.boundingVolume;
  116. Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO, boundingVolume.center);
  117. boundingVolume.radius = 1.0;
  118. return scratchModelMatrixAndBV;
  119. }
  120. function sphereModelMatrixAndBoundingVolume(spheres, index) {
  121. var sphereIndex = index * packedSphereLength;
  122. var sphereRadius = spheres[sphereIndex++];
  123. var sphereTranslation = Cartesian2.Cartesian3.unpack(
  124. spheres,
  125. sphereIndex,
  126. scratchCartesian
  127. );
  128. var sphereModelMatrix = Transforms.Matrix4.fromTranslation(
  129. sphereTranslation,
  130. scratchModelMatrixAndBV.modelMatrix
  131. );
  132. Transforms.Matrix4.multiplyByUniformScale(
  133. sphereModelMatrix,
  134. sphereRadius,
  135. sphereModelMatrix
  136. );
  137. var boundingVolume = scratchModelMatrixAndBV.boundingVolume;
  138. Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO, boundingVolume.center);
  139. boundingVolume.radius = 1.0;
  140. return scratchModelMatrixAndBV;
  141. }
  142. var scratchPosition = new Cartesian2.Cartesian3();
  143. function createPrimitive(
  144. options,
  145. primitive,
  146. primitiveBatchIds,
  147. geometry,
  148. getModelMatrixAndBoundingVolume
  149. ) {
  150. if (!when.defined(primitive)) {
  151. return;
  152. }
  153. var numberOfPrimitives = primitiveBatchIds.length;
  154. var geometryPositions = geometry.attributes.position.values;
  155. var geometryIndices = geometry.indices;
  156. var positions = options.positions;
  157. var vertexBatchIds = options.vertexBatchIds;
  158. var indices = options.indices;
  159. var batchIds = options.batchIds;
  160. var batchTableColors = options.batchTableColors;
  161. var batchedIndices = options.batchedIndices;
  162. var indexOffsets = options.indexOffsets;
  163. var indexCounts = options.indexCounts;
  164. var boundingVolumes = options.boundingVolumes;
  165. var modelMatrix = options.modelMatrix;
  166. var center = options.center;
  167. var positionOffset = options.positionOffset;
  168. var batchIdIndex = options.batchIdIndex;
  169. var indexOffset = options.indexOffset;
  170. var batchedIndicesOffset = options.batchedIndicesOffset;
  171. for (var i = 0; i < numberOfPrimitives; ++i) {
  172. var primitiveModelMatrixAndBV = getModelMatrixAndBoundingVolume(
  173. primitive,
  174. i
  175. );
  176. var primitiveModelMatrix = primitiveModelMatrixAndBV.modelMatrix;
  177. Transforms.Matrix4.multiply(modelMatrix, primitiveModelMatrix, primitiveModelMatrix);
  178. var batchId = primitiveBatchIds[i];
  179. var positionsLength = geometryPositions.length;
  180. for (var j = 0; j < positionsLength; j += 3) {
  181. var position = Cartesian2.Cartesian3.unpack(geometryPositions, j, scratchPosition);
  182. Transforms.Matrix4.multiplyByPoint(primitiveModelMatrix, position, position);
  183. Cartesian2.Cartesian3.subtract(position, center, position);
  184. Cartesian2.Cartesian3.pack(position, positions, positionOffset * 3 + j);
  185. vertexBatchIds[batchIdIndex++] = batchId;
  186. }
  187. var indicesLength = geometryIndices.length;
  188. for (var k = 0; k < indicesLength; ++k) {
  189. indices[indexOffset + k] = geometryIndices[k] + positionOffset;
  190. }
  191. var offset = i + batchedIndicesOffset;
  192. batchedIndices[offset] = new Vector3DTileBatch({
  193. offset: indexOffset,
  194. count: indicesLength,
  195. color: Color.Color.fromRgba(batchTableColors[batchId]),
  196. batchIds: [batchId],
  197. });
  198. batchIds[offset] = batchId;
  199. indexOffsets[offset] = indexOffset;
  200. indexCounts[offset] = indicesLength;
  201. boundingVolumes[offset] = Transforms.BoundingSphere.transform(
  202. primitiveModelMatrixAndBV.boundingVolume,
  203. primitiveModelMatrix
  204. );
  205. positionOffset += positionsLength / 3;
  206. indexOffset += indicesLength;
  207. }
  208. options.positionOffset = positionOffset;
  209. options.batchIdIndex = batchIdIndex;
  210. options.indexOffset = indexOffset;
  211. options.batchedIndicesOffset += numberOfPrimitives;
  212. }
  213. var scratchCenter = new Cartesian2.Cartesian3();
  214. var scratchMatrix4 = new Transforms.Matrix4();
  215. function unpackBuffer(buffer) {
  216. var packedBuffer = new Float64Array(buffer);
  217. var offset = 0;
  218. Cartesian2.Cartesian3.unpack(packedBuffer, offset, scratchCenter);
  219. offset += Cartesian2.Cartesian3.packedLength;
  220. Transforms.Matrix4.unpack(packedBuffer, offset, scratchMatrix4);
  221. }
  222. function packedBatchedIndicesLength(batchedIndices) {
  223. var length = batchedIndices.length;
  224. var count = 0;
  225. for (var i = 0; i < length; ++i) {
  226. count += Color.Color.packedLength + 3 + batchedIndices[i].batchIds.length;
  227. }
  228. return count;
  229. }
  230. function packBuffer(indicesBytesPerElement, batchedIndices, boundingVolumes) {
  231. var numBVs = boundingVolumes.length;
  232. var length =
  233. 1 +
  234. 1 +
  235. numBVs * Transforms.BoundingSphere.packedLength +
  236. 1 +
  237. packedBatchedIndicesLength(batchedIndices);
  238. var packedBuffer = new Float64Array(length);
  239. var offset = 0;
  240. packedBuffer[offset++] = indicesBytesPerElement;
  241. packedBuffer[offset++] = numBVs;
  242. for (var i = 0; i < numBVs; ++i) {
  243. Transforms.BoundingSphere.pack(boundingVolumes[i], packedBuffer, offset);
  244. offset += Transforms.BoundingSphere.packedLength;
  245. }
  246. var indicesLength = batchedIndices.length;
  247. packedBuffer[offset++] = indicesLength;
  248. for (var j = 0; j < indicesLength; ++j) {
  249. var batchedIndex = batchedIndices[j];
  250. Color.Color.pack(batchedIndex.color, packedBuffer, offset);
  251. offset += Color.Color.packedLength;
  252. packedBuffer[offset++] = batchedIndex.offset;
  253. packedBuffer[offset++] = batchedIndex.count;
  254. var batchIds = batchedIndex.batchIds;
  255. var batchIdsLength = batchIds.length;
  256. packedBuffer[offset++] = batchIdsLength;
  257. for (var k = 0; k < batchIdsLength; ++k) {
  258. packedBuffer[offset++] = batchIds[k];
  259. }
  260. }
  261. return packedBuffer;
  262. }
  263. function createVectorTileGeometries(parameters, transferableObjects) {
  264. var boxes = when.defined(parameters.boxes)
  265. ? new Float32Array(parameters.boxes)
  266. : undefined;
  267. var boxBatchIds = when.defined(parameters.boxBatchIds)
  268. ? new Uint16Array(parameters.boxBatchIds)
  269. : undefined;
  270. var cylinders = when.defined(parameters.cylinders)
  271. ? new Float32Array(parameters.cylinders)
  272. : undefined;
  273. var cylinderBatchIds = when.defined(parameters.cylinderBatchIds)
  274. ? new Uint16Array(parameters.cylinderBatchIds)
  275. : undefined;
  276. var ellipsoids = when.defined(parameters.ellipsoids)
  277. ? new Float32Array(parameters.ellipsoids)
  278. : undefined;
  279. var ellipsoidBatchIds = when.defined(parameters.ellipsoidBatchIds)
  280. ? new Uint16Array(parameters.ellipsoidBatchIds)
  281. : undefined;
  282. var spheres = when.defined(parameters.spheres)
  283. ? new Float32Array(parameters.spheres)
  284. : undefined;
  285. var sphereBatchIds = when.defined(parameters.sphereBatchIds)
  286. ? new Uint16Array(parameters.sphereBatchIds)
  287. : undefined;
  288. var numberOfBoxes = when.defined(boxes) ? boxBatchIds.length : 0;
  289. var numberOfCylinders = when.defined(cylinders) ? cylinderBatchIds.length : 0;
  290. var numberOfEllipsoids = when.defined(ellipsoids) ? ellipsoidBatchIds.length : 0;
  291. var numberOfSpheres = when.defined(spheres) ? sphereBatchIds.length : 0;
  292. var boxGeometry = BoxGeometry.BoxGeometry.getUnitBox();
  293. var cylinderGeometry = CylinderGeometry.CylinderGeometry.getUnitCylinder();
  294. var ellipsoidGeometry = EllipsoidGeometry.EllipsoidGeometry.getUnitEllipsoid();
  295. var boxPositions = boxGeometry.attributes.position.values;
  296. var cylinderPositions = cylinderGeometry.attributes.position.values;
  297. var ellipsoidPositions = ellipsoidGeometry.attributes.position.values;
  298. var numberOfPositions = boxPositions.length * numberOfBoxes;
  299. numberOfPositions += cylinderPositions.length * numberOfCylinders;
  300. numberOfPositions +=
  301. ellipsoidPositions.length * (numberOfEllipsoids + numberOfSpheres);
  302. var boxIndices = boxGeometry.indices;
  303. var cylinderIndices = cylinderGeometry.indices;
  304. var ellipsoidIndices = ellipsoidGeometry.indices;
  305. var numberOfIndices = boxIndices.length * numberOfBoxes;
  306. numberOfIndices += cylinderIndices.length * numberOfCylinders;
  307. numberOfIndices +=
  308. ellipsoidIndices.length * (numberOfEllipsoids + numberOfSpheres);
  309. var positions = new Float32Array(numberOfPositions);
  310. var vertexBatchIds = new Uint16Array(numberOfPositions / 3);
  311. var indices = IndexDatatype.IndexDatatype.createTypedArray(
  312. numberOfPositions / 3,
  313. numberOfIndices
  314. );
  315. var numberOfGeometries =
  316. numberOfBoxes + numberOfCylinders + numberOfEllipsoids + numberOfSpheres;
  317. var batchIds = new Uint16Array(numberOfGeometries);
  318. var batchedIndices = new Array(numberOfGeometries);
  319. var indexOffsets = new Uint32Array(numberOfGeometries);
  320. var indexCounts = new Uint32Array(numberOfGeometries);
  321. var boundingVolumes = new Array(numberOfGeometries);
  322. unpackBuffer(parameters.packedBuffer);
  323. var options = {
  324. batchTableColors: new Uint32Array(parameters.batchTableColors),
  325. positions: positions,
  326. vertexBatchIds: vertexBatchIds,
  327. indices: indices,
  328. batchIds: batchIds,
  329. batchedIndices: batchedIndices,
  330. indexOffsets: indexOffsets,
  331. indexCounts: indexCounts,
  332. boundingVolumes: boundingVolumes,
  333. positionOffset: 0,
  334. batchIdIndex: 0,
  335. indexOffset: 0,
  336. batchedIndicesOffset: 0,
  337. modelMatrix: scratchMatrix4,
  338. center: scratchCenter,
  339. };
  340. createPrimitive(
  341. options,
  342. boxes,
  343. boxBatchIds,
  344. boxGeometry,
  345. boxModelMatrixAndBoundingVolume
  346. );
  347. createPrimitive(
  348. options,
  349. cylinders,
  350. cylinderBatchIds,
  351. cylinderGeometry,
  352. cylinderModelMatrixAndBoundingVolume
  353. );
  354. createPrimitive(
  355. options,
  356. ellipsoids,
  357. ellipsoidBatchIds,
  358. ellipsoidGeometry,
  359. ellipsoidModelMatrixAndBoundingVolume
  360. );
  361. createPrimitive(
  362. options,
  363. spheres,
  364. sphereBatchIds,
  365. ellipsoidGeometry,
  366. sphereModelMatrixAndBoundingVolume
  367. );
  368. var packedBuffer = packBuffer(
  369. indices.BYTES_PER_ELEMENT,
  370. batchedIndices,
  371. boundingVolumes
  372. );
  373. transferableObjects.push(
  374. positions.buffer,
  375. vertexBatchIds.buffer,
  376. indices.buffer
  377. );
  378. transferableObjects.push(
  379. batchIds.buffer,
  380. indexOffsets.buffer,
  381. indexCounts.buffer
  382. );
  383. transferableObjects.push(packedBuffer.buffer);
  384. return {
  385. positions: positions.buffer,
  386. vertexBatchIds: vertexBatchIds.buffer,
  387. indices: indices.buffer,
  388. indexOffsets: indexOffsets.buffer,
  389. indexCounts: indexCounts.buffer,
  390. batchIds: batchIds.buffer,
  391. packedBuffer: packedBuffer.buffer,
  392. };
  393. }
  394. var createVectorTileGeometries$1 = createTaskProcessorWorker(createVectorTileGeometries);
  395. return createVectorTileGeometries$1;
  396. });
  397. //# sourceMappingURL=createVectorTileGeometries.js.map