author | unc0rr |
Sun, 19 Apr 2009 15:44:47 +0000 | |
changeset 2009 | 91f461c218ab |
parent 1777 | 88674c291331 |
child 2171 | 8208946331ba |
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 |
|
21 |
uses SDLh, uConsts; |
|
22 |
{$INCLUDE options.inc} |
|
23 |
||
1654 | 24 |
type PVoicepack = ^TVoicepack; |
25 |
TVoicepack = record |
|
26 |
name: shortstring; |
|
27 |
chunks: array [TSound] of PMixChunk; |
|
28 |
end; |
|
29 |
||
4 | 30 |
procedure InitSound; |
31 |
procedure ReleaseSound; |
|
32 |
procedure SoundLoad; |
|
1669 | 33 |
procedure PlaySound(snd: TSound; infinite: boolean; voicepack: PVoicepack); |
4 | 34 |
procedure PlayMusic; |
1712 | 35 |
procedure PauseMusic; |
36 |
procedure ResumeMusic; |
|
282 | 37 |
procedure StopSound(snd: TSound); |
371 | 38 |
function ChangeVolume(voldelta: LongInt): LongInt; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
39 |
|
1654 | 40 |
function AskForVoicepack(name: shortstring): Pointer; |
4 | 41 |
|
1097 | 42 |
var MusicFN: shortstring = ''; |
43 |
||
4 | 44 |
implementation |
45 |
uses uMisc, uConsole; |
|
564 | 46 |
|
13 | 47 |
const chanTPU = 12; |
1712 | 48 |
var Volume: LongInt; |
1654 | 49 |
lastChan: array [TSound] of LongInt; |
50 |
voicepacks: array[0..cMaxTeams] of TVoicepack; |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
51 |
defVoicepack: PVoicepack; |
1712 | 52 |
Mus: PMixMusic = nil; |
1654 | 53 |
|
54 |
function AskForVoicepack(name: shortstring): Pointer; |
|
55 |
var i: Longword; |
|
56 |
begin |
|
57 |
i:= 0; |
|
58 |
while (voicepacks[i].name <> name) and (voicepacks[i].name <> '') do |
|
59 |
begin |
|
60 |
inc(i); |
|
61 |
TryDo(i <= cMaxTeams, 'Engine bug: AskForVoicepack i > cMaxTeams', true) |
|
62 |
end; |
|
63 |
||
64 |
voicepacks[i].name:= name; |
|
65 |
AskForVoicepack:= @voicepacks[i] |
|
66 |
end; |
|
4 | 67 |
|
68 |
procedure InitSound; |
|
69 |
begin |
|
70 |
if not isSoundEnabled then exit; |
|
71 |
WriteToConsole('Init sound...'); |
|
11 | 72 |
isSoundEnabled:= SDL_Init(SDL_INIT_AUDIO) >= 0; |
73 |
if isSoundEnabled then |
|
74 |
isSoundEnabled:= Mix_OpenAudio(22050, $8010, 2, 512) = 0; |
|
4 | 75 |
if isSoundEnabled then WriteLnToConsole(msgOK) |
76 |
else WriteLnToConsole(msgFailed); |
|
13 | 77 |
Mix_AllocateChannels(Succ(chanTPU)); |
1137 | 78 |
if isMusicEnabled then Mix_VolumeMusic(50); |
174 | 79 |
|
1777 | 80 |
Volume:= 0; |
81 |
ChangeVolume(cInitVolume) |
|
4 | 82 |
end; |
83 |
||
84 |
procedure ReleaseSound; |
|
85 |
var i: TSound; |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
86 |
t: Longword; |
4 | 87 |
begin |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
88 |
for t:= 0 to cMaxTeams do |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
89 |
if voicepacks[t].name <> '' then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
90 |
for i:= Low(TSound) to High(TSound) do |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
91 |
if voicepacks[t].chunks[i] <> nil then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
92 |
Mix_FreeChunk(voicepacks[t].chunks[i]); |
1098 | 93 |
|
4 | 94 |
Mix_FreeMusic(Mus); |
95 |
Mix_CloseAudio |
|
96 |
end; |
|
97 |
||
98 |
procedure SoundLoad; |
|
99 |
var i: TSound; |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
100 |
s: shortstring; |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
101 |
t: Longword; |
4 | 102 |
begin |
103 |
if not isSoundEnabled then exit; |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
104 |
|
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
105 |
defVoicepack:= AskForVoicepack('Default'); |
1654 | 106 |
|
4 | 107 |
for i:= Low(TSound) to High(TSound) do |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
108 |
if Soundz[i].Path <> ptVoices then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
109 |
begin |
1657
dde8f60d3e07
Fix small bug in voicepacks support in engine. It's complete and tested now.
unc0rr
parents:
1656
diff
changeset
|
110 |
s:= Pathz[Soundz[i].Path] + '/' + Soundz[i].FileName; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
111 |
WriteToConsole(msgLoading + s + ' '); |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
112 |
defVoicepack^.chunks[i]:= Mix_LoadWAV_RW(SDL_RWFromFile(Str2PChar(s), 'rb'), 1); |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
113 |
TryDo(defVoicepack^.chunks[i] <> nil, msgFailed, true); |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
114 |
WriteLnToConsole(msgOK); |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
115 |
end; |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
116 |
|
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
117 |
for t:= 0 to cMaxTeams do |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
118 |
if voicepacks[t].name <> '' then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
119 |
for i:= Low(TSound) to High(TSound) do |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
120 |
if Soundz[i].Path = ptVoices then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
121 |
begin |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
122 |
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
|
123 |
WriteToConsole(msgLoading + s + ' '); |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
124 |
voicepacks[t].chunks[i]:= Mix_LoadWAV_RW(SDL_RWFromFile(Str2PChar(s), 'rb'), 1); |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
125 |
if voicepacks[t].chunks[i] = nil then |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
126 |
WriteLnToConsole(msgFailed) |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
127 |
else |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
128 |
WriteLnToConsole(msgOK) |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
129 |
end; |
4 | 130 |
end; |
131 |
||
1669 | 132 |
procedure PlaySound(snd: TSound; infinite: boolean; voicepack: PVoicepack); |
371 | 133 |
var loops: LongInt; |
4 | 134 |
begin |
1562
c0eea030347b
Don't play sounds when quick replaying in spectate mode
unc0rr
parents:
1225
diff
changeset
|
135 |
if (not isSoundEnabled) or fastUntilLag then exit; |
282 | 136 |
if infinite then loops:= -1 else loops:= 0; |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
137 |
|
1669 | 138 |
if (voicepack <> nil) and (voicepack^.chunks[snd] <> nil) then |
139 |
lastChan[snd]:= Mix_PlayChannelTimed(-1, voicepack^.chunks[snd], loops, -1) |
|
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
140 |
else |
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
141 |
lastChan[snd]:= Mix_PlayChannelTimed(-1, defVoicepack^.chunks[snd], loops, -1) |
4 | 142 |
end; |
143 |
||
282 | 144 |
procedure StopSound(snd: TSound); |
4 | 145 |
begin |
146 |
if not isSoundEnabled then exit; |
|
1654 | 147 |
if Mix_Playing(lastChan[snd]) <> 0 then |
148 |
Mix_HaltChannel(lastChan[snd]) |
|
4 | 149 |
end; |
150 |
||
151 |
procedure PlayMusic; |
|
564 | 152 |
var s: string; |
4 | 153 |
begin |
1097 | 154 |
if (not isSoundEnabled) |
1128 | 155 |
or (MusicFN = '') |
1712 | 156 |
or (not isMusicEnabled) then exit; |
565 | 157 |
|
1097 | 158 |
s:= PathPrefix + '/Music/' + MusicFN; |
564 | 159 |
WriteToConsole(msgLoading + s + ' '); |
565 | 160 |
|
564 | 161 |
Mus:= Mix_LoadMUS(Str2PChar(s)); |
162 |
TryDo(Mus <> nil, msgFailed, false); |
|
163 |
WriteLnToConsole(msgOK); |
|
164 |
||
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1137
diff
changeset
|
165 |
SDLTry(Mix_FadeInMusic(Mus, -1, 3000) <> -1, false) |
4 | 166 |
end; |
167 |
||
371 | 168 |
function ChangeVolume(voldelta: LongInt): LongInt; |
174 | 169 |
begin |
181 | 170 |
if not isSoundEnabled then |
1654 | 171 |
exit(0); |
351 | 172 |
|
174 | 173 |
inc(Volume, voldelta); |
174 |
if Volume < 0 then Volume:= 0; |
|
175 | 175 |
Mix_Volume(-1, Volume); |
176 |
Volume:= Mix_Volume(-1, -1); |
|
1137 | 177 |
if isMusicEnabled then Mix_VolumeMusic(Volume * 4 div 8); |
351 | 178 |
ChangeVolume:= Volume * 100 div MIX_MAX_VOLUME |
174 | 179 |
end; |
180 |
||
1712 | 181 |
procedure PauseMusic; |
182 |
begin |
|
183 |
if (MusicFN = '') or (not isMusicEnabled) then exit; |
|
184 |
||
185 |
Mix_PauseMusic(Mus); |
|
186 |
end; |
|
187 |
||
188 |
procedure ResumeMusic; |
|
189 |
begin |
|
190 |
if (MusicFN = '') or (not isMusicEnabled) then exit; |
|
191 |
||
192 |
Mix_ResumeMusic(Mus); |
|
193 |
end; |
|
194 |
||
4 | 195 |
end. |