AttributeCompression-75249b5e.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  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', './Math-1124a290', './Cartesian2-33d2657c'], function (exports, when, Check, _Math, Cartesian2) { 'use strict';
  24. var RIGHT_SHIFT = 1.0 / 256.0;
  25. var LEFT_SHIFT = 256.0;
  26. /**
  27. * Attribute compression and decompression functions.
  28. *
  29. * @namespace AttributeCompression
  30. *
  31. * @private
  32. */
  33. var AttributeCompression = {};
  34. /**
  35. * Encodes a normalized vector into 2 SNORM values in the range of [0-rangeMax] following the 'oct' encoding.
  36. *
  37. * Oct encoding is a compact representation of unit length vectors.
  38. * The 'oct' encoding is described in "A Survey of Efficient Representations of Independent Unit Vectors",
  39. * Cigolle et al 2014: {@link http://jcgt.org/published/0003/02/01/}
  40. *
  41. * @param {Cartesian3} vector The normalized vector to be compressed into 2 component 'oct' encoding.
  42. * @param {Cartesian2} result The 2 component oct-encoded unit length vector.
  43. * @param {Number} rangeMax The maximum value of the SNORM range. The encoded vector is stored in log2(rangeMax+1) bits.
  44. * @returns {Cartesian2} The 2 component oct-encoded unit length vector.
  45. *
  46. * @exception {DeveloperError} vector must be normalized.
  47. *
  48. * @see AttributeCompression.octDecodeInRange
  49. */
  50. AttributeCompression.octEncodeInRange = function (vector, rangeMax, result) {
  51. //>>includeStart('debug', pragmas.debug);
  52. Check.Check.defined("vector", vector);
  53. Check.Check.defined("result", result);
  54. var magSquared = Cartesian2.Cartesian3.magnitudeSquared(vector);
  55. if (Math.abs(magSquared - 1.0) > _Math.CesiumMath.EPSILON6) {
  56. throw new Check.DeveloperError("vector must be normalized.");
  57. }
  58. //>>includeEnd('debug');
  59. result.x =
  60. vector.x / (Math.abs(vector.x) + Math.abs(vector.y) + Math.abs(vector.z));
  61. result.y =
  62. vector.y / (Math.abs(vector.x) + Math.abs(vector.y) + Math.abs(vector.z));
  63. if (vector.z < 0) {
  64. var x = result.x;
  65. var y = result.y;
  66. result.x = (1.0 - Math.abs(y)) * _Math.CesiumMath.signNotZero(x);
  67. result.y = (1.0 - Math.abs(x)) * _Math.CesiumMath.signNotZero(y);
  68. }
  69. result.x = _Math.CesiumMath.toSNorm(result.x, rangeMax);
  70. result.y = _Math.CesiumMath.toSNorm(result.y, rangeMax);
  71. return result;
  72. };
  73. /**
  74. * Encodes a normalized vector into 2 SNORM values in the range of [0-255] following the 'oct' encoding.
  75. *
  76. * @param {Cartesian3} vector The normalized vector to be compressed into 2 byte 'oct' encoding.
  77. * @param {Cartesian2} result The 2 byte oct-encoded unit length vector.
  78. * @returns {Cartesian2} The 2 byte oct-encoded unit length vector.
  79. *
  80. * @exception {DeveloperError} vector must be normalized.
  81. *
  82. * @see AttributeCompression.octEncodeInRange
  83. * @see AttributeCompression.octDecode
  84. */
  85. AttributeCompression.octEncode = function (vector, result) {
  86. return AttributeCompression.octEncodeInRange(vector, 255, result);
  87. };
  88. var octEncodeScratch = new Cartesian2.Cartesian2();
  89. var uint8ForceArray = new Uint8Array(1);
  90. function forceUint8(value) {
  91. uint8ForceArray[0] = value;
  92. return uint8ForceArray[0];
  93. }
  94. /**
  95. * @param {Cartesian3} vector The normalized vector to be compressed into 4 byte 'oct' encoding.
  96. * @param {Cartesian4} result The 4 byte oct-encoded unit length vector.
  97. * @returns {Cartesian4} The 4 byte oct-encoded unit length vector.
  98. *
  99. * @exception {DeveloperError} vector must be normalized.
  100. *
  101. * @see AttributeCompression.octEncodeInRange
  102. * @see AttributeCompression.octDecodeFromCartesian4
  103. */
  104. AttributeCompression.octEncodeToCartesian4 = function (vector, result) {
  105. AttributeCompression.octEncodeInRange(vector, 65535, octEncodeScratch);
  106. result.x = forceUint8(octEncodeScratch.x * RIGHT_SHIFT);
  107. result.y = forceUint8(octEncodeScratch.x);
  108. result.z = forceUint8(octEncodeScratch.y * RIGHT_SHIFT);
  109. result.w = forceUint8(octEncodeScratch.y);
  110. return result;
  111. };
  112. /**
  113. * Decodes a unit-length vector in 'oct' encoding to a normalized 3-component vector.
  114. *
  115. * @param {Number} x The x component of the oct-encoded unit length vector.
  116. * @param {Number} y The y component of the oct-encoded unit length vector.
  117. * @param {Number} rangeMax The maximum value of the SNORM range. The encoded vector is stored in log2(rangeMax+1) bits.
  118. * @param {Cartesian3} result The decoded and normalized vector
  119. * @returns {Cartesian3} The decoded and normalized vector.
  120. *
  121. * @exception {DeveloperError} x and y must be unsigned normalized integers between 0 and rangeMax.
  122. *
  123. * @see AttributeCompression.octEncodeInRange
  124. */
  125. AttributeCompression.octDecodeInRange = function (x, y, rangeMax, result) {
  126. //>>includeStart('debug', pragmas.debug);
  127. Check.Check.defined("result", result);
  128. if (x < 0 || x > rangeMax || y < 0 || y > rangeMax) {
  129. throw new Check.DeveloperError(
  130. "x and y must be unsigned normalized integers between 0 and " + rangeMax
  131. );
  132. }
  133. //>>includeEnd('debug');
  134. result.x = _Math.CesiumMath.fromSNorm(x, rangeMax);
  135. result.y = _Math.CesiumMath.fromSNorm(y, rangeMax);
  136. result.z = 1.0 - (Math.abs(result.x) + Math.abs(result.y));
  137. if (result.z < 0.0) {
  138. var oldVX = result.x;
  139. result.x = (1.0 - Math.abs(result.y)) * _Math.CesiumMath.signNotZero(oldVX);
  140. result.y = (1.0 - Math.abs(oldVX)) * _Math.CesiumMath.signNotZero(result.y);
  141. }
  142. return Cartesian2.Cartesian3.normalize(result, result);
  143. };
  144. /**
  145. * Decodes a unit-length vector in 2 byte 'oct' encoding to a normalized 3-component vector.
  146. *
  147. * @param {Number} x The x component of the oct-encoded unit length vector.
  148. * @param {Number} y The y component of the oct-encoded unit length vector.
  149. * @param {Cartesian3} result The decoded and normalized vector.
  150. * @returns {Cartesian3} The decoded and normalized vector.
  151. *
  152. * @exception {DeveloperError} x and y must be an unsigned normalized integer between 0 and 255.
  153. *
  154. * @see AttributeCompression.octDecodeInRange
  155. */
  156. AttributeCompression.octDecode = function (x, y, result) {
  157. return AttributeCompression.octDecodeInRange(x, y, 255, result);
  158. };
  159. /**
  160. * Decodes a unit-length vector in 4 byte 'oct' encoding to a normalized 3-component vector.
  161. *
  162. * @param {Cartesian4} encoded The oct-encoded unit length vector.
  163. * @param {Cartesian3} result The decoded and normalized vector.
  164. * @returns {Cartesian3} The decoded and normalized vector.
  165. *
  166. * @exception {DeveloperError} x, y, z, and w must be unsigned normalized integers between 0 and 255.
  167. *
  168. * @see AttributeCompression.octDecodeInRange
  169. * @see AttributeCompression.octEncodeToCartesian4
  170. */
  171. AttributeCompression.octDecodeFromCartesian4 = function (encoded, result) {
  172. //>>includeStart('debug', pragmas.debug);
  173. Check.Check.typeOf.object("encoded", encoded);
  174. Check.Check.typeOf.object("result", result);
  175. //>>includeEnd('debug');
  176. var x = encoded.x;
  177. var y = encoded.y;
  178. var z = encoded.z;
  179. var w = encoded.w;
  180. //>>includeStart('debug', pragmas.debug);
  181. if (
  182. x < 0 ||
  183. x > 255 ||
  184. y < 0 ||
  185. y > 255 ||
  186. z < 0 ||
  187. z > 255 ||
  188. w < 0 ||
  189. w > 255
  190. ) {
  191. throw new Check.DeveloperError(
  192. "x, y, z, and w must be unsigned normalized integers between 0 and 255"
  193. );
  194. }
  195. //>>includeEnd('debug');
  196. var xOct16 = x * LEFT_SHIFT + y;
  197. var yOct16 = z * LEFT_SHIFT + w;
  198. return AttributeCompression.octDecodeInRange(xOct16, yOct16, 65535, result);
  199. };
  200. /**
  201. * Packs an oct encoded vector into a single floating-point number.
  202. *
  203. * @param {Cartesian2} encoded The oct encoded vector.
  204. * @returns {Number} The oct encoded vector packed into a single float.
  205. *
  206. */
  207. AttributeCompression.octPackFloat = function (encoded) {
  208. //>>includeStart('debug', pragmas.debug);
  209. Check.Check.defined("encoded", encoded);
  210. //>>includeEnd('debug');
  211. return 256.0 * encoded.x + encoded.y;
  212. };
  213. var scratchEncodeCart2 = new Cartesian2.Cartesian2();
  214. /**
  215. * Encodes a normalized vector into 2 SNORM values in the range of [0-255] following the 'oct' encoding and
  216. * stores those values in a single float-point number.
  217. *
  218. * @param {Cartesian3} vector The normalized vector to be compressed into 2 byte 'oct' encoding.
  219. * @returns {Number} The 2 byte oct-encoded unit length vector.
  220. *
  221. * @exception {DeveloperError} vector must be normalized.
  222. */
  223. AttributeCompression.octEncodeFloat = function (vector) {
  224. AttributeCompression.octEncode(vector, scratchEncodeCart2);
  225. return AttributeCompression.octPackFloat(scratchEncodeCart2);
  226. };
  227. /**
  228. * Decodes a unit-length vector in 'oct' encoding packed in a floating-point number to a normalized 3-component vector.
  229. *
  230. * @param {Number} value The oct-encoded unit length vector stored as a single floating-point number.
  231. * @param {Cartesian3} result The decoded and normalized vector
  232. * @returns {Cartesian3} The decoded and normalized vector.
  233. *
  234. */
  235. AttributeCompression.octDecodeFloat = function (value, result) {
  236. //>>includeStart('debug', pragmas.debug);
  237. Check.Check.defined("value", value);
  238. //>>includeEnd('debug');
  239. var temp = value / 256.0;
  240. var x = Math.floor(temp);
  241. var y = (temp - x) * 256.0;
  242. return AttributeCompression.octDecode(x, y, result);
  243. };
  244. /**
  245. * Encodes three normalized vectors into 6 SNORM values in the range of [0-255] following the 'oct' encoding and
  246. * packs those into two floating-point numbers.
  247. *
  248. * @param {Cartesian3} v1 A normalized vector to be compressed.
  249. * @param {Cartesian3} v2 A normalized vector to be compressed.
  250. * @param {Cartesian3} v3 A normalized vector to be compressed.
  251. * @param {Cartesian2} result The 'oct' encoded vectors packed into two floating-point numbers.
  252. * @returns {Cartesian2} The 'oct' encoded vectors packed into two floating-point numbers.
  253. *
  254. */
  255. AttributeCompression.octPack = function (v1, v2, v3, result) {
  256. //>>includeStart('debug', pragmas.debug);
  257. Check.Check.defined("v1", v1);
  258. Check.Check.defined("v2", v2);
  259. Check.Check.defined("v3", v3);
  260. Check.Check.defined("result", result);
  261. //>>includeEnd('debug');
  262. var encoded1 = AttributeCompression.octEncodeFloat(v1);
  263. var encoded2 = AttributeCompression.octEncodeFloat(v2);
  264. var encoded3 = AttributeCompression.octEncode(v3, scratchEncodeCart2);
  265. result.x = 65536.0 * encoded3.x + encoded1;
  266. result.y = 65536.0 * encoded3.y + encoded2;
  267. return result;
  268. };
  269. /**
  270. * Decodes three unit-length vectors in 'oct' encoding packed into a floating-point number to a normalized 3-component vector.
  271. *
  272. * @param {Cartesian2} packed The three oct-encoded unit length vectors stored as two floating-point number.
  273. * @param {Cartesian3} v1 One decoded and normalized vector.
  274. * @param {Cartesian3} v2 One decoded and normalized vector.
  275. * @param {Cartesian3} v3 One decoded and normalized vector.
  276. */
  277. AttributeCompression.octUnpack = function (packed, v1, v2, v3) {
  278. //>>includeStart('debug', pragmas.debug);
  279. Check.Check.defined("packed", packed);
  280. Check.Check.defined("v1", v1);
  281. Check.Check.defined("v2", v2);
  282. Check.Check.defined("v3", v3);
  283. //>>includeEnd('debug');
  284. var temp = packed.x / 65536.0;
  285. var x = Math.floor(temp);
  286. var encodedFloat1 = (temp - x) * 65536.0;
  287. temp = packed.y / 65536.0;
  288. var y = Math.floor(temp);
  289. var encodedFloat2 = (temp - y) * 65536.0;
  290. AttributeCompression.octDecodeFloat(encodedFloat1, v1);
  291. AttributeCompression.octDecodeFloat(encodedFloat2, v2);
  292. AttributeCompression.octDecode(x, y, v3);
  293. };
  294. /**
  295. * Pack texture coordinates into a single float. The texture coordinates will only preserve 12 bits of precision.
  296. *
  297. * @param {Cartesian2} textureCoordinates The texture coordinates to compress. Both coordinates must be in the range 0.0-1.0.
  298. * @returns {Number} The packed texture coordinates.
  299. *
  300. */
  301. AttributeCompression.compressTextureCoordinates = function (
  302. textureCoordinates
  303. ) {
  304. //>>includeStart('debug', pragmas.debug);
  305. Check.Check.defined("textureCoordinates", textureCoordinates);
  306. //>>includeEnd('debug');
  307. // Move x and y to the range 0-4095;
  308. var x = (textureCoordinates.x * 4095.0) | 0;
  309. var y = (textureCoordinates.y * 4095.0) | 0;
  310. return 4096.0 * x + y;
  311. };
  312. /**
  313. * Decompresses texture coordinates that were packed into a single float.
  314. *
  315. * @param {Number} compressed The compressed texture coordinates.
  316. * @param {Cartesian2} result The decompressed texture coordinates.
  317. * @returns {Cartesian2} The modified result parameter.
  318. *
  319. */
  320. AttributeCompression.decompressTextureCoordinates = function (
  321. compressed,
  322. result
  323. ) {
  324. //>>includeStart('debug', pragmas.debug);
  325. Check.Check.defined("compressed", compressed);
  326. Check.Check.defined("result", result);
  327. //>>includeEnd('debug');
  328. var temp = compressed / 4096.0;
  329. var xZeroTo4095 = Math.floor(temp);
  330. result.x = xZeroTo4095 / 4095.0;
  331. result.y = (compressed - xZeroTo4095 * 4096) / 4095;
  332. return result;
  333. };
  334. function zigZagDecode(value) {
  335. return (value >> 1) ^ -(value & 1);
  336. }
  337. /**
  338. * Decodes delta and ZigZag encoded vertices. This modifies the buffers in place.
  339. *
  340. * @param {Uint16Array} uBuffer The buffer view of u values.
  341. * @param {Uint16Array} vBuffer The buffer view of v values.
  342. * @param {Uint16Array} [heightBuffer] The buffer view of height values.
  343. *
  344. * @see {@link https://github.com/CesiumGS/quantized-mesh|quantized-mesh-1.0 terrain format}
  345. */
  346. AttributeCompression.zigZagDeltaDecode = function (
  347. uBuffer,
  348. vBuffer,
  349. heightBuffer
  350. ) {
  351. //>>includeStart('debug', pragmas.debug);
  352. Check.Check.defined("uBuffer", uBuffer);
  353. Check.Check.defined("vBuffer", vBuffer);
  354. Check.Check.typeOf.number.equals(
  355. "uBuffer.length",
  356. "vBuffer.length",
  357. uBuffer.length,
  358. vBuffer.length
  359. );
  360. if (when.defined(heightBuffer)) {
  361. Check.Check.typeOf.number.equals(
  362. "uBuffer.length",
  363. "heightBuffer.length",
  364. uBuffer.length,
  365. heightBuffer.length
  366. );
  367. }
  368. //>>includeEnd('debug');
  369. var count = uBuffer.length;
  370. var u = 0;
  371. var v = 0;
  372. var height = 0;
  373. for (var i = 0; i < count; ++i) {
  374. u += zigZagDecode(uBuffer[i]);
  375. v += zigZagDecode(vBuffer[i]);
  376. uBuffer[i] = u;
  377. vBuffer[i] = v;
  378. if (when.defined(heightBuffer)) {
  379. height += zigZagDecode(heightBuffer[i]);
  380. heightBuffer[i] = height;
  381. }
  382. }
  383. };
  384. exports.AttributeCompression = AttributeCompression;
  385. });
  386. //# sourceMappingURL=AttributeCompression-75249b5e.js.map