patch_code.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:9k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file patch_code.cpp
  3.  * @brief Encode patch DCT data into bitcode.
  4.  *
  5.  * $LicenseInfo:firstyear=2000&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2000-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "linden_common.h"
  33. #include "llmath.h"
  34. //#include "vmath.h"
  35. #include "v3math.h"
  36. #include "patch_dct.h"
  37. #include "patch_code.h"
  38. #include "bitpack.h"
  39. U32 gPatchSize, gWordBits;
  40. void init_patch_coding(LLBitPack &bitpack)
  41. {
  42. bitpack.resetBitPacking();
  43. }
  44. void code_patch_group_header(LLBitPack &bitpack, LLGroupHeader *gopp)
  45. {
  46. #ifdef LL_BIG_ENDIAN
  47. U8 *stride = (U8 *)&gopp->stride;
  48. bitpack.bitPack(&(stride[1]), 8);
  49. bitpack.bitPack(&(stride[0]), 8);
  50. #else
  51. bitpack.bitPack((U8 *)&gopp->stride, 16);
  52. #endif
  53. bitpack.bitPack((U8 *)&gopp->patch_size, 8);
  54. bitpack.bitPack((U8 *)&gopp->layer_type, 8);
  55. gPatchSize = gopp->patch_size; 
  56. }
  57. void code_patch_header(LLBitPack &bitpack, LLPatchHeader *ph, S32 *patch)
  58. {
  59. S32 i, j, temp, patch_size = gPatchSize, wbits = (ph->quant_wbits & 0xf) + 2;
  60. U32     max_wbits = wbits + 5, min_wbits = wbits>>1;
  61. wbits = min_wbits;
  62. for (i = 0; i < (int) patch_size*patch_size; i++)
  63. {
  64. temp = patch[i];
  65. if (temp)
  66. {
  67. if (temp < 0)
  68. temp *= -1;
  69. for (j = max_wbits; j > (int) min_wbits; j--)
  70. {
  71. if (temp & (1<<j))
  72. {
  73. if (j > wbits)
  74. wbits = j;
  75. break;
  76. }
  77. }
  78. }
  79. }
  80. wbits += 1;
  81. ph->quant_wbits &= 0xf0;
  82. if (  (wbits > 17)
  83. ||(wbits < 2))
  84. {
  85. llerrs << "Bits needed per word in code_patch_header out of legal range.  Adjust compression quatization." << llendl;
  86. }
  87. ph->quant_wbits |= (wbits - 2);
  88. bitpack.bitPack((U8 *)&ph->quant_wbits, 8);
  89. #ifdef LL_BIG_ENDIAN
  90. U8 *offset = (U8 *)&ph->dc_offset;
  91. bitpack.bitPack(&(offset[3]), 8);
  92. bitpack.bitPack(&(offset[2]), 8);
  93. bitpack.bitPack(&(offset[1]), 8);
  94. bitpack.bitPack(&(offset[0]), 8);
  95. #else
  96. bitpack.bitPack((U8 *)&ph->dc_offset, 32);
  97. #endif
  98. #ifdef LL_BIG_ENDIAN
  99. U8 *range = (U8 *)&ph->range;
  100. bitpack.bitPack(&(range[1]), 8);
  101. bitpack.bitPack(&(range[0]), 8);
  102. #else
  103. bitpack.bitPack((U8 *)&ph->range, 16);
  104. #endif
  105. #ifdef LL_BIG_ENDIAN
  106. U8 *ids = (U8 *)&ph->patchids;
  107. bitpack.bitPack(&(ids[1]), 8);
  108. bitpack.bitPack(&(ids[0]), 2);
  109. #else
  110. bitpack.bitPack((U8 *)&ph->patchids, 10);
  111. #endif
  112. gWordBits = wbits;
  113. }
  114. void code_end_of_data(LLBitPack &bitpack)
  115. {
  116. bitpack.bitPack((U8 *)&END_OF_PATCHES, 8);
  117. }
  118. void code_patch(LLBitPack &bitpack, S32 *patch, S32 postquant)
  119. {
  120. S32 i, j, patch_size = gPatchSize, wbits = gWordBits;
  121. S32 temp;
  122. BOOL b_eob;
  123. if (  (postquant > patch_size*patch_size)
  124. ||(postquant < 0))
  125. {
  126. llerrs << "Bad postquant in code_patch!"  << llendl;
  127. }
  128. if (postquant)
  129. patch[patch_size*patch_size - postquant] = 0;
  130. for (i = 0; i < patch_size*patch_size; i++)
  131. {
  132. b_eob = FALSE;
  133. temp = patch[i];
  134. if (!temp)
  135. {
  136. b_eob = TRUE;
  137. for (j = i; j < patch_size*patch_size - postquant; j++)
  138. {
  139. if (patch[j])
  140. {
  141. b_eob = FALSE;
  142. break;
  143. }
  144. }
  145. if (b_eob)
  146. {
  147. bitpack.bitPack((U8 *)&ZERO_EOB, 2);
  148. return;
  149. }
  150. else
  151. {
  152. bitpack.bitPack((U8 *)&ZERO_CODE, 1);
  153. }
  154. }
  155. else
  156. {
  157. if (temp < 0)
  158. {
  159. temp *= -1;
  160. if (temp > (1<<wbits))
  161. {
  162. temp = (1<<wbits);
  163. // printf("patch quatization exceeding allowable bits!");
  164. }
  165. bitpack.bitPack((U8 *)&NEGATIVE_VALUE, 3);
  166. bitpack.bitPack((U8 *)&temp, wbits);
  167. }
  168. else
  169. {
  170. if (temp > (1<<wbits))
  171. {
  172. temp = (1<<wbits);
  173. // printf("patch quatization exceeding allowable bits!");
  174. }
  175. bitpack.bitPack((U8 *)&POSITIVE_VALUE, 3);
  176. bitpack.bitPack((U8 *)&temp, wbits);
  177. }
  178. }
  179. }
  180. }
  181. void end_patch_coding(LLBitPack &bitpack)
  182. {
  183. bitpack.flushBitPack();
  184. }
  185. void init_patch_decoding(LLBitPack &bitpack)
  186. {
  187. bitpack.resetBitPacking();
  188. }
  189. void decode_patch_group_header(LLBitPack &bitpack, LLGroupHeader *gopp)
  190. {
  191. U16 retvalu16;
  192. retvalu16 = 0;
  193. #ifdef LL_BIG_ENDIAN
  194. U8 *ret = (U8 *)&retvalu16;
  195. bitpack.bitUnpack(&(ret[1]), 8);
  196. bitpack.bitUnpack(&(ret[0]), 8);
  197. #else
  198. bitpack.bitUnpack((U8 *)&retvalu16, 16);
  199. #endif
  200. gopp->stride = retvalu16;
  201. U8 retvalu8 = 0;
  202. bitpack.bitUnpack(&retvalu8, 8);
  203. gopp->patch_size = retvalu8;
  204. retvalu8 = 0;
  205. bitpack.bitUnpack(&retvalu8, 8);
  206. gopp->layer_type = retvalu8;
  207. gPatchSize = gopp->patch_size; 
  208. }
  209. void decode_patch_header(LLBitPack &bitpack, LLPatchHeader *ph)
  210. {
  211. U8 retvalu8;
  212. retvalu8 = 0;
  213. bitpack.bitUnpack(&retvalu8, 8);
  214. ph->quant_wbits = retvalu8;
  215. if (END_OF_PATCHES == ph->quant_wbits)
  216. {
  217. // End of data, blitz the rest.
  218. ph->dc_offset = 0;
  219. ph->range = 0;
  220. ph->patchids = 0;
  221. return;
  222. }
  223. U32 retvalu32 = 0;
  224. #ifdef LL_BIG_ENDIAN
  225. U8 *ret = (U8 *)&retvalu32;
  226. bitpack.bitUnpack(&(ret[3]), 8);
  227. bitpack.bitUnpack(&(ret[2]), 8);
  228. bitpack.bitUnpack(&(ret[1]), 8);
  229. bitpack.bitUnpack(&(ret[0]), 8);
  230. #else
  231. bitpack.bitUnpack((U8 *)&retvalu32, 32);
  232. #endif
  233. ph->dc_offset = *(F32 *)&retvalu32;
  234. U16 retvalu16 = 0;
  235. #ifdef LL_BIG_ENDIAN
  236. ret = (U8 *)&retvalu16;
  237. bitpack.bitUnpack(&(ret[1]), 8);
  238. bitpack.bitUnpack(&(ret[0]), 8);
  239. #else
  240. bitpack.bitUnpack((U8 *)&retvalu16, 16);
  241. #endif
  242. ph->range = retvalu16;
  243. retvalu16 = 0;
  244. #ifdef LL_BIG_ENDIAN
  245. ret = (U8 *)&retvalu16;
  246. bitpack.bitUnpack(&(ret[1]), 8);
  247. bitpack.bitUnpack(&(ret[0]), 2);
  248. #else
  249. bitpack.bitUnpack((U8 *)&retvalu16, 10);
  250. #endif
  251. ph->patchids = retvalu16;
  252. gWordBits = (ph->quant_wbits & 0xf) + 2;
  253. }
  254. void decode_patch(LLBitPack &bitpack, S32 *patches)
  255. {
  256. #ifdef LL_BIG_ENDIAN
  257. S32 i, j, patch_size = gPatchSize, wbits = gWordBits;
  258. U8 tempu8;
  259. U16 tempu16;
  260. U32 tempu32;
  261. for (i = 0; i < patch_size*patch_size; i++)
  262. {
  263. bitpack.bitUnpack((U8 *)&tempu8, 1);
  264. if (tempu8)
  265. {
  266. // either 0 EOB or Value
  267. bitpack.bitUnpack((U8 *)&tempu8, 1);
  268. if (tempu8)
  269. {
  270. // value
  271. bitpack.bitUnpack((U8 *)&tempu8, 1);
  272. if (tempu8)
  273. {
  274. // negative
  275. patches[i] = -1;
  276. }
  277. else
  278. {
  279. // positive
  280. patches[i] = 1;
  281. }
  282. if (wbits <= 8)
  283. {
  284. bitpack.bitUnpack((U8 *)&tempu8, wbits);
  285. patches[i] *= tempu8;
  286. }
  287. else if (wbits <= 16)
  288. {
  289. tempu16 = 0;
  290. U8 *ret = (U8 *)&tempu16;
  291. bitpack.bitUnpack(&(ret[1]), 8);
  292. bitpack.bitUnpack(&(ret[0]), wbits - 8);
  293. patches[i] *= tempu16;
  294. }
  295. else if (wbits <= 24)
  296. {
  297. tempu32 = 0;
  298. U8 *ret = (U8 *)&tempu32;
  299. bitpack.bitUnpack(&(ret[2]), 8);
  300. bitpack.bitUnpack(&(ret[1]), 8);
  301. bitpack.bitUnpack(&(ret[0]), wbits - 16);
  302. patches[i] *= tempu32;
  303. }
  304. else if (wbits <= 32)
  305. {
  306. tempu32 = 0;
  307. U8 *ret = (U8 *)&tempu32;
  308. bitpack.bitUnpack(&(ret[3]), 8);
  309. bitpack.bitUnpack(&(ret[2]), 8);
  310. bitpack.bitUnpack(&(ret[1]), 8);
  311. bitpack.bitUnpack(&(ret[0]), wbits - 24);
  312. patches[i] *= tempu32;
  313. }
  314. }
  315. else
  316. {
  317. for (j = i; j < patch_size*patch_size; j++)
  318. {
  319. patches[j] = 0;
  320. }
  321. return;
  322. }
  323. }
  324. else
  325. {
  326. patches[i] = 0;
  327. }
  328. }
  329. #else
  330. S32 i, j, patch_size = gPatchSize, wbits = gWordBits;
  331. U32 temp;
  332. for (i = 0; i < patch_size*patch_size; i++)
  333. {
  334. temp = 0;
  335. bitpack.bitUnpack((U8 *)&temp, 1);
  336. if (temp)
  337. {
  338. // either 0 EOB or Value
  339. temp = 0;
  340. bitpack.bitUnpack((U8 *)&temp, 1);
  341. if (temp)
  342. {
  343. // value
  344. temp = 0;
  345. bitpack.bitUnpack((U8 *)&temp, 1);
  346. if (temp)
  347. {
  348. // negative
  349. temp = 0;
  350. bitpack.bitUnpack((U8 *)&temp, wbits);
  351. patches[i] = temp;
  352. patches[i] *= -1;
  353. }
  354. else
  355. {
  356. // positive
  357. temp = 0;
  358. bitpack.bitUnpack((U8 *)&temp, wbits);
  359. patches[i] = temp;
  360. }
  361. }
  362. else
  363. {
  364. for (j = i; j < patch_size*patch_size; j++)
  365. {
  366. patches[j] = 0;
  367. }
  368. return;
  369. }
  370. }
  371. else
  372. {
  373. patches[i] = 0;
  374. }
  375. }
  376. #endif
  377. }