sounds.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. /**
  2. @file assets.h
  3. This file containts sounds and music that can optionally be used by the game
  4. frontend. Every sound effect has 2048 samples, is stored as 8kHz mono format
  5. with 4 bit quantization, meaning every sound effect takes 1024 bytes. Sounds
  6. can be converted using a provided python script like this:
  7. python snd2array.py sound.raw
  8. Music is based on bytebeat (procedural waveforms generated by short bitwise
  9. operation formulas). The formulas were NOT copied from anywhere, they were
  10. discovered from scratch.
  11. by Miloslav Ciz (drummyfish), 2019
  12. Released under CC0 1.0 (https://creativecommons.org/publicdomain/zero/1.0/)
  13. plus a waiver of all other intellectual property. The goal of this work is to
  14. be and remain completely in the public domain forever, available for any use
  15. whatsoever.
  16. */
  17. #ifndef _SFG_SOUNDS_H
  18. #define _SFG_SOUNDS_H
  19. #define SFG_SFX_SAMPLE_COUNT 2048
  20. #define SFG_SFX_SIZE (SFG_SFX_SAMPLE_COUNT / 2)
  21. /**
  22. Gets an 8bit sound sample.
  23. */
  24. #define SFG_GET_SFX_SAMPLE(soundIndex,sampleIndex) \
  25. ((SFG_PROGRAM_MEMORY_U8(SFG_sounds + soundIndex * SFG_SFX_SIZE \
  26. + sampleIndex / 2) << (4 * ((sampleIndex % 2) != 0))) & 0xf0)
  27. #define SFG_TRACK_SAMPLES (512 * 1024)
  28. #define SFG_TRACK_COUNT 6
  29. /**
  30. Average value of each music track, can be used to correct DC offset issues if
  31. they appear.
  32. */
  33. SFG_PROGRAM_MEMORY uint8_t SFG_musicTrackAverages[SFG_TRACK_COUNT] =
  34. {14,7,248,148,6,8};
  35. struct
  36. { // all should be initialized to 0 by default
  37. uint8_t track;
  38. uint32_t t; // time variable/parameter
  39. uint32_t t2; // stores t squared, for better performance
  40. uint32_t n11t; // stores a multiple of 11, for better performance
  41. } SFG_MusicState;
  42. /**
  43. Gets the next 8bit 8KHz music sample for the bytebeat soundtrack. This
  44. function is to be used by the frontend that plays music.
  45. */
  46. uint8_t SFG_getNextMusicSample(void)
  47. {
  48. if (SFG_MusicState.t >= SFG_TRACK_SAMPLES)
  49. {
  50. SFG_MusicState.track++;
  51. if (SFG_MusicState.track >= SFG_TRACK_COUNT)
  52. SFG_MusicState.track = 0;
  53. SFG_MusicState.t = 0;
  54. SFG_MusicState.t2 = 0;
  55. SFG_MusicState.n11t = 0;
  56. }
  57. uint32_t result;
  58. #define S SFG_MusicState.t // can't use "T" because of a C++ template
  59. #define S2 SFG_MusicState.t2
  60. #define N11S SFG_MusicState.n11t
  61. /* CAREFUL! Bit shifts in any direction by amount greater than data type
  62. width (32) are undefined behavior. Use % 32. */
  63. switch (SFG_MusicState.track) // individual music tracks
  64. {
  65. case 0:
  66. {
  67. uint32_t a = ((S >> 7) | (S >> 9) | (~S << 1) | S);
  68. result = (((S) & 65536) ? (a & (((S2) >> 16) & 0x09)) : ~a);
  69. SFG_MusicState.t2 += S;
  70. break;
  71. }
  72. case 1:
  73. {
  74. uint32_t a = (S >> 10);
  75. result = S & (3 << (((a ^ (a << ((S >> 6) % 32)))) % 32));
  76. break;
  77. }
  78. case 2:
  79. {
  80. result =
  81. ~((((S >> ((S >> 2) % 32)) | (S >> ((S >> 5) % 32))) & 0x12) << 1)
  82. | (S >> 11);
  83. break;
  84. }
  85. case 3:
  86. {
  87. result =
  88. (((((S >> ((S >> 2) % 32)) + (S >> ((S >> 7) % 32)))) & 0x3f) | (S >> 5)
  89. | (S >> 11)) & ((S & (32768 | 8192)) ? 0xf0 : 0x30);
  90. break;
  91. }
  92. case 4:
  93. {
  94. result =
  95. ((0x47 >> ((S >> 9) % 32)) & (S >> (S % 32))) |
  96. (0x57 >> ((S >> 7) % 32)) |
  97. (0x06 >> ((S >> ((((N11S) >> 14) & 0x0e) % 32)) % 32));
  98. SFG_MusicState.n11t += 11;
  99. break;
  100. }
  101. case 5:
  102. {
  103. uint32_t a = S >> ((S >> 6) % 32);
  104. uint32_t b = 0x011121 >> (((a + S) >> 11) % 32);
  105. result =
  106. (((S >> 9) + (S ^ (S << 1))) & (0x7f >> (((S >> 15) & 0x03) % 32)))
  107. & (b + a);
  108. break;
  109. }
  110. default:
  111. result = 127;
  112. break;
  113. }
  114. #undef S
  115. #undef S2
  116. #undef N11S
  117. SFG_MusicState.t += 1;
  118. return result;
  119. }
  120. /**
  121. Switches the bytebeat to next music track.
  122. */
  123. void SFG_nextMusicTrack(void)
  124. {
  125. uint8_t current = SFG_MusicState.track;
  126. while (SFG_MusicState.track == current)
  127. SFG_getNextMusicSample();
  128. }
  129. SFG_PROGRAM_MEMORY uint8_t SFG_sounds[SFG_SFX_SIZE * 6] =
  130. {
  131. // 0, bullet shot
  132. 135,119,120,136,136,153,153,153,154,169,152,119,101,85,86,102,119,118,119,
  133. 85,84,51,33,52,52,84,87,120,170,188,202,152,102,84,84,70,119,136,119,
  134. 119,121,154,219,170,137,117,82,18,36,34,33,20,67,68,70,137,172,189,237,
  135. 220,150,120,120,97,36,102,121,151,87,169,118,86,102,120,137,135,120,186,155,
  136. 223,255,217,103,100,70,119,118,84,34,36,122,204,220,168,138,170,170,223,199,
  137. 117,70,119,136,100,85,102,51,37,101,103,118,101,136,87,154,169,171,187,186,
  138. 169,153,136,117,68,84,66,18,19,50,52,51,102,121,139,186,169,171,186,152,
  139. 153,136,119,134,85,101,86,69,84,84,86,85,86,102,119,120,153,135,135,101,
  140. 87,134,103,135,101,103,119,135,152,120,136,135,137,136,151,134,87,119,136,119,
  141. 118,102,85,119,85,102,102,119,138,137,153,137,186,170,137,152,135,101,85,85,
  142. 86,102,102,119,119,102,103,119,137,152,138,153,154,169,153,152,137,151,118,85,
  143. 85,84,84,86,86,136,119,119,154,153,153,171,187,170,170,187,170,137,151,119,
  144. 102,103,69,102,118,120,120,138,153,169,170,169,153,135,119,119,102,118,105,136,
  145. 136,137,152,153,136,152,119,119,119,119,121,152,136,119,152,136,135,120,119,118,
  146. 86,102,103,136,135,137,153,136,152,119,119,118,102,86,85,102,102,102,102,120,
  147. 136,136,136,136,152,136,153,152,119,119,120,135,120,119,119,103,119,136,119,135,
  148. 120,135,136,136,137,153,153,152,154,152,153,137,152,136,135,119,136,136,136,153,
  149. 152,154,170,170,153,153,152,119,119,119,119,118,119,103,136,136,120,135,118,120,
  150. 119,118,102,119,102,102,103,119,118,103,102,102,119,135,119,119,119,119,119,119,
  151. 119,118,102,103,135,136,135,119,120,135,119,119,119,119,103,119,120,136,137,152,
  152. 136,136,136,153,153,136,153,153,153,153,153,152,153,136,136,135,119,135,119,119,
  153. 136,136,136,136,152,152,137,153,152,119,118,102,102,102,119,103,119,119,119,136,
  154. 136,135,118,103,119,120,136,136,136,136,136,136,136,119,118,102,119,119,119,136,
  155. 136,136,136,137,136,136,136,136,119,119,120,135,119,119,120,135,136,136,136,136,
  156. 136,136,119,119,120,119,120,136,136,135,119,120,119,119,119,119,119,120,136,152,
  157. 136,137,153,136,136,136,136,136,136,136,119,120,137,153,136,136,135,119,119,136,
  158. 136,136,135,119,119,102,119,120,135,119,119,119,136,136,136,118,102,103,119,136,
  159. 119,119,120,136,136,136,135,119,119,136,136,136,136,136,136,136,136,135,119,119,
  160. 119,119,119,136,119,119,119,136,136,136,136,135,120,136,136,136,119,119,119,120,
  161. 136,136,136,136,135,119,119,119,119,136,119,119,136,136,136,136,135,119,119,119,
  162. 119,119,119,119,119,136,136,136,136,136,135,119,119,119,119,119,119,119,136,136,
  163. 136,136,135,120,136,136,136,119,119,119,136,136,136,135,119,119,119,119,119,119,
  164. 119,119,119,119,136,136,120,136,136,136,136,136,119,119,120,136,136,136,119,119,
  165. 120,136,136,136,136,136,136,136,136,136,136,136,135,119,119,119,119,119,119,119,
  166. 120,136,136,136,135,119,119,119,119,136,136,136,136,136,135,119,119,119,119,119,
  167. 119,120,136,136,136,136,136,135,119,119,119,119,119,119,119,120,136,136,136,136,
  168. 136,136,136,136,136,136,119,119,119,119,119,119,119,119,119,119,136,136,136,136,
  169. 136,136,136,136,136,136,136,119,119,119,119,119,119,119,119,136,136,136,136,136,
  170. 136,136,136,136,136,136,136,119,119,119,119,119,119,119,119,119,119,136,136,136,
  171. 136,136,136,136,119,119,119,119,119,120,136,136,136,136,136,136,136,135,119,119,
  172. 136,136,119,119,119,119,119,119,120,135,120,136,136,136,136,136,136,136,136,135,
  173. 119,119,119,119,119,119,119,119,136,136,136,136,136,136,136,136,136,135,119,119,
  174. 119,119,119,119,119,119,119,119,119,119,136,136,136,136,136,136,136,136,119,119,
  175. 119,119,119,119,119,120,136,136,136,136,136,136,136,119,119,119,119,119,119,119,
  176. 119,119,119,136,135,119,120,119,119,120,136,136,136,136,136,136,119,119,119,119,
  177. 119,119,119,119,120,136,136,136,136,136,136,136,119,119,135,119,119,119,119,119,
  178. 119,119,119,119,135,120,136,136,136,136,136,135,119,119,119,119,119,120,119,119,
  179. 119,135,119,136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,136,136,
  180. 136,136,136,136,136,136,135,119,136,136,135,119,119,119,119,119,119,119,119,119,
  181. 119,119,136,136,136,136,136,136,136,136,136,119,119,119,119,119,119,119,136,136,
  182. 136,136,136,136,136,136,135,119,119,135,135,120,120,120,120,120,120,120,120,135,
  183. 135,136,120,120,135
  184. , // 1, door opening
  185. 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,
  186. 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,136,
  187. 136,136,136,136,136,136,136,136,136,136,153,153,153,153,153,153,153,153,153,153,
  188. 153,153,152,136,136,136,136,136,136,136,136,136,119,119,119,119,119,119,119,119,
  189. 119,119,119,102,102,102,102,103,119,119,119,119,119,119,119,119,119,119,119,119,
  190. 119,119,119,119,119,136,136,136,136,136,136,136,136,136,136,153,153,153,153,153,
  191. 153,153,136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,119,102,102,
  192. 102,102,102,102,102,102,102,103,119,119,119,119,120,136,136,136,136,136,137,153,
  193. 153,153,153,153,152,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  194. 135,119,119,119,119,120,136,136,136,136,136,136,136,137,136,136,136,136,136,136,
  195. 136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,119,119,119,119,119,
  196. 119,119,119,119,119,119,119,119,119,119,119,119,119,136,136,136,136,136,136,120,
  197. 136,136,136,136,136,136,136,135,120,136,136,135,119,120,135,119,119,119,119,119,
  198. 119,119,119,119,119,119,119,119,119,119,120,136,136,136,136,136,119,120,136,136,
  199. 136,136,136,135,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,
  200. 119,119,119,119,119,119,119,119,120,136,136,136,136,136,136,136,136,136,136,136,
  201. 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,
  202. 136,136,136,136,136,153,153,153,153,153,152,136,136,136,136,136,136,136,136,136,
  203. 136,136,136,136,136,136,136,136,136,136,135,120,136,136,136,136,136,136,136,136,
  204. 136,136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,119,119,120,136,
  205. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  206. 136,119,119,119,119,119,119,119,119,119,136,136,136,136,136,136,119,119,119,119,
  207. 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,
  208. 119,119,119,119,119,119,119,119,102,102,102,102,102,103,119,119,119,119,119,119,
  209. 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,
  210. 119,119,119,119,119,119,119,120,136,136,136,136,119,119,119,119,119,119,119,119,
  211. 119,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  212. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  213. 136,136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,119,119,119,119,
  214. 119,120,136,136,136,136,136,136,119,119,119,119,119,119,119,119,119,119,119,119,
  215. 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,
  216. 119,119,119,119,119,119,119,119,120,136,136,136,136,136,136,136,136,136,136,136,
  217. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  218. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  219. 136,136,136,136,136,136,136,136,136,136,136,120,135,119,119,119,136,136,136,136,
  220. 136,136,135,136,136,136,136,136,136,136,135,136,136,136,136,120,119,135,119,119,
  221. 119,119,119,119,119,120,136,136,120,136,136,136,136,136,119,136,135,136,136,136,
  222. 136,136,136,136,119,119,120,135,119,135,119,136,135,119,120,120,136,136,136,136,
  223. 135,119,119,119,119,119,119,119,119,120,119,119,119,119,119,119,119,119,119,119,
  224. 119,119,119,119,119,119,119,119,103,119,119,119,102,102,102,102,102,102,118,103,
  225. 102,118,103,136,136,136,136,136,136,136,136,136,137,153,153,153,170,169,153,153,
  226. 170,153,153,153,170,170,169,170,169,153,153,153,153,153,153,170,170,170,153,153,
  227. 153,136,137,153,136,136,137,152,119,102,120,136,136,135,119,119,119,120,135,119,
  228. 119,120,137,153,153,153,152,136,135,119,119,119,102,119,119,119,119,119,119,119,
  229. 120,136,136,119,120,137,152,137,136,136,136,136,119,120,135,119,118,102,102,102,
  230. 102,102,102,119,119,119,119,118,103,119,119,119,119,119,102,102,102,85,85,85,
  231. 85,84,85,85,85,86,102,102,102,102,102,101,85,86,102,102,102,102,102,102,
  232. 102,102,102,119,102,102,119,119,119,120,136,119,119,119,120,136,136,136,136,136,
  233. 136,135,119,119,136,136,136,136,136,136,119,120,135,119,119,119,119,119,119,119,
  234. 119,119,119,120,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  235. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  236. 136,136,136,120,120
  237. , // 2, explosion
  238. 135,136,153,18,51,51,33,18,123,255,255,255,255,255,255,255,254,184,48,
  239. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,189,255,255,255,
  240. 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,201,135,
  241. 101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,41,
  242. 239,255,255,253,186,188,221,221,220,153,152,136,155,188,203,187,171,202,169,116,
  243. 35,16,0,0,17,20,68,87,191,255,255,255,253,221,221,202,115,16,0,0,
  244. 0,0,18,34,70,117,85,68,85,86,102,68,67,68,70,136,153,134,67,32,
  245. 0,0,0,0,35,87,154,205,238,255,255,255,255,255,255,255,255,255,255,255,
  246. 255,255,237,168,101,67,16,0,0,0,53,102,119,133,85,85,49,0,0,34,
  247. 34,16,1,35,69,103,119,101,86,103,102,120,119,102,137,206,255,238,238,202,
  248. 152,120,134,85,86,102,102,102,119,120,135,117,68,50,34,35,69,121,188,221,
  249. 222,239,255,255,255,255,220,204,186,153,153,135,102,137,153,151,100,51,51,35,
  250. 69,102,68,68,67,52,68,51,86,118,86,119,118,103,137,172,221,237,221,221,
  251. 221,220,169,136,118,84,68,68,68,69,121,189,237,220,203,186,170,152,119,119,
  252. 120,170,188,204,204,204,188,204,186,152,117,67,50,52,87,119,118,103,102,103,
  253. 136,101,50,33,1,34,34,35,69,86,120,136,153,153,153,152,135,100,67,51,
  254. 51,69,85,102,121,188,205,222,255,236,203,204,187,188,221,203,170,170,170,169,
  255. 152,118,102,86,102,119,136,137,169,153,169,152,135,119,101,51,34,51,68,85,
  256. 102,85,85,84,85,102,102,85,86,103,137,170,187,221,204,222,255,238,237,203,
  257. 170,171,186,152,119,120,136,136,136,135,119,120,119,138,187,185,152,119,119,136,
  258. 134,83,16,1,35,68,68,50,17,52,104,172,222,238,238,238,221,220,186,153,
  259. 133,51,68,50,18,69,65,1,89,207,255,255,255,255,255,255,255,255,255,255,
  260. 255,255,255,255,255,255,255,252,184,81,0,0,0,0,0,0,0,0,0,0,
  261. 0,0,0,0,0,0,0,2,53,104,154,223,255,255,255,255,255,255,255,255,
  262. 255,255,255,255,255,255,255,255,255,255,255,255,237,186,152,118,84,49,0,0,
  263. 0,0,0,0,0,0,0,0,0,0,0,0,0,19,70,121,171,205,255,255,
  264. 255,255,255,255,255,255,255,254,220,187,170,153,152,135,102,118,101,67,16,0,
  265. 0,0,0,0,0,1,52,86,137,153,135,103,102,67,33,17,35,53,102,103,
  266. 118,102,84,51,35,51,51,69,87,120,154,189,255,255,255,255,255,255,255,236,
  267. 185,118,84,50,33,18,17,34,34,17,17,16,0,0,0,0,0,18,52,68,
  268. 69,86,119,137,171,187,205,221,237,239,255,255,255,253,204,186,152,136,118,66,
  269. 16,18,35,52,85,68,68,86,119,119,119,120,136,135,120,136,136,136,119,101,
  270. 85,68,68,67,50,17,16,0,0,0,1,17,17,17,18,35,69,120,171,188,
  271. 222,237,221,239,255,239,255,255,255,255,238,238,238,238,236,185,153,153,152,118,
  272. 85,84,67,51,50,34,34,34,35,51,34,34,35,52,68,68,68,69,85,103,
  273. 136,136,136,154,171,204,205,222,238,255,255,255,255,255,255,254,237,203,186,153,
  274. 153,153,153,136,135,118,102,84,50,16,0,0,0,0,0,0,0,0,0,17,
  275. 17,17,17,17,35,69,103,137,171,204,222,255,255,255,255,255,255,238,238,220,
  276. 203,170,169,153,170,170,171,187,187,205,221,220,203,186,136,135,119,102,85,68,
  277. 68,68,68,68,50,34,17,0,0,0,0,0,0,19,85,119,136,154,187,204,
  278. 204,186,136,120,136,136,136,136,136,154,188,239,255,255,255,255,238,237,203,186,
  279. 153,135,119,118,102,102,102,102,103,136,153,152,135,118,101,68,68,67,50,17,
  280. 0,0,0,0,1,17,17,34,51,52,86,103,137,170,170,187,187,204,221,221,
  281. 204,203,170,170,171,187,170,170,153,153,153,153,153,153,153,153,136,119,119,102,
  282. 102,102,103,119,119,136,153,153,154,170,153,152,135,119,119,119,119,119,137,153,
  283. 153,153,152,137,153,136,136,136,135,119,119,119,119,136,136,135,119,119,119,119,
  284. 119,119,119,119,137,152,136,136,153,154,169,153,136,136,136,135,119,102,85,85,
  285. 85,85,84,68,69,85,84,68,85,85,102,119,119,119,120,136,136,154,171,188,
  286. 204,205,221,222,237,221,204,187,170,153,136,119,119,119,102,101,85,85,68,68,
  287. 68,51,51,52,68,69,85,86,102,119,120,136,136,120,136,136,119,119,120,136,
  288. 136,136,136,136,136,136,119,119,119,119,136,136,136,136,136,136,136,136,136,136,
  289. 136,136,136,119,120
  290. , // 3, click
  291. 136,136,136,136,136,136,136,136,136,136,136,136,136,135,119,136,136,119,119,
  292. 119,119,119,119,119,119,119,119,136,136,136,136,136,136,136,136,136,136,136,136,
  293. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  294. 136,136,136,135,119,119,120,119,119,119,119,119,119,119,120,136,136,136,136,136,
  295. 136,136,136,136,136,136,135,136,119,136,136,119,119,120,135,119,119,119,120,119,
  296. 119,136,136,119,119,136,135,119,119,119,119,119,119,119,119,119,119,119,119,119,
  297. 119,119,119,136,136,119,120,136,136,136,136,136,136,136,136,136,136,136,136,136,
  298. 136,136,135,119,136,136,135,119,119,120,136,135,119,120,119,119,120,135,120,119,
  299. 136,134,103,136,119,103,137,135,103,136,136,119,102,120,135,136,135,119,137,135,
  300. 119,102,154,133,67,54,154,136,150,69,120,120,133,72,169,119,118,86,171,132,
  301. 70,155,167,85,120,152,135,119,119,137,118,103,136,119,137,118,103,137,135,104,
  302. 152,136,135,119,136,136,119,120,152,120,119,152,152,120,120,136,135,120,135,119,
  303. 136,136,136,119,136,136,136,136,136,119,136,136,136,120,136,119,119,119,120,119,
  304. 119,119,119,119,119,119,119,119,119,119,119,136,135,119,135,119,136,120,136,136,
  305. 120,135,119,136,136,119,119,136,119,136,136,136,136,136,136,136,119,119,119,119,
  306. 119,119,119,119,119,119,119,136,136,136,136,136,136,136,136,136,136,136,119,119,
  307. 119,119,119,119,119,119,119,135,135,135,135,135,135,135,150,122,74,106,120,134,
  308. 134,165,150,135,120,120,120,120,119,120,119,119,120,119,119,119,119,119,119,119,
  309. 119,119,119,119,135,136,120,120,135,136,136,136,136,136,136,136,136,135,119,119,
  310. 119,136,119,119,120,120,136,136,136,136,136,136,136,136,120,136,120,136,136,120,
  311. 119,136,119,120,119,119,119,119,119,119,119,119,119,119,119,119,119,135,135,135,
  312. 135,135,135,119,119,120,105,104,118,150,135,135,119,136,120,120,136,135,136,136,
  313. 120,120,136,136,120,136,135,136,136,136,136,136,136,136,136,136,136,136,136,136,
  314. 136,135,136,136,136,120,120,135,135,136,136,120,120,135,135,135,135,136,136,120,
  315. 120,120,136,120,120,135,136,136,135,135,135,136,136,135,136,136,120,120,136,120,
  316. 136,119,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  317. 136,136,120,136,136,136,136,136,136,136,136,136,136,136,136,136,119,119,136,135,
  318. 120,136,120,136,120,135,120,136,136,135,135,120,135,135,120,120,119,136,119,136,
  319. 120,120,135,120,136,136,135,136,135,136,135,136,135,136,136,136,136,136,136,136,
  320. 136,120,120,136,135,120,136,120,136,136,136,120,135,135,135,136,135,120,119,136,
  321. 119,120,136,135,119,136,136,136,136,136,136,120,136,119,136,136,136,136,135,120,
  322. 136,120,136,136,119,136,135,120,136,120,120,136,119,136,136,136,136,135,136,135,
  323. 136,136,119,120,136,135,136,120,136,136,135,120,136,119,136,135,136,136,120,136,
  324. 136,136,120,136,136,135,135,135,135,135,137,167,122,102,90,195,138,87,120,150,
  325. 136,136,87,153,88,121,133,104,150,135,151,134,136,105,104,121,135,118,151,136,
  326. 119,136,119,121,135,120,120,120,134,152,119,120,135,120,135,119,136,136,119,135,
  327. 135,120,136,120,136,120,136,135,135,135,136,120,136,135,136,135,136,136,136,136,
  328. 136,119,136,135,120,136,136,136,136,135,136,136,120,136,120,136,135,136,136,135,
  329. 136,136,120,136,120,135,135,136,136,119,120,136,120,135,119,136,136,119,136,135,
  330. 120,136,135,136,135,119,136,135,136,136,135,120,136,120,136,135,136,120,136,135,
  331. 120,136,135,136,136,136,136,136,120,136,136,120,135,136,136,120,136,120,136,136,
  332. 136,136,136,136,136,120,136,136,136,136,136,136,136,136,136,136,136,135,136,136,
  333. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  334. 136,136,136,136,136,136,136,136,136,120,136,136,136,136,136,136,136,136,136,136,
  335. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  336. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  337. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  338. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  339. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  340. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  341. 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  342. 136,136,136,136,136
  343. , // 4, plasma shot, teleport
  344. 136,136,136,136,136,136,119,119,118,102,102,85,86,102,103,120,136,153,170,
  345. 187,187,187,170,169,152,119,102,85,68,68,68,69,86,103,136,154,171,187,204,
  346. 203,186,169,136,118,102,85,84,69,103,138,189,221,221,221,221,221,221,221,221,
  347. 221,220,166,50,34,34,34,33,33,34,34,34,34,34,34,34,34,71,156,221,
  348. 221,221,221,221,221,221,221,221,221,222,238,238,238,221,237,184,99,51,34,34,
  349. 34,34,34,34,34,34,34,17,17,36,121,188,204,204,204,204,204,204,221,221,
  350. 221,221,221,221,221,221,221,238,221,219,169,136,101,67,51,51,51,51,50,34,
  351. 34,35,50,34,36,121,189,221,221,221,221,220,204,204,188,204,204,204,204,204,
  352. 204,204,205,220,186,152,117,50,51,51,51,51,51,51,51,51,51,51,52,105,
  353. 189,237,221,221,221,221,221,221,221,205,220,204,204,204,187,187,187,187,186,135,
  354. 101,50,17,17,18,34,35,51,67,51,51,51,52,105,187,222,221,221,221,221,
  355. 221,221,221,221,221,221,221,221,221,221,221,221,204,203,169,134,67,34,17,17,
  356. 17,34,34,33,34,34,34,52,104,171,205,221,221,220,204,204,204,204,204,204,
  357. 204,204,204,221,221,221,221,221,219,169,135,85,84,68,68,68,67,51,51,50,
  358. 34,35,69,103,136,136,136,136,135,136,136,136,153,170,187,187,187,187,187,187,
  359. 187,187,203,169,135,102,85,86,102,103,119,119,118,102,86,102,102,85,85,85,
  360. 84,68,69,85,102,103,137,154,170,171,186,170,170,170,170,170,152,118,101,68,
  361. 68,68,85,85,102,103,120,136,135,118,102,102,102,102,102,102,101,84,69,87,
  362. 137,154,153,170,170,171,187,187,187,187,170,170,169,170,170,170,170,153,152,135,
  363. 118,101,68,51,51,52,68,85,85,85,85,68,85,102,103,118,102,85,102,103,
  364. 120,136,153,170,187,204,221,238,238,238,237,221,204,186,152,118,101,84,68,69,
  365. 86,102,119,119,102,85,84,68,68,51,51,34,34,51,68,85,102,103,120,137,
  366. 154,171,188,205,221,204,204,203,187,186,170,153,153,153,153,153,136,136,119,119,
  367. 118,102,102,103,119,119,119,119,118,101,84,67,51,51,68,86,120,137,153,170,
  368. 170,153,152,135,119,136,136,119,119,119,119,119,119,119,119,136,137,153,153,136,
  369. 136,136,153,153,136,119,102,102,102,120,137,154,170,170,170,153,152,136,135,119,
  370. 119,102,102,103,119,102,85,84,69,85,102,119,119,119,119,119,119,119,119,102,
  371. 85,85,86,103,120,136,153,153,154,170,170,170,170,170,170,170,170,153,153,136,
  372. 135,119,119,120,136,136,136,136,136,136,136,119,102,101,85,85,85,85,102,120,
  373. 136,153,170,170,169,152,136,136,135,119,119,119,119,119,102,102,102,119,136,137,
  374. 153,153,153,153,136,136,119,118,102,102,102,102,119,119,136,137,154,170,169,136,
  375. 119,119,119,102,102,103,119,119,119,118,102,119,120,137,153,154,170,169,153,136,
  376. 136,136,135,119,119,119,119,119,102,119,120,136,119,118,102,103,119,119,119,136,
  377. 136,136,135,119,119,119,136,137,153,154,170,153,136,136,135,119,119,119,120,119,
  378. 119,119,103,119,119,135,119,119,119,118,102,102,102,119,119,119,119,119,119,119,
  379. 136,137,154,171,187,170,153,136,136,136,136,136,136,136,135,119,119,119,119,119,
  380. 119,119,119,118,102,102,102,119,119,119,119,119,119,119,120,136,153,153,170,169,
  381. 153,152,136,136,136,136,153,152,136,136,136,136,136,119,119,119,118,102,102,102,
  382. 102,102,103,119,119,118,102,102,119,120,136,153,154,170,169,153,153,153,153,153,
  383. 153,152,136,136,119,119,119,118,102,102,102,119,119,119,119,119,119,119,119,119,
  384. 119,119,119,119,119,136,137,153,153,153,153,153,153,153,153,136,136,136,136,136,
  385. 136,135,119,119,119,119,119,119,119,119,118,102,102,102,102,102,103,119,120,136,
  386. 136,136,136,153,153,136,136,136,137,153,153,153,152,136,136,136,136,136,135,119,
  387. 119,102,102,102,102,102,102,102,102,102,103,119,120,136,136,136,153,153,153,153,
  388. 136,137,153,153,136,136,136,136,136,136,136,136,119,119,119,118,102,102,102,102,
  389. 103,119,119,119,119,119,119,136,136,136,136,136,136,136,136,136,136,136,136,136,
  390. 136,136,119,119,119,119,136,135,119,119,119,119,119,119,119,119,119,119,119,119,
  391. 119,120,136,136,136,136,136,136,136,136,136,136,136,136,136,135,119,119,119,119,
  392. 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,120,136,136,136,
  393. 136,136,136,136,136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,119,
  394. 119,119,119,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
  395. 136,136,136,136,136
  396. , // 5, robot/monster sound (beep)
  397. 136,120,120,120,136,136,136,136,120,120,135,136,136,136,120,136,136,119,136,
  398. 136,120,136,119,120,136,136,136,120,136,119,120,136,135,119,136,135,120,136,119,
  399. 119,136,136,119,119,120,136,136,135,119,119,136,136,136,119,119,119,136,119,120,
  400. 136,136,135,119,120,136,136,119,103,136,136,120,135,119,120,136,118,119,136,136,
  401. 136,119,119,136,136,119,120,135,103,136,136,119,136,135,119,120,136,119,120,135,
  402. 119,120,136,135,119,119,135,120,136,135,119,136,136,119,136,119,120,136,135,119,
  403. 119,119,136,136,119,120,119,136,136,119,119,119,119,137,136,120,135,102,120,136,
  404. 136,119,119,120,135,120,136,119,120,136,119,136,136,135,119,119,119,136,136,134,
  405. 104,136,136,119,119,119,136,135,120,136,120,119,119,119,135,136,136,136,119,119,
  406. 119,136,136,135,119,136,135,119,120,136,135,119,120,135,136,136,119,136,119,120,
  407. 136,135,119,120,135,119,136,135,119,136,136,136,120,119,119,136,119,120,136,135,
  408. 120,135,102,121,169,118,87,137,151,85,121,186,118,102,119,136,152,118,120,136,
  409. 135,119,120,120,136,136,136,136,101,103,153,152,135,102,120,136,135,102,120,153,
  410. 135,119,119,135,119,119,136,135,119,119,119,120,136,135,119,119,136,136,136,119,
  411. 119,119,136,119,119,135,120,135,119,119,120,135,120,136,119,119,136,136,135,119,
  412. 135,119,136,136,136,136,135,119,120,136,119,120,136,118,119,137,135,119,120,135,
  413. 119,136,135,119,120,152,119,136,119,120,135,136,119,136,119,136,135,120,152,119,
  414. 120,136,119,119,154,150,103,152,119,120,153,135,102,138,135,136,119,153,101,121,
  415. 151,120,135,136,118,137,151,103,120,152,102,138,134,88,154,151,103,153,118,104,
  416. 137,135,120,119,153,117,105,167,102,120,136,119,137,134,87,153,135,120,152,102,
  417. 103,137,151,119,153,133,87,169,100,104,153,152,102,103,153,135,119,136,119,120,
  418. 136,119,119,135,119,120,136,119,119,119,120,136,135,122,222,219,132,51,68,87,
  419. 171,187,186,134,50,52,104,172,203,186,116,33,54,139,188,204,151,67,52,87,
  420. 155,220,152,136,98,17,73,223,218,136,100,34,53,155,187,188,185,82,18,71,
  421. 155,205,203,150,65,19,86,156,238,201,100,50,36,122,205,220,167,66,34,88,
  422. 171,204,201,102,84,51,71,155,221,184,118,66,19,107,238,202,152,99,1,72,
  423. 172,204,218,116,51,36,104,172,222,183,83,35,87,120,190,234,118,100,34,70,
  424. 155,237,170,167,50,52,104,155,221,168,100,51,69,103,190,236,134,82,2,120,
  425. 138,223,199,102,82,19,105,204,204,185,82,52,85,106,216,103,153,117,104,134,
  426. 104,152,118,103,137,135,136,136,135,102,119,121,151,104,152,84,104,135,154,134,
  427. 103,136,119,135,120,135,120,135,136,119,136,118,86,153,118,137,134,137,117,105,
  428. 153,136,117,103,136,120,152,119,119,136,135,136,135,104,152,137,136,119,119,120,
  429. 119,135,86,156,204,253,150,67,35,87,155,222,200,84,52,51,89,206,236,186,
  430. 115,34,69,104,206,220,150,84,67,53,141,254,168,118,50,53,104,188,186,151,
  431. 84,68,87,172,220,169,135,66,53,120,154,188,203,116,52,84,71,189,219,169,
  432. 116,34,53,122,207,236,167,66,35,86,155,221,184,101,66,53,137,172,204,169,
  433. 116,35,69,105,190,219,150,83,51,71,172,204,203,149,49,35,104,172,238,200,
  434. 100,51,69,105,205,218,134,83,52,88,172,204,185,117,84,51,104,172,204,185,
  435. 100,51,52,106,221,203,152,101,50,54,139,204,186,150,67,68,86,156,221,202,
  436. 117,34,52,122,200,135,119,120,136,118,103,137,152,135,119,119,136,152,118,103,
  437. 136,135,119,136,135,120,135,118,120,135,103,154,151,102,102,119,136,154,169,118,
  438. 102,119,119,120,152,118,119,136,154,151,101,121,152,102,136,120,136,119,119,119,
  439. 120,136,118,103,137,152,119,119,136,136,119,119,118,119,120,136,153,135,103,136,
  440. 119,136,136,119,119,120,136,136,135,136,119,119,120,136,119,136,135,120,135,119,
  441. 120,136,135,136,119,119,136,136,119,136,135,119,136,119,120,136,135,119,136,119,
  442. 119,136,135,119,118,120,153,153,151,118,119,119,119,136,135,119,136,136,136,135,
  443. 120,136,135,119,119,119,136,136,119,120,135,119,136,136,119,119,119,119,137,152,
  444. 135,119,119,119,136,136,119,119,119,136,136,136,119,120,136,119,119,119,136,136,
  445. 119,119,119,136,136,136,135,119,136,119,120,136,119,136,135,120,119,136,135,120,
  446. 135,119,136,119,136,135,119,136,119,119,120,136,136,119,120,135,136,135,120,135,
  447. 119,136,119,136,135,136,119,120,136,120,136,120,136,119,135,119,136,119,136,135,
  448. 136,119,120,135,120
  449. };
  450. #endif // guard