author | nemo |
Sun, 28 Jun 2009 14:37:26 +0000 | |
changeset 2200 | 8192be6e3aef |
parent 2194 | 1597710c6118 |
child 2210 | 1cb7118a77dd |
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} |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2194
diff
changeset
|
29 |
{$IFDEF UNIX} |
2191 | 30 |
{$linklib openal} |
31 |
{$linklib ogg} |
|
32 |
{$linklib vorbis} |
|
33 |
{$linklib vorbisfile} |
|
34 |
{$ENDIF} |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2194
diff
changeset
|
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 |
||
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2194
diff
changeset
|
46 |
const OpenALBridge = 'openalbridge'; |
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 |
|
2191 | 59 |
|
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; |
|
64 |
function openal_setvolume (index: LongInt; percentage: byte) : boolean; cdecl; external OpenALBridge; |
|
2194
1597710c6118
koda adds threading for fadein/out. Untested under windows, but works beautifully under Linux (and presumably OSX, right koda?)
nemo
parents:
2192
diff
changeset
|
65 |
function openal_fadeout (index: LongInt; quantity: LongInt) : boolean; cdecl; external OpenALBridge; |
1597710c6118
koda adds threading for fadein/out. Untested under windows, but works beautifully under Linux (and presumably OSX, right koda?)
nemo
parents:
2192
diff
changeset
|
66 |
function openal_fadein (index: LongInt; quantity: LongInt) : boolean; cdecl; external OpenALBridge; |
2191 | 67 |
function openal_playsound (index: LongInt) : boolean; cdecl; external OpenALBridge; |
68 |
function openal_pausesound (index: LongInt) : boolean; cdecl; external OpenALBridge; |
|
69 |
function openal_stopsound (index: LongInt) : boolean; cdecl; external OpenALBridge; |
|
70 |
function openal_setglobalvolume (percentage: byte) : boolean; cdecl; external OpenALBridge; |
|
4 | 71 |
|
1097 | 72 |
var MusicFN: shortstring = ''; |
73 |
||
4 | 74 |
implementation |
2191 | 75 |
|
4 | 76 |
uses uMisc, uConsole; |
564 | 77 |
|
13 | 78 |
const chanTPU = 12; |
2191 | 79 |
var lastChan: array [TSound] of LongInt; |
1654 | 80 |
voicepacks: array[0..cMaxTeams] of TVoicepack; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
81 |
defVoicepack: PVoicepack; |
2191 | 82 |
Mus: LongInt = 0; |
1654 | 83 |
|
84 |
function AskForVoicepack(name: shortstring): Pointer; |
|
85 |
var i: Longword; |
|
86 |
begin |
|
87 |
i:= 0; |
|
88 |
while (voicepacks[i].name <> name) and (voicepacks[i].name <> '') do |
|
89 |
begin |
|
90 |
inc(i); |
|
91 |
TryDo(i <= cMaxTeams, 'Engine bug: AskForVoicepack i > cMaxTeams', true) |
|
92 |
end; |
|
93 |
||
94 |
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
|
95 |
addfilelog('================================================ '+inttostr(i)); |
1654 | 96 |
AskForVoicepack:= @voicepacks[i] |
97 |
end; |
|
4 | 98 |
|
99 |
procedure InitSound; |
|
2191 | 100 |
const numSounds = 200; |
4 | 101 |
begin |
102 |
if not isSoundEnabled then exit; |
|
2191 | 103 |
WriteToConsole('Init OpenAL sound...'); |
104 |
isSoundEnabled:= openal_init(numSounds); |
|
4 | 105 |
if isSoundEnabled then WriteLnToConsole(msgOK) |
106 |
else WriteLnToConsole(msgFailed); |
|
1777 | 107 |
ChangeVolume(cInitVolume) |
4 | 108 |
end; |
109 |
||
110 |
procedure ReleaseSound; |
|
111 |
begin |
|
2191 | 112 |
openal_close(); |
4 | 113 |
end; |
114 |
||
115 |
procedure SoundLoad; |
|
116 |
var i: TSound; |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
117 |
s: shortstring; |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
118 |
t: Longword; |
4 | 119 |
begin |
120 |
if not isSoundEnabled then exit; |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
121 |
|
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
122 |
defVoicepack:= AskForVoicepack('Default'); |
1654 | 123 |
|
4 | 124 |
for i:= Low(TSound) to High(TSound) do |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
125 |
if Soundz[i].Path <> ptVoices then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
126 |
begin |
1657
dde8f60d3e07
Fix small bug in voicepacks support in engine. It's complete and tested now.
unc0rr
parents:
1656
diff
changeset
|
127 |
s:= Pathz[Soundz[i].Path] + '/' + Soundz[i].FileName; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
128 |
WriteToConsole(msgLoading + s + ' '); |
2191 | 129 |
defVoicepack^.chunks[i]:= openal_loadfile (Str2PChar(s)); |
130 |
TryDo(defVoicepack^.chunks[i] >= 0, msgFailed, true); |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
131 |
WriteLnToConsole(msgOK); |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
132 |
end; |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
133 |
|
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
134 |
for t:= 0 to cMaxTeams do |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
135 |
if voicepacks[t].name <> '' then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
136 |
for i:= Low(TSound) to High(TSound) do |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
137 |
if Soundz[i].Path = ptVoices then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
138 |
begin |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
139 |
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
|
140 |
WriteToConsole(msgLoading + s + ' '); |
2191 | 141 |
voicepacks[t].chunks[i]:= openal_loadfile (Str2PChar(s)); |
142 |
if voicepacks[t].chunks[i] < 0 then |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
143 |
WriteLnToConsole(msgFailed) |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
144 |
else |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
145 |
WriteLnToConsole(msgOK) |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
146 |
end; |
4 | 147 |
end; |
148 |
||
1669 | 149 |
procedure PlaySound(snd: TSound; infinite: boolean; voicepack: PVoicepack); |
4 | 150 |
begin |
1562
c0eea030347b
Don't play sounds when quick replaying in spectate mode
unc0rr
parents:
1225
diff
changeset
|
151 |
if (not isSoundEnabled) or fastUntilLag then exit; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
152 |
|
2191 | 153 |
if (voicepack <> nil) and (voicepack^.chunks[snd] >= 0) then |
154 |
begin |
|
155 |
if infinite then openal_toggleloop(voicepack^.chunks[snd]); |
|
156 |
openal_playsound(voicepack^.chunks[snd]); |
|
157 |
lastChan[snd]:=voicepack^.chunks[snd]; |
|
158 |
end |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
159 |
else |
2191 | 160 |
begin |
161 |
if infinite then openal_toggleloop(defVoicepack^.chunks[snd]); |
|
162 |
openal_playsound(defVoicepack^.chunks[snd]); |
|
163 |
lastChan[snd]:=defVoicepack^.chunks[snd]; |
|
164 |
end |
|
4 | 165 |
end; |
166 |
||
282 | 167 |
procedure StopSound(snd: TSound); |
4 | 168 |
begin |
169 |
if not isSoundEnabled then exit; |
|
2191 | 170 |
openal_stopsound(lastChan[snd]) |
4 | 171 |
end; |
172 |
||
173 |
procedure PlayMusic; |
|
564 | 174 |
var s: string; |
4 | 175 |
begin |
1097 | 176 |
if (not isSoundEnabled) |
1128 | 177 |
or (MusicFN = '') |
1712 | 178 |
or (not isMusicEnabled) then exit; |
565 | 179 |
|
1097 | 180 |
s:= PathPrefix + '/Music/' + MusicFN; |
564 | 181 |
WriteToConsole(msgLoading + s + ' '); |
565 | 182 |
|
2191 | 183 |
Mus:= openal_loadfile(Str2PChar(s)); |
184 |
TryDo(Mus >= 0, msgFailed, false); |
|
564 | 185 |
WriteLnToConsole(msgOK); |
186 |
||
2191 | 187 |
openal_fadein(Mus, 50); |
188 |
openal_toggleloop(Mus); |
|
4 | 189 |
end; |
190 |
||
371 | 191 |
function ChangeVolume(voldelta: LongInt): LongInt; |
174 | 192 |
begin |
2191 | 193 |
if not isSoundEnabled then exit(0); |
194 |
openal_setglobalvolume(voldelta); |
|
174 | 195 |
end; |
196 |
||
1712 | 197 |
procedure PauseMusic; |
198 |
begin |
|
199 |
if (MusicFN = '') or (not isMusicEnabled) then exit; |
|
2191 | 200 |
openal_pausesound(Mus); |
1712 | 201 |
end; |
202 |
||
203 |
procedure ResumeMusic; |
|
204 |
begin |
|
205 |
if (MusicFN = '') or (not isMusicEnabled) then exit; |
|
2191 | 206 |
openal_playsound(Mus); |
1712 | 207 |
end; |
208 |
||
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
|
209 |
|
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
|
210 |
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
|
211 |
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
|
212 |
|
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
|
213 |
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
|
214 |
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
|
215 |
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
|
216 |
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
|
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 |
|
4 | 219 |
end. |