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