X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fsound.h;h=d38b1ff5ae202cbd5bcb2d0e97540b02456fdde5;hb=157cef71aeb9ae25b7bb90f37dda11bc09329d11;hp=4eb702a8ac028da6708fb90be05a7f71e332ef70;hpb=9af6581daea16b0d235618a2101c074beb5a3294;p=supertux.git diff --git a/src/sound.h b/src/sound.h index 4eb702a8a..d38b1ff5a 100644 --- a/src/sound.h +++ b/src/sound.h @@ -1,17 +1,22 @@ -/* - sound.h - - Super Tux - Audio Functions - - by Bill Kendrick - bill@newbreedsoftware.com - http://www.newbreedsoftware.com/supertux/ - - April 22, 2000 - December 28, 2003 - - Current maintainer: - Duong-Khang NGUYEN -*/ +// $Id$ +// +// SuperTux - A Jump'n Run +// Copyright (C) 2000 Bill Kendrick +// Copyright (C) 2004 Duong-Khang NGUYEN +// +// 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 2 +// 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. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef SUPERTUX_SOUND_H #define SUPERTUX_SOUND_H @@ -19,9 +24,9 @@ #include "defines.h" /* get YES/NO defines */ /*global variable*/ -int use_sound; -int use_music; -int audio_device; /* != 0: available and initialized */ +extern bool use_sound; /* handle sound on/off menu and command-line option */ +extern bool use_music; /* handle music on/off menu and command-line */ +extern bool audio_device; /* != 0: available and initialized */ /* enum of different internal music types */ enum Music_Type { @@ -29,10 +34,17 @@ enum Music_Type { LEVEL_MUSIC, HURRYUP_MUSIC, HERRING_MUSIC -} current_music; +}; -/* Sound files: */ +/* panning effects: terrible :-) ! */ +enum Sound_Speaker { + SOUND_LEFT_SPEAKER = 0, + SOUND_RIGHT_SPEAKER = 1, + SOUND_RESERVED_CHANNELS = 2, // 2 channels reserved for left/right speaker + SOUND_CENTER_SPEAKER = -1 +}; +/* Sound files: */ enum { SND_JUMP, SND_BIGJUMP, @@ -52,73 +64,24 @@ enum { SND_LIFEUP, SND_STOMP, SND_KICK, + SND_EXPLODE, NUM_SOUNDS }; +extern char* soundfilenames[NUM_SOUNDS]; -static char * soundfilenames[NUM_SOUNDS] = { - DATA_PREFIX "/sounds/jump.wav", - DATA_PREFIX "/sounds/bigjump.wav", - DATA_PREFIX "/sounds/skid.wav", - DATA_PREFIX "/sounds/distro.wav", - DATA_PREFIX "/sounds/herring.wav", - DATA_PREFIX "/sounds/brick.wav", - DATA_PREFIX "/sounds/hurt.wav", - DATA_PREFIX "/sounds/squish.wav", - DATA_PREFIX "/sounds/fall.wav", - DATA_PREFIX "/sounds/ricochet.wav", - DATA_PREFIX "/sounds/bump-upgrade.wav", - DATA_PREFIX "/sounds/upgrade.wav", - DATA_PREFIX "/sounds/excellent.wav", - DATA_PREFIX "/sounds/coffee.wav", - DATA_PREFIX "/sounds/shoot.wav", - DATA_PREFIX "/sounds/lifeup.wav", - DATA_PREFIX "/sounds/stomp.wav", - DATA_PREFIX "/sounds/kick.wav" - }; - - -#ifndef NOSOUND - +#include #include /* variables for stocking the sound and music */ -Mix_Chunk * sounds[NUM_SOUNDS]; -Mix_Music * level_song, * level_song_fast, * herring_song; +extern Mix_Chunk* sounds[NUM_SOUNDS]; /* functions handling the sound and music */ int open_audio(int frequency, Uint16 format, int channels, int chunksize); +void close_audio( void ); -Mix_Chunk * load_sound(char * file); -void play_sound(Mix_Chunk * snd); -Mix_Music * load_song(char * file); - -int playing_music(void); -int halt_music(void); -int play_music(Mix_Music*music, int loops); -void free_music(Mix_Music*music); +Mix_Chunk * load_sound(const std::string& file); void free_chunk(Mix_Chunk*chunk); - -#else - -//fake variables -void* sounds[NUM_SOUNDS]; -void* level_song, *herring_song; - -// fake sound handlers -int open_audio (int frequency, int format, int channels, int chunksize); - -void* load_sound(void* file); -void play_sound(void * snd); -void* load_song(void* file); - -int playing_music(); -void halt_music(); -int play_music(void *music, int loops); -void free_music(void *music); -; -void free_chunk(void *chunk); - -#endif +void play_sound(Mix_Chunk * snd, enum Sound_Speaker whichSpeaker); #endif /*SUPERTUX_SOUND_H*/