Read the first 5 chars, not the all string of LANG.
[supertux.git] / src / sound.cpp
1 //  $Id$
2 //
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>
6 //
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.
11 //
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.
16 //
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.
20
21 #include "defines.h"
22 #include "globals.h"
23 #include "sound.h"
24 #include "setup.h"
25
26 /*global variable*/
27 bool use_sound = true;    /* handle sound on/off menu and command-line option */
28 bool use_music = true;    /* handle music on/off menu and command-line option */
29 bool audio_device = true; /* != 0: available and initialized */
30
31 char * soundfilenames[NUM_SOUNDS] = {
32                                        "/sounds/jump.wav",
33                                        "/sounds/bigjump.wav",
34                                        "/sounds/skid.wav",
35                                        "/sounds/coin.wav",
36                                        "/sounds/invincible.wav",
37                                        "/sounds/brick.wav",
38                                        "/sounds/hurt.wav",
39                                        "/sounds/squish.wav",
40                                        "/sounds/fall.wav",
41                                        "/sounds/ricochet.wav",
42                                        "/sounds/bump-upgrade.wav",
43                                        "/sounds/upgrade.wav",
44                                        "/sounds/grow.wav",
45                                        "/sounds/fire-flower.wav",
46                                        "/sounds/shoot.wav",
47                                        "/sounds/lifeup.wav",
48                                        "/sounds/stomp.wav",
49                                        "/sounds/kick.wav",
50                                        "/sounds/explosion.wav"
51                                     };
52
53
54 #include <SDL_mixer.h>
55
56 Mix_Chunk * sounds[NUM_SOUNDS];
57
58 /* --- OPEN THE AUDIO DEVICE --- */
59
60 int open_audio (int frequency, Uint16 format, int channels, int chunksize)
61 {
62   if (Mix_OpenAudio( frequency, format, channels, chunksize ) < 0)
63     return -1;
64
65   // allocate 16 channels for mixing
66   if (Mix_AllocateChannels(8)  != 8)
67     return -2;
68   
69   return 0;
70 }
71
72
73 /* --- CLOSE THE AUDIO DEVICE --- */
74
75 void close_audio( void )
76 {
77   if (audio_device) {
78     Mix_CloseAudio();
79   }
80 }
81
82
83 /* --- LOAD A SOUND --- */
84
85 Mix_Chunk* load_sound(const std::string& file)
86 {
87   if(!audio_device)
88     return 0;
89   
90   Mix_Chunk* snd = Mix_LoadWAV(file.c_str());
91
92   if (snd == 0)
93     st_abort("Can't load", file);
94
95   return(snd);
96 }
97
98 void free_chunk(Mix_Chunk *chunk)
99 {
100   Mix_FreeChunk( chunk );
101 }
102