You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

277 lines
15 KiB

  1. /* Any song or sound without a license explicitly stated is:
  2. *
  3. * Copyright 2016 Jack Humbert
  4. * Copyright 2017 Zach White
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #pragma once
  20. #include "musical_notes.h"
  21. #if __GNUC__ > 5 // don't use for older gcc compilers since check isn't supported.
  22. # if __has_include("user_song_list.h")
  23. # include "user_song_list.h"
  24. # endif // if file exists
  25. #endif // __GNUC__
  26. #define NO_SOUND
  27. /* Ode to Joy
  28. * Author: Friedrich Schiller
  29. + License: Public Domain
  30. */
  31. #define ODE_TO_JOY Q__NOTE(_E4), Q__NOTE(_E4), Q__NOTE(_F4), Q__NOTE(_G4), Q__NOTE(_G4), Q__NOTE(_F4), Q__NOTE(_E4), Q__NOTE(_D4), Q__NOTE(_C4), Q__NOTE(_C4), Q__NOTE(_D4), Q__NOTE(_E4), QD_NOTE(_E4), E__NOTE(_D4), H__NOTE(_D4),
  32. /* Rock-a-bye Baby
  33. * Author: Unknown
  34. + License: Public Domain
  35. */
  36. #define ROCK_A_BYE_BABY QD_NOTE(_B4), E__NOTE(_D4), Q__NOTE(_B5), H__NOTE(_A5), Q__NOTE(_G5), QD_NOTE(_B4), E__NOTE(_D5), Q__NOTE(_G5), H__NOTE(_FS5),
  37. #define CLUEBOARD_SOUND HD_NOTE(_C3), HD_NOTE(_D3), HD_NOTE(_E3), HD_NOTE(_F3), HD_NOTE(_G3), HD_NOTE(_A4), HD_NOTE(_B4), HD_NOTE(_C4)
  38. /*
  39. HD_NOTE(_G3), HD_NOTE(_E3), HD_NOTE(_C3), \
  40. Q__NOTE(_E3), Q__NOTE(_C3), Q__NOTE(_G3), \
  41. Q__NOTE(_E3)
  42. */
  43. /*
  44. HD_NOTE(_C3), HD_NOTE(_G3), HD_NOTE(_E3), \
  45. Q__NOTE(_G3), Q__NOTE(_E3), Q__NOTE(_G3), \
  46. Q__NOTE(_F3)
  47. */
  48. #define STARTUP_SOUND E__NOTE(_E6), E__NOTE(_A6), ED_NOTE(_E7),
  49. #define GOODBYE_SOUND E__NOTE(_E7), E__NOTE(_A6), ED_NOTE(_E6),
  50. #define PLANCK_SOUND ED_NOTE(_E7), E__NOTE(_CS7), E__NOTE(_E6), E__NOTE(_A6), M__NOTE(_CS7, 20),
  51. #define PREONIC_SOUND M__NOTE(_B5, 20), E__NOTE(_B6), M__NOTE(_DS6, 20), E__NOTE(_B6),
  52. #define QWERTY_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), Q__NOTE(_E7),
  53. #define COLEMAK_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), ED_NOTE(_E7), S__NOTE(_REST), ED_NOTE(_GS7),
  54. #define DVORAK_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), E__NOTE(_E7), S__NOTE(_REST), E__NOTE(_FS7), S__NOTE(_REST), E__NOTE(_E7),
  55. #define WORKMAN_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), ED_NOTE(_FS7), S__NOTE(_REST), ED_NOTE(_A7),
  56. #define PLOVER_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), ED_NOTE(_E7), S__NOTE(_REST), ED_NOTE(_A7),
  57. #define PLOVER_GOODBYE_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), ED_NOTE(_A7), S__NOTE(_REST), ED_NOTE(_E7),
  58. #define MUSIC_ON_SOUND E__NOTE(_A5), E__NOTE(_B5), E__NOTE(_CS6), E__NOTE(_D6), E__NOTE(_E6), E__NOTE(_FS6), E__NOTE(_GS6), E__NOTE(_A6),
  59. #define AUDIO_ON_SOUND E__NOTE(_A5), E__NOTE(_A6),
  60. #define AUDIO_OFF_SOUND E__NOTE(_A6), E__NOTE(_A5),
  61. #define MUSIC_SCALE_SOUND MUSIC_ON_SOUND
  62. #define MUSIC_OFF_SOUND E__NOTE(_A6), E__NOTE(_GS6), E__NOTE(_FS6), E__NOTE(_E6), E__NOTE(_D6), E__NOTE(_CS6), E__NOTE(_B5), E__NOTE(_A5),
  63. #define VOICE_CHANGE_SOUND Q__NOTE(_A5), Q__NOTE(_CS6), Q__NOTE(_E6), Q__NOTE(_A6),
  64. #define CHROMATIC_SOUND Q__NOTE(_A5), Q__NOTE(_AS5), Q__NOTE(_B5), Q__NOTE(_C6), Q__NOTE(_CS6),
  65. #define MAJOR_SOUND Q__NOTE(_A5), Q__NOTE(_B5), Q__NOTE(_CS6), Q__NOTE(_D6), Q__NOTE(_E6),
  66. #define MINOR_SOUND Q__NOTE(_A5), Q__NOTE(_B5), Q__NOTE(_C6), Q__NOTE(_D6), Q__NOTE(_E6),
  67. #define GUITAR_SOUND Q__NOTE(_E5), Q__NOTE(_A5), Q__NOTE(_D6), Q__NOTE(_G6),
  68. #define VIOLIN_SOUND Q__NOTE(_G5), Q__NOTE(_D6), Q__NOTE(_A6), Q__NOTE(_E7),
  69. #define CAPS_LOCK_ON_SOUND E__NOTE(_A3), E__NOTE(_B3),
  70. #define CAPS_LOCK_OFF_SOUND E__NOTE(_B3), E__NOTE(_A3),
  71. #define SCROLL_LOCK_ON_SOUND E__NOTE(_D4), E__NOTE(_E4),
  72. #define SCROLL_LOCK_OFF_SOUND E__NOTE(_E4), E__NOTE(_D4),
  73. #define NUM_LOCK_ON_SOUND E__NOTE(_D5), E__NOTE(_E5),
  74. #define NUM_LOCK_OFF_SOUND E__NOTE(_E5), E__NOTE(_D5),
  75. #define AG_NORM_SOUND E__NOTE(_A5), E__NOTE(_A5),
  76. #define AG_SWAP_SOUND SD_NOTE(_B5), SD_NOTE(_A5), SD_NOTE(_B5), SD_NOTE(_A5),
  77. #define UNICODE_WINDOWS E__NOTE(_B5), S__NOTE(_E6),
  78. #define UNICODE_LINUX E__NOTE(_E6), S__NOTE(_B5),
  79. #define TERMINAL_SOUND E__NOTE(_C5)
  80. /* Title: La Campanella
  81. * Author/Composer: Frank Lizst
  82. * License: Public Domain
  83. */
  84. #define CAMPANELLA \
  85. Q__NOTE(_DS4), E__NOTE(_DS4), E__NOTE(_DS5), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS6), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS6), Q__NOTE(_CS5), E__NOTE(_CS5), E__NOTE(_DS6), Q__NOTE(_B4), E__NOTE(_B4), E__NOTE(_DS6), Q__NOTE(_B4), E__NOTE(_B4), E__NOTE(_DS6), Q__NOTE(_AS4), E__NOTE(_AS4), E__NOTE(_DS6), Q__NOTE(_GS4), E__NOTE(_GS4), E__NOTE(_DS6), Q__NOTE(_G4), E__NOTE(_G4), E__NOTE(_DS6), Q__NOTE(_GS4), E__NOTE(_GS4), E__NOTE(_DS6), Q__NOTE(_AS4), E__NOTE(_AS4), E__NOTE(_DS6), Q__NOTE(_DS4), E__NOTE(_DS4), E__NOTE(_DS6), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS6), Q__NOTE(_E5), E__NOTE(_E5), E__NOTE(_DS6), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS6), Q__NOTE(_CS5), E__NOTE(_CS5), E__NOTE(_DS6), Q__NOTE(_B4), E__NOTE(_B4), E__NOTE(_DS6), Q__NOTE(_B4), E__NOTE(_B4), E__NOTE(_DS6), Q__NOTE(_AS4), E__NOTE(_AS4), E__NOTE(_DS6), Q__NOTE(_GS4), E__NOTE(_GS4), E__NOTE(_DS6), Q__NOTE(_G4), E__NOTE(_G4), E__NOTE(_DS6), Q__NOTE(_GS4), E__NOTE(_GS4), E__NOTE(_DS6), Q__NOTE(_AS4), \
  86. E__NOTE(_AS4), E__NOTE(_DS6), Q__NOTE(_DS4), E__NOTE(_DS4), E__NOTE(_DS5), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS6), Q__NOTE(_DS6), E__NOTE(_DS6), E__NOTE(_DS7), Q__NOTE(_DS6), E__NOTE(_DS6), E__NOTE(_DS7), Q__NOTE(_CS6), E__NOTE(_CS6), E__NOTE(_DS7), Q__NOTE(_B5), E__NOTE(_B5), E__NOTE(_DS7), Q__NOTE(_B5), E__NOTE(_B5), E__NOTE(_DS7), Q__NOTE(_AS5), E__NOTE(_AS5), E__NOTE(_DS7), Q__NOTE(_GS5), E__NOTE(_GS5), E__NOTE(_DS7), Q__NOTE(_G5), E__NOTE(_G5), E__NOTE(_DS7), Q__NOTE(_GS5), E__NOTE(_GS5), E__NOTE(_DS7), Q__NOTE(_AS5), E__NOTE(_AS5), E__NOTE(_DS7), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS7), W__NOTE(_DS6), W__NOTE(_GS5),
  87. /* Title: Fantaisie-Impromptu
  88. * Author/Composer: Chopin
  89. * License: Public Domain
  90. */
  91. #define FANTASIE_IMPROMPTU \
  92. E__NOTE(_GS4), E__NOTE(_A4), E__NOTE(_GS4), E__NOTE(_REST), E__NOTE(_GS4), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_C5), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_GS5), E__NOTE(_GS4), E__NOTE(_A4), E__NOTE(_GS4), E__NOTE(_REST), E__NOTE(_GS4), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_C5), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_GS5), E__NOTE(_A4), E__NOTE(_CS5), E__NOTE(_DS5), E__NOTE(_FS5), E__NOTE(_A5), E__NOTE(_CS6), E__NOTE(_DS6), E__NOTE(_B6), E__NOTE(_A6), E__NOTE(_GS6), E__NOTE(_FS6), E__NOTE(_E6), E__NOTE(_DS6), E__NOTE(_FS6), E__NOTE(_CS6), E__NOTE(_C5), E__NOTE(_DS6), E__NOTE(_A5), E__NOTE(_GS5), E__NOTE(_FS5), E__NOTE(_A5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_FS5), E__NOTE(_CS5), E__NOTE(_C5), E__NOTE(_DS5), E__NOTE(_A4), E__NOTE(_GS4), E__NOTE(_B4), E__NOTE(_A4), E__NOTE(_A4), E__NOTE(_GS4), E__NOTE(_A4), E__NOTE(_GS4), E__NOTE(_REST), E__NOTE(_GS4), \
  93. E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_C5), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_GS5), E__NOTE(_GS4), E__NOTE(_AS4), E__NOTE(_GS4), E__NOTE(_REST), E__NOTE(_GS4), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_C5), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_GS5), E__NOTE(_DS5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_REST), E__NOTE(_DS5), E__NOTE(_B5), E__NOTE(_AS5), E__NOTE(_GS5), E__NOTE(_REST), E__NOTE(_E6), E__NOTE(_DS6), E__NOTE(_CS6), E__NOTE(_B5), E__NOTE(_AS5), E__NOTE(_GS5), E__NOTE(_REST), E__NOTE(_AS5), WD_NOTE(_GS5),
  94. /* Title: Nocturne Op. 9 No. 1 in B flat minor
  95. * Author/Composer: Chopin
  96. * License: Public Domain
  97. */
  98. #define NOCTURNE_OP_9_NO_1 \
  99. H__NOTE(_BF5), H__NOTE(_C6), H__NOTE(_DF6), H__NOTE(_A5), H__NOTE(_BF5), H__NOTE(_GF5), W__NOTE(_F5), W__NOTE(_F5), W__NOTE(_F5), W__NOTE(_F5), H__NOTE(_GF5), H__NOTE(_F5), H__NOTE(_EF5), H__NOTE(_C5), B__NOTE(_DF5), W__NOTE(_BF4), Q__NOTE(_BF5), Q__NOTE(_C6), Q__NOTE(_DF6), Q__NOTE(_A5), Q__NOTE(_BF5), Q__NOTE(_A5), Q__NOTE(_GS5), Q__NOTE(_A5), Q__NOTE(_C6), Q__NOTE(_BF5), Q__NOTE(_GF5), Q__NOTE(_F5), Q__NOTE(_GF5), Q__NOTE(_E5), Q__NOTE(_F5), Q__NOTE(_BF5), Q__NOTE(_A5), Q__NOTE(_AF5), Q__NOTE(_G5), Q__NOTE(_GF5), Q__NOTE(_F5), Q__NOTE(_E5), Q__NOTE(_EF5), Q__NOTE(_D5), Q__NOTE(_DF5), Q__NOTE(_C5), Q__NOTE(_DF5), Q__NOTE(_C5), Q__NOTE(_B4), Q__NOTE(_C5), Q__NOTE(_F5), Q__NOTE(_E5), Q__NOTE(_EF5), B__NOTE(_DF5), W__NOTE(_BF4), W__NOTE(_BF5), W__NOTE(_BF5), W__NOTE(_BF5), BD_NOTE(_AF5), W__NOTE(_DF5), H__NOTE(_BF4), H__NOTE(_C5), H__NOTE(_DF5), H__NOTE(_GF5), H__NOTE(_GF5), BD_NOTE(_F5), W__NOTE(_EF5), H__NOTE(_F5), H__NOTE(_EF5), H__NOTE(_DF5), H__NOTE(_A4), B__NOTE(_AF4), \
  100. W__NOTE(_DF5), W__NOTE(_EF5), H__NOTE(_F5), H__NOTE(_EF5), H__NOTE(_DF5), H__NOTE(_EF5), BD_NOTE(_F5),
  101. /* Title: State Anthem of the Soviet Union
  102. * Author/Composer: Alexander Alexandrov
  103. * License: Public Domain
  104. */
  105. #define USSR_ANTHEM B__NOTE(_G6), B__NOTE(_C7), W__NOTE(_G6), H__NOTE(_A6), B__NOTE(_B6), W__NOTE(_E6), W__NOTE(_E6), B__NOTE(_A6), W__NOTE(_G6), H__NOTE(_F6), B__NOTE(_G6), W__NOTE(_C6), W__NOTE(_C6), B__NOTE(_D6), W__NOTE(_D6), W__NOTE(_E6), B__NOTE(_D6), W__NOTE(_D6), W__NOTE(_G6), B__NOTE(_F6), W__NOTE(_G6), W__NOTE(_A6), B__NOTE(_B6),
  106. /* Removed sounds
  107. + This list is here solely for compatibility, so that removed songs don't just break things
  108. * If you think that any of these songs were wrongfully removed, let us know and provide
  109. * proof of permission to use them, or public domain status.
  110. */
  111. #ifndef CLOSE_ENCOUNTERS_5_NOTE
  112. # define CLOSE_ENCOUNTERS_5_NOTE
  113. #endif
  114. #ifndef DOE_A_DEER
  115. # define DOE_A_DEER
  116. #endif
  117. #ifndef IN_LIKE_FLINT
  118. # define IN_LIKE_FLINT
  119. #endif
  120. #ifndef IMPERIAL_MARCH
  121. # define IMPERIAL_MARCH
  122. #endif
  123. #ifndef BASKET_CASE
  124. # define BASKET_CASE
  125. #endif
  126. #ifndef COIN_SOUND
  127. # define COIN_SOUND
  128. #endif
  129. #ifndef ONE_UP_SOUND
  130. # define ONE_UP_SOUND
  131. #endif
  132. #ifndef SONIC_RING
  133. # define SONIC_RING
  134. #endif
  135. #ifndef ZELDA_PUZZLE
  136. # define ZELDA_PUZZLE
  137. #endif
  138. #ifndef ZELDA_TREASURE
  139. # define ZELDA_TREASURE
  140. #endif
  141. #ifndef OVERWATCH_THEME
  142. # define OVERWATCH_THEME
  143. #endif
  144. #ifndef MARIO_THEME
  145. # define MARIO_THEME
  146. #endif
  147. #ifndef MARIO_GAMEOVER
  148. # define MARIO_GAMEOVER
  149. #endif
  150. #ifndef MARIO_MUSHROOM
  151. # define MARIO_MUSHROOM
  152. #endif
  153. #ifndef E1M1_DOOM
  154. # define E1M1_DOOM
  155. #endif
  156. #ifndef DISNEY_SONG
  157. # define DISNEY_SONG
  158. #endif
  159. #ifndef NUMBER_ONE
  160. # define NUMBER_ONE
  161. #endif
  162. #ifndef CABBAGE_SONG
  163. # define CABBAGE_SONG
  164. #endif
  165. #ifndef OLD_SPICE
  166. # define OLD_SPICE
  167. #endif
  168. #ifndef VICTORY_FANFARE_SHORT
  169. # define VICTORY_FANFARE_SHORT
  170. #endif
  171. #ifndef ALL_STAR
  172. # define ALL_STAR
  173. #endif
  174. #ifndef RICK_ROLL
  175. # define RICK_ROLL
  176. #endif
  177. #ifndef FF_PRELUDE
  178. # define FF_PRELUDE
  179. #endif
  180. #ifndef TO_BOLDLY_GO
  181. # define TO_BOLDLY_GO
  182. #endif
  183. #ifndef KATAWARE_DOKI
  184. # define KATAWARE_DOKI
  185. #endif
  186. #ifndef MEGALOVANIA
  187. # define MEGALOVANIA
  188. #endif
  189. #ifndef MICHISHIRUBE
  190. # define MICHISHIRUBE
  191. #endif
  192. #ifndef LIEBESLEID
  193. # define LIEBESLEID
  194. #endif
  195. #ifndef MELODIES_OF_LIFE
  196. # define MELODIES_OF_LIFE
  197. #endif
  198. #ifndef EYES_ON_ME
  199. # define EYES_ON_ME
  200. #endif
  201. #ifndef SONG_OF_THE_ANCIENTS
  202. # define SONG_OF_THE_ANCIENTS
  203. #endif
  204. #ifndef NIER_AMUSEMENT_PARK
  205. # define NIER_AMUSEMENT_PARK
  206. #endif
  207. #ifndef COPIED_CITY
  208. # define COPIED_CITY
  209. #endif
  210. #ifndef VAGUE_HOPE_COLD_RAIN
  211. # define VAGUE_HOPE_COLD_RAIN
  212. #endif
  213. #ifndef KAINE_SALVATION
  214. # define KAINE_SALVATION
  215. #endif
  216. #ifndef WEIGHT_OF_THE_WORLD
  217. # define WEIGHT_OF_THE_WORLD
  218. #endif
  219. #ifndef ISABELLAS_LULLABY
  220. # define ISABELLAS_LULLABY
  221. #endif
  222. #ifndef TERRAS_THEME
  223. # define TERRAS_THEME
  224. #endif
  225. #ifndef RENAI_CIRCULATION
  226. # define RENAI_CIRCULATION
  227. #endif
  228. #ifndef PLATINUM_DISCO
  229. # define PLATINUM_DISCO
  230. #endif
  231. #ifndef LP_NUMB
  232. # define LP_NUMB
  233. #endif