author | displacer |
Sun, 01 Oct 2006 20:14:30 +0000 | |
changeset 177 | c67c15e6fae3 |
parent 175 | d226d976d836 |
child 181 | 7dfffbf0c7f6 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2005 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*) |
|
33 |
||
34 |
unit uSound; |
|
35 |
interface |
|
36 |
uses SDLh, uConsts; |
|
37 |
{$INCLUDE options.inc} |
|
38 |
||
39 |
procedure InitSound; |
|
40 |
procedure ReleaseSound; |
|
41 |
procedure SoundLoad; |
|
42 |
procedure PlaySound(snd: TSound); |
|
43 |
procedure PlayMusic; |
|
13 | 44 |
procedure StopTPUSound; |
174 | 45 |
function ChangeVolume(voldelta: integer): integer; |
4 | 46 |
|
47 |
implementation |
|
48 |
uses uMisc, uConsole; |
|
13 | 49 |
const chanTPU = 12; |
4 | 50 |
var Mus: PMixMusic; |
174 | 51 |
Volume: integer; |
4 | 52 |
|
53 |
procedure InitSound; |
|
54 |
begin |
|
55 |
if not isSoundEnabled then exit; |
|
56 |
WriteToConsole('Init sound...'); |
|
11 | 57 |
isSoundEnabled:= SDL_Init(SDL_INIT_AUDIO) >= 0; |
58 |
if isSoundEnabled then |
|
59 |
isSoundEnabled:= Mix_OpenAudio(22050, $8010, 2, 512) = 0; |
|
4 | 60 |
if isSoundEnabled then WriteLnToConsole(msgOK) |
61 |
else WriteLnToConsole(msgFailed); |
|
13 | 62 |
Mix_AllocateChannels(Succ(chanTPU)); |
174 | 63 |
Mix_VolumeMusic(48); |
64 |
||
65 |
Volume:= cInitVolume; |
|
66 |
if Volume < 0 then Volume:= 0; |
|
67 |
Volume:= Mix_Volume(-1, Volume) |
|
4 | 68 |
end; |
69 |
||
70 |
procedure ReleaseSound; |
|
71 |
var i: TSound; |
|
72 |
begin |
|
73 |
for i:= Low(TSound) to High(TSound) do |
|
74 |
Mix_FreeChunk(Soundz[i].id); |
|
75 |
Mix_FreeMusic(Mus); |
|
76 |
Mix_CloseAudio |
|
77 |
end; |
|
78 |
||
79 |
procedure SoundLoad; |
|
80 |
var i: TSound; |
|
81 |
s: string; |
|
82 |
begin |
|
83 |
if not isSoundEnabled then exit; |
|
84 |
for i:= Low(TSound) to High(TSound) do |
|
85 |
begin |
|
70 | 86 |
s:= Pathz[Soundz[i].Path] + '/' + Soundz[i].FileName; |
4 | 87 |
WriteToConsole(msgLoading + s + ' '); |
88 |
Soundz[i].id:= Mix_LoadWAV_RW(SDL_RWFromFile(PChar(s), 'rb'), 1); |
|
89 |
TryDo(Soundz[i].id <> nil, msgFailed, true); |
|
90 |
WriteLnToConsole(msgOK); |
|
91 |
end; |
|
92 |
||
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
70
diff
changeset
|
93 |
s:= PathPrefix + 'Data/Music/kahvi140a_alexander_chereshnev-illusion.ogg'; |
4 | 94 |
WriteToConsole(msgLoading + s + ' '); |
95 |
Mus:= Mix_LoadMUS(PChar(s)); |
|
96 |
TryDo(Mus <> nil, msgFailed, false); |
|
97 |
WriteLnToConsole(msgOK) |
|
98 |
end; |
|
99 |
||
100 |
procedure PlaySound(snd: TSound); |
|
101 |
begin |
|
102 |
if not isSoundEnabled then exit; |
|
13 | 103 |
if snd <> sndThrowPowerUp then Mix_PlayChannelTimed(-1, Soundz[snd].id, 0, -1) |
104 |
else Mix_PlayChannelTimed(chanTPU, Soundz[snd].id, 0, -1) |
|
4 | 105 |
end; |
106 |
||
13 | 107 |
procedure StopTPUSound; |
4 | 108 |
begin |
109 |
if not isSoundEnabled then exit; |
|
13 | 110 |
if Mix_Playing(chanTPU) <> 0 then |
111 |
Mix_HaltChannel(chanTPU) |
|
4 | 112 |
end; |
113 |
||
114 |
procedure PlayMusic; |
|
115 |
begin |
|
116 |
if not isSoundEnabled then exit; |
|
117 |
if Mix_PlayingMusic = 0 then |
|
118 |
Mix_PlayMusic(Mus, -1) |
|
119 |
end; |
|
120 |
||
174 | 121 |
function ChangeVolume(voldelta: integer): integer; |
122 |
begin |
|
123 |
inc(Volume, voldelta); |
|
124 |
if Volume < 0 then Volume:= 0; |
|
175 | 125 |
Mix_Volume(-1, Volume); |
126 |
Volume:= Mix_Volume(-1, -1); |
|
127 |
Mix_VolumeMusic(Volume * 3 div 8); |
|
174 | 128 |
Result:= Volume * 100 div MIX_MAX_VOLUME |
129 |
end; |
|
130 |
||
4 | 131 |
end. |