wave.cpp
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:5k
源码类别:

其他游戏

开发平台:

Visual C++

  1. #include "wave.h"
  2. /* Tables necessary dor decompression */
  3. static unsigned long wave_table_1503f120[] = {
  4. 0xFFFFFFFF, 0x00000000, 0xFFFFFFFF, 0x00000004, 0xFFFFFFFF, 0x00000002, 0xFFFFFFFF, 0x00000006,
  5. 0xFFFFFFFF, 0x00000001, 0xFFFFFFFF, 0x00000005, 0xFFFFFFFF, 0x00000003, 0xFFFFFFFF, 0x00000007,
  6. 0xFFFFFFFF, 0x00000001, 0xFFFFFFFF, 0x00000005, 0xFFFFFFFF, 0x00000003, 0xFFFFFFFF, 0x00000007,  
  7. 0xFFFFFFFF, 0x00000002, 0xFFFFFFFF, 0x00000004, 0xFFFFFFFF, 0x00000006, 0xFFFFFFFF, 0x00000008  
  8. };
  9. static unsigned long wave_table_1503f1a0[] = {
  10. 0x00000007, 0x00000008, 0x00000009, 0x0000000A, 0x0000000B, 0x0000000C, 0x0000000D, 0x0000000E,
  11. 0x00000010, 0x00000011, 0x00000013, 0x00000015, 0x00000017, 0x00000019, 0x0000001C, 0x0000001F,
  12. 0x00000022, 0x00000025, 0x00000029, 0x0000002D, 0x00000032, 0x00000037, 0x0000003C, 0x00000042,
  13. 0x00000049, 0x00000050, 0x00000058, 0x00000061, 0x0000006B, 0x00000076, 0x00000082, 0x0000008F,
  14. 0x0000009D, 0x000000AD, 0x000000BE, 0x000000D1, 0x000000E6, 0x000000FD, 0x00000117, 0x00000133,
  15. 0x00000151, 0x00000173, 0x00000198, 0x000001C1, 0x000001EE, 0x00000220, 0x00000256, 0x00000292,
  16. 0x000002D4, 0x0000031C, 0x0000036C, 0x000003C3, 0x00000424, 0x0000048E, 0x00000502, 0x00000583,
  17. 0x00000610, 0x000006AB, 0x00000756, 0x00000812, 0x000008E0, 0x000009C3, 0x00000ABD, 0x00000BD0,
  18. 0x00000CFF, 0x00000E4C, 0x00000FBA, 0x0000114C, 0x00001307, 0x000014EE, 0x00001706, 0x00001954,
  19. 0x00001BDC, 0x00001EA5, 0x000021B6, 0x00002515, 0x000028CA, 0x00002CDF, 0x0000315B, 0x0000364B,
  20. 0x00003BB9, 0x000041B2, 0x00004844, 0x00004F7E, 0x00005771, 0x0000602F, 0x000069CE, 0x00007462,
  21. 0x00007FFF
  22. };
  23. /*
  24.  *  Decompress a wave file, mono or stereo
  25.  *
  26.  *  Offset: 1500F230
  27.  */
  28. int libmpq_wave_decompress(unsigned char *out_buf, int out_length, unsigned char *in_buf, int in_length, int channels) {
  29. byte_and_short out;
  30. byte_and_short in;
  31. unsigned char *in_end = in_buf + in_length; /* End on input buffer */
  32. unsigned long index;
  33. long nr_array1[2];
  34. long nr_array2[2];
  35. int count = 0;
  36. out.pb     = out_buf;
  37. in.pb      = in_buf;
  38. nr_array1[0] = 0x2C;
  39. nr_array1[1] = 0x2C;
  40. in.pw++;
  41. /* 15007AD7 */
  42. for (count = 0; count < channels; count++) {
  43. long temp;
  44. temp = *(short *)in.pw++;
  45. nr_array2[count] = temp;
  46. if (out_length < 2) {
  47. return int(out.pb - out_buf);
  48. }
  49. *out.pw++   = (unsigned short)temp;
  50. out_length -= 2;
  51. }
  52. index = channels - 1;
  53. while (in.pb < in_end) {
  54. unsigned char one_byte = *in.pb++;
  55. if (channels == 2) {
  56. index = (index == 0) ? 1 : 0;
  57. }
  58. /*
  59.  * Get one byte from input buffer
  60.  * 15007B25
  61.  */
  62. if (one_byte & 0x80) {
  63. /* 15007B32 */
  64. switch(one_byte & 0x7F) {
  65. case 0: /* 15007B8E */
  66. if (nr_array1[index] != 0) {
  67. nr_array1[index]--;
  68. }
  69. if (out_length < 2) {
  70. break;
  71. }
  72. *out.pw++ = (unsigned short)nr_array2[index];
  73. out_length -= 2;
  74. continue;
  75. case 1: /* 15007B72 */
  76. nr_array1[index] += 8; /* EBX also */
  77. if (nr_array1[index] > 0x58) {
  78. nr_array1[index] = 0x58;
  79. }
  80. if (channels == 2) {
  81. index = (index == 0) ? 1 : 0;
  82. }
  83. continue;
  84. case 2:
  85. continue;
  86. default:
  87. nr_array1[index] -= 8;
  88. if (nr_array1[index] < 0) {
  89. nr_array1[index] = 0;
  90. }
  91. if (channels != 2) {
  92. continue;
  93. }
  94. index = (index == 0) ? 1 : 0;
  95. continue;
  96. }
  97. } else {
  98. unsigned long temp1 = wave_table_1503f1a0[nr_array1[index]]; /* EDI */
  99. unsigned long temp2 = temp1 >> in_buf[1]; /* ESI */
  100. long temp3 = nr_array2[index]; /* ECX */
  101. if (one_byte & 0x01) { /* EBX = one_byte */
  102. temp2 += (temp1 >> 0);
  103. }
  104. if (one_byte & 0x02) {
  105. temp2 += (temp1 >> 1);
  106. }
  107. if (one_byte & 0x04) {
  108. temp2 += (temp1 >> 2);
  109. }
  110. if (one_byte & 0x08) {
  111. temp2 += (temp1 >> 3);
  112. }
  113. if (one_byte & 0x10) {
  114. temp2 += (temp1 >> 4);
  115. }
  116. if (one_byte & 0x20) {
  117. temp2 += (temp1 >> 5);
  118. }
  119. if(one_byte & 0x40) {
  120. temp3 -= temp2;
  121. if (temp3 <= (long)0xFFFF8000) {
  122. temp3 = (long)0xFFFF8000;
  123. }
  124. } else {
  125. temp3 += temp2;
  126. if (temp3 >= 0x7FFF) {
  127. temp3 = 0x7FFF;
  128. }
  129. }
  130. nr_array2[index] = temp3;
  131. if (out_length < 2) {
  132. break;
  133. }
  134. temp2 = nr_array1[index];
  135. one_byte &= 0x1F;
  136. *out.pw++ = (unsigned short)temp3;
  137. out_length -= 2;
  138. temp2 += wave_table_1503f120[one_byte];
  139. nr_array1[index] = temp2;
  140. if (nr_array1[index] < 0) {
  141. nr_array1[index] = 0;
  142. } else {
  143. if (nr_array1[index] > 0x58) {
  144. nr_array1[index] = 0x58;
  145. }
  146. }
  147. }
  148. }
  149. return int(out.pb - out_buf);
  150. }