PrimitivePipeline-f684a355.js 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984
  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(['exports', './when-54c2dc71', './Check-6c0211bc', './Cartesian2-33d2657c', './Transforms-8be64844', './ComponentDatatype-a26dd044', './GeometryAttribute-e9a8b203', './GeometryAttributes-4fcfcf40', './GeometryPipeline-466ad516', './IndexDatatype-25023891', './WebMercatorProjection-054890ef'], function (exports, when, Check, Cartesian2, Transforms, ComponentDatatype, GeometryAttribute, GeometryAttributes, GeometryPipeline, IndexDatatype, WebMercatorProjection) { 'use strict';
  24. /**
  25. * Value and type information for per-instance geometry attribute that determines the geometry instance offset
  26. *
  27. * @alias OffsetGeometryInstanceAttribute
  28. * @constructor
  29. *
  30. * @param {Number} [x=0] The x translation
  31. * @param {Number} [y=0] The y translation
  32. * @param {Number} [z=0] The z translation
  33. *
  34. * @private
  35. *
  36. * @see GeometryInstance
  37. * @see GeometryInstanceAttribute
  38. */
  39. function OffsetGeometryInstanceAttribute(x, y, z) {
  40. x = when.defaultValue(x, 0);
  41. y = when.defaultValue(y, 0);
  42. z = when.defaultValue(z, 0);
  43. /**
  44. * The values for the attributes stored in a typed array.
  45. *
  46. * @type Float32Array
  47. */
  48. this.value = new Float32Array([x, y, z]);
  49. }
  50. Object.defineProperties(OffsetGeometryInstanceAttribute.prototype, {
  51. /**
  52. * The datatype of each component in the attribute, e.g., individual elements in
  53. * {@link OffsetGeometryInstanceAttribute#value}.
  54. *
  55. * @memberof OffsetGeometryInstanceAttribute.prototype
  56. *
  57. * @type {ComponentDatatype}
  58. * @readonly
  59. *
  60. * @default {@link ComponentDatatype.FLOAT}
  61. */
  62. componentDatatype: {
  63. get: function () {
  64. return ComponentDatatype.ComponentDatatype.FLOAT;
  65. },
  66. },
  67. /**
  68. * The number of components in the attributes, i.e., {@link OffsetGeometryInstanceAttribute#value}.
  69. *
  70. * @memberof OffsetGeometryInstanceAttribute.prototype
  71. *
  72. * @type {Number}
  73. * @readonly
  74. *
  75. * @default 3
  76. */
  77. componentsPerAttribute: {
  78. get: function () {
  79. return 3;
  80. },
  81. },
  82. /**
  83. * When <code>true</code> and <code>componentDatatype</code> is an integer format,
  84. * indicate that the components should be mapped to the range [0, 1] (unsigned)
  85. * or [-1, 1] (signed) when they are accessed as floating-point for rendering.
  86. *
  87. * @memberof OffsetGeometryInstanceAttribute.prototype
  88. *
  89. * @type {Boolean}
  90. * @readonly
  91. *
  92. * @default false
  93. */
  94. normalize: {
  95. get: function () {
  96. return false;
  97. },
  98. },
  99. });
  100. /**
  101. * Creates a new {@link OffsetGeometryInstanceAttribute} instance given the provided an enabled flag and {@link DistanceDisplayCondition}.
  102. *
  103. * @param {Cartesian3} offset The cartesian offset
  104. * @returns {OffsetGeometryInstanceAttribute} The new {@link OffsetGeometryInstanceAttribute} instance.
  105. */
  106. OffsetGeometryInstanceAttribute.fromCartesian3 = function (offset) {
  107. //>>includeStart('debug', pragmas.debug);
  108. Check.Check.defined("offset", offset);
  109. //>>includeEnd('debug');
  110. return new OffsetGeometryInstanceAttribute(offset.x, offset.y, offset.z);
  111. };
  112. /**
  113. * Converts a distance display condition to a typed array that can be used to assign a distance display condition attribute.
  114. *
  115. * @param {Cartesian3} offset The cartesian offset
  116. * @param {Float32Array} [result] The array to store the result in, if undefined a new instance will be created.
  117. * @returns {Float32Array} The modified result parameter or a new instance if result was undefined.
  118. *
  119. * @example
  120. * var attributes = primitive.getGeometryInstanceAttributes('an id');
  121. * attributes.modelMatrix = Cesium.OffsetGeometryInstanceAttribute.toValue(modelMatrix, attributes.modelMatrix);
  122. */
  123. OffsetGeometryInstanceAttribute.toValue = function (offset, result) {
  124. //>>includeStart('debug', pragmas.debug);
  125. Check.Check.defined("offset", offset);
  126. //>>includeEnd('debug');
  127. if (!when.defined(result)) {
  128. result = new Float32Array([offset.x, offset.y, offset.z]);
  129. }
  130. result[0] = offset.x;
  131. result[1] = offset.y;
  132. result[2] = offset.z;
  133. return result;
  134. };
  135. function transformToWorldCoordinates(
  136. instances,
  137. primitiveModelMatrix,
  138. scene3DOnly
  139. ) {
  140. var toWorld = !scene3DOnly;
  141. var length = instances.length;
  142. var i;
  143. if (!toWorld && length > 1) {
  144. var modelMatrix = instances[0].modelMatrix;
  145. for (i = 1; i < length; ++i) {
  146. if (!Transforms.Matrix4.equals(modelMatrix, instances[i].modelMatrix)) {
  147. toWorld = true;
  148. break;
  149. }
  150. }
  151. }
  152. if (toWorld) {
  153. for (i = 0; i < length; ++i) {
  154. if (when.defined(instances[i].geometry)) {
  155. GeometryPipeline.GeometryPipeline.transformToWorldCoordinates(instances[i]);
  156. }
  157. }
  158. } else {
  159. // Leave geometry in local coordinate system; auto update model-matrix.
  160. Transforms.Matrix4.multiplyTransformation(
  161. primitiveModelMatrix,
  162. instances[0].modelMatrix,
  163. primitiveModelMatrix
  164. );
  165. }
  166. }
  167. function addGeometryBatchId(geometry, batchId) {
  168. var attributes = geometry.attributes;
  169. var positionAttr = attributes.position;
  170. var numberOfComponents =
  171. positionAttr.values.length / positionAttr.componentsPerAttribute;
  172. attributes.batchId = new GeometryAttribute.GeometryAttribute({
  173. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  174. componentsPerAttribute: 1,
  175. values: new Float32Array(numberOfComponents),
  176. });
  177. var values = attributes.batchId.values;
  178. for (var j = 0; j < numberOfComponents; ++j) {
  179. values[j] = batchId;
  180. }
  181. }
  182. function addBatchIds(instances) {
  183. var length = instances.length;
  184. for (var i = 0; i < length; ++i) {
  185. var instance = instances[i];
  186. if (when.defined(instance.geometry)) {
  187. addGeometryBatchId(instance.geometry, i);
  188. } else if (
  189. when.defined(instance.westHemisphereGeometry) &&
  190. when.defined(instance.eastHemisphereGeometry)
  191. ) {
  192. addGeometryBatchId(instance.westHemisphereGeometry, i);
  193. addGeometryBatchId(instance.eastHemisphereGeometry, i);
  194. }
  195. }
  196. }
  197. function geometryPipeline(parameters) {
  198. var instances = parameters.instances;
  199. var projection = parameters.projection;
  200. var uintIndexSupport = parameters.elementIndexUintSupported;
  201. var scene3DOnly = parameters.scene3DOnly;
  202. var vertexCacheOptimize = parameters.vertexCacheOptimize;
  203. var compressVertices = parameters.compressVertices;
  204. var modelMatrix = parameters.modelMatrix;
  205. var i;
  206. var geometry;
  207. var primitiveType;
  208. var length = instances.length;
  209. for (i = 0; i < length; ++i) {
  210. if (when.defined(instances[i].geometry)) {
  211. primitiveType = instances[i].geometry.primitiveType;
  212. break;
  213. }
  214. }
  215. //>>includeStart('debug', pragmas.debug);
  216. for (i = 1; i < length; ++i) {
  217. if (
  218. when.defined(instances[i].geometry) &&
  219. instances[i].geometry.primitiveType !== primitiveType
  220. ) {
  221. throw new Check.DeveloperError(
  222. "All instance geometries must have the same primitiveType."
  223. );
  224. }
  225. }
  226. //>>includeEnd('debug');
  227. // Unify to world coordinates before combining.
  228. transformToWorldCoordinates(instances, modelMatrix, scene3DOnly);
  229. // Clip to IDL
  230. if (!scene3DOnly) {
  231. for (i = 0; i < length; ++i) {
  232. if (when.defined(instances[i].geometry)) {
  233. GeometryPipeline.GeometryPipeline.splitLongitude(instances[i]);
  234. }
  235. }
  236. }
  237. addBatchIds(instances);
  238. // Optimize for vertex shader caches
  239. if (vertexCacheOptimize) {
  240. for (i = 0; i < length; ++i) {
  241. var instance = instances[i];
  242. if (when.defined(instance.geometry)) {
  243. GeometryPipeline.GeometryPipeline.reorderForPostVertexCache(instance.geometry);
  244. GeometryPipeline.GeometryPipeline.reorderForPreVertexCache(instance.geometry);
  245. } else if (
  246. when.defined(instance.westHemisphereGeometry) &&
  247. when.defined(instance.eastHemisphereGeometry)
  248. ) {
  249. GeometryPipeline.GeometryPipeline.reorderForPostVertexCache(
  250. instance.westHemisphereGeometry
  251. );
  252. GeometryPipeline.GeometryPipeline.reorderForPreVertexCache(
  253. instance.westHemisphereGeometry
  254. );
  255. GeometryPipeline.GeometryPipeline.reorderForPostVertexCache(
  256. instance.eastHemisphereGeometry
  257. );
  258. GeometryPipeline.GeometryPipeline.reorderForPreVertexCache(
  259. instance.eastHemisphereGeometry
  260. );
  261. }
  262. }
  263. }
  264. // Combine into single geometry for better rendering performance.
  265. var geometries = GeometryPipeline.GeometryPipeline.combineInstances(instances);
  266. length = geometries.length;
  267. for (i = 0; i < length; ++i) {
  268. geometry = geometries[i];
  269. // Split positions for GPU RTE
  270. var attributes = geometry.attributes;
  271. var name;
  272. if (!scene3DOnly) {
  273. for (name in attributes) {
  274. if (
  275. attributes.hasOwnProperty(name) &&
  276. attributes[name].componentDatatype === ComponentDatatype.ComponentDatatype.DOUBLE
  277. ) {
  278. var name3D = name + "3D";
  279. var name2D = name + "2D";
  280. // Compute 2D positions
  281. GeometryPipeline.GeometryPipeline.projectTo2D(
  282. geometry,
  283. name,
  284. name3D,
  285. name2D,
  286. projection
  287. );
  288. if (when.defined(geometry.boundingSphere) && name === "position") {
  289. geometry.boundingSphereCV = Transforms.BoundingSphere.fromVertices(
  290. geometry.attributes.position2D.values
  291. );
  292. }
  293. GeometryPipeline.GeometryPipeline.encodeAttribute(
  294. geometry,
  295. name3D,
  296. name3D + "High",
  297. name3D + "Low"
  298. );
  299. GeometryPipeline.GeometryPipeline.encodeAttribute(
  300. geometry,
  301. name2D,
  302. name2D + "High",
  303. name2D + "Low"
  304. );
  305. }
  306. }
  307. } else {
  308. for (name in attributes) {
  309. if (
  310. attributes.hasOwnProperty(name) &&
  311. attributes[name].componentDatatype === ComponentDatatype.ComponentDatatype.DOUBLE
  312. ) {
  313. GeometryPipeline.GeometryPipeline.encodeAttribute(
  314. geometry,
  315. name,
  316. name + "3DHigh",
  317. name + "3DLow"
  318. );
  319. }
  320. }
  321. }
  322. // oct encode and pack normals, compress texture coordinates
  323. if (compressVertices) {
  324. GeometryPipeline.GeometryPipeline.compressVertices(geometry);
  325. }
  326. }
  327. if (!uintIndexSupport) {
  328. // Break into multiple geometries to fit within unsigned short indices if needed
  329. var splitGeometries = [];
  330. length = geometries.length;
  331. for (i = 0; i < length; ++i) {
  332. geometry = geometries[i];
  333. splitGeometries = splitGeometries.concat(
  334. GeometryPipeline.GeometryPipeline.fitToUnsignedShortIndices(geometry)
  335. );
  336. }
  337. geometries = splitGeometries;
  338. }
  339. return geometries;
  340. }
  341. function createPickOffsets(instances, geometryName, geometries, pickOffsets) {
  342. var offset;
  343. var indexCount;
  344. var geometryIndex;
  345. var offsetIndex = pickOffsets.length - 1;
  346. if (offsetIndex >= 0) {
  347. var pickOffset = pickOffsets[offsetIndex];
  348. offset = pickOffset.offset + pickOffset.count;
  349. geometryIndex = pickOffset.index;
  350. indexCount = geometries[geometryIndex].indices.length;
  351. } else {
  352. offset = 0;
  353. geometryIndex = 0;
  354. indexCount = geometries[geometryIndex].indices.length;
  355. }
  356. var length = instances.length;
  357. for (var i = 0; i < length; ++i) {
  358. var instance = instances[i];
  359. var geometry = instance[geometryName];
  360. if (!when.defined(geometry)) {
  361. continue;
  362. }
  363. var count = geometry.indices.length;
  364. if (offset + count > indexCount) {
  365. offset = 0;
  366. indexCount = geometries[++geometryIndex].indices.length;
  367. }
  368. pickOffsets.push({
  369. index: geometryIndex,
  370. offset: offset,
  371. count: count,
  372. });
  373. offset += count;
  374. }
  375. }
  376. function createInstancePickOffsets(instances, geometries) {
  377. var pickOffsets = [];
  378. createPickOffsets(instances, "geometry", geometries, pickOffsets);
  379. createPickOffsets(
  380. instances,
  381. "westHemisphereGeometry",
  382. geometries,
  383. pickOffsets
  384. );
  385. createPickOffsets(
  386. instances,
  387. "eastHemisphereGeometry",
  388. geometries,
  389. pickOffsets
  390. );
  391. return pickOffsets;
  392. }
  393. /**
  394. * @private
  395. */
  396. var PrimitivePipeline = {};
  397. /**
  398. * @private
  399. */
  400. PrimitivePipeline.combineGeometry = function (parameters) {
  401. var geometries;
  402. var attributeLocations;
  403. var instances = parameters.instances;
  404. var length = instances.length;
  405. var pickOffsets;
  406. var offsetInstanceExtend;
  407. var hasOffset = false;
  408. if (length > 0) {
  409. geometries = geometryPipeline(parameters);
  410. if (geometries.length > 0) {
  411. attributeLocations = GeometryPipeline.GeometryPipeline.createAttributeLocations(
  412. geometries[0]
  413. );
  414. if (parameters.createPickOffsets) {
  415. pickOffsets = createInstancePickOffsets(instances, geometries);
  416. }
  417. }
  418. if (
  419. when.defined(instances[0].attributes) &&
  420. when.defined(instances[0].attributes.offset)
  421. ) {
  422. offsetInstanceExtend = new Array(length);
  423. hasOffset = true;
  424. }
  425. }
  426. var boundingSpheres = new Array(length);
  427. var boundingSpheresCV = new Array(length);
  428. for (var i = 0; i < length; ++i) {
  429. var instance = instances[i];
  430. var geometry = instance.geometry;
  431. if (when.defined(geometry)) {
  432. boundingSpheres[i] = geometry.boundingSphere;
  433. boundingSpheresCV[i] = geometry.boundingSphereCV;
  434. if (hasOffset) {
  435. offsetInstanceExtend[i] = instance.geometry.offsetAttribute;
  436. }
  437. }
  438. var eastHemisphereGeometry = instance.eastHemisphereGeometry;
  439. var westHemisphereGeometry = instance.westHemisphereGeometry;
  440. if (when.defined(eastHemisphereGeometry) && when.defined(westHemisphereGeometry)) {
  441. if (
  442. when.defined(eastHemisphereGeometry.boundingSphere) &&
  443. when.defined(westHemisphereGeometry.boundingSphere)
  444. ) {
  445. boundingSpheres[i] = Transforms.BoundingSphere.union(
  446. eastHemisphereGeometry.boundingSphere,
  447. westHemisphereGeometry.boundingSphere
  448. );
  449. }
  450. if (
  451. when.defined(eastHemisphereGeometry.boundingSphereCV) &&
  452. when.defined(westHemisphereGeometry.boundingSphereCV)
  453. ) {
  454. boundingSpheresCV[i] = Transforms.BoundingSphere.union(
  455. eastHemisphereGeometry.boundingSphereCV,
  456. westHemisphereGeometry.boundingSphereCV
  457. );
  458. }
  459. }
  460. }
  461. return {
  462. geometries: geometries,
  463. modelMatrix: parameters.modelMatrix,
  464. attributeLocations: attributeLocations,
  465. pickOffsets: pickOffsets,
  466. offsetInstanceExtend: offsetInstanceExtend,
  467. boundingSpheres: boundingSpheres,
  468. boundingSpheresCV: boundingSpheresCV,
  469. };
  470. };
  471. function transferGeometry(geometry, transferableObjects) {
  472. var attributes = geometry.attributes;
  473. for (var name in attributes) {
  474. if (attributes.hasOwnProperty(name)) {
  475. var attribute = attributes[name];
  476. if (when.defined(attribute) && when.defined(attribute.values)) {
  477. transferableObjects.push(attribute.values.buffer);
  478. }
  479. }
  480. }
  481. if (when.defined(geometry.indices)) {
  482. transferableObjects.push(geometry.indices.buffer);
  483. }
  484. }
  485. function transferGeometries(geometries, transferableObjects) {
  486. var length = geometries.length;
  487. for (var i = 0; i < length; ++i) {
  488. transferGeometry(geometries[i], transferableObjects);
  489. }
  490. }
  491. // This function was created by simplifying packCreateGeometryResults into a count-only operation.
  492. function countCreateGeometryResults(items) {
  493. var count = 1;
  494. var length = items.length;
  495. for (var i = 0; i < length; i++) {
  496. var geometry = items[i];
  497. ++count;
  498. if (!when.defined(geometry)) {
  499. continue;
  500. }
  501. var attributes = geometry.attributes;
  502. count +=
  503. 7 +
  504. 2 * Transforms.BoundingSphere.packedLength +
  505. (when.defined(geometry.indices) ? geometry.indices.length : 0);
  506. for (var property in attributes) {
  507. if (
  508. attributes.hasOwnProperty(property) &&
  509. when.defined(attributes[property])
  510. ) {
  511. var attribute = attributes[property];
  512. count += 5 + attribute.values.length;
  513. }
  514. }
  515. }
  516. return count;
  517. }
  518. /**
  519. * @private
  520. */
  521. PrimitivePipeline.packCreateGeometryResults = function (
  522. items,
  523. transferableObjects
  524. ) {
  525. var packedData = new Float64Array(countCreateGeometryResults(items));
  526. var stringTable = [];
  527. var stringHash = {};
  528. var length = items.length;
  529. var count = 0;
  530. packedData[count++] = length;
  531. for (var i = 0; i < length; i++) {
  532. var geometry = items[i];
  533. var validGeometry = when.defined(geometry);
  534. packedData[count++] = validGeometry ? 1.0 : 0.0;
  535. if (!validGeometry) {
  536. continue;
  537. }
  538. packedData[count++] = geometry.primitiveType;
  539. packedData[count++] = geometry.geometryType;
  540. packedData[count++] = when.defaultValue(geometry.offsetAttribute, -1);
  541. var validBoundingSphere = when.defined(geometry.boundingSphere) ? 1.0 : 0.0;
  542. packedData[count++] = validBoundingSphere;
  543. if (validBoundingSphere) {
  544. Transforms.BoundingSphere.pack(geometry.boundingSphere, packedData, count);
  545. }
  546. count += Transforms.BoundingSphere.packedLength;
  547. var validBoundingSphereCV = when.defined(geometry.boundingSphereCV) ? 1.0 : 0.0;
  548. packedData[count++] = validBoundingSphereCV;
  549. if (validBoundingSphereCV) {
  550. Transforms.BoundingSphere.pack(geometry.boundingSphereCV, packedData, count);
  551. }
  552. count += Transforms.BoundingSphere.packedLength;
  553. var attributes = geometry.attributes;
  554. var attributesToWrite = [];
  555. for (var property in attributes) {
  556. if (
  557. attributes.hasOwnProperty(property) &&
  558. when.defined(attributes[property])
  559. ) {
  560. attributesToWrite.push(property);
  561. if (!when.defined(stringHash[property])) {
  562. stringHash[property] = stringTable.length;
  563. stringTable.push(property);
  564. }
  565. }
  566. }
  567. packedData[count++] = attributesToWrite.length;
  568. for (var q = 0; q < attributesToWrite.length; q++) {
  569. var name = attributesToWrite[q];
  570. var attribute = attributes[name];
  571. packedData[count++] = stringHash[name];
  572. packedData[count++] = attribute.componentDatatype;
  573. packedData[count++] = attribute.componentsPerAttribute;
  574. packedData[count++] = attribute.normalize ? 1 : 0;
  575. packedData[count++] = attribute.values.length;
  576. packedData.set(attribute.values, count);
  577. count += attribute.values.length;
  578. }
  579. var indicesLength = when.defined(geometry.indices) ? geometry.indices.length : 0;
  580. packedData[count++] = indicesLength;
  581. if (indicesLength > 0) {
  582. packedData.set(geometry.indices, count);
  583. count += indicesLength;
  584. }
  585. }
  586. transferableObjects.push(packedData.buffer);
  587. return {
  588. stringTable: stringTable,
  589. packedData: packedData,
  590. };
  591. };
  592. /**
  593. * @private
  594. */
  595. PrimitivePipeline.unpackCreateGeometryResults = function (
  596. createGeometryResult
  597. ) {
  598. var stringTable = createGeometryResult.stringTable;
  599. var packedGeometry = createGeometryResult.packedData;
  600. var i;
  601. var result = new Array(packedGeometry[0]);
  602. var resultIndex = 0;
  603. var packedGeometryIndex = 1;
  604. while (packedGeometryIndex < packedGeometry.length) {
  605. var valid = packedGeometry[packedGeometryIndex++] === 1.0;
  606. if (!valid) {
  607. result[resultIndex++] = undefined;
  608. continue;
  609. }
  610. var primitiveType = packedGeometry[packedGeometryIndex++];
  611. var geometryType = packedGeometry[packedGeometryIndex++];
  612. var offsetAttribute = packedGeometry[packedGeometryIndex++];
  613. if (offsetAttribute === -1) {
  614. offsetAttribute = undefined;
  615. }
  616. var boundingSphere;
  617. var boundingSphereCV;
  618. var validBoundingSphere = packedGeometry[packedGeometryIndex++] === 1.0;
  619. if (validBoundingSphere) {
  620. boundingSphere = Transforms.BoundingSphere.unpack(
  621. packedGeometry,
  622. packedGeometryIndex
  623. );
  624. }
  625. packedGeometryIndex += Transforms.BoundingSphere.packedLength;
  626. var validBoundingSphereCV = packedGeometry[packedGeometryIndex++] === 1.0;
  627. if (validBoundingSphereCV) {
  628. boundingSphereCV = Transforms.BoundingSphere.unpack(
  629. packedGeometry,
  630. packedGeometryIndex
  631. );
  632. }
  633. packedGeometryIndex += Transforms.BoundingSphere.packedLength;
  634. var length;
  635. var values;
  636. var componentsPerAttribute;
  637. var attributes = new GeometryAttributes.GeometryAttributes();
  638. var numAttributes = packedGeometry[packedGeometryIndex++];
  639. for (i = 0; i < numAttributes; i++) {
  640. var name = stringTable[packedGeometry[packedGeometryIndex++]];
  641. var componentDatatype = packedGeometry[packedGeometryIndex++];
  642. componentsPerAttribute = packedGeometry[packedGeometryIndex++];
  643. var normalize = packedGeometry[packedGeometryIndex++] !== 0;
  644. length = packedGeometry[packedGeometryIndex++];
  645. values = ComponentDatatype.ComponentDatatype.createTypedArray(componentDatatype, length);
  646. for (var valuesIndex = 0; valuesIndex < length; valuesIndex++) {
  647. values[valuesIndex] = packedGeometry[packedGeometryIndex++];
  648. }
  649. attributes[name] = new GeometryAttribute.GeometryAttribute({
  650. componentDatatype: componentDatatype,
  651. componentsPerAttribute: componentsPerAttribute,
  652. normalize: normalize,
  653. values: values,
  654. });
  655. }
  656. var indices;
  657. length = packedGeometry[packedGeometryIndex++];
  658. if (length > 0) {
  659. var numberOfVertices = values.length / componentsPerAttribute;
  660. indices = IndexDatatype.IndexDatatype.createTypedArray(numberOfVertices, length);
  661. for (i = 0; i < length; i++) {
  662. indices[i] = packedGeometry[packedGeometryIndex++];
  663. }
  664. }
  665. result[resultIndex++] = new GeometryAttribute.Geometry({
  666. primitiveType: primitiveType,
  667. geometryType: geometryType,
  668. boundingSphere: boundingSphere,
  669. boundingSphereCV: boundingSphereCV,
  670. indices: indices,
  671. attributes: attributes,
  672. offsetAttribute: offsetAttribute,
  673. });
  674. }
  675. return result;
  676. };
  677. function packInstancesForCombine(instances, transferableObjects) {
  678. var length = instances.length;
  679. var packedData = new Float64Array(1 + length * 19);
  680. var count = 0;
  681. packedData[count++] = length;
  682. for (var i = 0; i < length; i++) {
  683. var instance = instances[i];
  684. Transforms.Matrix4.pack(instance.modelMatrix, packedData, count);
  685. count += Transforms.Matrix4.packedLength;
  686. if (when.defined(instance.attributes) && when.defined(instance.attributes.offset)) {
  687. var values = instance.attributes.offset.value;
  688. packedData[count] = values[0];
  689. packedData[count + 1] = values[1];
  690. packedData[count + 2] = values[2];
  691. }
  692. count += 3;
  693. }
  694. transferableObjects.push(packedData.buffer);
  695. return packedData;
  696. }
  697. function unpackInstancesForCombine(data) {
  698. var packedInstances = data;
  699. var result = new Array(packedInstances[0]);
  700. var count = 0;
  701. var i = 1;
  702. while (i < packedInstances.length) {
  703. var modelMatrix = Transforms.Matrix4.unpack(packedInstances, i);
  704. var attributes;
  705. i += Transforms.Matrix4.packedLength;
  706. if (when.defined(packedInstances[i])) {
  707. attributes = {
  708. offset: new OffsetGeometryInstanceAttribute(
  709. packedInstances[i],
  710. packedInstances[i + 1],
  711. packedInstances[i + 2]
  712. ),
  713. };
  714. }
  715. i += 3;
  716. result[count++] = {
  717. modelMatrix: modelMatrix,
  718. attributes: attributes,
  719. };
  720. }
  721. return result;
  722. }
  723. /**
  724. * @private
  725. */
  726. PrimitivePipeline.packCombineGeometryParameters = function (
  727. parameters,
  728. transferableObjects
  729. ) {
  730. var createGeometryResults = parameters.createGeometryResults;
  731. var length = createGeometryResults.length;
  732. for (var i = 0; i < length; i++) {
  733. transferableObjects.push(createGeometryResults[i].packedData.buffer);
  734. }
  735. return {
  736. createGeometryResults: parameters.createGeometryResults,
  737. packedInstances: packInstancesForCombine(
  738. parameters.instances,
  739. transferableObjects
  740. ),
  741. ellipsoid: parameters.ellipsoid,
  742. isGeographic: parameters.projection instanceof Transforms.GeographicProjection,
  743. elementIndexUintSupported: parameters.elementIndexUintSupported,
  744. scene3DOnly: parameters.scene3DOnly,
  745. vertexCacheOptimize: parameters.vertexCacheOptimize,
  746. compressVertices: parameters.compressVertices,
  747. modelMatrix: parameters.modelMatrix,
  748. createPickOffsets: parameters.createPickOffsets,
  749. };
  750. };
  751. /**
  752. * @private
  753. */
  754. PrimitivePipeline.unpackCombineGeometryParameters = function (
  755. packedParameters
  756. ) {
  757. var instances = unpackInstancesForCombine(packedParameters.packedInstances);
  758. var createGeometryResults = packedParameters.createGeometryResults;
  759. var length = createGeometryResults.length;
  760. var instanceIndex = 0;
  761. for (var resultIndex = 0; resultIndex < length; resultIndex++) {
  762. var geometries = PrimitivePipeline.unpackCreateGeometryResults(
  763. createGeometryResults[resultIndex]
  764. );
  765. var geometriesLength = geometries.length;
  766. for (
  767. var geometryIndex = 0;
  768. geometryIndex < geometriesLength;
  769. geometryIndex++
  770. ) {
  771. var geometry = geometries[geometryIndex];
  772. var instance = instances[instanceIndex];
  773. instance.geometry = geometry;
  774. ++instanceIndex;
  775. }
  776. }
  777. var ellipsoid = Cartesian2.Ellipsoid.clone(packedParameters.ellipsoid);
  778. var projection = packedParameters.isGeographic
  779. ? new Transforms.GeographicProjection(ellipsoid)
  780. : new WebMercatorProjection.WebMercatorProjection(ellipsoid);
  781. return {
  782. instances: instances,
  783. ellipsoid: ellipsoid,
  784. projection: projection,
  785. elementIndexUintSupported: packedParameters.elementIndexUintSupported,
  786. scene3DOnly: packedParameters.scene3DOnly,
  787. vertexCacheOptimize: packedParameters.vertexCacheOptimize,
  788. compressVertices: packedParameters.compressVertices,
  789. modelMatrix: Transforms.Matrix4.clone(packedParameters.modelMatrix),
  790. createPickOffsets: packedParameters.createPickOffsets,
  791. };
  792. };
  793. function packBoundingSpheres(boundingSpheres) {
  794. var length = boundingSpheres.length;
  795. var bufferLength = 1 + (Transforms.BoundingSphere.packedLength + 1) * length;
  796. var buffer = new Float32Array(bufferLength);
  797. var bufferIndex = 0;
  798. buffer[bufferIndex++] = length;
  799. for (var i = 0; i < length; ++i) {
  800. var bs = boundingSpheres[i];
  801. if (!when.defined(bs)) {
  802. buffer[bufferIndex++] = 0.0;
  803. } else {
  804. buffer[bufferIndex++] = 1.0;
  805. Transforms.BoundingSphere.pack(boundingSpheres[i], buffer, bufferIndex);
  806. }
  807. bufferIndex += Transforms.BoundingSphere.packedLength;
  808. }
  809. return buffer;
  810. }
  811. function unpackBoundingSpheres(buffer) {
  812. var result = new Array(buffer[0]);
  813. var count = 0;
  814. var i = 1;
  815. while (i < buffer.length) {
  816. if (buffer[i++] === 1.0) {
  817. result[count] = Transforms.BoundingSphere.unpack(buffer, i);
  818. }
  819. ++count;
  820. i += Transforms.BoundingSphere.packedLength;
  821. }
  822. return result;
  823. }
  824. /**
  825. * @private
  826. */
  827. PrimitivePipeline.packCombineGeometryResults = function (
  828. results,
  829. transferableObjects
  830. ) {
  831. if (when.defined(results.geometries)) {
  832. transferGeometries(results.geometries, transferableObjects);
  833. }
  834. var packedBoundingSpheres = packBoundingSpheres(results.boundingSpheres);
  835. var packedBoundingSpheresCV = packBoundingSpheres(results.boundingSpheresCV);
  836. transferableObjects.push(
  837. packedBoundingSpheres.buffer,
  838. packedBoundingSpheresCV.buffer
  839. );
  840. return {
  841. geometries: results.geometries,
  842. attributeLocations: results.attributeLocations,
  843. modelMatrix: results.modelMatrix,
  844. pickOffsets: results.pickOffsets,
  845. offsetInstanceExtend: results.offsetInstanceExtend,
  846. boundingSpheres: packedBoundingSpheres,
  847. boundingSpheresCV: packedBoundingSpheresCV,
  848. };
  849. };
  850. /**
  851. * @private
  852. */
  853. PrimitivePipeline.unpackCombineGeometryResults = function (packedResult) {
  854. return {
  855. geometries: packedResult.geometries,
  856. attributeLocations: packedResult.attributeLocations,
  857. modelMatrix: packedResult.modelMatrix,
  858. pickOffsets: packedResult.pickOffsets,
  859. offsetInstanceExtend: packedResult.offsetInstanceExtend,
  860. boundingSpheres: unpackBoundingSpheres(packedResult.boundingSpheres),
  861. boundingSpheresCV: unpackBoundingSpheres(packedResult.boundingSpheresCV),
  862. };
  863. };
  864. exports.PrimitivePipeline = PrimitivePipeline;
  865. });
  866. //# sourceMappingURL=PrimitivePipeline-f684a355.js.map