createVectorTilePolylines.js 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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', './WebGLConstants-76bb35d1', './AttributeCompression-75249b5e', './IndexDatatype-25023891', './createTaskProcessorWorker'], function (when, Check, _Math, Cartesian2, WebGLConstants, AttributeCompression, IndexDatatype, createTaskProcessorWorker) { 'use strict';
  24. var maxShort = 32767;
  25. var scratchBVCartographic = new Cartesian2.Cartographic();
  26. var scratchEncodedPosition = new Cartesian2.Cartesian3();
  27. function decodePositions(
  28. positions,
  29. rectangle,
  30. minimumHeight,
  31. maximumHeight,
  32. ellipsoid
  33. ) {
  34. var positionsLength = positions.length / 3;
  35. var uBuffer = positions.subarray(0, positionsLength);
  36. var vBuffer = positions.subarray(positionsLength, 2 * positionsLength);
  37. var heightBuffer = positions.subarray(
  38. 2 * positionsLength,
  39. 3 * positionsLength
  40. );
  41. AttributeCompression.AttributeCompression.zigZagDeltaDecode(uBuffer, vBuffer, heightBuffer);
  42. var decoded = new Float64Array(positions.length);
  43. for (var i = 0; i < positionsLength; ++i) {
  44. var u = uBuffer[i];
  45. var v = vBuffer[i];
  46. var h = heightBuffer[i];
  47. var lon = _Math.CesiumMath.lerp(rectangle.west, rectangle.east, u / maxShort);
  48. var lat = _Math.CesiumMath.lerp(rectangle.south, rectangle.north, v / maxShort);
  49. var alt = _Math.CesiumMath.lerp(minimumHeight, maximumHeight, h / maxShort);
  50. var cartographic = Cartesian2.Cartographic.fromRadians(
  51. lon,
  52. lat,
  53. alt,
  54. scratchBVCartographic
  55. );
  56. var decodedPosition = ellipsoid.cartographicToCartesian(
  57. cartographic,
  58. scratchEncodedPosition
  59. );
  60. Cartesian2.Cartesian3.pack(decodedPosition, decoded, i * 3);
  61. }
  62. return decoded;
  63. }
  64. var scratchRectangle = new Cartesian2.Rectangle();
  65. var scratchEllipsoid = new Cartesian2.Ellipsoid();
  66. var scratchCenter = new Cartesian2.Cartesian3();
  67. var scratchMinMaxHeights = {
  68. min: undefined,
  69. max: undefined,
  70. };
  71. function unpackBuffer(packedBuffer) {
  72. packedBuffer = new Float64Array(packedBuffer);
  73. var offset = 0;
  74. scratchMinMaxHeights.min = packedBuffer[offset++];
  75. scratchMinMaxHeights.max = packedBuffer[offset++];
  76. Cartesian2.Rectangle.unpack(packedBuffer, offset, scratchRectangle);
  77. offset += Cartesian2.Rectangle.packedLength;
  78. Cartesian2.Ellipsoid.unpack(packedBuffer, offset, scratchEllipsoid);
  79. offset += Cartesian2.Ellipsoid.packedLength;
  80. Cartesian2.Cartesian3.unpack(packedBuffer, offset, scratchCenter);
  81. }
  82. var scratchP0 = new Cartesian2.Cartesian3();
  83. var scratchP1 = new Cartesian2.Cartesian3();
  84. var scratchPrev = new Cartesian2.Cartesian3();
  85. var scratchCur = new Cartesian2.Cartesian3();
  86. var scratchNext = new Cartesian2.Cartesian3();
  87. function createVectorTilePolylines(parameters, transferableObjects) {
  88. var encodedPositions = new Uint16Array(parameters.positions);
  89. var widths = new Uint16Array(parameters.widths);
  90. var counts = new Uint32Array(parameters.counts);
  91. var batchIds = new Uint16Array(parameters.batchIds);
  92. unpackBuffer(parameters.packedBuffer);
  93. var rectangle = scratchRectangle;
  94. var ellipsoid = scratchEllipsoid;
  95. var center = scratchCenter;
  96. var minimumHeight = scratchMinMaxHeights.min;
  97. var maximumHeight = scratchMinMaxHeights.max;
  98. var positions = decodePositions(
  99. encodedPositions,
  100. rectangle,
  101. minimumHeight,
  102. maximumHeight,
  103. ellipsoid
  104. );
  105. var positionsLength = positions.length / 3;
  106. var size = positionsLength * 4 - 4;
  107. var curPositions = new Float32Array(size * 3);
  108. var prevPositions = new Float32Array(size * 3);
  109. var nextPositions = new Float32Array(size * 3);
  110. var expandAndWidth = new Float32Array(size * 2);
  111. var vertexBatchIds = new Uint16Array(size);
  112. var positionIndex = 0;
  113. var expandAndWidthIndex = 0;
  114. var batchIdIndex = 0;
  115. var i;
  116. var offset = 0;
  117. var length = counts.length;
  118. for (i = 0; i < length; ++i) {
  119. var count = counts[i];
  120. var width = widths[i];
  121. var batchId = batchIds[i];
  122. for (var j = 0; j < count; ++j) {
  123. var previous;
  124. if (j === 0) {
  125. var p0 = Cartesian2.Cartesian3.unpack(positions, offset * 3, scratchP0);
  126. var p1 = Cartesian2.Cartesian3.unpack(positions, (offset + 1) * 3, scratchP1);
  127. previous = Cartesian2.Cartesian3.subtract(p0, p1, scratchPrev);
  128. Cartesian2.Cartesian3.add(p0, previous, previous);
  129. } else {
  130. previous = Cartesian2.Cartesian3.unpack(
  131. positions,
  132. (offset + j - 1) * 3,
  133. scratchPrev
  134. );
  135. }
  136. var current = Cartesian2.Cartesian3.unpack(positions, (offset + j) * 3, scratchCur);
  137. var next;
  138. if (j === count - 1) {
  139. var p2 = Cartesian2.Cartesian3.unpack(
  140. positions,
  141. (offset + count - 1) * 3,
  142. scratchP0
  143. );
  144. var p3 = Cartesian2.Cartesian3.unpack(
  145. positions,
  146. (offset + count - 2) * 3,
  147. scratchP1
  148. );
  149. next = Cartesian2.Cartesian3.subtract(p2, p3, scratchNext);
  150. Cartesian2.Cartesian3.add(p2, next, next);
  151. } else {
  152. next = Cartesian2.Cartesian3.unpack(positions, (offset + j + 1) * 3, scratchNext);
  153. }
  154. Cartesian2.Cartesian3.subtract(previous, center, previous);
  155. Cartesian2.Cartesian3.subtract(current, center, current);
  156. Cartesian2.Cartesian3.subtract(next, center, next);
  157. var startK = j === 0 ? 2 : 0;
  158. var endK = j === count - 1 ? 2 : 4;
  159. for (var k = startK; k < endK; ++k) {
  160. Cartesian2.Cartesian3.pack(current, curPositions, positionIndex);
  161. Cartesian2.Cartesian3.pack(previous, prevPositions, positionIndex);
  162. Cartesian2.Cartesian3.pack(next, nextPositions, positionIndex);
  163. positionIndex += 3;
  164. var direction = k - 2 < 0 ? -1.0 : 1.0;
  165. expandAndWidth[expandAndWidthIndex++] = 2 * (k % 2) - 1;
  166. expandAndWidth[expandAndWidthIndex++] = direction * width;
  167. vertexBatchIds[batchIdIndex++] = batchId;
  168. }
  169. }
  170. offset += count;
  171. }
  172. var indices = IndexDatatype.IndexDatatype.createTypedArray(size, positionsLength * 6 - 6);
  173. var index = 0;
  174. var indicesIndex = 0;
  175. length = positionsLength - 1;
  176. for (i = 0; i < length; ++i) {
  177. indices[indicesIndex++] = index;
  178. indices[indicesIndex++] = index + 2;
  179. indices[indicesIndex++] = index + 1;
  180. indices[indicesIndex++] = index + 1;
  181. indices[indicesIndex++] = index + 2;
  182. indices[indicesIndex++] = index + 3;
  183. index += 4;
  184. }
  185. transferableObjects.push(
  186. curPositions.buffer,
  187. prevPositions.buffer,
  188. nextPositions.buffer
  189. );
  190. transferableObjects.push(
  191. expandAndWidth.buffer,
  192. vertexBatchIds.buffer,
  193. indices.buffer
  194. );
  195. return {
  196. indexDatatype:
  197. indices.BYTES_PER_ELEMENT === 2
  198. ? IndexDatatype.IndexDatatype.UNSIGNED_SHORT
  199. : IndexDatatype.IndexDatatype.UNSIGNED_INT,
  200. currentPositions: curPositions.buffer,
  201. previousPositions: prevPositions.buffer,
  202. nextPositions: nextPositions.buffer,
  203. expandAndWidth: expandAndWidth.buffer,
  204. batchIds: vertexBatchIds.buffer,
  205. indices: indices.buffer,
  206. };
  207. }
  208. var createVectorTilePolylines$1 = createTaskProcessorWorker(createVectorTilePolylines);
  209. return createVectorTilePolylines$1;
  210. });
  211. //# sourceMappingURL=createVectorTilePolylines.js.map