/** @file assets.h This file containts sounds and music that can optionally be used by the game front end. Every sound effect has 2048 samples, is stored in 8kHz mono format with 4 bit quantization, meaning every sound effect takes 1024 bytes. Sounds can be converted using a provided python script like this: python snd2array.py sound.raw by Miloslav Ciz (drummyfish), 2019 Released under CC0 1.0 (https://creativecommons.org/publicdomain/zero/1.0/) plus a waiver of all other intellectual property. The goal of this work is be and remain completely in the public domain forever, available for any use whatsoever. */ #ifndef _SFG_SOUNDS_H #define _SFG_SOUNDS_H #define SFG_SFX_SAMPLE_COUNT 2048 #define SFG_SFX_SIZE (SFG_SFX_SAMPLE_COUNT / 2) #define SFG_GET_SFX_SAMPLE(soundIndex,sampleIndex) \ ((sampleIndex % 2 == 0) ? \ (SFG_sounds[soundIndex][sampleIndex / 2] >> 4) : \ (SFG_sounds[soundIndex][sampleIndex / 2] & 0x0f)) SFG_PROGRAM_MEMORY uint8_t SFG_sounds[][SFG_SFX_SIZE] = { { // 0, bullet shot 135,119,120,136,136,153,153,153,154,169,152,119,101,85,86,102,119,118,119, 85,84,51,33,52,52,84,87,120,170,188,202,152,102,84,84,70,119,136,119, 119,121,154,219,170,137,117,82,18,36,34,33,20,67,68,70,137,172,189,237, 220,150,120,120,97,36,102,121,151,87,169,118,86,102,120,137,135,120,186,155, 223,255,217,103,100,70,119,118,84,34,36,122,204,220,168,138,170,170,223,199, 117,70,119,136,100,85,102,51,37,101,103,118,101,136,87,154,169,171,187,186, 169,153,136,117,68,84,66,18,19,50,52,51,102,121,139,186,169,171,186,152, 153,136,119,134,85,101,86,69,84,84,86,85,86,102,119,120,153,135,135,101, 87,134,103,135,101,103,119,135,152,120,136,135,137,136,151,134,87,119,136,119, 118,102,85,119,85,102,102,119,138,137,153,137,186,170,137,152,135,101,85,85, 86,102,102,119,119,102,103,119,137,152,138,153,154,169,153,152,137,151,118,85, 85,84,84,86,86,136,119,119,154,153,153,171,187,170,170,187,170,137,151,119, 102,103,69,102,118,120,120,138,153,169,170,169,153,135,119,119,102,118,105,136, 136,137,152,153,136,152,119,119,119,119,121,152,136,119,152,136,135,120,119,118, 86,102,103,136,135,137,153,136,152,119,119,118,102,86,85,102,102,102,102,120, 136,136,136,136,152,136,153,152,119,119,120,135,120,119,119,103,119,136,119,135, 120,135,136,136,137,153,153,152,154,152,153,137,152,136,135,119,136,136,136,153, 152,154,170,170,153,153,152,119,119,119,119,118,119,103,136,136,120,135,118,120, 119,118,102,119,102,102,103,119,118,103,102,102,119,135,119,119,119,119,119,119, 119,118,102,103,135,136,135,119,120,135,119,119,119,119,103,119,120,136,137,152, 136,136,136,153,153,136,153,153,153,153,153,152,153,136,136,135,119,135,119,119, 136,136,136,136,152,152,137,153,152,119,118,102,102,102,119,103,119,119,119,136, 136,135,118,103,119,120,136,136,136,136,136,136,136,119,118,102,119,119,119,136, 136,136,136,137,136,136,136,136,119,119,120,135,119,119,120,135,136,136,136,136, 136,136,119,119,120,119,120,136,136,135,119,120,119,119,119,119,119,120,136,152, 136,137,153,136,136,136,136,136,136,136,119,120,137,153,136,136,135,119,119,136, 136,136,135,119,119,102,119,120,135,119,119,119,136,136,136,118,102,103,119,136, 119,119,120,136,136,136,135,119,119,136,136,136,136,136,136,136,136,135,119,119, 119,119,119,136,119,119,119,136,136,136,136,135,120,136,136,136,119,119,119,120, 136,136,136,136,135,119,119,119,119,136,119,119,136,136,136,136,135,119,119,119, 119,119,119,119,119,136,136,136,136,136,135,119,119,119,119,119,119,119,136,136, 136,136,135,120,136,136,136,119,119,119,136,136,136,135,119,119,119,119,119,119, 119,119,119,119,136,136,120,136,136,136,136,136,119,119,120,136,136,136,119,119, 120,136,136,136,136,136,136,136,136,136,136,136,135,119,119,119,119,119,119,119, 120,136,136,136,135,119,119,119,119,136,136,136,136,136,135,119,119,119,119,119, 119,120,136,136,136,136,136,135,119,119,119,119,119,119,119,120,136,136,136,136, 136,136,136,136,136,136,119,119,119,119,119,119,119,119,119,119,136,136,136,136, 136,136,136,136,136,136,136,119,119,119,119,119,119,119,119,136,136,136,136,136, 136,136,136,136,136,136,136,119,119,119,119,119,119,119,119,119,119,136,136,136, 136,136,136,136,119,119,119,119,119,120,136,136,136,136,136,136,136,135,119,119, 136,136,119,119,119,119,119,119,120,135,120,136,136,136,136,136,136,136,136,135, 119,119,119,119,119,119,119,119,136,136,136,136,136,136,136,136,136,135,119,119, 119,119,119,119,119,119,119,119,119,119,136,136,136,136,136,136,136,136,119,119, 119,119,119,119,119,120,136,136,136,136,136,136,136,119,119,119,119,119,119,119, 119,119,119,136,135,119,120,119,119,120,136,136,136,136,136,136,119,119,119,119, 119,119,119,119,120,136,136,136,136,136,136,136,119,119,135,119,119,119,119,119, 119,119,119,119,135,120,136,136,136,136,136,135,119,119,119,119,119,120,119,119, 119,135,119,136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,136,136, 136,136,136,136,136,136,135,119,136,136,135,119,119,119,119,119,119,119,119,119, 119,119,136,136,136,136,136,136,136,136,136,119,119,119,119,119,119,119,136,136, 136,136,136,136,136,136,135,119,119,135,135,120,120,120,120,120,120,120,120,135, 135,136,120,120,135 }, { // 1, door opening 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,136, 136,136,136,136,136,136,136,136,136,136,153,153,153,153,153,153,153,153,153,153, 153,153,152,136,136,136,136,136,136,136,136,136,119,119,119,119,119,119,119,119, 119,119,119,102,102,102,102,103,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,136,136,136,136,136,136,136,136,136,136,153,153,153,153,153, 153,153,136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,119,102,102, 102,102,102,102,102,102,102,103,119,119,119,119,120,136,136,136,136,136,137,153, 153,153,153,153,152,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136, 135,119,119,119,119,120,136,136,136,136,136,136,136,137,136,136,136,136,136,136, 136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,136,136,136,136,136,136,120, 136,136,136,136,136,136,136,135,120,136,136,135,119,120,135,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,120,136,136,136,136,136,119,120,136,136, 136,136,136,135,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,120,136,136,136,136,136,136,136,136,136,136,136, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 136,136,136,136,136,153,153,153,153,153,152,136,136,136,136,136,136,136,136,136, 136,136,136,136,136,136,136,136,136,136,135,120,136,136,136,136,136,136,136,136, 136,136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,119,119,120,136, 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136, 136,119,119,119,119,119,119,119,119,119,136,136,136,136,136,136,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,102,102,102,102,102,103,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,120,136,136,136,136,119,119,119,119,119,119,119,119, 119,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136, 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136, 136,136,136,136,136,136,136,135,119,119,119,119,119,119,119,119,119,119,119,119, 119,120,136,136,136,136,136,136,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,120,136,136,136,136,136,136,136,136,136,136,136, 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136, 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136, 136,136,136,136,136,136,136,136,136,136,136,120,135,119,119,119,136,136,136,136, 136,136,135,136,136,136,136,136,136,136,135,136,136,136,136,120,119,135,119,119, 119,119,119,119,119,120,136,136,120,136,136,136,136,136,119,136,135,136,136,136, 136,136,136,136,119,119,120,135,119,135,119,136,135,119,120,120,136,136,136,136, 135,119,119,119,119,119,119,119,119,120,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,103,119,119,119,102,102,102,102,102,102,118,103, 102,118,103,136,136,136,136,136,136,136,136,136,137,153,153,153,170,169,153,153, 170,153,153,153,170,170,169,170,169,153,153,153,153,153,153,170,170,170,153,153, 153,136,137,153,136,136,137,152,119,102,120,136,136,135,119,119,119,120,135,119, 119,120,137,153,153,153,152,136,135,119,119,119,102,119,119,119,119,119,119,119, 120,136,136,119,120,137,152,137,136,136,136,136,119,120,135,119,118,102,102,102, 102,102,102,119,119,119,119,118,103,119,119,119,119,119,102,102,102,85,85,85, 85,84,85,85,85,86,102,102,102,102,102,101,85,86,102,102,102,102,102,102, 102,102,102,119,102,102,119,119,119,120,136,119,119,119,120,136,136,136,136,136, 136,135,119,119,136,136,136,136,136,136,119,120,135,119,119,119,119,119,119,119, 119,119,119,120,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136, 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136, 136,136,136,120,120 }, { // 2, explosion 135,136,153,18,51,51,33,18,123,255,255,255,255,255,255,255,254,184,48, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,189,255,255,255, 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,201,135, 101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,41, 239,255,255,253,186,188,221,221,220,153,152,136,155,188,203,187,171,202,169,116, 35,16,0,0,17,20,68,87,191,255,255,255,253,221,221,202,115,16,0,0, 0,0,18,34,70,117,85,68,85,86,102,68,67,68,70,136,153,134,67,32, 0,0,0,0,35,87,154,205,238,255,255,255,255,255,255,255,255,255,255,255, 255,255,237,168,101,67,16,0,0,0,53,102,119,133,85,85,49,0,0,34, 34,16,1,35,69,103,119,101,86,103,102,120,119,102,137,206,255,238,238,202, 152,120,134,85,86,102,102,102,119,120,135,117,68,50,34,35,69,121,188,221, 222,239,255,255,255,255,220,204,186,153,153,135,102,137,153,151,100,51,51,35, 69,102,68,68,67,52,68,51,86,118,86,119,118,103,137,172,221,237,221,221, 221,220,169,136,118,84,68,68,68,69,121,189,237,220,203,186,170,152,119,119, 120,170,188,204,204,204,188,204,186,152,117,67,50,52,87,119,118,103,102,103, 136,101,50,33,1,34,34,35,69,86,120,136,153,153,153,152,135,100,67,51, 51,69,85,102,121,188,205,222,255,236,203,204,187,188,221,203,170,170,170,169, 152,118,102,86,102,119,136,137,169,153,169,152,135,119,101,51,34,51,68,85, 102,85,85,84,85,102,102,85,86,103,137,170,187,221,204,222,255,238,237,203, 170,171,186,152,119,120,136,136,136,135,119,120,119,138,187,185,152,119,119,136, 134,83,16,1,35,68,68,50,17,52,104,172,222,238,238,238,221,220,186,153, 133,51,68,50,18,69,65,1,89,207,255,255,255,255,255,255,255,255,255,255, 255,255,255,255,255,255,255,252,184,81,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2,53,104,154,223,255,255,255,255,255,255,255,255, 255,255,255,255,255,255,255,255,255,255,255,255,237,186,152,118,84,49,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,19,70,121,171,205,255,255, 255,255,255,255,255,255,255,254,220,187,170,153,152,135,102,118,101,67,16,0, 0,0,0,0,0,1,52,86,137,153,135,103,102,67,33,17,35,53,102,103, 118,102,84,51,35,51,51,69,87,120,154,189,255,255,255,255,255,255,255,236, 185,118,84,50,33,18,17,34,34,17,17,16,0,0,0,0,0,18,52,68, 69,86,119,137,171,187,205,221,237,239,255,255,255,253,204,186,152,136,118,66, 16,18,35,52,85,68,68,86,119,119,119,120,136,135,120,136,136,136,119,101, 85,68,68,67,50,17,16,0,0,0,1,17,17,17,18,35,69,120,171,188, 222,237,221,239,255,239,255,255,255,255,238,238,238,238,236,185,153,153,152,118, 85,84,67,51,50,34,34,34,35,51,34,34,35,52,68,68,68,69,85,103, 136,136,136,154,171,204,205,222,238,255,255,255,255,255,255,254,237,203,186,153, 153,153,153,136,135,118,102,84,50,16,0,0,0,0,0,0,0,0,0,17, 17,17,17,17,35,69,103,137,171,204,222,255,255,255,255,255,255,238,238,220, 203,170,169,153,170,170,171,187,187,205,221,220,203,186,136,135,119,102,85,68, 68,68,68,68,50,34,17,0,0,0,0,0,0,19,85,119,136,154,187,204, 204,186,136,120,136,136,136,136,136,154,188,239,255,255,255,255,238,237,203,186, 153,135,119,118,102,102,102,102,103,136,153,152,135,118,101,68,68,67,50,17, 0,0,0,0,1,17,17,34,51,52,86,103,137,170,170,187,187,204,221,221, 204,203,170,170,171,187,170,170,153,153,153,153,153,153,153,153,136,119,119,102, 102,102,103,119,119,136,153,153,154,170,153,152,135,119,119,119,119,119,137,153, 153,153,152,137,153,136,136,136,135,119,119,119,119,136,136,135,119,119,119,119, 119,119,119,119,137,152,136,136,153,154,169,153,136,136,136,135,119,102,85,85, 85,85,84,68,69,85,84,68,85,85,102,119,119,119,120,136,136,154,171,188, 204,205,221,222,237,221,204,187,170,153,136,119,119,119,102,101,85,85,68,68, 68,51,51,52,68,69,85,86,102,119,120,136,136,120,136,136,119,119,120,136, 136,136,136,136,136,136,119,119,119,119,136,136,136,136,136,136,136,136,136,136, 136,136,136,119,120 } }; #endif // guard