createFrustumOutlineGeometry.js 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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', './Plane-fa30fc46', './VertexFormat-4d8b817a', './FrustumGeometry-45215f13'], function (when, Check, _Math, Cartesian2, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, GeometryAttributes, Plane, VertexFormat, FrustumGeometry) { 'use strict';
  24. var PERSPECTIVE = 0;
  25. var ORTHOGRAPHIC = 1;
  26. /**
  27. * A description of the outline of a frustum with the given the origin and orientation.
  28. *
  29. * @alias FrustumOutlineGeometry
  30. * @constructor
  31. *
  32. * @param {Object} options Object with the following properties:
  33. * @param {PerspectiveFrustum|OrthographicFrustum} options.frustum The frustum.
  34. * @param {Cartesian3} options.origin The origin of the frustum.
  35. * @param {Quaternion} options.orientation The orientation of the frustum.
  36. */
  37. function FrustumOutlineGeometry(options) {
  38. //>>includeStart('debug', pragmas.debug);
  39. Check.Check.typeOf.object("options", options);
  40. Check.Check.typeOf.object("options.frustum", options.frustum);
  41. Check.Check.typeOf.object("options.origin", options.origin);
  42. Check.Check.typeOf.object("options.orientation", options.orientation);
  43. //>>includeEnd('debug');
  44. var frustum = options.frustum;
  45. var orientation = options.orientation;
  46. var origin = options.origin;
  47. // This is private because it is used by DebugCameraPrimitive to draw a multi-frustum by
  48. // creating multiple FrustumOutlineGeometrys. This way the near plane of one frustum doesn't overlap
  49. // the far plane of another.
  50. var drawNearPlane = when.defaultValue(options._drawNearPlane, true);
  51. var frustumType;
  52. var frustumPackedLength;
  53. if (frustum instanceof FrustumGeometry.PerspectiveFrustum) {
  54. frustumType = PERSPECTIVE;
  55. frustumPackedLength = FrustumGeometry.PerspectiveFrustum.packedLength;
  56. } else if (frustum instanceof FrustumGeometry.OrthographicFrustum) {
  57. frustumType = ORTHOGRAPHIC;
  58. frustumPackedLength = FrustumGeometry.OrthographicFrustum.packedLength;
  59. }
  60. this._frustumType = frustumType;
  61. this._frustum = frustum.clone();
  62. this._origin = Cartesian2.Cartesian3.clone(origin);
  63. this._orientation = Transforms.Quaternion.clone(orientation);
  64. this._drawNearPlane = drawNearPlane;
  65. this._workerName = "createFrustumOutlineGeometry";
  66. /**
  67. * The number of elements used to pack the object into an array.
  68. * @type {Number}
  69. */
  70. this.packedLength =
  71. 2 + frustumPackedLength + Cartesian2.Cartesian3.packedLength + Transforms.Quaternion.packedLength;
  72. }
  73. /**
  74. * Stores the provided instance into the provided array.
  75. *
  76. * @param {FrustumOutlineGeometry} value The value to pack.
  77. * @param {Number[]} array The array to pack into.
  78. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  79. *
  80. * @returns {Number[]} The array that was packed into
  81. */
  82. FrustumOutlineGeometry.pack = function (value, array, startingIndex) {
  83. //>>includeStart('debug', pragmas.debug);
  84. Check.Check.typeOf.object("value", value);
  85. Check.Check.defined("array", array);
  86. //>>includeEnd('debug');
  87. startingIndex = when.defaultValue(startingIndex, 0);
  88. var frustumType = value._frustumType;
  89. var frustum = value._frustum;
  90. array[startingIndex++] = frustumType;
  91. if (frustumType === PERSPECTIVE) {
  92. FrustumGeometry.PerspectiveFrustum.pack(frustum, array, startingIndex);
  93. startingIndex += FrustumGeometry.PerspectiveFrustum.packedLength;
  94. } else {
  95. FrustumGeometry.OrthographicFrustum.pack(frustum, array, startingIndex);
  96. startingIndex += FrustumGeometry.OrthographicFrustum.packedLength;
  97. }
  98. Cartesian2.Cartesian3.pack(value._origin, array, startingIndex);
  99. startingIndex += Cartesian2.Cartesian3.packedLength;
  100. Transforms.Quaternion.pack(value._orientation, array, startingIndex);
  101. startingIndex += Transforms.Quaternion.packedLength;
  102. array[startingIndex] = value._drawNearPlane ? 1.0 : 0.0;
  103. return array;
  104. };
  105. var scratchPackPerspective = new FrustumGeometry.PerspectiveFrustum();
  106. var scratchPackOrthographic = new FrustumGeometry.OrthographicFrustum();
  107. var scratchPackQuaternion = new Transforms.Quaternion();
  108. var scratchPackorigin = new Cartesian2.Cartesian3();
  109. /**
  110. * Retrieves an instance from a packed array.
  111. *
  112. * @param {Number[]} array The packed array.
  113. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  114. * @param {FrustumOutlineGeometry} [result] The object into which to store the result.
  115. */
  116. FrustumOutlineGeometry.unpack = function (array, startingIndex, result) {
  117. //>>includeStart('debug', pragmas.debug);
  118. Check.Check.defined("array", array);
  119. //>>includeEnd('debug');
  120. startingIndex = when.defaultValue(startingIndex, 0);
  121. var frustumType = array[startingIndex++];
  122. var frustum;
  123. if (frustumType === PERSPECTIVE) {
  124. frustum = FrustumGeometry.PerspectiveFrustum.unpack(
  125. array,
  126. startingIndex,
  127. scratchPackPerspective
  128. );
  129. startingIndex += FrustumGeometry.PerspectiveFrustum.packedLength;
  130. } else {
  131. frustum = FrustumGeometry.OrthographicFrustum.unpack(
  132. array,
  133. startingIndex,
  134. scratchPackOrthographic
  135. );
  136. startingIndex += FrustumGeometry.OrthographicFrustum.packedLength;
  137. }
  138. var origin = Cartesian2.Cartesian3.unpack(array, startingIndex, scratchPackorigin);
  139. startingIndex += Cartesian2.Cartesian3.packedLength;
  140. var orientation = Transforms.Quaternion.unpack(
  141. array,
  142. startingIndex,
  143. scratchPackQuaternion
  144. );
  145. startingIndex += Transforms.Quaternion.packedLength;
  146. var drawNearPlane = array[startingIndex] === 1.0;
  147. if (!when.defined(result)) {
  148. return new FrustumOutlineGeometry({
  149. frustum: frustum,
  150. origin: origin,
  151. orientation: orientation,
  152. _drawNearPlane: drawNearPlane,
  153. });
  154. }
  155. var frustumResult =
  156. frustumType === result._frustumType ? result._frustum : undefined;
  157. result._frustum = frustum.clone(frustumResult);
  158. result._frustumType = frustumType;
  159. result._origin = Cartesian2.Cartesian3.clone(origin, result._origin);
  160. result._orientation = Transforms.Quaternion.clone(orientation, result._orientation);
  161. result._drawNearPlane = drawNearPlane;
  162. return result;
  163. };
  164. /**
  165. * Computes the geometric representation of a frustum outline, including its vertices, indices, and a bounding sphere.
  166. *
  167. * @param {FrustumOutlineGeometry} frustumGeometry A description of the frustum.
  168. * @returns {Geometry|undefined} The computed vertices and indices.
  169. */
  170. FrustumOutlineGeometry.createGeometry = function (frustumGeometry) {
  171. var frustumType = frustumGeometry._frustumType;
  172. var frustum = frustumGeometry._frustum;
  173. var origin = frustumGeometry._origin;
  174. var orientation = frustumGeometry._orientation;
  175. var drawNearPlane = frustumGeometry._drawNearPlane;
  176. var positions = new Float64Array(3 * 4 * 2);
  177. FrustumGeometry.FrustumGeometry._computeNearFarPlanes(
  178. origin,
  179. orientation,
  180. frustumType,
  181. frustum,
  182. positions
  183. );
  184. var attributes = new GeometryAttributes.GeometryAttributes({
  185. position: new GeometryAttribute.GeometryAttribute({
  186. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  187. componentsPerAttribute: 3,
  188. values: positions,
  189. }),
  190. });
  191. var offset;
  192. var index;
  193. var numberOfPlanes = drawNearPlane ? 2 : 1;
  194. var indices = new Uint16Array(8 * (numberOfPlanes + 1));
  195. // Build the near/far planes
  196. var i = drawNearPlane ? 0 : 1;
  197. for (; i < 2; ++i) {
  198. offset = drawNearPlane ? i * 8 : 0;
  199. index = i * 4;
  200. indices[offset] = index;
  201. indices[offset + 1] = index + 1;
  202. indices[offset + 2] = index + 1;
  203. indices[offset + 3] = index + 2;
  204. indices[offset + 4] = index + 2;
  205. indices[offset + 5] = index + 3;
  206. indices[offset + 6] = index + 3;
  207. indices[offset + 7] = index;
  208. }
  209. // Build the sides of the frustums
  210. for (i = 0; i < 2; ++i) {
  211. offset = (numberOfPlanes + i) * 8;
  212. index = i * 4;
  213. indices[offset] = index;
  214. indices[offset + 1] = index + 4;
  215. indices[offset + 2] = index + 1;
  216. indices[offset + 3] = index + 5;
  217. indices[offset + 4] = index + 2;
  218. indices[offset + 5] = index + 6;
  219. indices[offset + 6] = index + 3;
  220. indices[offset + 7] = index + 7;
  221. }
  222. return new GeometryAttribute.Geometry({
  223. attributes: attributes,
  224. indices: indices,
  225. primitiveType: GeometryAttribute.PrimitiveType.LINES,
  226. boundingSphere: Transforms.BoundingSphere.fromVertices(positions),
  227. });
  228. };
  229. function createFrustumOutlineGeometry(frustumGeometry, offset) {
  230. if (when.defined(offset)) {
  231. frustumGeometry = FrustumOutlineGeometry.unpack(frustumGeometry, offset);
  232. }
  233. return FrustumOutlineGeometry.createGeometry(frustumGeometry);
  234. }
  235. return createFrustumOutlineGeometry;
  236. });
  237. //# sourceMappingURL=createFrustumOutlineGeometry.js.map