createPolylineVolumeGeometry.js 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  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', './AttributeCompression-75249b5e', './GeometryPipeline-466ad516', './EncodedCartesian3-6c97231d', './IndexDatatype-25023891', './IntersectionTests-afc38163', './Plane-fa30fc46', './VertexFormat-4d8b817a', './arrayRemoveDuplicates-0263f42c', './BoundingRectangle-dede91e8', './EllipsoidTangentPlane-ce6e380f', './EllipsoidRhumbLine-5f1492e5', './PolygonPipeline-9f9b7763', './PolylineVolumeGeometryLibrary-d573ce10', './EllipsoidGeodesic-0f41968b', './PolylinePipeline-25d1e129'], function (when, Check, _Math, Cartesian2, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, GeometryAttributes, AttributeCompression, GeometryPipeline, EncodedCartesian3, IndexDatatype, IntersectionTests, Plane, VertexFormat, arrayRemoveDuplicates, BoundingRectangle, EllipsoidTangentPlane, EllipsoidRhumbLine, PolygonPipeline, PolylineVolumeGeometryLibrary, EllipsoidGeodesic, PolylinePipeline) { 'use strict';
  24. var warnings = {};
  25. /**
  26. * Logs a one time message to the console. Use this function instead of
  27. * <code>console.log</code> directly since this does not log duplicate messages
  28. * unless it is called from multiple workers.
  29. *
  30. * @function oneTimeWarning
  31. *
  32. * @param {String} identifier The unique identifier for this warning.
  33. * @param {String} [message=identifier] The message to log to the console.
  34. *
  35. * @example
  36. * for(var i=0;i<foo.length;++i) {
  37. * if (!defined(foo[i].bar)) {
  38. * // Something that can be recovered from but may happen a lot
  39. * oneTimeWarning('foo.bar undefined', 'foo.bar is undefined. Setting to 0.');
  40. * foo[i].bar = 0;
  41. * // ...
  42. * }
  43. * }
  44. *
  45. * @private
  46. */
  47. function oneTimeWarning(identifier, message) {
  48. //>>includeStart('debug', pragmas.debug);
  49. if (!when.defined(identifier)) {
  50. throw new Check.DeveloperError("identifier is required.");
  51. }
  52. //>>includeEnd('debug');
  53. if (!when.defined(warnings[identifier])) {
  54. warnings[identifier] = true;
  55. console.warn(when.defaultValue(message, identifier));
  56. }
  57. }
  58. oneTimeWarning.geometryOutlines =
  59. "Entity geometry outlines are unsupported on terrain. Outlines will be disabled. To enable outlines, disable geometry terrain clamping by explicitly setting height to 0.";
  60. oneTimeWarning.geometryZIndex =
  61. "Entity geometry with zIndex are unsupported when height or extrudedHeight are defined. zIndex will be ignored";
  62. oneTimeWarning.geometryHeightReference =
  63. "Entity corridor, ellipse, polygon or rectangle with heightReference must also have a defined height. heightReference will be ignored";
  64. oneTimeWarning.geometryExtrudedHeightReference =
  65. "Entity corridor, ellipse, polygon or rectangle with extrudedHeightReference must also have a defined extrudedHeight. extrudedHeightReference will be ignored";
  66. function computeAttributes(
  67. combinedPositions,
  68. shape,
  69. boundingRectangle,
  70. vertexFormat
  71. ) {
  72. var attributes = new GeometryAttributes.GeometryAttributes();
  73. if (vertexFormat.position) {
  74. attributes.position = new GeometryAttribute.GeometryAttribute({
  75. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  76. componentsPerAttribute: 3,
  77. values: combinedPositions,
  78. });
  79. }
  80. var shapeLength = shape.length;
  81. var vertexCount = combinedPositions.length / 3;
  82. var length = (vertexCount - shapeLength * 2) / (shapeLength * 2);
  83. var firstEndIndices = PolygonPipeline.PolygonPipeline.triangulate(shape);
  84. var indicesCount =
  85. (length - 1) * shapeLength * 6 + firstEndIndices.length * 2;
  86. var indices = IndexDatatype.IndexDatatype.createTypedArray(vertexCount, indicesCount);
  87. var i, j;
  88. var ll, ul, ur, lr;
  89. var offset = shapeLength * 2;
  90. var index = 0;
  91. for (i = 0; i < length - 1; i++) {
  92. for (j = 0; j < shapeLength - 1; j++) {
  93. ll = j * 2 + i * shapeLength * 2;
  94. lr = ll + offset;
  95. ul = ll + 1;
  96. ur = ul + offset;
  97. indices[index++] = ul;
  98. indices[index++] = ll;
  99. indices[index++] = ur;
  100. indices[index++] = ur;
  101. indices[index++] = ll;
  102. indices[index++] = lr;
  103. }
  104. ll = shapeLength * 2 - 2 + i * shapeLength * 2;
  105. ul = ll + 1;
  106. ur = ul + offset;
  107. lr = ll + offset;
  108. indices[index++] = ul;
  109. indices[index++] = ll;
  110. indices[index++] = ur;
  111. indices[index++] = ur;
  112. indices[index++] = ll;
  113. indices[index++] = lr;
  114. }
  115. if (vertexFormat.st || vertexFormat.tangent || vertexFormat.bitangent) {
  116. // st required for tangent/bitangent calculation
  117. var st = new Float32Array(vertexCount * 2);
  118. var lengthSt = 1 / (length - 1);
  119. var heightSt = 1 / boundingRectangle.height;
  120. var heightOffset = boundingRectangle.height / 2;
  121. var s, t;
  122. var stindex = 0;
  123. for (i = 0; i < length; i++) {
  124. s = i * lengthSt;
  125. t = heightSt * (shape[0].y + heightOffset);
  126. st[stindex++] = s;
  127. st[stindex++] = t;
  128. for (j = 1; j < shapeLength; j++) {
  129. t = heightSt * (shape[j].y + heightOffset);
  130. st[stindex++] = s;
  131. st[stindex++] = t;
  132. st[stindex++] = s;
  133. st[stindex++] = t;
  134. }
  135. t = heightSt * (shape[0].y + heightOffset);
  136. st[stindex++] = s;
  137. st[stindex++] = t;
  138. }
  139. for (j = 0; j < shapeLength; j++) {
  140. s = 0;
  141. t = heightSt * (shape[j].y + heightOffset);
  142. st[stindex++] = s;
  143. st[stindex++] = t;
  144. }
  145. for (j = 0; j < shapeLength; j++) {
  146. s = (length - 1) * lengthSt;
  147. t = heightSt * (shape[j].y + heightOffset);
  148. st[stindex++] = s;
  149. st[stindex++] = t;
  150. }
  151. attributes.st = new GeometryAttribute.GeometryAttribute({
  152. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  153. componentsPerAttribute: 2,
  154. values: new Float32Array(st),
  155. });
  156. }
  157. var endOffset = vertexCount - shapeLength * 2;
  158. for (i = 0; i < firstEndIndices.length; i += 3) {
  159. var v0 = firstEndIndices[i] + endOffset;
  160. var v1 = firstEndIndices[i + 1] + endOffset;
  161. var v2 = firstEndIndices[i + 2] + endOffset;
  162. indices[index++] = v0;
  163. indices[index++] = v1;
  164. indices[index++] = v2;
  165. indices[index++] = v2 + shapeLength;
  166. indices[index++] = v1 + shapeLength;
  167. indices[index++] = v0 + shapeLength;
  168. }
  169. var geometry = new GeometryAttribute.Geometry({
  170. attributes: attributes,
  171. indices: indices,
  172. boundingSphere: Transforms.BoundingSphere.fromVertices(combinedPositions),
  173. primitiveType: GeometryAttribute.PrimitiveType.TRIANGLES,
  174. });
  175. if (vertexFormat.normal) {
  176. geometry = GeometryPipeline.GeometryPipeline.computeNormal(geometry);
  177. }
  178. if (vertexFormat.tangent || vertexFormat.bitangent) {
  179. try {
  180. geometry = GeometryPipeline.GeometryPipeline.computeTangentAndBitangent(geometry);
  181. } catch (e) {
  182. oneTimeWarning(
  183. "polyline-volume-tangent-bitangent",
  184. "Unable to compute tangents and bitangents for polyline volume geometry"
  185. );
  186. //TODO https://github.com/CesiumGS/cesium/issues/3609
  187. }
  188. if (!vertexFormat.tangent) {
  189. geometry.attributes.tangent = undefined;
  190. }
  191. if (!vertexFormat.bitangent) {
  192. geometry.attributes.bitangent = undefined;
  193. }
  194. if (!vertexFormat.st) {
  195. geometry.attributes.st = undefined;
  196. }
  197. }
  198. return geometry;
  199. }
  200. /**
  201. * A description of a polyline with a volume (a 2D shape extruded along a polyline).
  202. *
  203. * @alias PolylineVolumeGeometry
  204. * @constructor
  205. *
  206. * @param {Object} options Object with the following properties:
  207. * @param {Cartesian3[]} options.polylinePositions An array of {@link Cartesain3} positions that define the center of the polyline volume.
  208. * @param {Cartesian2[]} options.shapePositions An array of {@link Cartesian2} positions that define the shape to be extruded along the polyline
  209. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid to be used as a reference.
  210. * @param {Number} [options.granularity=CesiumMath.RADIANS_PER_DEGREE] The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer.
  211. * @param {VertexFormat} [options.vertexFormat=VertexFormat.DEFAULT] The vertex attributes to be computed.
  212. * @param {CornerType} [options.cornerType=CornerType.ROUNDED] Determines the style of the corners.
  213. *
  214. * @see PolylineVolumeGeometry#createGeometry
  215. *
  216. * @demo {@link https://sandcastle.cesium.com/index.html?src=Polyline%20Volume.html|Cesium Sandcastle Polyline Volume Demo}
  217. *
  218. * @example
  219. * function computeCircle(radius) {
  220. * var positions = [];
  221. * for (var i = 0; i < 360; i++) {
  222. * var radians = Cesium.Math.toRadians(i);
  223. * positions.push(new Cesium.Cartesian2(radius * Math.cos(radians), radius * Math.sin(radians)));
  224. * }
  225. * return positions;
  226. * }
  227. *
  228. * var volume = new Cesium.PolylineVolumeGeometry({
  229. * vertexFormat : Cesium.VertexFormat.POSITION_ONLY,
  230. * polylinePositions : Cesium.Cartesian3.fromDegreesArray([
  231. * -72.0, 40.0,
  232. * -70.0, 35.0
  233. * ]),
  234. * shapePositions : computeCircle(100000.0)
  235. * });
  236. */
  237. function PolylineVolumeGeometry(options) {
  238. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  239. var positions = options.polylinePositions;
  240. var shape = options.shapePositions;
  241. //>>includeStart('debug', pragmas.debug);
  242. if (!when.defined(positions)) {
  243. throw new Check.DeveloperError("options.polylinePositions is required.");
  244. }
  245. if (!when.defined(shape)) {
  246. throw new Check.DeveloperError("options.shapePositions is required.");
  247. }
  248. //>>includeEnd('debug');
  249. this._positions = positions;
  250. this._shape = shape;
  251. this._ellipsoid = Cartesian2.Ellipsoid.clone(
  252. when.defaultValue(options.ellipsoid, Cartesian2.Ellipsoid.WGS84)
  253. );
  254. this._cornerType = when.defaultValue(options.cornerType, PolylineVolumeGeometryLibrary.CornerType.ROUNDED);
  255. this._vertexFormat = VertexFormat.VertexFormat.clone(
  256. when.defaultValue(options.vertexFormat, VertexFormat.VertexFormat.DEFAULT)
  257. );
  258. this._granularity = when.defaultValue(
  259. options.granularity,
  260. _Math.CesiumMath.RADIANS_PER_DEGREE
  261. );
  262. this._workerName = "createPolylineVolumeGeometry";
  263. var numComponents = 1 + positions.length * Cartesian2.Cartesian3.packedLength;
  264. numComponents += 1 + shape.length * Cartesian2.Cartesian2.packedLength;
  265. /**
  266. * The number of elements used to pack the object into an array.
  267. * @type {Number}
  268. */
  269. this.packedLength =
  270. numComponents + Cartesian2.Ellipsoid.packedLength + VertexFormat.VertexFormat.packedLength + 2;
  271. }
  272. /**
  273. * Stores the provided instance into the provided array.
  274. *
  275. * @param {PolylineVolumeGeometry} value The value to pack.
  276. * @param {Number[]} array The array to pack into.
  277. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  278. *
  279. * @returns {Number[]} The array that was packed into
  280. */
  281. PolylineVolumeGeometry.pack = function (value, array, startingIndex) {
  282. //>>includeStart('debug', pragmas.debug);
  283. if (!when.defined(value)) {
  284. throw new Check.DeveloperError("value is required");
  285. }
  286. if (!when.defined(array)) {
  287. throw new Check.DeveloperError("array is required");
  288. }
  289. //>>includeEnd('debug');
  290. startingIndex = when.defaultValue(startingIndex, 0);
  291. var i;
  292. var positions = value._positions;
  293. var length = positions.length;
  294. array[startingIndex++] = length;
  295. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) {
  296. Cartesian2.Cartesian3.pack(positions[i], array, startingIndex);
  297. }
  298. var shape = value._shape;
  299. length = shape.length;
  300. array[startingIndex++] = length;
  301. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian2.packedLength) {
  302. Cartesian2.Cartesian2.pack(shape[i], array, startingIndex);
  303. }
  304. Cartesian2.Ellipsoid.pack(value._ellipsoid, array, startingIndex);
  305. startingIndex += Cartesian2.Ellipsoid.packedLength;
  306. VertexFormat.VertexFormat.pack(value._vertexFormat, array, startingIndex);
  307. startingIndex += VertexFormat.VertexFormat.packedLength;
  308. array[startingIndex++] = value._cornerType;
  309. array[startingIndex] = value._granularity;
  310. return array;
  311. };
  312. var scratchEllipsoid = Cartesian2.Ellipsoid.clone(Cartesian2.Ellipsoid.UNIT_SPHERE);
  313. var scratchVertexFormat = new VertexFormat.VertexFormat();
  314. var scratchOptions = {
  315. polylinePositions: undefined,
  316. shapePositions: undefined,
  317. ellipsoid: scratchEllipsoid,
  318. vertexFormat: scratchVertexFormat,
  319. cornerType: undefined,
  320. granularity: undefined,
  321. };
  322. /**
  323. * Retrieves an instance from a packed array.
  324. *
  325. * @param {Number[]} array The packed array.
  326. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  327. * @param {PolylineVolumeGeometry} [result] The object into which to store the result.
  328. * @returns {PolylineVolumeGeometry} The modified result parameter or a new PolylineVolumeGeometry instance if one was not provided.
  329. */
  330. PolylineVolumeGeometry.unpack = function (array, startingIndex, result) {
  331. //>>includeStart('debug', pragmas.debug);
  332. if (!when.defined(array)) {
  333. throw new Check.DeveloperError("array is required");
  334. }
  335. //>>includeEnd('debug');
  336. startingIndex = when.defaultValue(startingIndex, 0);
  337. var i;
  338. var length = array[startingIndex++];
  339. var positions = new Array(length);
  340. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) {
  341. positions[i] = Cartesian2.Cartesian3.unpack(array, startingIndex);
  342. }
  343. length = array[startingIndex++];
  344. var shape = new Array(length);
  345. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian2.packedLength) {
  346. shape[i] = Cartesian2.Cartesian2.unpack(array, startingIndex);
  347. }
  348. var ellipsoid = Cartesian2.Ellipsoid.unpack(array, startingIndex, scratchEllipsoid);
  349. startingIndex += Cartesian2.Ellipsoid.packedLength;
  350. var vertexFormat = VertexFormat.VertexFormat.unpack(
  351. array,
  352. startingIndex,
  353. scratchVertexFormat
  354. );
  355. startingIndex += VertexFormat.VertexFormat.packedLength;
  356. var cornerType = array[startingIndex++];
  357. var granularity = array[startingIndex];
  358. if (!when.defined(result)) {
  359. scratchOptions.polylinePositions = positions;
  360. scratchOptions.shapePositions = shape;
  361. scratchOptions.cornerType = cornerType;
  362. scratchOptions.granularity = granularity;
  363. return new PolylineVolumeGeometry(scratchOptions);
  364. }
  365. result._positions = positions;
  366. result._shape = shape;
  367. result._ellipsoid = Cartesian2.Ellipsoid.clone(ellipsoid, result._ellipsoid);
  368. result._vertexFormat = VertexFormat.VertexFormat.clone(vertexFormat, result._vertexFormat);
  369. result._cornerType = cornerType;
  370. result._granularity = granularity;
  371. return result;
  372. };
  373. var brScratch = new BoundingRectangle.BoundingRectangle();
  374. /**
  375. * Computes the geometric representation of a polyline with a volume, including its vertices, indices, and a bounding sphere.
  376. *
  377. * @param {PolylineVolumeGeometry} polylineVolumeGeometry A description of the polyline volume.
  378. * @returns {Geometry|undefined} The computed vertices and indices.
  379. */
  380. PolylineVolumeGeometry.createGeometry = function (polylineVolumeGeometry) {
  381. var positions = polylineVolumeGeometry._positions;
  382. var cleanPositions = arrayRemoveDuplicates.arrayRemoveDuplicates(
  383. positions,
  384. Cartesian2.Cartesian3.equalsEpsilon
  385. );
  386. var shape2D = polylineVolumeGeometry._shape;
  387. shape2D = PolylineVolumeGeometryLibrary.PolylineVolumeGeometryLibrary.removeDuplicatesFromShape(shape2D);
  388. if (cleanPositions.length < 2 || shape2D.length < 3) {
  389. return undefined;
  390. }
  391. if (
  392. PolygonPipeline.PolygonPipeline.computeWindingOrder2D(shape2D) === PolygonPipeline.WindingOrder.CLOCKWISE
  393. ) {
  394. shape2D.reverse();
  395. }
  396. var boundingRectangle = BoundingRectangle.BoundingRectangle.fromPoints(shape2D, brScratch);
  397. var computedPositions = PolylineVolumeGeometryLibrary.PolylineVolumeGeometryLibrary.computePositions(
  398. cleanPositions,
  399. shape2D,
  400. boundingRectangle,
  401. polylineVolumeGeometry,
  402. true
  403. );
  404. return computeAttributes(
  405. computedPositions,
  406. shape2D,
  407. boundingRectangle,
  408. polylineVolumeGeometry._vertexFormat
  409. );
  410. };
  411. function createPolylineVolumeGeometry(polylineVolumeGeometry, offset) {
  412. if (when.defined(offset)) {
  413. polylineVolumeGeometry = PolylineVolumeGeometry.unpack(
  414. polylineVolumeGeometry,
  415. offset
  416. );
  417. }
  418. polylineVolumeGeometry._ellipsoid = Cartesian2.Ellipsoid.clone(
  419. polylineVolumeGeometry._ellipsoid
  420. );
  421. return PolylineVolumeGeometry.createGeometry(polylineVolumeGeometry);
  422. }
  423. return createPolylineVolumeGeometry;
  424. });
  425. //# sourceMappingURL=createPolylineVolumeGeometry.js.map