author | nemo |
Tue, 07 Jul 2009 01:36:56 +0000 | |
changeset 2234 | 17f7a5882aca |
parent 2233 | 7bd3c94cc806 |
child 2257 | 7eb31efcfb9b |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1654 | 3 |
* Copyright (c) 2005, 2007, 2009 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
19 |
unit uSound; |
|
20 |
interface |
|
2191 | 21 |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2194
diff
changeset
|
22 |
|
2191 | 23 |
{$IFDEF DARWIN} |
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2194
diff
changeset
|
24 |
{$linklib openalbridge} |
2191 | 25 |
{$linkframework OpenAL} |
26 |
{$linkframework Ogg} |
|
27 |
{$linkframework Vorbis} |
|
28 |
{$ELSE} |
|
2234 | 29 |
{$IFNDEF WIN32} |
2233 | 30 |
{$linklib openal} |
31 |
{$linklib ogg} |
|
32 |
{$linklib vorbis} |
|
33 |
{$linklib vorbisfile} |
|
2191 | 34 |
{$ENDIF} |
2213 | 35 |
{$ENDIF} |
2191 | 36 |
|
37 |
uses uConsts; |
|
4 | 38 |
{$INCLUDE options.inc} |
39 |
||
1654 | 40 |
type PVoicepack = ^TVoicepack; |
41 |
TVoicepack = record |
|
42 |
name: shortstring; |
|
2191 | 43 |
chunks: array [TSound] of LongInt; |
1654 | 44 |
end; |
45 |
||
2230
d6963f72d21a
once again, trying to restore windows compatibility from nemo's experiments
koda
parents:
2222
diff
changeset
|
46 |
const OpenALBridge = 'libopenalbridge'; |
2191 | 47 |
|
4 | 48 |
procedure InitSound; |
49 |
procedure ReleaseSound; |
|
50 |
procedure SoundLoad; |
|
1669 | 51 |
procedure PlaySound(snd: TSound; infinite: boolean; voicepack: PVoicepack); |
4 | 52 |
procedure PlayMusic; |
1712 | 53 |
procedure PauseMusic; |
54 |
procedure ResumeMusic; |
|
282 | 55 |
procedure StopSound(snd: TSound); |
371 | 56 |
function ChangeVolume(voldelta: LongInt): LongInt; |
2191 | 57 |
function AskForVoicepack(name: shortstring): Pointer; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
58 |
|
2216
82e7da49c26a
-Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents:
2213
diff
changeset
|
59 |
{*remember: LongInt = 32bit; integer = 16bit; byte = 8bit*} |
2191 | 60 |
function openal_init (memsize: LongInt) : boolean; cdecl; external OpenALBridge; |
61 |
function openal_close : boolean; cdecl; external OpenALBridge; |
|
62 |
function openal_loadfile (filename: PChar) : LongInt; cdecl; external OpenALBridge; |
|
63 |
function openal_toggleloop (index: LongInt) : boolean; cdecl; external OpenALBridge; |
|
2216
82e7da49c26a
-Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents:
2213
diff
changeset
|
64 |
function openal_setvolume (index: LongInt; percentage: byte) : boolean; cdecl; external OpenALBridge; |
82e7da49c26a
-Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents:
2213
diff
changeset
|
65 |
function openal_setglobalvolume (percentage: byte) : boolean; cdecl; external OpenALBridge; |
82e7da49c26a
-Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents:
2213
diff
changeset
|
66 |
function openal_fadeout (index: LongInt; quantity: integer) : boolean; cdecl; external OpenALBridge; |
82e7da49c26a
-Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents:
2213
diff
changeset
|
67 |
function openal_fadein (index: LongInt; quantity: integer) : boolean; cdecl; external OpenALBridge; |
82e7da49c26a
-Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents:
2213
diff
changeset
|
68 |
function openal_fade (index: LongInt; quantity: integer; direction: byte) : boolean; cdecl; external OpenALBridge; |
2191 | 69 |
function openal_playsound (index: LongInt) : boolean; cdecl; external OpenALBridge; |
70 |
function openal_pausesound (index: LongInt) : boolean; cdecl; external OpenALBridge; |
|
71 |
function openal_stopsound (index: LongInt) : boolean; cdecl; external OpenALBridge; |
|
4 | 72 |
|
1097 | 73 |
var MusicFN: shortstring = ''; |
74 |
||
4 | 75 |
implementation |
2191 | 76 |
|
2230
d6963f72d21a
once again, trying to restore windows compatibility from nemo's experiments
koda
parents:
2222
diff
changeset
|
77 |
uses uMisc, uConsole; |
564 | 78 |
|
13 | 79 |
const chanTPU = 12; |
2191 | 80 |
var lastChan: array [TSound] of LongInt; |
1654 | 81 |
voicepacks: array[0..cMaxTeams] of TVoicepack; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
82 |
defVoicepack: PVoicepack; |
2191 | 83 |
Mus: LongInt = 0; |
1654 | 84 |
|
85 |
function AskForVoicepack(name: shortstring): Pointer; |
|
86 |
var i: Longword; |
|
87 |
begin |
|
88 |
i:= 0; |
|
89 |
while (voicepacks[i].name <> name) and (voicepacks[i].name <> '') do |
|
90 |
begin |
|
91 |
inc(i); |
|
92 |
TryDo(i <= cMaxTeams, 'Engine bug: AskForVoicepack i > cMaxTeams', true) |
|
93 |
end; |
|
94 |
||
95 |
voicepacks[i].name:= name; |
|
2192
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
96 |
addfilelog('================================================ '+inttostr(i)); |
1654 | 97 |
AskForVoicepack:= @voicepacks[i] |
98 |
end; |
|
4 | 99 |
|
100 |
procedure InitSound; |
|
2211
288360b78f30
- fade in/out functions merged, but kept binary compatibility
koda
parents:
2210
diff
changeset
|
101 |
const numSounds = 80; |
4 | 102 |
begin |
103 |
if not isSoundEnabled then exit; |
|
2191 | 104 |
WriteToConsole('Init OpenAL sound...'); |
105 |
isSoundEnabled:= openal_init(numSounds); |
|
4 | 106 |
if isSoundEnabled then WriteLnToConsole(msgOK) |
107 |
else WriteLnToConsole(msgFailed); |
|
108 |
end; |
|
109 |
||
110 |
procedure ReleaseSound; |
|
111 |
begin |
|
2210 | 112 |
if isMusicEnabled then openal_fadeout(Mus, 30); |
2191 | 113 |
openal_close(); |
4 | 114 |
end; |
115 |
||
116 |
procedure SoundLoad; |
|
2210 | 117 |
const volume = 60; |
4 | 118 |
var i: TSound; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
119 |
s: shortstring; |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
120 |
t: Longword; |
4 | 121 |
begin |
122 |
if not isSoundEnabled then exit; |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
123 |
|
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
124 |
defVoicepack:= AskForVoicepack('Default'); |
1654 | 125 |
|
4 | 126 |
for i:= Low(TSound) to High(TSound) do |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
127 |
if Soundz[i].Path <> ptVoices then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
128 |
begin |
1657
dde8f60d3e07
Fix small bug in voicepacks support in engine. It's complete and tested now.
unc0rr
parents:
1656
diff
changeset
|
129 |
s:= Pathz[Soundz[i].Path] + '/' + Soundz[i].FileName; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
130 |
WriteToConsole(msgLoading + s + ' '); |
2191 | 131 |
defVoicepack^.chunks[i]:= openal_loadfile (Str2PChar(s)); |
2210 | 132 |
openal_setvolume(defVoicepack^.chunks[i],volume); |
2191 | 133 |
TryDo(defVoicepack^.chunks[i] >= 0, msgFailed, true); |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
134 |
WriteLnToConsole(msgOK); |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
135 |
end; |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
136 |
|
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
137 |
for t:= 0 to cMaxTeams do |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
138 |
if voicepacks[t].name <> '' then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
139 |
for i:= Low(TSound) to High(TSound) do |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
140 |
if Soundz[i].Path = ptVoices then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
141 |
begin |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
142 |
s:= Pathz[Soundz[i].Path] + '/' + voicepacks[t].name + '/' + Soundz[i].FileName; |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
143 |
WriteToConsole(msgLoading + s + ' '); |
2191 | 144 |
voicepacks[t].chunks[i]:= openal_loadfile (Str2PChar(s)); |
2210 | 145 |
openal_setvolume(voicepacks[t].chunks[i],volume); |
2191 | 146 |
if voicepacks[t].chunks[i] < 0 then |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
147 |
WriteLnToConsole(msgFailed) |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
148 |
else |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
149 |
WriteLnToConsole(msgOK) |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
150 |
end; |
4 | 151 |
end; |
152 |
||
1669 | 153 |
procedure PlaySound(snd: TSound; infinite: boolean; voicepack: PVoicepack); |
4 | 154 |
begin |
1562
c0eea030347b
Don't play sounds when quick replaying in spectate mode
unc0rr
parents:
1225
diff
changeset
|
155 |
if (not isSoundEnabled) or fastUntilLag then exit; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
156 |
|
2191 | 157 |
if (voicepack <> nil) and (voicepack^.chunks[snd] >= 0) then |
158 |
begin |
|
159 |
if infinite then openal_toggleloop(voicepack^.chunks[snd]); |
|
160 |
openal_playsound(voicepack^.chunks[snd]); |
|
161 |
lastChan[snd]:=voicepack^.chunks[snd]; |
|
162 |
end |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
163 |
else |
2191 | 164 |
begin |
165 |
if infinite then openal_toggleloop(defVoicepack^.chunks[snd]); |
|
166 |
openal_playsound(defVoicepack^.chunks[snd]); |
|
167 |
lastChan[snd]:=defVoicepack^.chunks[snd]; |
|
168 |
end |
|
4 | 169 |
end; |
170 |
||
282 | 171 |
procedure StopSound(snd: TSound); |
4 | 172 |
begin |
173 |
if not isSoundEnabled then exit; |
|
2191 | 174 |
openal_stopsound(lastChan[snd]) |
4 | 175 |
end; |
176 |
||
177 |
procedure PlayMusic; |
|
564 | 178 |
var s: string; |
4 | 179 |
begin |
1097 | 180 |
if (not isSoundEnabled) |
1128 | 181 |
or (MusicFN = '') |
1712 | 182 |
or (not isMusicEnabled) then exit; |
565 | 183 |
|
1097 | 184 |
s:= PathPrefix + '/Music/' + MusicFN; |
564 | 185 |
WriteToConsole(msgLoading + s + ' '); |
565 | 186 |
|
2191 | 187 |
Mus:= openal_loadfile(Str2PChar(s)); |
188 |
TryDo(Mus >= 0, msgFailed, false); |
|
564 | 189 |
WriteLnToConsole(msgOK); |
190 |
||
2210 | 191 |
openal_setvolume(Mus, 60); |
2213 | 192 |
openal_fadein(Mus, 20); |
2191 | 193 |
openal_toggleloop(Mus); |
4 | 194 |
end; |
195 |
||
371 | 196 |
function ChangeVolume(voldelta: LongInt): LongInt; |
174 | 197 |
begin |
2191 | 198 |
if not isSoundEnabled then exit(0); |
199 |
openal_setglobalvolume(voldelta); |
|
174 | 200 |
end; |
201 |
||
1712 | 202 |
procedure PauseMusic; |
203 |
begin |
|
204 |
if (MusicFN = '') or (not isMusicEnabled) then exit; |
|
2191 | 205 |
openal_pausesound(Mus); |
1712 | 206 |
end; |
207 |
||
208 |
procedure ResumeMusic; |
|
209 |
begin |
|
210 |
if (MusicFN = '') or (not isMusicEnabled) then exit; |
|
2191 | 211 |
openal_playsound(Mus); |
1712 | 212 |
end; |
213 |
||
2192
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
214 |
|
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
215 |
var i: LongInt; |
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
216 |
c: TSound; |
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
217 |
|
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
218 |
initialization |
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
219 |
for i:= 0 to cMaxTeams do |
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
220 |
for c:= Low(TSound) to High(TSound) do |
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
221 |
voicepacks[i].chunks[c]:= -1 |
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
222 |
|
4763a778c033
- Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents:
2191
diff
changeset
|
223 |
|
4 | 224 |
end. |