3 // SuperTux - A Jump'n Run
4 // Copyright (C) 2000 Bill Kendrick <bill@newbreedsoftware.com>
5 // Copyright (C) 2004 Duong-Khang NGUYEN <neoneurone@users.sf.net>
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License
9 // as published by the Free Software Foundation; either version 2
10 // of the License, or (at your option) any later version.
12 // This program is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #ifndef SUPERTUX_SOUND_H
22 #define SUPERTUX_SOUND_H
24 #include "defines.h" /* get YES/NO defines */
27 extern bool use_sound; /* handle sound on/off menu and command-line option */
28 extern bool use_music; /* handle music on/off menu and command-line */
29 extern bool audio_device; /* != 0: available and initialized */
31 /* enum of different internal music types */
39 /* panning effects: terrible :-) ! */
41 SOUND_LEFT_SPEAKER = 0,
42 SOUND_RIGHT_SPEAKER = 1,
43 SOUND_RESERVED_CHANNELS = 2, // 2 channels reserved for left/right speaker
44 SOUND_CENTER_SPEAKER = -1
71 extern char* soundfilenames[NUM_SOUNDS];
74 #include <SDL_mixer.h>
76 /* variables for stocking the sound and music */
77 extern Mix_Chunk* sounds[NUM_SOUNDS];
79 /* functions handling the sound and music */
80 int open_audio(int frequency, Uint16 format, int channels, int chunksize);
81 void close_audio( void );
83 Mix_Chunk * load_sound(const std::string& file);
84 void free_chunk(Mix_Chunk*chunk);
85 void play_sound(Mix_Chunk * snd, enum Sound_Speaker whichSpeaker);
87 #endif /*SUPERTUX_SOUND_H*/