]> git.jsancho.org Git - lugaru.git/blob - Source/Sounds.cpp
Cleanup sound loading
[lugaru.git] / Source / Sounds.cpp
1 /*
2 Copyright (C) 2010 - Lugaru authors
3
4 This file is part of Lugaru.
5
6 Lugaru is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (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.
14
15 See the 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
22 #include "Sounds.h"
23 #include "openal_wrapper.h"
24
25 struct OPENAL_SAMPLE *samp[sounds_count];
26
27 static const char *sound_data[sounds_count] = {
28 #define DECLARE_SOUND(id, filename) filename,
29 #include "Sounds.def"
30 #undef DECLARE_SOUND
31 };
32
33 // FIXME: dimensionality is not a property of the sound sample.
34 // This should be decided at the time of playback
35 static int snd_mode(int snd)
36 {
37   switch (snd)
38     {
39     case alarmsound:
40     case consolefailsound:
41     case consolesuccesssound:
42     case firestartsound:
43     case fireendsound:
44       return OPENAL_2D;
45     default:
46       return OPENAL_HW3D;
47     }
48 }
49
50 void loadAllSounds()
51 {
52   for (int i = 0; i < sounds_count; i++)
53     {
54       char buf[64];
55       snprintf(buf, 64, ":Data:Sounds:%s", sound_data[i]);
56       samp[i] = OPENAL_Sample_Load(OPENAL_FREE,
57                                    ConvertFileName(buf),
58                                    snd_mode(i),
59                                    0, 0);
60     }
61   // Huh?
62   // OPENAL_Sample_SetMode(samp[whooshsound], OPENAL_LOOP_NORMAL);
63 }
64