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.
141 lines
4.4 KiB
141 lines
4.4 KiB
/****************************************************************************
|
|
* Written By Marcio Teixeira 2018 - Aleph Objects, Inc. *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation, either version 3 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* To view a copy of the GNU General Public License, go to the following *
|
|
* location: <http://www.gnu.org/licenses/>. *
|
|
****************************************************************************/
|
|
|
|
#ifndef _AO_FT810_SNDS_H
|
|
#define _AO_FT810_SNDS_H
|
|
|
|
/* A sound sequence consists of an array of the following:
|
|
|
|
struct sound_t {
|
|
effect_t effect; // The sound effect number
|
|
note_t note; // The MIDI note value, or C4 if 0
|
|
uint8_t sixteenths; // Note duration in 1/16th of a sec;
|
|
// If 0, play until sample is finished.
|
|
};
|
|
|
|
Constants are defined in "AO_FT810_Constants.h".
|
|
|
|
Both note and sixteenths are optional. If omitted, the compiler
|
|
will fill them in with 0 which will be interpreted by play C4
|
|
for the duration of the sample.
|
|
|
|
The sequence must be terminated by "{SILENCE, END_SONG, WAIT}", i.e
|
|
all zeros.
|
|
*/
|
|
|
|
const PROGMEM CLCD::SoundPlayer::sound_t chimes[] = {
|
|
{CHIMES, NOTE_G3, 5},
|
|
{CHIMES, NOTE_E4, 5},
|
|
{CHIMES, NOTE_C4, 5},
|
|
{SILENCE, END_SONG, 0}
|
|
};
|
|
|
|
const PROGMEM CLCD::SoundPlayer::sound_t sad_trombone[] = {
|
|
{TRUMPET, NOTE_A3S, 10},
|
|
{TRUMPET, NOTE_A3 , 10},
|
|
{TRUMPET, NOTE_G3S, 10},
|
|
{TRUMPET, NOTE_G3, 20},
|
|
{SILENCE, END_SONG, 0}
|
|
};
|
|
|
|
const PROGMEM CLCD::SoundPlayer::sound_t c_maj_arpeggio[] = {
|
|
{GLOCKENSPIEL, NOTE_C4, 1},
|
|
{GLOCKENSPIEL, NOTE_E4, 1},
|
|
{GLOCKENSPIEL, NOTE_G4, 16},
|
|
{SILENCE, END_SONG, 0}
|
|
};
|
|
|
|
const PROGMEM CLCD::SoundPlayer::sound_t start_print[] = {
|
|
{TRUMPET, NOTE_A3, 4},
|
|
{SILENCE, REST, 1},
|
|
{TRUMPET, NOTE_A3, 2},
|
|
{SILENCE, REST, 1},
|
|
{TRUMPET, NOTE_A3, 2},
|
|
{SILENCE, REST, 1},
|
|
{TRUMPET, NOTE_E4, 10},
|
|
{SILENCE, END_SONG, 0}
|
|
};
|
|
|
|
const PROGMEM CLCD::SoundPlayer::sound_t card_inserted[] = {
|
|
{MUSIC_BOX, NOTE_C4, 2},
|
|
{MUSIC_BOX, NOTE_E4, 2},
|
|
{SILENCE, END_SONG, 0}
|
|
};
|
|
|
|
const PROGMEM CLCD::SoundPlayer::sound_t card_removed[] = {
|
|
{MUSIC_BOX, NOTE_E4, 2},
|
|
{MUSIC_BOX, NOTE_C4, 2},
|
|
{SILENCE, END_SONG, 0}
|
|
};
|
|
|
|
const PROGMEM CLCD::SoundPlayer::sound_t js_bach_joy[] = {
|
|
{PIANO, NOTE_G3, 4},
|
|
{PIANO, NOTE_A3, 4},
|
|
{PIANO, NOTE_B3, 4},
|
|
{PIANO, NOTE_D4, 4},
|
|
{PIANO, NOTE_C4, 4},
|
|
{PIANO, NOTE_C4, 4},
|
|
{PIANO, NOTE_E4, 4},
|
|
{PIANO, NOTE_D4, 4},
|
|
{PIANO, NOTE_D4, 4},
|
|
{PIANO, NOTE_G4 , 4},
|
|
{PIANO, NOTE_F4S, 4},
|
|
{PIANO, NOTE_G4, 4},
|
|
{PIANO, NOTE_D4, 4},
|
|
{PIANO, NOTE_B3, 4},
|
|
{PIANO, NOTE_G3, 4},
|
|
{PIANO, NOTE_A3, 4},
|
|
{PIANO, NOTE_B3, 4},
|
|
{PIANO, NOTE_C4, 4},
|
|
{PIANO, NOTE_D4, 4},
|
|
{PIANO, NOTE_E4, 4},
|
|
{PIANO, NOTE_D4, 4},
|
|
{PIANO, NOTE_C4, 4},
|
|
{PIANO, NOTE_B3, 4},
|
|
{PIANO, NOTE_A3, 4},
|
|
{PIANO, NOTE_B3, 4},
|
|
{PIANO, NOTE_G3, 4},
|
|
{PIANO, NOTE_G3, 4},
|
|
{SILENCE, END_SONG, 0}
|
|
};
|
|
|
|
const PROGMEM CLCD::SoundPlayer::sound_t all_instruments[] = {
|
|
{HARP},
|
|
{XYLOPHONE},
|
|
{TUBA},
|
|
{GLOCKENSPIEL},
|
|
{ORGAN},
|
|
{TRUMPET},
|
|
{PIANO},
|
|
{CHIMES},
|
|
{MUSIC_BOX},
|
|
{BELL},
|
|
{CLICK},
|
|
{SWITCH},
|
|
{COWBELL},
|
|
{NOTCH},
|
|
{HIHAT},
|
|
{KICKDRUM},
|
|
{SWITCH},
|
|
{POP},
|
|
{CLACK},
|
|
{CHACK},
|
|
{SILENCE, END_SONG, 0}
|
|
};
|
|
|
|
#endif // _AO_FT810_SNDS_H
|