createSimplePolylineGeometry.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  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', './IntersectionTests-afc38163', './Plane-fa30fc46', './ArcType-dc1c5aee', './EllipsoidRhumbLine-5f1492e5', './EllipsoidGeodesic-0f41968b', './PolylinePipeline-25d1e129', './Color-680d93bf'], function (when, Check, _Math, Cartesian2, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, GeometryAttributes, IndexDatatype, IntersectionTests, Plane, ArcType, EllipsoidRhumbLine, EllipsoidGeodesic, PolylinePipeline, Color) { 'use strict';
  24. function interpolateColors(p0, p1, color0, color1, minDistance, array, offset) {
  25. var numPoints = PolylinePipeline.PolylinePipeline.numberOfPoints(p0, p1, minDistance);
  26. var i;
  27. var r0 = color0.red;
  28. var g0 = color0.green;
  29. var b0 = color0.blue;
  30. var a0 = color0.alpha;
  31. var r1 = color1.red;
  32. var g1 = color1.green;
  33. var b1 = color1.blue;
  34. var a1 = color1.alpha;
  35. if (Color.Color.equals(color0, color1)) {
  36. for (i = 0; i < numPoints; i++) {
  37. array[offset++] = Color.Color.floatToByte(r0);
  38. array[offset++] = Color.Color.floatToByte(g0);
  39. array[offset++] = Color.Color.floatToByte(b0);
  40. array[offset++] = Color.Color.floatToByte(a0);
  41. }
  42. return offset;
  43. }
  44. var redPerVertex = (r1 - r0) / numPoints;
  45. var greenPerVertex = (g1 - g0) / numPoints;
  46. var bluePerVertex = (b1 - b0) / numPoints;
  47. var alphaPerVertex = (a1 - a0) / numPoints;
  48. var index = offset;
  49. for (i = 0; i < numPoints; i++) {
  50. array[index++] = Color.Color.floatToByte(r0 + i * redPerVertex);
  51. array[index++] = Color.Color.floatToByte(g0 + i * greenPerVertex);
  52. array[index++] = Color.Color.floatToByte(b0 + i * bluePerVertex);
  53. array[index++] = Color.Color.floatToByte(a0 + i * alphaPerVertex);
  54. }
  55. return index;
  56. }
  57. /**
  58. * A description of a polyline modeled as a line strip; the first two positions define a line segment,
  59. * and each additional position defines a line segment from the previous position.
  60. *
  61. * @alias SimplePolylineGeometry
  62. * @constructor
  63. *
  64. * @param {Object} options Object with the following properties:
  65. * @param {Cartesian3[]} options.positions An array of {@link Cartesian3} defining the positions in the polyline as a line strip.
  66. * @param {Color[]} [options.colors] An Array of {@link Color} defining the per vertex or per segment colors.
  67. * @param {Boolean} [options.colorsPerVertex=false] A boolean that determines whether the colors will be flat across each segment of the line or interpolated across the vertices.
  68. * @param {ArcType} [options.arcType=ArcType.GEODESIC] The type of line the polyline segments must follow.
  69. * @param {Number} [options.granularity=CesiumMath.RADIANS_PER_DEGREE] The distance, in radians, between each latitude and longitude if options.arcType is not ArcType.NONE. Determines the number of positions in the buffer.
  70. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid to be used as a reference.
  71. *
  72. * @exception {DeveloperError} At least two positions are required.
  73. * @exception {DeveloperError} colors has an invalid length.
  74. *
  75. * @see SimplePolylineGeometry#createGeometry
  76. *
  77. * @example
  78. * // A polyline with two connected line segments
  79. * var polyline = new Cesium.SimplePolylineGeometry({
  80. * positions : Cesium.Cartesian3.fromDegreesArray([
  81. * 0.0, 0.0,
  82. * 5.0, 0.0,
  83. * 5.0, 5.0
  84. * ])
  85. * });
  86. * var geometry = Cesium.SimplePolylineGeometry.createGeometry(polyline);
  87. */
  88. function SimplePolylineGeometry(options) {
  89. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  90. var positions = options.positions;
  91. var colors = options.colors;
  92. var colorsPerVertex = when.defaultValue(options.colorsPerVertex, false);
  93. //>>includeStart('debug', pragmas.debug);
  94. if (!when.defined(positions) || positions.length < 2) {
  95. throw new Check.DeveloperError("At least two positions are required.");
  96. }
  97. if (
  98. when.defined(colors) &&
  99. ((colorsPerVertex && colors.length < positions.length) ||
  100. (!colorsPerVertex && colors.length < positions.length - 1))
  101. ) {
  102. throw new Check.DeveloperError("colors has an invalid length.");
  103. }
  104. //>>includeEnd('debug');
  105. this._positions = positions;
  106. this._colors = colors;
  107. this._colorsPerVertex = colorsPerVertex;
  108. this._arcType = when.defaultValue(options.arcType, ArcType.ArcType.GEODESIC);
  109. this._granularity = when.defaultValue(
  110. options.granularity,
  111. _Math.CesiumMath.RADIANS_PER_DEGREE
  112. );
  113. this._ellipsoid = when.defaultValue(options.ellipsoid, Cartesian2.Ellipsoid.WGS84);
  114. this._workerName = "createSimplePolylineGeometry";
  115. var numComponents = 1 + positions.length * Cartesian2.Cartesian3.packedLength;
  116. numComponents += when.defined(colors) ? 1 + colors.length * Color.Color.packedLength : 1;
  117. /**
  118. * The number of elements used to pack the object into an array.
  119. * @type {Number}
  120. */
  121. this.packedLength = numComponents + Cartesian2.Ellipsoid.packedLength + 3;
  122. }
  123. /**
  124. * Stores the provided instance into the provided array.
  125. *
  126. * @param {SimplePolylineGeometry} value The value to pack.
  127. * @param {Number[]} array The array to pack into.
  128. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  129. *
  130. * @returns {Number[]} The array that was packed into
  131. */
  132. SimplePolylineGeometry.pack = function (value, array, startingIndex) {
  133. //>>includeStart('debug', pragmas.debug);
  134. if (!when.defined(value)) {
  135. throw new Check.DeveloperError("value is required");
  136. }
  137. if (!when.defined(array)) {
  138. throw new Check.DeveloperError("array is required");
  139. }
  140. //>>includeEnd('debug');
  141. startingIndex = when.defaultValue(startingIndex, 0);
  142. var i;
  143. var positions = value._positions;
  144. var length = positions.length;
  145. array[startingIndex++] = length;
  146. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) {
  147. Cartesian2.Cartesian3.pack(positions[i], array, startingIndex);
  148. }
  149. var colors = value._colors;
  150. length = when.defined(colors) ? colors.length : 0.0;
  151. array[startingIndex++] = length;
  152. for (i = 0; i < length; ++i, startingIndex += Color.Color.packedLength) {
  153. Color.Color.pack(colors[i], array, startingIndex);
  154. }
  155. Cartesian2.Ellipsoid.pack(value._ellipsoid, array, startingIndex);
  156. startingIndex += Cartesian2.Ellipsoid.packedLength;
  157. array[startingIndex++] = value._colorsPerVertex ? 1.0 : 0.0;
  158. array[startingIndex++] = value._arcType;
  159. array[startingIndex] = value._granularity;
  160. return array;
  161. };
  162. /**
  163. * Retrieves an instance from a packed array.
  164. *
  165. * @param {Number[]} array The packed array.
  166. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  167. * @param {SimplePolylineGeometry} [result] The object into which to store the result.
  168. * @returns {SimplePolylineGeometry} The modified result parameter or a new SimplePolylineGeometry instance if one was not provided.
  169. */
  170. SimplePolylineGeometry.unpack = function (array, startingIndex, result) {
  171. //>>includeStart('debug', pragmas.debug);
  172. if (!when.defined(array)) {
  173. throw new Check.DeveloperError("array is required");
  174. }
  175. //>>includeEnd('debug');
  176. startingIndex = when.defaultValue(startingIndex, 0);
  177. var i;
  178. var length = array[startingIndex++];
  179. var positions = new Array(length);
  180. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) {
  181. positions[i] = Cartesian2.Cartesian3.unpack(array, startingIndex);
  182. }
  183. length = array[startingIndex++];
  184. var colors = length > 0 ? new Array(length) : undefined;
  185. for (i = 0; i < length; ++i, startingIndex += Color.Color.packedLength) {
  186. colors[i] = Color.Color.unpack(array, startingIndex);
  187. }
  188. var ellipsoid = Cartesian2.Ellipsoid.unpack(array, startingIndex);
  189. startingIndex += Cartesian2.Ellipsoid.packedLength;
  190. var colorsPerVertex = array[startingIndex++] === 1.0;
  191. var arcType = array[startingIndex++];
  192. var granularity = array[startingIndex];
  193. if (!when.defined(result)) {
  194. return new SimplePolylineGeometry({
  195. positions: positions,
  196. colors: colors,
  197. ellipsoid: ellipsoid,
  198. colorsPerVertex: colorsPerVertex,
  199. arcType: arcType,
  200. granularity: granularity,
  201. });
  202. }
  203. result._positions = positions;
  204. result._colors = colors;
  205. result._ellipsoid = ellipsoid;
  206. result._colorsPerVertex = colorsPerVertex;
  207. result._arcType = arcType;
  208. result._granularity = granularity;
  209. return result;
  210. };
  211. var scratchArray1 = new Array(2);
  212. var scratchArray2 = new Array(2);
  213. var generateArcOptionsScratch = {
  214. positions: scratchArray1,
  215. height: scratchArray2,
  216. ellipsoid: undefined,
  217. minDistance: undefined,
  218. granularity: undefined,
  219. };
  220. /**
  221. * Computes the geometric representation of a simple polyline, including its vertices, indices, and a bounding sphere.
  222. *
  223. * @param {SimplePolylineGeometry} simplePolylineGeometry A description of the polyline.
  224. * @returns {Geometry|undefined} The computed vertices and indices.
  225. */
  226. SimplePolylineGeometry.createGeometry = function (simplePolylineGeometry) {
  227. var positions = simplePolylineGeometry._positions;
  228. var colors = simplePolylineGeometry._colors;
  229. var colorsPerVertex = simplePolylineGeometry._colorsPerVertex;
  230. var arcType = simplePolylineGeometry._arcType;
  231. var granularity = simplePolylineGeometry._granularity;
  232. var ellipsoid = simplePolylineGeometry._ellipsoid;
  233. var minDistance = _Math.CesiumMath.chordLength(
  234. granularity,
  235. ellipsoid.maximumRadius
  236. );
  237. var perSegmentColors = when.defined(colors) && !colorsPerVertex;
  238. var i;
  239. var length = positions.length;
  240. var positionValues;
  241. var numberOfPositions;
  242. var colorValues;
  243. var color;
  244. var offset = 0;
  245. if (arcType === ArcType.ArcType.GEODESIC || arcType === ArcType.ArcType.RHUMB) {
  246. var subdivisionSize;
  247. var numberOfPointsFunction;
  248. var generateArcFunction;
  249. if (arcType === ArcType.ArcType.GEODESIC) {
  250. subdivisionSize = _Math.CesiumMath.chordLength(
  251. granularity,
  252. ellipsoid.maximumRadius
  253. );
  254. numberOfPointsFunction = PolylinePipeline.PolylinePipeline.numberOfPoints;
  255. generateArcFunction = PolylinePipeline.PolylinePipeline.generateArc;
  256. } else {
  257. subdivisionSize = granularity;
  258. numberOfPointsFunction = PolylinePipeline.PolylinePipeline.numberOfPointsRhumbLine;
  259. generateArcFunction = PolylinePipeline.PolylinePipeline.generateRhumbArc;
  260. }
  261. var heights = PolylinePipeline.PolylinePipeline.extractHeights(positions, ellipsoid);
  262. var generateArcOptions = generateArcOptionsScratch;
  263. if (arcType === ArcType.ArcType.GEODESIC) {
  264. generateArcOptions.minDistance = minDistance;
  265. } else {
  266. generateArcOptions.granularity = granularity;
  267. }
  268. generateArcOptions.ellipsoid = ellipsoid;
  269. if (perSegmentColors) {
  270. var positionCount = 0;
  271. for (i = 0; i < length - 1; i++) {
  272. positionCount +=
  273. numberOfPointsFunction(
  274. positions[i],
  275. positions[i + 1],
  276. subdivisionSize
  277. ) + 1;
  278. }
  279. positionValues = new Float64Array(positionCount * 3);
  280. colorValues = new Uint8Array(positionCount * 4);
  281. generateArcOptions.positions = scratchArray1;
  282. generateArcOptions.height = scratchArray2;
  283. var ci = 0;
  284. for (i = 0; i < length - 1; ++i) {
  285. scratchArray1[0] = positions[i];
  286. scratchArray1[1] = positions[i + 1];
  287. scratchArray2[0] = heights[i];
  288. scratchArray2[1] = heights[i + 1];
  289. var pos = generateArcFunction(generateArcOptions);
  290. if (when.defined(colors)) {
  291. var segLen = pos.length / 3;
  292. color = colors[i];
  293. for (var k = 0; k < segLen; ++k) {
  294. colorValues[ci++] = Color.Color.floatToByte(color.red);
  295. colorValues[ci++] = Color.Color.floatToByte(color.green);
  296. colorValues[ci++] = Color.Color.floatToByte(color.blue);
  297. colorValues[ci++] = Color.Color.floatToByte(color.alpha);
  298. }
  299. }
  300. positionValues.set(pos, offset);
  301. offset += pos.length;
  302. }
  303. } else {
  304. generateArcOptions.positions = positions;
  305. generateArcOptions.height = heights;
  306. positionValues = new Float64Array(
  307. generateArcFunction(generateArcOptions)
  308. );
  309. if (when.defined(colors)) {
  310. colorValues = new Uint8Array((positionValues.length / 3) * 4);
  311. for (i = 0; i < length - 1; ++i) {
  312. var p0 = positions[i];
  313. var p1 = positions[i + 1];
  314. var c0 = colors[i];
  315. var c1 = colors[i + 1];
  316. offset = interpolateColors(
  317. p0,
  318. p1,
  319. c0,
  320. c1,
  321. minDistance,
  322. colorValues,
  323. offset
  324. );
  325. }
  326. var lastColor = colors[length - 1];
  327. colorValues[offset++] = Color.Color.floatToByte(lastColor.red);
  328. colorValues[offset++] = Color.Color.floatToByte(lastColor.green);
  329. colorValues[offset++] = Color.Color.floatToByte(lastColor.blue);
  330. colorValues[offset++] = Color.Color.floatToByte(lastColor.alpha);
  331. }
  332. }
  333. } else {
  334. numberOfPositions = perSegmentColors ? length * 2 - 2 : length;
  335. positionValues = new Float64Array(numberOfPositions * 3);
  336. colorValues = when.defined(colors)
  337. ? new Uint8Array(numberOfPositions * 4)
  338. : undefined;
  339. var positionIndex = 0;
  340. var colorIndex = 0;
  341. for (i = 0; i < length; ++i) {
  342. var p = positions[i];
  343. if (perSegmentColors && i > 0) {
  344. Cartesian2.Cartesian3.pack(p, positionValues, positionIndex);
  345. positionIndex += 3;
  346. color = colors[i - 1];
  347. colorValues[colorIndex++] = Color.Color.floatToByte(color.red);
  348. colorValues[colorIndex++] = Color.Color.floatToByte(color.green);
  349. colorValues[colorIndex++] = Color.Color.floatToByte(color.blue);
  350. colorValues[colorIndex++] = Color.Color.floatToByte(color.alpha);
  351. }
  352. if (perSegmentColors && i === length - 1) {
  353. break;
  354. }
  355. Cartesian2.Cartesian3.pack(p, positionValues, positionIndex);
  356. positionIndex += 3;
  357. if (when.defined(colors)) {
  358. color = colors[i];
  359. colorValues[colorIndex++] = Color.Color.floatToByte(color.red);
  360. colorValues[colorIndex++] = Color.Color.floatToByte(color.green);
  361. colorValues[colorIndex++] = Color.Color.floatToByte(color.blue);
  362. colorValues[colorIndex++] = Color.Color.floatToByte(color.alpha);
  363. }
  364. }
  365. }
  366. var attributes = new GeometryAttributes.GeometryAttributes();
  367. attributes.position = new GeometryAttribute.GeometryAttribute({
  368. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  369. componentsPerAttribute: 3,
  370. values: positionValues,
  371. });
  372. if (when.defined(colors)) {
  373. attributes.color = new GeometryAttribute.GeometryAttribute({
  374. componentDatatype: ComponentDatatype.ComponentDatatype.UNSIGNED_BYTE,
  375. componentsPerAttribute: 4,
  376. values: colorValues,
  377. normalize: true,
  378. });
  379. }
  380. numberOfPositions = positionValues.length / 3;
  381. var numberOfIndices = (numberOfPositions - 1) * 2;
  382. var indices = IndexDatatype.IndexDatatype.createTypedArray(
  383. numberOfPositions,
  384. numberOfIndices
  385. );
  386. var index = 0;
  387. for (i = 0; i < numberOfPositions - 1; ++i) {
  388. indices[index++] = i;
  389. indices[index++] = i + 1;
  390. }
  391. return new GeometryAttribute.Geometry({
  392. attributes: attributes,
  393. indices: indices,
  394. primitiveType: GeometryAttribute.PrimitiveType.LINES,
  395. boundingSphere: Transforms.BoundingSphere.fromPoints(positions),
  396. });
  397. };
  398. function createSimplePolylineGeometry(simplePolylineGeometry, offset) {
  399. if (when.defined(offset)) {
  400. simplePolylineGeometry = SimplePolylineGeometry.unpack(
  401. simplePolylineGeometry,
  402. offset
  403. );
  404. }
  405. simplePolylineGeometry._ellipsoid = Cartesian2.Ellipsoid.clone(
  406. simplePolylineGeometry._ellipsoid
  407. );
  408. return SimplePolylineGeometry.createGeometry(simplePolylineGeometry);
  409. }
  410. return createSimplePolylineGeometry;
  411. });
  412. //# sourceMappingURL=createSimplePolylineGeometry.js.map