annotate AudioPlayer.cpp @ 1472:2395e99b89d0

sub_4077F1 cleaned, and fixed previous mistake in cleaning
author zipi
date Mon, 26 Aug 2013 21:40:29 +0100
parents 934074e7fcc1
children 7ef4b64f6329
rev   line source
1165
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
1 #ifdef _MSC_VER
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
2 #define _CRT_SECURE_NO_WARNINGS
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
3 #endif
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
4
0
Ritor1
parents:
diff changeset
5 #include <string>
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
6 #include <assert.h>
0
Ritor1
parents:
diff changeset
7
1262
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1205
diff changeset
8 #include "mm7_data.h"
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 848
diff changeset
9 #include "VideoPlayer.h"
0
Ritor1
parents:
diff changeset
10 #include "AudioPlayer.h"
Ritor1
parents:
diff changeset
11 #include "Allocator.h"
Ritor1
parents:
diff changeset
12 #include "FrameTableInc.h"
Ritor1
parents:
diff changeset
13 #include "Indoor.h"
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
14 #include "SpriteObject.h"
0
Ritor1
parents:
diff changeset
15 #include "Party.h"
Ritor1
parents:
diff changeset
16 #include "Actor.h"
Ritor1
parents:
diff changeset
17 #include "Game.h"
Ritor1
parents:
diff changeset
18 #include "DecorationList.h"
Ritor1
parents:
diff changeset
19 #include "Time.h"
Ritor1
parents:
diff changeset
20 #include "OSInfo.h"
Ritor1
parents:
diff changeset
21 #include "Math.h"
Ritor1
parents:
diff changeset
22 #include "MapInfo.h"
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
23 #include "GUIWindow.h"
0
Ritor1
parents:
diff changeset
24 #include "Log.h"
Ritor1
parents:
diff changeset
25
Ritor1
parents:
diff changeset
26 #include "Bink_Smacker.h"
Ritor1
parents:
diff changeset
27
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
28 #include "MM7.h"
0
Ritor1
parents:
diff changeset
29
Ritor1
parents:
diff changeset
30
Ritor1
parents:
diff changeset
31 PCMWAVEFORMAT pcmWaveFormat;
Ritor1
parents:
diff changeset
32
Ritor1
parents:
diff changeset
33 int Aureal3D_SplashScreen;
Ritor1
parents:
diff changeset
34 int Aureal3D_SplashAudio;
Ritor1
parents:
diff changeset
35 int uFindSound_BinSearch_ResultID; // weak
Ritor1
parents:
diff changeset
36 int uLastLoadedSoundID; // weak
Ritor1
parents:
diff changeset
37 int sLastTrackLengthMS;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1165
diff changeset
38 std::array<Sound, 3000> pSounds;
0
Ritor1
parents:
diff changeset
39 AudioPlayer *pAudioPlayer;
Ritor1
parents:
diff changeset
40 SoundList *pSoundList;
Ritor1
parents:
diff changeset
41
Ritor1
parents:
diff changeset
42
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1165
diff changeset
43 std::array<stru339_spell_sound, 4> stru_A750F8;
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1165
diff changeset
44 std::array<stru339_spell_sound, 4> stru_AA1058;
0
Ritor1
parents:
diff changeset
45
Ritor1
parents:
diff changeset
46
Ritor1
parents:
diff changeset
47
Ritor1
parents:
diff changeset
48 unsigned __int8 uSoundVolumeMultiplier = 4;
Ritor1
parents:
diff changeset
49 unsigned __int8 uVoicesVolumeMultiplier = 4;
Ritor1
parents:
diff changeset
50 unsigned __int8 uMusicVolimeMultiplier = 4;
Ritor1
parents:
diff changeset
51 int bWalkSound; // idb
Ritor1
parents:
diff changeset
52
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1165
diff changeset
53 std::array<float, 10> pSoundVolumeLevels =
0
Ritor1
parents:
diff changeset
54 {
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
55 0.0000000f, 0.1099999f, 0.2199999f, 0.3300000f, 0.4399999f,
1265
2b4c8cdd8db0 more sounds playing
Grumpy7
parents: 1262
diff changeset
56 0.5500000f, 0.6600000f, 0.7699999f, 0.8799999f, 0.9700000f //changed 0.9900000f to 0.9700000f. for some reason it only works for values below this
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
57 };
0
Ritor1
parents:
diff changeset
58
Ritor1
parents:
diff changeset
59
Ritor1
parents:
diff changeset
60
Ritor1
parents:
diff changeset
61
Ritor1
parents:
diff changeset
62 void ReleaseSoundData(void *_this);
Ritor1
parents:
diff changeset
63
Ritor1
parents:
diff changeset
64
Ritor1
parents:
diff changeset
65
Ritor1
parents:
diff changeset
66
Ritor1
parents:
diff changeset
67 //----- (004A9953) --------------------------------------------------------
Ritor1
parents:
diff changeset
68 void SoundList::Initialize()
Ritor1
parents:
diff changeset
69 {
Ritor1
parents:
diff changeset
70 SoundDesc *pSoundDesc; // eax@5
Ritor1
parents:
diff changeset
71 void *pSoundData; // ebx@7
Ritor1
parents:
diff changeset
72 unsigned int uSoundSize; // eax@7
Ritor1
parents:
diff changeset
73 char *pSoundBytes; // ebx@7
Ritor1
parents:
diff changeset
74 AILFILETYPE pType; // eax@7
Ritor1
parents:
diff changeset
75 int v8; // eax@8
Ritor1
parents:
diff changeset
76 char pSoundName[120]; // [sp+4h] [bp-A4h]@4
Ritor1
parents:
diff changeset
77 AILSOUNDINFO pInfo; // [sp+7Ch] [bp-2Ch]@10
Ritor1
parents:
diff changeset
78 int v12; // [sp+A0h] [bp-8h]@12
Ritor1
parents:
diff changeset
79
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
80 if ( sNumSounds > 1 )
0
Ritor1
parents:
diff changeset
81 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
82 for ( uint i = 1; i < pSoundList->sNumSounds; ++i )
0
Ritor1
parents:
diff changeset
83 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
84 sprintf(pSoundName, "%s", pSounds[i].pSoundName);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
85 pSoundDesc = &pSoundList->pSounds[i];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
86 if ( pSoundList->pSounds[i].eType != SOUND_DESC_SYSTEM || (sprintf(pSoundName, "%s", pSounds[i].pSoundName),
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
87 pSoundList->pSounds[i].pSoundData[0] = ::LoadSound(pSoundName, (SoundData *)0xFFFFFFFF, pSounds[i].uSoundID),
0
Ritor1
parents:
diff changeset
88 !pAudioPlayer->b3DSoundInitialized)
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
89 || (pSoundDesc = &pSoundList->pSounds[i], !(pSoundDesc->uFlags & SOUND_DESC_SWAP))
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
90 || !pSoundDesc->pSoundData[0] )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
91 continue;
0
Ritor1
parents:
diff changeset
92 pSoundData = pSoundDesc->pSoundData[0];
Ritor1
parents:
diff changeset
93 uSoundSize = *(int *)pSoundData;
Ritor1
parents:
diff changeset
94 pSoundBytes = (char *)pSoundData + 4;
Ritor1
parents:
diff changeset
95 pType = AIL_file_type(pSoundBytes, uSoundSize);
Ritor1
parents:
diff changeset
96 if ( !pType )
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
97 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
98 pSoundList->pSounds[i].bDecompressed = false;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
99 pSoundList->UnloadSound(i, 1);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
100 continue;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
101 }
0
Ritor1
parents:
diff changeset
102 v8 = pType - 1;
Ritor1
parents:
diff changeset
103 if ( v8 )
Ritor1
parents:
diff changeset
104 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
105 if ( v8 == 1 )
0
Ritor1
parents:
diff changeset
106 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
107 if ( AIL_WAV_info(pSoundBytes, &pInfo) && pInfo.uChannels != 2 )
0
Ritor1
parents:
diff changeset
108 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
109 if ( !AIL_decompress_ADPCM(&pInfo, &pSoundList->pSounds[i].p3DSound, &v12) )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
110 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
111 pSoundList->pSounds[i].p3DSound = 0;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
112 pSoundList->pSounds[i].bDecompressed = true;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
113 }
0
Ritor1
parents:
diff changeset
114 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
115 pSoundList->UnloadSound(i, 1);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
116 continue;
0
Ritor1
parents:
diff changeset
117 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
118 pSoundList->pSounds[i].bDecompressed = false;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
119 pSoundList->UnloadSound(i, 1);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
120 continue;
0
Ritor1
parents:
diff changeset
121 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
122 pSoundList->pSounds[i].p3DSound = pSoundList->pSounds[i].pSoundData[0];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
123 pSoundList->UnloadSound(i, 1);
0
Ritor1
parents:
diff changeset
124 }
Ritor1
parents:
diff changeset
125 }
Ritor1
parents:
diff changeset
126 }
Ritor1
parents:
diff changeset
127
Ritor1
parents:
diff changeset
128 //----- (004A9A67) --------------------------------------------------------
Ritor1
parents:
diff changeset
129 __int16 SoundList::LoadSound(int a1, unsigned int a3)
Ritor1
parents:
diff changeset
130 {
Ritor1
parents:
diff changeset
131 AILSOUNDINFO v24; // [sp+84h] [bp-28h]@23
Ritor1
parents:
diff changeset
132
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
133 if (bNoSound || !sNumSounds)
0
Ritor1
parents:
diff changeset
134 return 0;
Ritor1
parents:
diff changeset
135
Ritor1
parents:
diff changeset
136 uint uSoundIdx = 0;
Ritor1
parents:
diff changeset
137 SoundDesc *pSound = nullptr;
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
138 for (uint i = 1; i < sNumSounds; ++i)
0
Ritor1
parents:
diff changeset
139 if (pSounds[i].uSoundID == a1)
Ritor1
parents:
diff changeset
140 {
Ritor1
parents:
diff changeset
141 uSoundIdx = i;
Ritor1
parents:
diff changeset
142 pSound = &pSounds[i];
Ritor1
parents:
diff changeset
143 break;
Ritor1
parents:
diff changeset
144 }
Ritor1
parents:
diff changeset
145 if (!pSound)
Ritor1
parents:
diff changeset
146 return 0;
Ritor1
parents:
diff changeset
147
592
96f48cfdd657 some flags
Nomad
parents: 515
diff changeset
148 if (pSound->uFlags & SOUND_DESC_SWAP && pSound->p3DSound ||
96f48cfdd657 some flags
Nomad
parents: 515
diff changeset
149 ~pSound->uFlags & SOUND_DESC_SWAP && pSound->pSoundData[0])
0
Ritor1
parents:
diff changeset
150 return uSoundIdx;
Ritor1
parents:
diff changeset
151
Ritor1
parents:
diff changeset
152 if (!pSound->pSoundData[0])
Ritor1
parents:
diff changeset
153 pSound->pSoundData[0] = ::LoadSound(pSound->pSoundName, (SoundData *)0xFFFFFFFF, pSound->uSoundID);
Ritor1
parents:
diff changeset
154
Ritor1
parents:
diff changeset
155 if (!pSound->pSoundData[0])
Ritor1
parents:
diff changeset
156 return 0;
Ritor1
parents:
diff changeset
157
Ritor1
parents:
diff changeset
158 if (a3)
592
96f48cfdd657 some flags
Nomad
parents: 515
diff changeset
159 pSound->uFlags |= SOUND_DESC_SYSTEM;
0
Ritor1
parents:
diff changeset
160
Ritor1
parents:
diff changeset
161 if (!pAudioPlayer->b3DSoundInitialized)
Ritor1
parents:
diff changeset
162 return uSoundIdx;
Ritor1
parents:
diff changeset
163
592
96f48cfdd657 some flags
Nomad
parents: 515
diff changeset
164 if (~pSound->uFlags & SOUND_DESC_SWAP || !pSound->pSoundData[0])
0
Ritor1
parents:
diff changeset
165 return uSoundIdx;
Ritor1
parents:
diff changeset
166
Ritor1
parents:
diff changeset
167
Ritor1
parents:
diff changeset
168 auto pSoundData = pSound->pSoundData[0];
Ritor1
parents:
diff changeset
169 switch (AIL_file_type((void *)pSoundData->pData, pSoundData->uDataSize))
Ritor1
parents:
diff changeset
170 {
Ritor1
parents:
diff changeset
171 default:
Ritor1
parents:
diff changeset
172 case AILFILETYPE_UNKNOWN:
Ritor1
parents:
diff changeset
173 pSound->bDecompressed = false;
Ritor1
parents:
diff changeset
174 return 0;
Ritor1
parents:
diff changeset
175
Ritor1
parents:
diff changeset
176 case AILFILETYPE_PCM_WAV:
Ritor1
parents:
diff changeset
177 pSound->p3DSound = pSound->pSoundData[0];
Ritor1
parents:
diff changeset
178 return uSoundIdx;
Ritor1
parents:
diff changeset
179
Ritor1
parents:
diff changeset
180 case AILFILETYPE_ADPCM_WAV:
Ritor1
parents:
diff changeset
181 if (AIL_WAV_info((void *)pSoundData->pData, &v24) && v24.uChannels != 2)
Ritor1
parents:
diff changeset
182 {
Ritor1
parents:
diff changeset
183 if (!AIL_decompress_ADPCM(&v24, &pSound->p3DSound, &a1) )
Ritor1
parents:
diff changeset
184 {
Ritor1
parents:
diff changeset
185 pSound->p3DSound = nullptr;
Ritor1
parents:
diff changeset
186 pSound->bDecompressed = true;
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
187 UnloadSound(uSoundIdx, 0);
0
Ritor1
parents:
diff changeset
188 }
Ritor1
parents:
diff changeset
189 }
Ritor1
parents:
diff changeset
190 return uSoundIdx;
Ritor1
parents:
diff changeset
191 };
Ritor1
parents:
diff changeset
192 }
Ritor1
parents:
diff changeset
193
Ritor1
parents:
diff changeset
194 //----- (004A9BBD) --------------------------------------------------------
Ritor1
parents:
diff changeset
195 int SoundList::LoadSound(unsigned int a2, LPVOID lpBuffer, int uBufferSizeLeft, int *pOutSoundSize, int a6)
Ritor1
parents:
diff changeset
196 {
Ritor1
parents:
diff changeset
197 //SoundList *v6; // edi@1
Ritor1
parents:
diff changeset
198 signed int v7; // esi@1
Ritor1
parents:
diff changeset
199 //unsigned __int8 v8; // zf@1
Ritor1
parents:
diff changeset
200 //unsigned __int8 v9; // sf@1
Ritor1
parents:
diff changeset
201 SoundDesc *v10; // eax@3
Ritor1
parents:
diff changeset
202 SoundDesc *v11; // ecx@3
Ritor1
parents:
diff changeset
203 int v12; // ebx@7
Ritor1
parents:
diff changeset
204 int result; // eax@13
Ritor1
parents:
diff changeset
205 SoundHeader *v14; // esi@16
Ritor1
parents:
diff changeset
206 DWORD *v15; // edi@16
Ritor1
parents:
diff changeset
207 int v16; // ebx@16
Ritor1
parents:
diff changeset
208 unsigned int v17; // eax@18
Ritor1
parents:
diff changeset
209 void *v18; // ebx@19
Ritor1
parents:
diff changeset
210 std::string v19; // [sp-18h] [bp-38h]@22
Ritor1
parents:
diff changeset
211 const char *v20; // [sp-8h] [bp-28h]@22
Ritor1
parents:
diff changeset
212 int v21; // [sp-4h] [bp-24h]@22
Ritor1
parents:
diff changeset
213 //SoundList *v22; // [sp+Ch] [bp-14h]@1
Ritor1
parents:
diff changeset
214 SoundDesc *Args; // [sp+10h] [bp-10h]@3
Ritor1
parents:
diff changeset
215 unsigned int v24; // [sp+14h] [bp-Ch]@2
Ritor1
parents:
diff changeset
216 int v25; // [sp+18h] [bp-8h]@2
Ritor1
parents:
diff changeset
217 int v26; // [sp+1Ch] [bp-4h]@1
Ritor1
parents:
diff changeset
218
Ritor1
parents:
diff changeset
219 //v6 = this;
Ritor1
parents:
diff changeset
220 v7 = 0;
Ritor1
parents:
diff changeset
221 //v22 = this;
Ritor1
parents:
diff changeset
222 //v8 = this->uNumSounds == 0;
Ritor1
parents:
diff changeset
223 //v9 = (this->uNumSounds & 0x80000000u) != 0;
Ritor1
parents:
diff changeset
224 v26 = 0;
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
225 if (!sNumSounds)
0
Ritor1
parents:
diff changeset
226 return 0;
Ritor1
parents:
diff changeset
227
Ritor1
parents:
diff changeset
228
Ritor1
parents:
diff changeset
229 v24 = 0;
Ritor1
parents:
diff changeset
230 v25 = 44;
Ritor1
parents:
diff changeset
231 while ( 1 )
Ritor1
parents:
diff changeset
232 {
Ritor1
parents:
diff changeset
233 v10 = pSounds;
Ritor1
parents:
diff changeset
234 v11 = &v10[v24 / 0x78];
Ritor1
parents:
diff changeset
235 Args = &v10[v24 / 0x78];
Ritor1
parents:
diff changeset
236 if ( a2 == v10[v24 / 0x78].uSoundID )
Ritor1
parents:
diff changeset
237 {
Ritor1
parents:
diff changeset
238 if ( a6 == v7 && *(int *)&v10->pSoundName[v25] != v7 )
Ritor1
parents:
diff changeset
239 return v26;
Ritor1
parents:
diff changeset
240 if ( (signed int)pAudioPlayer->uNumSoundHeaders > v7 )
Ritor1
parents:
diff changeset
241 break;
Ritor1
parents:
diff changeset
242 }
Ritor1
parents:
diff changeset
243 LABEL_12:
Ritor1
parents:
diff changeset
244 ++v26;
Ritor1
parents:
diff changeset
245 v25 += 120;
Ritor1
parents:
diff changeset
246 v24 += 120;
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
247 if ( v26 >= (signed int)sNumSounds )
0
Ritor1
parents:
diff changeset
248 return 0;
Ritor1
parents:
diff changeset
249 }
Ritor1
parents:
diff changeset
250 v12 = 0;
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1016
diff changeset
251 while ( _stricmp(pAudioPlayer->pSoundHeaders[v12].pSoundName, v11->pSoundName) )
0
Ritor1
parents:
diff changeset
252 {
Ritor1
parents:
diff changeset
253 ++v7;
Ritor1
parents:
diff changeset
254 ++v12;
Ritor1
parents:
diff changeset
255 if ( v7 >= (signed int)pAudioPlayer->uNumSoundHeaders )
Ritor1
parents:
diff changeset
256 {
Ritor1
parents:
diff changeset
257 v7 = 0;
Ritor1
parents:
diff changeset
258 goto LABEL_12;
Ritor1
parents:
diff changeset
259 }
Ritor1
parents:
diff changeset
260 v11 = Args;
Ritor1
parents:
diff changeset
261 }
Ritor1
parents:
diff changeset
262 v14 = &pAudioPlayer->pSoundHeaders[v7];
Ritor1
parents:
diff changeset
263 v15 = (DWORD *)&v14->uDecompressedSize;
Ritor1
parents:
diff changeset
264 a2 = v14->uDecompressedSize;
Ritor1
parents:
diff changeset
265 v16 = a2;
Ritor1
parents:
diff changeset
266 if ( (signed int)a2 > uBufferSizeLeft )
Ritor1
parents:
diff changeset
267 Abortf("Sound %s is size %i bytes, sound buffer size is %i bytes", Args, a2, uBufferSizeLeft);
Ritor1
parents:
diff changeset
268 SetFilePointer(pAudioPlayer->hAudioSnd, v14->uFileOffset, 0, 0);
Ritor1
parents:
diff changeset
269 v17 = v14->uCompressedSize;
Ritor1
parents:
diff changeset
270 if ( (signed int)v17 >= (signed int)*v15 )
Ritor1
parents:
diff changeset
271 {
Ritor1
parents:
diff changeset
272 if ( v17 == *v15 )
Ritor1
parents:
diff changeset
273 {
Ritor1
parents:
diff changeset
274 ReadFile(pAudioPlayer->hAudioSnd, lpBuffer, *v15, (LPDWORD)&Args, 0);
Ritor1
parents:
diff changeset
275 }
Ritor1
parents:
diff changeset
276 else
Ritor1
parents:
diff changeset
277 {
Ritor1
parents:
diff changeset
278 MessageBoxW(nullptr, L"Can't load sound file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Sound.cpp:666", 0);
Ritor1
parents:
diff changeset
279 }
Ritor1
parents:
diff changeset
280 }
Ritor1
parents:
diff changeset
281 else
Ritor1
parents:
diff changeset
282 {
Ritor1
parents:
diff changeset
283 v18 = malloc(v14->uCompressedSize);
Ritor1
parents:
diff changeset
284 ReadFile(pAudioPlayer->hAudioSnd, v18, v14->uCompressedSize, (LPDWORD)&Args, 0);
Ritor1
parents:
diff changeset
285 zlib::MemUnzip(lpBuffer, &v14->uDecompressedSize, v18, v14->uCompressedSize);
Ritor1
parents:
diff changeset
286 free(v18);
Ritor1
parents:
diff changeset
287 v16 = a2;
Ritor1
parents:
diff changeset
288 }
Ritor1
parents:
diff changeset
289 result = v26;
Ritor1
parents:
diff changeset
290 pSounds->pSoundData[a6 + 30 * v26] = (SoundData *)lpBuffer;
Ritor1
parents:
diff changeset
291 *pOutSoundSize = v16;
Ritor1
parents:
diff changeset
292
Ritor1
parents:
diff changeset
293 return result;
Ritor1
parents:
diff changeset
294 }
Ritor1
parents:
diff changeset
295
Ritor1
parents:
diff changeset
296 //----- (004A9D3E) --------------------------------------------------------
Ritor1
parents:
diff changeset
297 SoundDesc *SoundList::Release()
Ritor1
parents:
diff changeset
298 {
Ritor1
parents:
diff changeset
299 SoundDesc *result; // eax@3
Ritor1
parents:
diff changeset
300 void *v5; // ecx@3
Ritor1
parents:
diff changeset
301
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
302 if ( (signed int)this->sNumSounds > 0 )
0
Ritor1
parents:
diff changeset
303 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
304 for ( uint i = 0; i < (signed int)this->sNumSounds; ++i )
0
Ritor1
parents:
diff changeset
305 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
306 result = this->pSounds;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
307 v5 = result[i].pSoundData[0];
0
Ritor1
parents:
diff changeset
308 if ( v5 )
Ritor1
parents:
diff changeset
309 {
Ritor1
parents:
diff changeset
310 ReleaseSoundData(v5);
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
311 this->pSounds[i].pSoundData[0] = 0;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
312 result = (SoundDesc *)((char *)&this->pSounds[i] + 40);
0
Ritor1
parents:
diff changeset
313 *(int *)&result->pSoundName[0] &= 0xFFFFFFFEu;
Ritor1
parents:
diff changeset
314 }
Ritor1
parents:
diff changeset
315 }
Ritor1
parents:
diff changeset
316 }
Ritor1
parents:
diff changeset
317 return result;
Ritor1
parents:
diff changeset
318 }
Ritor1
parents:
diff changeset
319
Ritor1
parents:
diff changeset
320 //----- (004A9D79) --------------------------------------------------------
Ritor1
parents:
diff changeset
321 void SoundList::_4A9D79(int a2)
Ritor1
parents:
diff changeset
322 {
Ritor1
parents:
diff changeset
323 SoundList *v2; // esi@1
Ritor1
parents:
diff changeset
324 int v3; // edi@1
Ritor1
parents:
diff changeset
325 signed int i; // ebx@1
Ritor1
parents:
diff changeset
326 SoundDesc *v5; // eax@2
Ritor1
parents:
diff changeset
327 SOUND_DESC_TYPE v6; // ecx@2
Ritor1
parents:
diff changeset
328 void *v7; // eax@5
Ritor1
parents:
diff changeset
329
Ritor1
parents:
diff changeset
330 v2 = this;
Ritor1
parents:
diff changeset
331 v3 = 0;
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
332 for ( i = 0; i < (signed int)v2->sNumSounds; ++v3 )
0
Ritor1
parents:
diff changeset
333 {
Ritor1
parents:
diff changeset
334 v5 = &v2->pSounds[v3];
Ritor1
parents:
diff changeset
335 v6 = v5->eType;
Ritor1
parents:
diff changeset
336 if ( v6 != SOUND_DESC_SYSTEM && (a2 || v6 != SOUND_DESC_LOCK) )
Ritor1
parents:
diff changeset
337 {
Ritor1
parents:
diff changeset
338 v7 = v5->pSoundData[0];
Ritor1
parents:
diff changeset
339 if ( v7 )
Ritor1
parents:
diff changeset
340 {
Ritor1
parents:
diff changeset
341 ReleaseSoundData(v7);
Ritor1
parents:
diff changeset
342 v2->pSounds[v3].pSoundData[0] = 0;
Ritor1
parents:
diff changeset
343 }
592
96f48cfdd657 some flags
Nomad
parents: 515
diff changeset
344 v2->pSounds[v3].uFlags &= ~SOUND_DESC_SYSTEM;
0
Ritor1
parents:
diff changeset
345 }
Ritor1
parents:
diff changeset
346 ++i;
Ritor1
parents:
diff changeset
347 }
Ritor1
parents:
diff changeset
348 }
Ritor1
parents:
diff changeset
349
Ritor1
parents:
diff changeset
350 //----- (004A9DCD) --------------------------------------------------------
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
351 void SoundList::UnloadSound(unsigned int uSoundID, char a3)
0
Ritor1
parents:
diff changeset
352 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
353 if ( pSounds[uSoundID].eType != SOUND_DESC_SYSTEM )
0
Ritor1
parents:
diff changeset
354 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
355 if ( (pSounds[uSoundID].uFlags & SOUND_DESC_SWAP) && pSounds[uSoundID].p3DSound && a3 )
0
Ritor1
parents:
diff changeset
356 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
357 if ( pSounds[uSoundID].bDecompressed)
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
358 AIL_mem_free_lock(pSounds[uSoundID].p3DSound);
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
359 pSounds[uSoundID].p3DSound = 0;
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
360 pSounds[uSoundID].uFlags &= ~SOUND_DESC_SYSTEM;
0
Ritor1
parents:
diff changeset
361 }
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
362 if ( pSounds[uSoundID].pSoundData[0] )
0
Ritor1
parents:
diff changeset
363 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
364 ReleaseSoundData(pSounds[uSoundID].pSoundData[0]);
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
365 pSounds[uSoundID].pSoundData[0] = NULL;
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
366 pSounds[uSoundID].uFlags &= ~SOUND_DESC_SYSTEM;
0
Ritor1
parents:
diff changeset
367 }
Ritor1
parents:
diff changeset
368 }
Ritor1
parents:
diff changeset
369 }
Ritor1
parents:
diff changeset
370
Ritor1
parents:
diff changeset
371
Ritor1
parents:
diff changeset
372 //----- (004A9E3D) --------------------------------------------------------
Ritor1
parents:
diff changeset
373 void SoundList::ToFile()
Ritor1
parents:
diff changeset
374 {
Ritor1
parents:
diff changeset
375 SoundList *v1; // esi@1
Ritor1
parents:
diff changeset
376 FILE *v2; // eax@1
Ritor1
parents:
diff changeset
377 FILE *v3; // edi@1
Ritor1
parents:
diff changeset
378
Ritor1
parents:
diff changeset
379 v1 = this;
Ritor1
parents:
diff changeset
380 v2 = fopen("data\\dsounds.bin", "wb");
Ritor1
parents:
diff changeset
381 v3 = v2;
Ritor1
parents:
diff changeset
382 if ( !v2 )
Ritor1
parents:
diff changeset
383 Abortf("Unable to save dsounds.bin!");
Ritor1
parents:
diff changeset
384 fwrite(v1, 4u, 1u, v2);
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
385 fwrite(v1->pSounds, 0x78u, v1->sNumSounds, v3);
0
Ritor1
parents:
diff changeset
386 fclose(v3);
Ritor1
parents:
diff changeset
387 }
Ritor1
parents:
diff changeset
388
Ritor1
parents:
diff changeset
389 //----- (004A9E89) --------------------------------------------------------
Ritor1
parents:
diff changeset
390 void *SoundList::FromFile(void *pSerialized)
Ritor1
parents:
diff changeset
391 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
392 sNumSounds = *(int *)pSerialized;
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
393 pSounds = (SoundDesc *)pAllocator->AllocNamedChunk(pSounds, 120 * sNumSounds, "Snd Des.");
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
394 return memcpy(pSounds, (char *)pSerialized + 4, 120 * sNumSounds);
0
Ritor1
parents:
diff changeset
395 }
Ritor1
parents:
diff changeset
396
Ritor1
parents:
diff changeset
397 //----- (004A9ED0) --------------------------------------------------------
Ritor1
parents:
diff changeset
398 int SoundList::FromFileTxt(const char *Args)
Ritor1
parents:
diff changeset
399 {
Ritor1
parents:
diff changeset
400 SoundList *v2; // ebx@1
Ritor1
parents:
diff changeset
401 __int32 v3; // edi@1
Ritor1
parents:
diff changeset
402 FILE *v4; // eax@1
Ritor1
parents:
diff changeset
403 unsigned int v5; // esi@3
Ritor1
parents:
diff changeset
404 void *v6; // eax@9
Ritor1
parents:
diff changeset
405 FILE *v7; // ST0C_4@11
Ritor1
parents:
diff changeset
406 char *i; // eax@11
Ritor1
parents:
diff changeset
407 int v9; // eax@14
Ritor1
parents:
diff changeset
408 const char *v10; // ST0C_4@14
Ritor1
parents:
diff changeset
409 int v11; // eax@18
Ritor1
parents:
diff changeset
410 SoundDesc *v12; // ecx@18
Ritor1
parents:
diff changeset
411 char v13; // zf@18
Ritor1
parents:
diff changeset
412 unsigned int v14; // eax@18
Ritor1
parents:
diff changeset
413 int v15; // eax@23
Ritor1
parents:
diff changeset
414 char Buf; // [sp+Ch] [bp-2F0h]@3
Ritor1
parents:
diff changeset
415 FrameTableTxtLine v18; // [sp+200h] [bp-FCh]@4
Ritor1
parents:
diff changeset
416 FrameTableTxtLine v19; // [sp+27Ch] [bp-80h]@4
Ritor1
parents:
diff changeset
417 FILE *File; // [sp+2F8h] [bp-4h]@1
Ritor1
parents:
diff changeset
418 unsigned int Argsa; // [sp+304h] [bp+8h]@3
Ritor1
parents:
diff changeset
419
Ritor1
parents:
diff changeset
420 v2 = this;
Ritor1
parents:
diff changeset
421 pAllocator->FreeChunk(this->pSounds);
Ritor1
parents:
diff changeset
422 v3 = 0;
Ritor1
parents:
diff changeset
423 v2->pSounds = 0;
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
424 v2->sNumSounds = 0;
0
Ritor1
parents:
diff changeset
425 v4 = fopen(Args, "r");
Ritor1
parents:
diff changeset
426 File = v4;
Ritor1
parents:
diff changeset
427 if ( !v4 )
Ritor1
parents:
diff changeset
428 Abortf("SoundListClass::load - Unable to open file: %s.");
Ritor1
parents:
diff changeset
429 v5 = 0;
Ritor1
parents:
diff changeset
430 Argsa = 0;
Ritor1
parents:
diff changeset
431 if ( fgets(&Buf, 490, v4) )
Ritor1
parents:
diff changeset
432 {
Ritor1
parents:
diff changeset
433 do
Ritor1
parents:
diff changeset
434 {
Ritor1
parents:
diff changeset
435 *strchr(&Buf, 10) = 0;
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
436 memcpy(&v19, txt_file_frametable_parser(&Buf, &v18), sizeof(v19));
701
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 592
diff changeset
437 if ( v19.uPropCount && *v19.pProperties[0] != 47 )
0
Ritor1
parents:
diff changeset
438 ++Argsa;
Ritor1
parents:
diff changeset
439 }
Ritor1
parents:
diff changeset
440 while ( fgets(&Buf, 490, File) );
Ritor1
parents:
diff changeset
441 v5 = Argsa;
Ritor1
parents:
diff changeset
442 v3 = 0;
Ritor1
parents:
diff changeset
443 }
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
444 v2->sNumSounds = v5;
0
Ritor1
parents:
diff changeset
445 v6 = pAllocator->AllocNamedChunk(v2->pSounds, 120 * v5, "Snd Des.");
Ritor1
parents:
diff changeset
446 v2->pSounds = (SoundDesc *)v6;
Ritor1
parents:
diff changeset
447 if ( v6 == (void *)v3 )
Ritor1
parents:
diff changeset
448 Abortf("SoundListClass::load - Out of Memory!");
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
449 memset(v6, v3, 120 * v2->sNumSounds);
0
Ritor1
parents:
diff changeset
450 v7 = File;
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
451 v2->sNumSounds = v3;
0
Ritor1
parents:
diff changeset
452 fseek(v7, v3, v3);
Ritor1
parents:
diff changeset
453 for ( i = fgets(&Buf, 490, File); i; i = fgets(&Buf, 490, File) )
Ritor1
parents:
diff changeset
454 {
Ritor1
parents:
diff changeset
455 *strchr(&Buf, 10) = 0;
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
456 memcpy(&v19, txt_file_frametable_parser(&Buf, &v18), sizeof(v19));
701
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 592
diff changeset
457 if ( v19.uPropCount && *v19.pProperties[0] != 47 )
0
Ritor1
parents:
diff changeset
458 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
459 sprintf(v2->pSounds[v2->sNumSounds].pSoundName, "%s", v19.pProperties[0]);
0
Ritor1
parents:
diff changeset
460 v9 = atoi(v19.pProperties[1]);
Ritor1
parents:
diff changeset
461 v10 = v19.pProperties[2];
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
462 v2->pSounds[v2->sNumSounds].uSoundID = v9;
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1016
diff changeset
463 if ( _stricmp(v10, "system") )
0
Ritor1
parents:
diff changeset
464 {
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1016
diff changeset
465 if ( _stricmp(v19.pProperties[2], "swap") )
0
Ritor1
parents:
diff changeset
466 {
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1016
diff changeset
467 v11 = _stricmp(v19.pProperties[2], "lock");
0
Ritor1
parents:
diff changeset
468 v12 = v2->pSounds;
Ritor1
parents:
diff changeset
469 v13 = v11 == 0;
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
470 v14 = v2->sNumSounds;
0
Ritor1
parents:
diff changeset
471 if ( v13 )
Ritor1
parents:
diff changeset
472 v12[v14].eType = SOUND_DESC_LOCK;
Ritor1
parents:
diff changeset
473 else
Ritor1
parents:
diff changeset
474 v12[v14].eType = SOUND_DESC_LEVEL;
Ritor1
parents:
diff changeset
475 }
Ritor1
parents:
diff changeset
476 else
Ritor1
parents:
diff changeset
477 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
478 v2->pSounds[v2->sNumSounds].eType = SOUND_DESC_SWAP;
0
Ritor1
parents:
diff changeset
479 }
Ritor1
parents:
diff changeset
480 }
Ritor1
parents:
diff changeset
481 else
Ritor1
parents:
diff changeset
482 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
483 v2->pSounds[v2->sNumSounds].eType = SOUND_DESC_SYSTEM;
0
Ritor1
parents:
diff changeset
484 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1016
diff changeset
485 if ( v19.uPropCount >= 4 && !_stricmp(v19.pProperties[3], "3D") )
0
Ritor1
parents:
diff changeset
486 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
487 v15 = (int)&v2->pSounds[v2->sNumSounds].uFlags;
592
96f48cfdd657 some flags
Nomad
parents: 515
diff changeset
488 *(int *)v15 |= SOUND_DESC_SWAP;
0
Ritor1
parents:
diff changeset
489 }
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
490 ++v2->sNumSounds;
0
Ritor1
parents:
diff changeset
491 }
Ritor1
parents:
diff changeset
492 }
Ritor1
parents:
diff changeset
493 fclose(File);
Ritor1
parents:
diff changeset
494 return 1;
Ritor1
parents:
diff changeset
495 }
Ritor1
parents:
diff changeset
496
Ritor1
parents:
diff changeset
497 //----- (004AA13F) --------------------------------------------------------
Ritor1
parents:
diff changeset
498 void AudioPlayer::PlayMusicTrack(MusicID eTrack)
Ritor1
parents:
diff changeset
499 {
Ritor1
parents:
diff changeset
500 if (!bNoSound && bPlayerReady && hAILRedbook && uMusicVolimeMultiplier)
Ritor1
parents:
diff changeset
501 {
Ritor1
parents:
diff changeset
502 AIL_redbook_stop(hAILRedbook);
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
503 AIL_redbook_set_volume(hAILRedbook, (signed)pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f);
0
Ritor1
parents:
diff changeset
504 AIL_redbook_track_info(hAILRedbook, eTrack, &uCurrentMusicTrackStartMS, &uCurrentMusicTrackEndMS);
Ritor1
parents:
diff changeset
505 AIL_redbook_play(hAILRedbook, uCurrentMusicTrackStartMS + 1, uCurrentMusicTrackEndMS);
Ritor1
parents:
diff changeset
506 uCurrentMusicTrackLength = ((uCurrentMusicTrackEndMS - uCurrentMusicTrackStartMS) * 128) / 1000;
Ritor1
parents:
diff changeset
507 }
Ritor1
parents:
diff changeset
508 }
Ritor1
parents:
diff changeset
509
Ritor1
parents:
diff changeset
510
Ritor1
parents:
diff changeset
511 //----- (004AA1F3) --------------------------------------------------------
Ritor1
parents:
diff changeset
512 void AudioPlayer::SetMusicVolume(int vol)
Ritor1
parents:
diff changeset
513 {
Ritor1
parents:
diff changeset
514 if (bPlayerReady)
Ritor1
parents:
diff changeset
515 {
Ritor1
parents:
diff changeset
516 if (hAILRedbook)
Ritor1
parents:
diff changeset
517 AIL_redbook_set_volume(hAILRedbook, vol);
Ritor1
parents:
diff changeset
518 }
Ritor1
parents:
diff changeset
519 }
Ritor1
parents:
diff changeset
520
Ritor1
parents:
diff changeset
521 //----- (004AA214) --------------------------------------------------------
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
522 void AudioPlayer::SetMasterVolume(float fVolume)
0
Ritor1
parents:
diff changeset
523 {
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
524 if ( bPlayerReady )
0
Ritor1
parents:
diff changeset
525 {
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
526 uMasterVolume = fVolume;
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
527 if ( hDigDriver )
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
528 AIL_set_digital_master_volume(hDigDriver, fVolume);
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
529 if ( b3DSoundInitialized )
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
530 s3DSoundVolume = fVolume * 0.5f;
0
Ritor1
parents:
diff changeset
531 }
Ritor1
parents:
diff changeset
532 }
Ritor1
parents:
diff changeset
533 // 4D8304: using guessed type int __stdcall AIL_set_digital_master_volume(int, int);
Ritor1
parents:
diff changeset
534
Ritor1
parents:
diff changeset
535 //----- (004AA258) --------------------------------------------------------
Ritor1
parents:
diff changeset
536 void AudioPlayer::_4AA258(int a2)
Ritor1
parents:
diff changeset
537 {
1425
16a24dc103e7 uninitialized Party::walk_sound_timer leads to crash
Nomad
parents: 1423
diff changeset
538 if (!bPlayerReady)
16a24dc103e7 uninitialized Party::walk_sound_timer leads to crash
Nomad
parents: 1423
diff changeset
539 return;
16a24dc103e7 uninitialized Party::walk_sound_timer leads to crash
Nomad
parents: 1423
diff changeset
540
1422
Ritor1
parents: 1408
diff changeset
541 if ( this->b3DSoundInitialized && a2 && this->uNum3DSamples > 0 )
0
Ritor1
parents:
diff changeset
542 {
1422
Ritor1
parents: 1408
diff changeset
543 for ( uint i = 0; i < this->uNum3DSamples; ++i )
0
Ritor1
parents:
diff changeset
544 {
1422
Ritor1
parents: 1408
diff changeset
545 if ( this->p3DSamples[i].field_4 == a2 && AIL_3D_sample_status(this->p3DSamples[i].hSample) == 4 )
Ritor1
parents: 1408
diff changeset
546 AIL_end_3D_sample(this->p3DSamples[i].hSample);
0
Ritor1
parents:
diff changeset
547 }
1422
Ritor1
parents: 1408
diff changeset
548 goto LABEL_9;
0
Ritor1
parents:
diff changeset
549 }
Ritor1
parents:
diff changeset
550 else
Ritor1
parents:
diff changeset
551 {
Ritor1
parents:
diff changeset
552 LABEL_9:
1422
Ritor1
parents: 1408
diff changeset
553 if ( this->hDigDriver )
0
Ritor1
parents:
diff changeset
554 {
1422
Ritor1
parents: 1408
diff changeset
555 if ( a2 && this->uMixerChannels > 0 )
0
Ritor1
parents:
diff changeset
556 {
1422
Ritor1
parents: 1408
diff changeset
557 for ( uint i = 0; i < this->uMixerChannels; ++i )
0
Ritor1
parents:
diff changeset
558 {
1422
Ritor1
parents: 1408
diff changeset
559 if ( this->pMixerChannels[i].source_pid == a2 )
0
Ritor1
parents:
diff changeset
560 {
1422
Ritor1
parents: 1408
diff changeset
561 if ( AIL_sample_status(this->pMixerChannels[i].hSample) == AIL::Sample::Playing)
0
Ritor1
parents:
diff changeset
562 {
1422
Ritor1
parents: 1408
diff changeset
563 AIL_end_sample(this->pMixerChannels[i].hSample);
Ritor1
parents: 1408
diff changeset
564 FreeChannel(&this->pMixerChannels[i]);
0
Ritor1
parents:
diff changeset
565 }
Ritor1
parents:
diff changeset
566 }
Ritor1
parents:
diff changeset
567 }
Ritor1
parents:
diff changeset
568 }
Ritor1
parents:
diff changeset
569 }
Ritor1
parents:
diff changeset
570 }
Ritor1
parents:
diff changeset
571 }
Ritor1
parents:
diff changeset
572
Ritor1
parents:
diff changeset
573 //----- (004AA306) --------------------------------------------------------
Ritor1
parents:
diff changeset
574 void AudioPlayer::PlaySound(SoundID eSoundID, signed int a3, unsigned int uNumRepeats, signed int PartyX, signed int PartyY, int a7, unsigned int uVolume, int sPlaybackRate)
Ritor1
parents:
diff changeset
575 {
Ritor1
parents:
diff changeset
576 //AudioPlayer *pAudioPlayer1; // esi@1
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
577 //signed int pNum; // edx@5
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
578 //int *pSoundID; // ecx@6
0
Ritor1
parents:
diff changeset
579 int v12; // edi@13
Ritor1
parents:
diff changeset
580 signed int v13; // ecx@17
Ritor1
parents:
diff changeset
581 signed int v14; // eax@20
Ritor1
parents:
diff changeset
582 int v15; // eax@24
Ritor1
parents:
diff changeset
583 signed int v16; // eax@25
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
584 SpriteObject *pLayingItem; // eax@28
0
Ritor1
parents:
diff changeset
585 signed int v18; // eax@29
Ritor1
parents:
diff changeset
586 Actor *pActor1; // eax@32
Ritor1
parents:
diff changeset
587 signed int v20; // ecx@32
Ritor1
parents:
diff changeset
588 double v21; // st7@32
Ritor1
parents:
diff changeset
589 signed int v22; // ecx@33
Ritor1
parents:
diff changeset
590 AudioPlayer_3DSample *pAudioPlayer_3DSample; // esi@53
Ritor1
parents:
diff changeset
591 AudioPlayer_3DSample *pAudioPlayer_3DSample1; // esi@61
Ritor1
parents:
diff changeset
592 int v25; // esi@67
Ritor1
parents:
diff changeset
593 double v26; // st7@68
Ritor1
parents:
diff changeset
594 int v27; // ST18_4@68
Ritor1
parents:
diff changeset
595 int v28; // ebx@68
Ritor1
parents:
diff changeset
596 int v29; // eax@68
Ritor1
parents:
diff changeset
597 AudioPlayer_3DSample *pAudioPlayer_3DSample2; // esi@69
Ritor1
parents:
diff changeset
598 int v31; // ST18_4@70
Ritor1
parents:
diff changeset
599 int v32; // ebx@70
Ritor1
parents:
diff changeset
600 int v33; // eax@70
Ritor1
parents:
diff changeset
601 int v34; // eax@70
Ritor1
parents:
diff changeset
602 char v35; // zf@70
Ritor1
parents:
diff changeset
603 signed int v36; // ebx@74
Ritor1
parents:
diff changeset
604 //AudioPlayer *pAudioPlayer2; // edi@79
Ritor1
parents:
diff changeset
605 AudioPlayer_3DSample *pAudioPlayer_3DSample3; // esi@79
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
606 //unsigned int v39; // ebx@80
0
Ritor1
parents:
diff changeset
607 int v40; // eax@81
Ritor1
parents:
diff changeset
608 char *v41; // edi@82
Ritor1
parents:
diff changeset
609 int v42; // esi@82
Ritor1
parents:
diff changeset
610 double v43; // st7@91
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
611 SpriteObject *pLayingItem2; // eax@92
0
Ritor1
parents:
diff changeset
612 Actor *pActor; // eax@93
Ritor1
parents:
diff changeset
613 signed int v46; // ecx@93
Ritor1
parents:
diff changeset
614 double v47; // st7@93
Ritor1
parents:
diff changeset
615 BLVDoor *pBLVDoor; // eax@97
Ritor1
parents:
diff changeset
616 double v49; // st7@104
Ritor1
parents:
diff changeset
617 int v50; // ST18_4@104
Ritor1
parents:
diff changeset
618 int v51; // ebx@104
Ritor1
parents:
diff changeset
619 int v52; // eax@104
Ritor1
parents:
diff changeset
620 float v53; // ST0C_4@106
Ritor1
parents:
diff changeset
621 float v54; // ST04_4@106
Ritor1
parents:
diff changeset
622 //AudioPlayer *pAudioPlayer3; // edx@106
Ritor1
parents:
diff changeset
623 SoundDesc *pSoundDesc; // edx@107
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
624 SpriteObject *pLayingItem3; // eax@114
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
625 //int v58; // edx@115
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
626 //int v59; // ecx@115
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
627 //Actor *pActor2; // eax@118
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
628 //MixerChannel *pMixerChannel; // esi@126
0
Ritor1
parents:
diff changeset
629 signed int v62; // esi@133
Ritor1
parents:
diff changeset
630 //AudioPlayer *pAudioPlayer4; // ebx@133
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
631 //MixerChannel *pMixerChannel2; // edi@134
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
632 //int v65; // ebx@141
0
Ritor1
parents:
diff changeset
633 //AudioPlayer *pAudioPlayer5; // ecx@142
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
634 //MixerChannel *pMixerChannel3; // edi@142
0
Ritor1
parents:
diff changeset
635 int v68; // eax@143
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
636 //MixerChannel *pMixerChannel4; // edi@149
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
637 //int v70; // ecx@152
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
638 //SoundDesc *pSoundDesc2; // eax@153
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
639 //int v72; // edi@156
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
640 //MixerChannel *pMixerChannel5; // esi@157
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
641 //unsigned int pVolume; // eax@157
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
642 //int pPartyX; // ebx@159
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
643 //int v76; // ebx@160
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
644 //SpriteObject *pLayingItem4; // edi@164
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
645 //unsigned int pPosY; // edx@166
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
646 //unsigned int pPosX; // ecx@166
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
647 //int v80; // eax@167
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
648 //Actor *pActor3; // edi@168
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
649 //BLVDoor *pBLVDoor2; // edi@173
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
650 //int v83; // eax@183
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
651 //int v84; // eax@183
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
652 //_SAMPLE *v85; // ST18_4@186
0
Ritor1
parents:
diff changeset
653 unsigned int v86; // [sp+14h] [bp-60h]@84
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
654 //int v87; // [sp+14h] [bp-60h]@115
0
Ritor1
parents:
diff changeset
655 RenderVertexSoft pRenderVertexSoft; // [sp+24h] [bp-50h]@1
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
656 //unsigned int v89; // [sp+54h] [bp-20h]@12
0
Ritor1
parents:
diff changeset
657 int v90; // [sp+58h] [bp-1Ch]@68
Ritor1
parents:
diff changeset
658 float v91; // [sp+5Ch] [bp-18h]@68
Ritor1
parents:
diff changeset
659 //unsigned int v92; // [sp+60h] [bp-14h]@10
Ritor1
parents:
diff changeset
660 float v93; // [sp+64h] [bp-10h]@1
Ritor1
parents:
diff changeset
661 signed int varC; // [sp+68h] [bp-Ch]@68
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
662 //AudioPlayer *pAudioPlayer; // [sp+6Ch] [bp-8h]@1
0
Ritor1
parents:
diff changeset
663 int v96; // [sp+70h] [bp-4h]@19
Ritor1
parents:
diff changeset
664 signed int uNumRepeatsb; // [sp+84h] [bp+10h]@93
Ritor1
parents:
diff changeset
665 float uNumRepeatsa; // [sp+84h] [bp+10h]@104
Ritor1
parents:
diff changeset
666 float v99; // [sp+8Ch] [bp+18h]@104
Ritor1
parents:
diff changeset
667 signed int v100; // [sp+90h] [bp+1Ch]@32
Ritor1
parents:
diff changeset
668 int v101; // [sp+90h] [bp+1Ch]@52
Ritor1
parents:
diff changeset
669 int v102; // [sp+90h] [bp+1Ch]@60
Ritor1
parents:
diff changeset
670 int v103; // [sp+90h] [bp+1Ch]@68
Ritor1
parents:
diff changeset
671
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
672 if (!bPlayerReady)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
673 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
674 if (!uSoundVolumeMultiplier)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
675 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
676 if (!hDigDriver)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
677 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
678 if (eSoundID == SOUND_Invalid)
0
Ritor1
parents:
diff changeset
679 return;
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
680
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
681 //pAudioPlayer = this;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
682 //v35 = this->bPlayerReady == 0;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
683 //pAudioPlayer = this;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
684 //LODWORD(v93) = 10000;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
685 int sample_volume = 10000;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
686
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
687
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
688 int sound_id = 0;
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
689 for (uint i = 0; i < pSoundList->sNumSounds; ++i)
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
690 if (pSoundList->pSounds[i].uSoundID == eSoundID)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
691 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
692 sound_id = i;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
693 break;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
694 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
695
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
696 if (!sound_id)
0
Ritor1
parents:
diff changeset
697 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
698 Log::Warning(L"SoundID = %u not found", eSoundID);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
699 return;
0
Ritor1
parents:
diff changeset
700 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
701
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
702 int start_channel = 0,
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
703 end_channel = 0;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
704
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
705 assert(sound_id < pSoundList->sNumSounds);
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
706 auto sound_desc = pSoundList->pSounds + sound_id;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
707 if (!b3DSoundInitialized || sound_desc->Is3D())
0
Ritor1
parents:
diff changeset
708 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
709 if (!a3) // generic sound like from UI
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
710 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
711 start_channel = 10;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
712 end_channel = 12;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
713 goto LABEL_133;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
714 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
715 else if (a3 == -1) // exclusive sounds - can override
0
Ritor1
parents:
diff changeset
716 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
717 start_channel = 13;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
718 end_channel = 13;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
719 goto LABEL_133;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
720 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
721 else
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
722 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
723 if (a3 < 0) // exclusive sounds - no override
0
Ritor1
parents:
diff changeset
724 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
725 start_channel = 14;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
726 end_channel = 14;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
727 goto LABEL_123;
0
Ritor1
parents:
diff changeset
728 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
729 else
0
Ritor1
parents:
diff changeset
730 {
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
731 int object_type = PID_TYPE(a3),
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
732 object_id = PID_ID(a3);
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
733 switch (object_type)
0
Ritor1
parents:
diff changeset
734 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
735 case OBJECT_BLVDoor:
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
736 case OBJECT_Player:
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
737 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
738 start_channel = 10;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
739 end_channel = 12;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
740 goto LABEL_133;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
741 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
742 break;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
743
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
744 case OBJECT_Actor:
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
745 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
746 start_channel = 0;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
747 end_channel = 3;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
748
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
749 assert(object_id < uNumActors);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
750 auto actor = &pActors[object_id];
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
751
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
752 sample_volume = GetSoundStrengthByDistanceFromParty(actor->vPosition.x, actor->vPosition.y, actor->vPosition.z);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
753 if (!sample_volume)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
754 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
755 goto LABEL_123;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
756 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
757
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
758 case OBJECT_Decoration:
0
Ritor1
parents:
diff changeset
759 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
760 start_channel = 4;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
761 end_channel = 4;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
762
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
763 assert(object_id < uNumLevelDecorations);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
764 auto decor = &pLevelDecorations[object_id];
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
765
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
766 sample_volume = GetSoundStrengthByDistanceFromParty(decor->vPosition.x, decor->vPosition.y, decor->vPosition.z);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
767 if (!sample_volume)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
768 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
769 goto LABEL_123;
0
Ritor1
parents:
diff changeset
770 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
771 break;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
772
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
773 case OBJECT_Item:
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
774 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
775 start_channel = 5;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
776 end_channel = 7;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
777
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
778 assert(object_id < uNumSpriteObjects);
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
779 auto object = &pSpriteObjects[object_id];
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
780
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
781 sample_volume = GetSoundStrengthByDistanceFromParty(object->vPosition.x, object->vPosition.y, object->vPosition.z);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
782 if (!sample_volume)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
783 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
784 goto LABEL_123;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
785 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
786 break;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
787
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
788 case OBJECT_BModel:
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
789 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
790 start_channel = 8;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
791 end_channel = 9;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
792 goto LABEL_123;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
793 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
794 break;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
795
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
796 default:
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
797 assert(false);
0
Ritor1
parents:
diff changeset
798 }
Ritor1
parents:
diff changeset
799 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
800 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
801 LABEL_123:
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
802 for (uint i = 0; i < uMixerChannels; ++i)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
803 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
804 auto channel = pMixerChannels + i;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
805 if (channel->source_pid == a3 &&
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
806 AIL_sample_status(channel->hSample) == AIL::Sample::Playing)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
807 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
808 if (channel->uSourceTrackIdx == sound_id)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
809 return; // already playing the same sound from the same source - return
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
810 AIL_end_sample(channel->hSample); // requested new sound from the same source - end & switch
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
811 FreeChannel(channel);
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
812 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
813 }
0
Ritor1
parents:
diff changeset
814 LABEL_133:
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
815 v62 = start_channel;
0
Ritor1
parents:
diff changeset
816 //pAudioPlayer4 = pAudioPlayer;
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
817 for (v62 = start_channel; v62 <= end_channel; ++v62)
0
Ritor1
parents:
diff changeset
818 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
819 auto channel = pMixerChannels + v62;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
820 if (AIL_sample_status(channel->hSample) == AIL::Sample::Done)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
821 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
822 AIL_end_sample(channel->hSample);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
823 if (channel->uSourceTrackIdx)
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
824 FreeChannel(channel);
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
825 break;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
826 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
827 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
828 /*if ( start_channel <= end_channel)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
829 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
830 pMixerChannel2 = &pAudioPlayer->pMixerChannels[start_channel];
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
831 while ( AIL_sample_status(pMixerChannel2->hSample) != AIL::Sample::Done)
0
Ritor1
parents:
diff changeset
832 {
Ritor1
parents:
diff changeset
833 ++v62;
Ritor1
parents:
diff changeset
834 ++pMixerChannel2;
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
835 if ( v62 > end_channel )
0
Ritor1
parents:
diff changeset
836 goto LABEL_140;
Ritor1
parents:
diff changeset
837 }
Ritor1
parents:
diff changeset
838 AIL_end_sample(pMixerChannel2->hSample);
Ritor1
parents:
diff changeset
839 if ( pMixerChannel2->uSourceTrackIdx )
Ritor1
parents:
diff changeset
840 _4ABE55(pMixerChannel2);
Ritor1
parents:
diff changeset
841 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
842 LABEL_140:*/
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
843
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
844 if (v62 > end_channel) // no free channel - occupy the quitest one
0
Ritor1
parents:
diff changeset
845 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
846 v62 = -1;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
847
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
848 int min_volume = sample_volume;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
849 for (uint i = start_channel; i <= end_channel; ++i)
0
Ritor1
parents:
diff changeset
850 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
851 auto channel = pMixerChannels + i;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
852
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
853 int volume = AIL_sample_volume(channel->hSample);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
854 if (volume < min_volume)
0
Ritor1
parents:
diff changeset
855 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
856 min_volume = volume;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
857 v62 = i;
0
Ritor1
parents:
diff changeset
858 }
Ritor1
parents:
diff changeset
859 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
860 /*v65 = start_channel;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
861 v91 = v93;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
862 if (start_channel <= end_channel)
0
Ritor1
parents:
diff changeset
863 {
Ritor1
parents:
diff changeset
864 //pAudioPlayer5 = pAudioPlayer;
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
865 pMixerChannel3 = &pAudioPlayer->pMixerChannels[start_channel];
0
Ritor1
parents:
diff changeset
866 do
Ritor1
parents:
diff changeset
867 {
Ritor1
parents:
diff changeset
868 v68 = AIL_sample_volume(pMixerChannel3->hSample);
Ritor1
parents:
diff changeset
869 if ( v68 < SLODWORD(v91) )
Ritor1
parents:
diff changeset
870 {
Ritor1
parents:
diff changeset
871 LODWORD(v91) = v68;
Ritor1
parents:
diff changeset
872 v62 = v65;
Ritor1
parents:
diff changeset
873 }
Ritor1
parents:
diff changeset
874 ++v65;
Ritor1
parents:
diff changeset
875 ++pMixerChannel3;
Ritor1
parents:
diff changeset
876 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
877 while ( v65 <= end_channel );*/
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
878
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
879 if (v62 == -1) // no free channels at all - only channel 13 allows override (a3 == -1)
0
Ritor1
parents:
diff changeset
880 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
881 if (start_channel != 13)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
882 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
883 v62 = 13;
0
Ritor1
parents:
diff changeset
884 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
885
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
886 auto channel = &pMixerChannels[v62];
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
887 AIL_end_sample(channel->hSample);
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
888 FreeChannel(channel);
0
Ritor1
parents:
diff changeset
889 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
890
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
891 if (v62 > end_channel)//10!=13
0
Ritor1
parents:
diff changeset
892 return;
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
893
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
894 //LABEL_150:
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
895 if (sample_volume == 10000)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
896 sample_volume = uMasterVolume;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
897
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
898 //v70 = 0;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
899 if ( !a7 )
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
900 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
901 //pSoundDesc = pSoundList->pSounds;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
902 //pSoundDesc2 = &pSoundList->pSounds[sound_id];
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
903 if (!sound_desc->pSoundData[0])
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
904 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
905 if (sound_desc->eType == SOUND_DESC_SWAP)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
906 pSoundList->LoadSound(eSoundID, 0);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
907 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
908 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
909 //v72 = 4 * (a7 + 30 * sound_id) + 44;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
910 if (!pSoundList->pSounds[sound_id].pSoundData[a7])
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
911 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
912
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
913 //pMixerChannel5 = &pAudioPlayer->pMixerChannels[v62];
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
914 auto channel = &pMixerChannels[v62];
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
915 AIL_init_sample(channel->hSample);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
916 AIL_set_sample_file(channel->hSample, (char *)pSoundList->pSounds[sound_id].pSoundData[a7] + 4 * (a7 == 0), -1);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
917 if (uVolume)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
918 sample_volume = uVolume;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
919 AIL_set_sample_volume(channel->hSample, sample_volume);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
920
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
921 int object_type = PID_TYPE(a3),
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
922 object_id = PID_ID(a3);
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
923 if (PartyX != -1)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
924 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
925 if (!PartyX) PartyX = pParty->vPosition.x;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
926 if (!PartyY) PartyY = pParty->vPosition.y;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
927 AIL_set_sample_pan(channel->hSample, sub_4AB66C(PartyX, PartyY));
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
928 AIL_set_sample_volume(channel->hSample, GetSoundStrengthByDistanceFromParty(PartyX, PartyY, pParty->vPosition.z));
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
929 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
930 else if (object_type == OBJECT_BLVDoor)
0
Ritor1
parents:
diff changeset
931 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
932 assert(uCurrentlyLoadedLevelType == LEVEL_Indoor);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
933
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
934 assert(object_id < pIndoor->uNumDoors);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
935 auto door = &pIndoor->pDoors[object_id];
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
936 if (!door->uDoorID)
0
Ritor1
parents:
diff changeset
937 return;
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
938
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
939 if (!GetSoundStrengthByDistanceFromParty(door->pXOffsets[0], door->pYOffsets[0], door->pZOffsets[0]))
0
Ritor1
parents:
diff changeset
940 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
941 AIL_end_sample(channel->hSample);
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
942 FreeChannel(channel);
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
943 return;
0
Ritor1
parents:
diff changeset
944 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
945 AIL_set_sample_pan(channel->hSample, sub_4AB66C(door->pXOffsets[0], door->pYOffsets[0]));
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
946 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
947 else if (object_type == OBJECT_Item)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
948 {
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
949 assert(object_id < uNumSpriteObjects);
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
950 auto object = &pSpriteObjects[object_id];
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
951 if (!GetSoundStrengthByDistanceFromParty(object->vPosition.x, object->vPosition.y, object->vPosition.z) )
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
952 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
953 AIL_set_sample_pan(channel->hSample, sub_4AB66C(object->vPosition.x, object->vPosition.y));
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
954 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
955 else if (object_type == OBJECT_Actor)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
956 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
957 assert(object_id < uNumActors);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
958 auto actor = &pActors[object_id];
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
959 if (!GetSoundStrengthByDistanceFromParty(actor->vPosition.x, actor->vPosition.y, actor->vPosition.z))
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
960 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
961 AIL_set_sample_pan(channel->hSample, sub_4AB66C(actor->vPosition.x, actor->vPosition.y));
0
Ritor1
parents:
diff changeset
962 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
963 else if (object_type == OBJECT_Decoration)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
964 {
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
965 assert(object_id < uNumLevelDecorations);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
966 auto decor = &pLevelDecorations[object_id];
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
967 if (!GetSoundStrengthByDistanceFromParty(decor->vPosition.x, decor->vPosition.y, decor->vPosition.z))
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
968 return;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
969 AIL_set_sample_pan(channel->hSample, sub_4AB66C(decor->vPosition.x, decor->vPosition.y));
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
970 }
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
971
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
972 //LABEL_184:
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
973 if (uNumRepeats)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
974 AIL_set_sample_loop_count(channel->hSample, uNumRepeats - 1);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
975 channel->uSourceTrackIdx = sound_id;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
976 channel->source_pid = a3;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
977 channel->uSourceTrackID = eSoundID;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
978 int rval = AIL_start_sample(channel->hSample);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
979 if ( sPlaybackRate )
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
980 AIL_set_sample_playback_rate(channel->hSample, sPlaybackRate);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
981 if (object_type == OBJECT_Player)
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
982 AIL_sample_ms_position(channel->hSample, &sLastTrackLengthMS, 0);
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
983 return;
0
Ritor1
parents:
diff changeset
984 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
985
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
986 __debugbreak(); // 3d sound stuff, refactor
0
Ritor1
parents:
diff changeset
987 v12 = 13;
Ritor1
parents:
diff changeset
988 if ( a3 < 0 )
Ritor1
parents:
diff changeset
989 {
Ritor1
parents:
diff changeset
990 v15 = pAudioPlayer->uNum3DSamples;
Ritor1
parents:
diff changeset
991 if ( a3 == -1 )
Ritor1
parents:
diff changeset
992 {
Ritor1
parents:
diff changeset
993 if ( v15 < 16 )
Ritor1
parents:
diff changeset
994 v12 = v15 - 1;
Ritor1
parents:
diff changeset
995 v96 = v12;
Ritor1
parents:
diff changeset
996 //goto LABEL_46;
Ritor1
parents:
diff changeset
997 pRenderVertexSoft.vWorldPosition.x = (double)pParty->vPosition.x;
Ritor1
parents:
diff changeset
998 pRenderVertexSoft.vWorldPosition.y = (double)pParty->vPosition.y;
Ritor1
parents:
diff changeset
999 v21 = (double)pParty->sEyelevel + (double)pParty->vPosition.z;
Ritor1
parents:
diff changeset
1000 goto LABEL_47;
Ritor1
parents:
diff changeset
1001 }
Ritor1
parents:
diff changeset
1002 if ( v15 >= 16 )
Ritor1
parents:
diff changeset
1003 v15 = 14;
Ritor1
parents:
diff changeset
1004 v12 = v15;
Ritor1
parents:
diff changeset
1005 //goto LABEL_45;
Ritor1
parents:
diff changeset
1006 v96 = v15;
Ritor1
parents:
diff changeset
1007 pRenderVertexSoft.vWorldPosition.x = (double)pParty->vPosition.x;
Ritor1
parents:
diff changeset
1008 pRenderVertexSoft.vWorldPosition.y = (double)pParty->vPosition.y;
Ritor1
parents:
diff changeset
1009 v21 = (double)pParty->sEyelevel + (double)pParty->vPosition.z;
Ritor1
parents:
diff changeset
1010 goto LABEL_47;
Ritor1
parents:
diff changeset
1011 }
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1012 if ( PID_TYPE(a3) == 2 )
0
Ritor1
parents:
diff changeset
1013 {
Ritor1
parents:
diff changeset
1014 v22 = pAudioPlayer->uNum3DSamples;
Ritor1
parents:
diff changeset
1015 if ( v22 < 16 )
Ritor1
parents:
diff changeset
1016 {
Ritor1
parents:
diff changeset
1017 v12 = 5 * v22 / 16;
Ritor1
parents:
diff changeset
1018 v96 = 7 * v22 / 16;
Ritor1
parents:
diff changeset
1019 }
Ritor1
parents:
diff changeset
1020 else
Ritor1
parents:
diff changeset
1021 {
Ritor1
parents:
diff changeset
1022 v96 = 7;
Ritor1
parents:
diff changeset
1023 v12 = 5;
Ritor1
parents:
diff changeset
1024 }
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1025 pLayingItem = &pSpriteObjects[PID_ID(a3)];
0
Ritor1
parents:
diff changeset
1026 }
Ritor1
parents:
diff changeset
1027 else
Ritor1
parents:
diff changeset
1028 {
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1029 if ( PID_TYPE(a3) == 3 )
0
Ritor1
parents:
diff changeset
1030 {
Ritor1
parents:
diff changeset
1031 v18 = pAudioPlayer->uNum3DSamples;
Ritor1
parents:
diff changeset
1032 v12 = 0;
Ritor1
parents:
diff changeset
1033 if ( v18 < 16 )
Ritor1
parents:
diff changeset
1034 v96 = 3 * v18 / 16;
Ritor1
parents:
diff changeset
1035 else
Ritor1
parents:
diff changeset
1036 v96 = 3;
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1037 pActor1 = &pActors[PID_ID(a3)];
0
Ritor1
parents:
diff changeset
1038 v20 = pActor1->vPosition.y;
Ritor1
parents:
diff changeset
1039 pRenderVertexSoft.vWorldPosition.x = (double)pActor1->vPosition.x;
Ritor1
parents:
diff changeset
1040 v100 = pActor1->vPosition.z;
Ritor1
parents:
diff changeset
1041 pRenderVertexSoft.vWorldPosition.y = (double)v20;
Ritor1
parents:
diff changeset
1042 v21 = (double)v100;
Ritor1
parents:
diff changeset
1043 goto LABEL_47;
Ritor1
parents:
diff changeset
1044 }
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1045 if ( PID_TYPE(a3) != 5 )
0
Ritor1
parents:
diff changeset
1046 {
Ritor1
parents:
diff changeset
1047 v13 = pAudioPlayer->uNum3DSamples;
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1048 if ( PID_TYPE(a3) == 6 )
0
Ritor1
parents:
diff changeset
1049 {
Ritor1
parents:
diff changeset
1050 if ( v13 >= 16 )
Ritor1
parents:
diff changeset
1051 {
Ritor1
parents:
diff changeset
1052 v96 = 9;
Ritor1
parents:
diff changeset
1053 v12 = 8;
Ritor1
parents:
diff changeset
1054 //goto LABEL_46;
Ritor1
parents:
diff changeset
1055 pRenderVertexSoft.vWorldPosition.x = (double)pParty->vPosition.x;
Ritor1
parents:
diff changeset
1056 pRenderVertexSoft.vWorldPosition.y = (double)pParty->vPosition.y;
Ritor1
parents:
diff changeset
1057 v21 = (double)pParty->sEyelevel + (double)pParty->vPosition.z;
Ritor1
parents:
diff changeset
1058 goto LABEL_47;
Ritor1
parents:
diff changeset
1059 }
Ritor1
parents:
diff changeset
1060 v12 = 8 * v13 / 16;
Ritor1
parents:
diff changeset
1061 v14 = 9 * v13;
Ritor1
parents:
diff changeset
1062 }
Ritor1
parents:
diff changeset
1063 else
Ritor1
parents:
diff changeset
1064 {
Ritor1
parents:
diff changeset
1065 if ( v13 >= 16 )
Ritor1
parents:
diff changeset
1066 {
Ritor1
parents:
diff changeset
1067 v96 = 12;
Ritor1
parents:
diff changeset
1068 v12 = 10;
Ritor1
parents:
diff changeset
1069 //LABEL_46:
Ritor1
parents:
diff changeset
1070 pRenderVertexSoft.vWorldPosition.x = (double)pParty->vPosition.x;
Ritor1
parents:
diff changeset
1071 pRenderVertexSoft.vWorldPosition.y = (double)pParty->vPosition.y;
Ritor1
parents:
diff changeset
1072 v21 = (double)pParty->sEyelevel + (double)pParty->vPosition.z;
Ritor1
parents:
diff changeset
1073 goto LABEL_47;
Ritor1
parents:
diff changeset
1074 }
Ritor1
parents:
diff changeset
1075 v12 = 10 * v13 / 16;
Ritor1
parents:
diff changeset
1076 v14 = 12 * v13;
Ritor1
parents:
diff changeset
1077 }
Ritor1
parents:
diff changeset
1078 v15 = v14 / 16;
Ritor1
parents:
diff changeset
1079 //LABEL_45:
Ritor1
parents:
diff changeset
1080 v96 = v15;
Ritor1
parents:
diff changeset
1081 //goto LABEL_46;
Ritor1
parents:
diff changeset
1082 pRenderVertexSoft.vWorldPosition.x = (double)pParty->vPosition.x;
Ritor1
parents:
diff changeset
1083 pRenderVertexSoft.vWorldPosition.y = (double)pParty->vPosition.y;
Ritor1
parents:
diff changeset
1084 v21 = (double)pParty->sEyelevel + (double)pParty->vPosition.z;
Ritor1
parents:
diff changeset
1085 goto LABEL_47;
Ritor1
parents:
diff changeset
1086 }
Ritor1
parents:
diff changeset
1087 v16 = pAudioPlayer->uNum3DSamples;
Ritor1
parents:
diff changeset
1088 if ( v16 < 16 )
Ritor1
parents:
diff changeset
1089 {
Ritor1
parents:
diff changeset
1090 v12 = v16 / 4;
Ritor1
parents:
diff changeset
1091 v96 = v16 / 4;
Ritor1
parents:
diff changeset
1092 }
Ritor1
parents:
diff changeset
1093 else
Ritor1
parents:
diff changeset
1094 {
Ritor1
parents:
diff changeset
1095 v12 = 4;
Ritor1
parents:
diff changeset
1096 v96 = 4;
Ritor1
parents:
diff changeset
1097 }
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1098 pLayingItem = (SpriteObject *)&pLevelDecorations[PID_ID(a3)];
0
Ritor1
parents:
diff changeset
1099 }
Ritor1
parents:
diff changeset
1100 pRenderVertexSoft.vWorldPosition.x = (double)pLayingItem->vPosition.x;
Ritor1
parents:
diff changeset
1101 pRenderVertexSoft.vWorldPosition.y = (double)pLayingItem->vPosition.y;
Ritor1
parents:
diff changeset
1102 v21 = (double)pLayingItem->vPosition.z;
Ritor1
parents:
diff changeset
1103 LABEL_47:
Ritor1
parents:
diff changeset
1104 pRenderVertexSoft.vWorldPosition.z = v21;
Ritor1
parents:
diff changeset
1105 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor )
Ritor1
parents:
diff changeset
1106 sub_4AAEA6_transform(&pRenderVertexSoft);
Ritor1
parents:
diff changeset
1107 else
Ritor1
parents:
diff changeset
1108 pGame->pIndoorCameraD3D->ViewTransform(&pRenderVertexSoft, 1);
Ritor1
parents:
diff changeset
1109 if ( a3 )
Ritor1
parents:
diff changeset
1110 {
Ritor1
parents:
diff changeset
1111 if ( a3 != -1 )
Ritor1
parents:
diff changeset
1112 {
Ritor1
parents:
diff changeset
1113 v101 = 0;
Ritor1
parents:
diff changeset
1114 if ( pAudioPlayer->uNum3DSamples > 0 )
Ritor1
parents:
diff changeset
1115 {
Ritor1
parents:
diff changeset
1116 pAudioPlayer_3DSample = pAudioPlayer->p3DSamples;
Ritor1
parents:
diff changeset
1117 do
Ritor1
parents:
diff changeset
1118 {
Ritor1
parents:
diff changeset
1119 if ( AIL_3D_sample_status(pAudioPlayer_3DSample->hSample) == 4
Ritor1
parents:
diff changeset
1120 && pAudioPlayer_3DSample->field_4 == a3 && AIL_3D_sample_status(pAudioPlayer_3DSample->hSample) == 4 )
Ritor1
parents:
diff changeset
1121 {
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
1122 if ( pAudioPlayer_3DSample->field_8 == sound_id )
0
Ritor1
parents:
diff changeset
1123 return;
Ritor1
parents:
diff changeset
1124 AIL_end_3D_sample(pAudioPlayer_3DSample->hSample);
Ritor1
parents:
diff changeset
1125 pAudioPlayer->_4ABF23(pAudioPlayer_3DSample);
Ritor1
parents:
diff changeset
1126 }
Ritor1
parents:
diff changeset
1127 ++v101;
Ritor1
parents:
diff changeset
1128 ++pAudioPlayer_3DSample;
Ritor1
parents:
diff changeset
1129 }
Ritor1
parents:
diff changeset
1130 while ( v101 < pAudioPlayer->uNum3DSamples );
Ritor1
parents:
diff changeset
1131 }
Ritor1
parents:
diff changeset
1132 }
Ritor1
parents:
diff changeset
1133 }
Ritor1
parents:
diff changeset
1134 v102 = v12;
Ritor1
parents:
diff changeset
1135 if ( v12 <= v96 )
Ritor1
parents:
diff changeset
1136 {
Ritor1
parents:
diff changeset
1137 pAudioPlayer_3DSample1 = &pAudioPlayer->p3DSamples[v12];
Ritor1
parents:
diff changeset
1138 while ( AIL_3D_sample_status(pAudioPlayer_3DSample1->hSample) != 2 )
Ritor1
parents:
diff changeset
1139 {
Ritor1
parents:
diff changeset
1140 ++v102;
Ritor1
parents:
diff changeset
1141 ++pAudioPlayer_3DSample1;
Ritor1
parents:
diff changeset
1142 if ( v102 > v96 )
Ritor1
parents:
diff changeset
1143 goto LABEL_67;
Ritor1
parents:
diff changeset
1144 }
Ritor1
parents:
diff changeset
1145 AIL_end_3D_sample(pAudioPlayer_3DSample1->hSample);
Ritor1
parents:
diff changeset
1146 if ( pAudioPlayer_3DSample1->field_8 )
Ritor1
parents:
diff changeset
1147 pAudioPlayer->_4ABF23(pAudioPlayer_3DSample1);
Ritor1
parents:
diff changeset
1148 }
Ritor1
parents:
diff changeset
1149 LABEL_67:
Ritor1
parents:
diff changeset
1150 v25 = v96;
Ritor1
parents:
diff changeset
1151 if ( v102 == v96 + 1 )
Ritor1
parents:
diff changeset
1152 {
Ritor1
parents:
diff changeset
1153 LODWORD(v91) = -1;
Ritor1
parents:
diff changeset
1154 v103 = 0;
Ritor1
parents:
diff changeset
1155 *(float *)&varC = pRenderVertexSoft.vWorldViewPosition.y * -0.012207031;
Ritor1
parents:
diff changeset
1156 v93 = 0.0;
Ritor1
parents:
diff changeset
1157 v26 = pRenderVertexSoft.vWorldViewPosition.x * 0.012207031;
Ritor1
parents:
diff changeset
1158 *(float *)&uVolume = v26;
Ritor1
parents:
diff changeset
1159 v27 = abs((signed __int64)v26);
Ritor1
parents:
diff changeset
1160 v28 = abs((signed __int64)v93);
Ritor1
parents:
diff changeset
1161 v29 = abs((signed __int64)*(float *)&varC);
322
ce39b96acf5c Killing friendly peasants subs
Nomad
parents: 225
diff changeset
1162 v90 = int_get_vector_length(v29, v28, v27);
0
Ritor1
parents:
diff changeset
1163 sPlaybackRate = v12;
Ritor1
parents:
diff changeset
1164 if ( v12 > v25 )
Ritor1
parents:
diff changeset
1165 goto LABEL_192;
Ritor1
parents:
diff changeset
1166 pAudioPlayer_3DSample2 = &pAudioPlayer->p3DSamples[v12];
Ritor1
parents:
diff changeset
1167 do
Ritor1
parents:
diff changeset
1168 {
Ritor1
parents:
diff changeset
1169 AIL_3D_position(pAudioPlayer_3DSample2->hSample, &varC, &v93, (long *)&uVolume);
Ritor1
parents:
diff changeset
1170 v31 = abs((signed __int64)*(float *)&uVolume);
Ritor1
parents:
diff changeset
1171 v32 = abs((signed __int64)v93);
Ritor1
parents:
diff changeset
1172 v33 = abs((signed __int64)*(float *)&varC);
322
ce39b96acf5c Killing friendly peasants subs
Nomad
parents: 225
diff changeset
1173 v34 = int_get_vector_length(v33, v32, v31);
0
Ritor1
parents:
diff changeset
1174 v35 = v103 == v34;
Ritor1
parents:
diff changeset
1175 if ( v103 < v34 )
Ritor1
parents:
diff changeset
1176 {
Ritor1
parents:
diff changeset
1177 v103 = v34;
Ritor1
parents:
diff changeset
1178 v35 = 1;
Ritor1
parents:
diff changeset
1179 }
Ritor1
parents:
diff changeset
1180 if ( v35 && v90 < v103 )
Ritor1
parents:
diff changeset
1181 {
Ritor1
parents:
diff changeset
1182 v36 = sPlaybackRate;
Ritor1
parents:
diff changeset
1183 LODWORD(v91) = sPlaybackRate;
Ritor1
parents:
diff changeset
1184 }
Ritor1
parents:
diff changeset
1185 else
Ritor1
parents:
diff changeset
1186 {
Ritor1
parents:
diff changeset
1187 v36 = LODWORD(v91);
Ritor1
parents:
diff changeset
1188 }
Ritor1
parents:
diff changeset
1189 ++sPlaybackRate;
Ritor1
parents:
diff changeset
1190 ++pAudioPlayer_3DSample2;
Ritor1
parents:
diff changeset
1191 }
Ritor1
parents:
diff changeset
1192 while ( sPlaybackRate <= v96 );
Ritor1
parents:
diff changeset
1193 if ( v36 == -1 )
Ritor1
parents:
diff changeset
1194 {
Ritor1
parents:
diff changeset
1195 LABEL_192:
Ritor1
parents:
diff changeset
1196 v36 = 13;
Ritor1
parents:
diff changeset
1197 if ( v12 != 13 )
Ritor1
parents:
diff changeset
1198 return;
Ritor1
parents:
diff changeset
1199 }
Ritor1
parents:
diff changeset
1200 //pAudioPlayer2 = pAudioPlayer;
Ritor1
parents:
diff changeset
1201 pAudioPlayer_3DSample3 = &pAudioPlayer->p3DSamples[v36];
Ritor1
parents:
diff changeset
1202 AIL_end_3D_sample(pAudioPlayer_3DSample3->hSample);
Ritor1
parents:
diff changeset
1203 pAudioPlayer->_4ABF23(pAudioPlayer_3DSample3);
Ritor1
parents:
diff changeset
1204 v102 = v36;
Ritor1
parents:
diff changeset
1205 }
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
1206 //v39 = v89;
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
1207 if ( pSoundList->pSounds[sound_id].p3DSound || (LOWORD(v40) = pSoundList->LoadSound(eSoundID, 0), v40) )
0
Ritor1
parents:
diff changeset
1208 {
Ritor1
parents:
diff changeset
1209 v41 = (char *)pAudioPlayer + 16 * v102;
Ritor1
parents:
diff changeset
1210 v42 = (int)(v41 + 20);
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
1211 if ( AIL_set_3D_sample_file(*((int *)v41 + 5), *(void **)((char *)&pSoundList->pSounds->p3DSound + sound_id * sizeof(SoundDesc))) )
0
Ritor1
parents:
diff changeset
1212 {
Ritor1
parents:
diff changeset
1213 if ( uNumRepeats )
Ritor1
parents:
diff changeset
1214 v86 = uNumRepeats - 1;
Ritor1
parents:
diff changeset
1215 else
Ritor1
parents:
diff changeset
1216 v86 = 1;
Ritor1
parents:
diff changeset
1217 AIL_set_3D_sample_loop_count(*(int *)v42, v86);
Ritor1
parents:
diff changeset
1218 if ( PartyX == -1 )
Ritor1
parents:
diff changeset
1219 {
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1220 if ( PID_TYPE(a3) == 1 )
0
Ritor1
parents:
diff changeset
1221 {
Ritor1
parents:
diff changeset
1222 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor )
Ritor1
parents:
diff changeset
1223 {
Ritor1
parents:
diff changeset
1224 //goto LABEL_103;
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1225 pBLVDoor = &pIndoor->pDoors[PID_ID(a3)];
0
Ritor1
parents:
diff changeset
1226 if ( !pBLVDoor->uDoorID )
Ritor1
parents:
diff changeset
1227 return;
Ritor1
parents:
diff changeset
1228 pRenderVertexSoft.vWorldPosition.x = (double)*pBLVDoor->pXOffsets;
Ritor1
parents:
diff changeset
1229 pRenderVertexSoft.vWorldPosition.y = (double)*pBLVDoor->pYOffsets;
Ritor1
parents:
diff changeset
1230 v47 = (double)*pBLVDoor->pZOffsets;
Ritor1
parents:
diff changeset
1231 LABEL_101:
Ritor1
parents:
diff changeset
1232 pRenderVertexSoft.vWorldPosition.z = v47;
Ritor1
parents:
diff changeset
1233 //if ( uCurrentlyLoadedLevelType == LEVEL_Indoor )
Ritor1
parents:
diff changeset
1234 //{
Ritor1
parents:
diff changeset
1235 sub_4AAEA6_transform(&pRenderVertexSoft);
Ritor1
parents:
diff changeset
1236 //goto LABEL_104;
Ritor1
parents:
diff changeset
1237 //}
Ritor1
parents:
diff changeset
1238 }
Ritor1
parents:
diff changeset
1239 //LABEL_103:
Ritor1
parents:
diff changeset
1240 if ( uCurrentlyLoadedLevelType != LEVEL_Indoor )
Ritor1
parents:
diff changeset
1241 pGame->pIndoorCameraD3D->ViewTransform(&pRenderVertexSoft, 1);
Ritor1
parents:
diff changeset
1242 //LABEL_104:
Ritor1
parents:
diff changeset
1243 AIL_start_3D_sample(*(int *)v42);
Ritor1
parents:
diff changeset
1244 AIL_set_3D_sample_float_distances(*(int **)v42, 100.0, 20.0, 100.0, 20.0);
Ritor1
parents:
diff changeset
1245 AIL_set_3D_sample_volume(*(int **)v42, pAudioPlayer->s3DSoundVolume);
Ritor1
parents:
diff changeset
1246 v99 = pRenderVertexSoft.vWorldViewPosition.y * -0.012207031;
Ritor1
parents:
diff changeset
1247 v49 = pRenderVertexSoft.vWorldViewPosition.x * 0.012207031;
Ritor1
parents:
diff changeset
1248 uNumRepeatsa = v49;
Ritor1
parents:
diff changeset
1249 v50 = abs((signed __int64)v49);
Ritor1
parents:
diff changeset
1250 v51 = abs(0);
Ritor1
parents:
diff changeset
1251 v52 = abs((signed __int64)v99);
322
ce39b96acf5c Killing friendly peasants subs
Nomad
parents: 225
diff changeset
1252 if ( int_get_vector_length(v52, v51, v50) <= 100 )
0
Ritor1
parents:
diff changeset
1253 {
Ritor1
parents:
diff changeset
1254 AIL_set_3D_position((void *)*(int *)v42, LODWORD(v99), 0.0, LODWORD(uNumRepeatsa));
Ritor1
parents:
diff changeset
1255 v53 = -uNumRepeatsa;
Ritor1
parents:
diff changeset
1256 v54 = -v99;
Ritor1
parents:
diff changeset
1257 AIL_set_3D_orientation((void *)*(int *)v42, LODWORD(v54), 0.0, LODWORD(v53), 0.0, 1.0, 0.0);
Ritor1
parents:
diff changeset
1258 //pAudioPlayer3 = pAudioPlayer;
Ritor1
parents:
diff changeset
1259 *((int *)v41 + 6) = a3;
388
d95a91011d57 AudioPlayer::PlaySound
Nomad
parents: 379
diff changeset
1260 *((int *)v41 + 7) = sound_id;
0
Ritor1
parents:
diff changeset
1261 *(&pAudioPlayer->bEAXSupported + 4 * (v102 + 2)) = eSoundID;
Ritor1
parents:
diff changeset
1262 }
Ritor1
parents:
diff changeset
1263 else
Ritor1
parents:
diff changeset
1264 {
Ritor1
parents:
diff changeset
1265 AIL_end_3D_sample(*(int **)v42);
Ritor1
parents:
diff changeset
1266 pAudioPlayer->_4ABF23((AudioPlayer_3DSample *)(v41 + 20));
Ritor1
parents:
diff changeset
1267 }
Ritor1
parents:
diff changeset
1268 return;
Ritor1
parents:
diff changeset
1269 }
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1270 if ( PID_TYPE(a3) == 2 )
0
Ritor1
parents:
diff changeset
1271 {
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1272 pLayingItem2 = &pSpriteObjects[PID_ID(a3)];
0
Ritor1
parents:
diff changeset
1273 }
Ritor1
parents:
diff changeset
1274 else
Ritor1
parents:
diff changeset
1275 {
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1276 if ( PID_TYPE(a3) == 3 )
0
Ritor1
parents:
diff changeset
1277 {
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1278 pActor = &pActors[PID_ID(a3)];
0
Ritor1
parents:
diff changeset
1279 v46 = pActor->vPosition.y;
Ritor1
parents:
diff changeset
1280 pRenderVertexSoft.vWorldPosition.x = (double)pActor->vPosition.x;
Ritor1
parents:
diff changeset
1281 uNumRepeatsb = pActor->vPosition.z;
Ritor1
parents:
diff changeset
1282 pRenderVertexSoft.vWorldPosition.y = (double)v46;
Ritor1
parents:
diff changeset
1283 v47 = (double)uNumRepeatsb;
Ritor1
parents:
diff changeset
1284 goto LABEL_101;
Ritor1
parents:
diff changeset
1285 }
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1286 if ( PID_TYPE(a3) != 5 )
0
Ritor1
parents:
diff changeset
1287 {
Ritor1
parents:
diff changeset
1288 pRenderVertexSoft.vWorldPosition.x = (double)pParty->vPosition.x;
Ritor1
parents:
diff changeset
1289 v43 = (double)pParty->vPosition.y;
Ritor1
parents:
diff changeset
1290 pRenderVertexSoft.vWorldPosition.y = v43;
Ritor1
parents:
diff changeset
1291 v47 = (double)pParty->sEyelevel + (double)pParty->vPosition.z;
Ritor1
parents:
diff changeset
1292 goto LABEL_101;
Ritor1
parents:
diff changeset
1293 }
848
ceef50611567 * AI fixed (temporary)
zipi
parents: 764
diff changeset
1294 pLayingItem2 = (SpriteObject *)&pLevelDecorations[PID_ID(a3)];
0
Ritor1
parents:
diff changeset
1295 }
Ritor1
parents:
diff changeset
1296 pRenderVertexSoft.vWorldPosition.x = (double)pLayingItem2->vPosition.x;
Ritor1
parents:
diff changeset
1297 pRenderVertexSoft.vWorldPosition.y = (double)pLayingItem2->vPosition.y;
Ritor1
parents:
diff changeset
1298 v47 = (double)pLayingItem2->vPosition.z;
Ritor1
parents:
diff changeset
1299 goto LABEL_101;
Ritor1
parents:
diff changeset
1300 }
Ritor1
parents:
diff changeset
1301 pRenderVertexSoft.vWorldPosition.x = (double)PartyX;
Ritor1
parents:
diff changeset
1302 v43 = (double)PartyY;
1406
d071e0e9ba75 Explosion Traps fix
Ritor1
parents: 1391
diff changeset
1303 pRenderVertexSoft.vWorldPosition.y = v43;
d071e0e9ba75 Explosion Traps fix
Ritor1
parents: 1391
diff changeset
1304 v47 = (double)pParty->sEyelevel + (double)pParty->vPosition.z;
d071e0e9ba75 Explosion Traps fix
Ritor1
parents: 1391
diff changeset
1305 goto LABEL_101;
0
Ritor1
parents:
diff changeset
1306 }
Ritor1
parents:
diff changeset
1307 }
Ritor1
parents:
diff changeset
1308 }
Ritor1
parents:
diff changeset
1309
Ritor1
parents:
diff changeset
1310 //----- (0040DEA5) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1425
diff changeset
1311 void AudioPlayer::MessWithChannels()
0
Ritor1
parents:
diff changeset
1312 {
Ritor1
parents:
diff changeset
1313 pAudioPlayer->StopChannels(-1, -1);
Ritor1
parents:
diff changeset
1314 }
Ritor1
parents:
diff changeset
1315
Ritor1
parents:
diff changeset
1316
Ritor1
parents:
diff changeset
1317 //----- (004AAFCF) --------------------------------------------------------
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1318 void AudioPlayer::UpdateSounds()
0
Ritor1
parents:
diff changeset
1319 {
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1320 //AudioPlayer *pAudioPlayer; // edi@1
0
Ritor1
parents:
diff changeset
1321 int v2; // ebx@1
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1322 //unsigned __int8 v3; // zf@1
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1323 //int *v4; // eax@2
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1324 //unsigned __int8 v5; // sf@4
0
Ritor1
parents:
diff changeset
1325 AudioPlayer_3DSample *v6; // esi@5
Ritor1
parents:
diff changeset
1326 int v7; // ebx@6
Ritor1
parents:
diff changeset
1327 int v8; // ebx@9
Ritor1
parents:
diff changeset
1328 int v9; // ebx@10
Ritor1
parents:
diff changeset
1329 int v10; // ebx@11
Ritor1
parents:
diff changeset
1330 double v11; // st7@13
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
1331 SpriteObject *v12; // eax@14
0
Ritor1
parents:
diff changeset
1332 Actor *v13; // eax@15
Ritor1
parents:
diff changeset
1333 signed int v14; // edx@15
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1334 BLVDoor *pDoor; // eax@19
0
Ritor1
parents:
diff changeset
1335 double v16; // st7@22
Ritor1
parents:
diff changeset
1336 double v17; // st6@22
Ritor1
parents:
diff changeset
1337 double v18; // st5@23
Ritor1
parents:
diff changeset
1338 double v19; // st4@24
Ritor1
parents:
diff changeset
1339 double v20; // st3@24
Ritor1
parents:
diff changeset
1340 double v21; // st6@28
Ritor1
parents:
diff changeset
1341 double v22; // st7@32
Ritor1
parents:
diff changeset
1342 int v23; // ST1C_4@32
Ritor1
parents:
diff changeset
1343 int v24; // ebx@32
Ritor1
parents:
diff changeset
1344 int v25; // eax@32
Ritor1
parents:
diff changeset
1345 float v26; // ST10_4@34
Ritor1
parents:
diff changeset
1346 float v27; // ST08_4@34
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1347 //MixerChannel *v28; // esi@38
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1348 //unsigned __int8 v29; // of@43
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1349 //MixerChannel *v30; // esi@44
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1350 //int v31; // eax@45
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
1351 //SpriteObject *v32; // eax@49
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1352 //Actor *v33; // edi@50
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1353 //int v34; // eax@50
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1354 //unsigned int v35; // edx@51
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1355 //unsigned int v36; // ecx@51
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
1356 //SpriteObject *v37; // edi@53
0
Ritor1
parents:
diff changeset
1357 int v38; // eax@53
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1358 //BLVDoor *v39; // edi@56
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1359 //int v40; // eax@57
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1360 //int v41; // eax@60
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1361 //MixerChannel *v42; // edi@65
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1362 //int v43; // ebx@68
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1363 //LevelDecoration *v44; // esi@68
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1364 //int v45; // ST1C_4@68
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1365 //int v46; // edi@68
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1366 //int v47; // eax@68
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1367 //DecorationDesc *v48; // edi@69
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1368 //__int16 v49; // ax@69
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1369 //__int16 v50; // ax@70
0
Ritor1
parents:
diff changeset
1370 __int16 v51; // ax@71
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1371 //__int16 v52; // ax@73
0
Ritor1
parents:
diff changeset
1372 signed int v53; // eax@88
Ritor1
parents:
diff changeset
1373 RenderVertexSoft a1; // [sp+24h] [bp-48h]@1
Ritor1
parents:
diff changeset
1374 float v55; // [sp+54h] [bp-18h]@22
Ritor1
parents:
diff changeset
1375 float v56; // [sp+58h] [bp-14h]@22
Ritor1
parents:
diff changeset
1376 int uNumRepeats; // [sp+5Ch] [bp-10h]@15
Ritor1
parents:
diff changeset
1377 float v58; // [sp+60h] [bp-Ch]@23
Ritor1
parents:
diff changeset
1378 int v59; // [sp+64h] [bp-8h]@4
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1379 //AudioPlayer *thisa; // [sp+68h] [bp-4h]@1
0
Ritor1
parents:
diff changeset
1380
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1381 //pAudioPlayer = this;
0
Ritor1
parents:
diff changeset
1382 v2 = 0;
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1383 //thisa = this;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1384 //v3 = this->bPlayerReady == 0;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1385 //a1.flt_2C = 0.0;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1386 if (!bPlayerReady)
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1387 return;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1388
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1389 if (field_2D0_time_left <= pEventTimer->uTimeElapsed)
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1390 field_2D0_time_left = 32;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1391 else
0
Ritor1
parents:
diff changeset
1392 {
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1393 field_2D0_time_left -= pEventTimer->uTimeElapsed;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1394 return;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1395 }
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1396
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1397 //v3 = this->b3DSoundInitialized == 0;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1398 if ( b3DSoundInitialized )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1399 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1400 __debugbreak(); // refactor refactor
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1401 //v3 = this->uNum3DSamples == 0;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1402 //v5 = this->uNum3DSamples < 0;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1403 v59 = 0;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1404 if (uNum3DSamples > 0)
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1405 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1406 v6 = this->p3DSamples;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1407 while ( 1 )
0
Ritor1
parents:
diff changeset
1408 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1409 v7 = PID_TYPE(v6->field_4);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1410 if ( AIL_3D_sample_status(v6->hSample) == 2 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1411 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1412 AIL_end_3D_sample(v6->hSample);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1413 pAudioPlayer->_4ABF23(v6);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1414 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1415 if ( AIL_3D_sample_status(v6->hSample) != 4 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1416 goto LABEL_35;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1417 v8 = v7 - 1;//
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1418 if ( v8 )//> 1
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1419 break;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1420 if ( uCurrentlyLoadedLevelType != LEVEL_Indoor )//==1
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1421 goto LABEL_31;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1422 pDoor = &pIndoor->pDoors[PID_ID(v6->field_4)];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1423 if ( pDoor->uDoorID )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1424 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1425 uNumRepeats = *pDoor->pXOffsets;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1426 a1.vWorldPosition.x = (double)uNumRepeats;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1427 uNumRepeats = *pDoor->pYOffsets;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1428 a1.vWorldPosition.y = (double)uNumRepeats;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1429 uNumRepeats = *pDoor->pZOffsets;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1430 v11 = (double)uNumRepeats;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1431 goto LABEL_21;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1432 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1433 LABEL_35:
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1434 ++v59;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1435 ++v6;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1436 if ( v59 >= pAudioPlayer->uNum3DSamples )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1437 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1438 v2 = 0;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1439 goto LABEL_37;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1440 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1441 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1442
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1443 v9 = v8 - 1;//
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1444 if ( v9 )//> 2
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1445 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1446 v10 = v9 - 1;//
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1447 if ( !v10 )//3
0
Ritor1
parents:
diff changeset
1448 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1449 v13 = &pActors[PID_ID(v6->field_4)];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1450 uNumRepeats = v13->vPosition.x;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1451 v14 = v13->vPosition.y;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1452 a1.vWorldPosition.x = (double)uNumRepeats;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1453 uNumRepeats = v13->vPosition.z;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1454 a1.vWorldPosition.y = (double)v14;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1455 v11 = (double)uNumRepeats;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1456 goto LABEL_21;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1457 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1458 if ( v10 != 2 )//4
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1459 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1460 a1.vWorldPosition.x = (double)pParty->vPosition.x;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1461 a1.vWorldPosition.y = (double)pParty->vPosition.y;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1462 v11 = (double)pParty->sEyelevel + (double)pParty->vPosition.z;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1463 goto LABEL_21;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1464 }//5
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1465 v12 = (SpriteObject *)&pLevelDecorations[PID_ID(v6->field_4)];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1466 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1467 else//2
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1468 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1469 v12 = &pSpriteObjects[PID_ID(v6->field_4)];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1470 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1471 a1.vWorldPosition.x = (double)v12->vPosition.x;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1472 a1.vWorldPosition.y = (double)v12->vPosition.y;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1473 v11 = (double)v12->vPosition.z;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1474 LABEL_21:
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1475 a1.vWorldPosition.z = v11;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1476 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1477 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1478 v16 = pBLVRenderParams->fCosineNegX;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1479 v17 = pBLVRenderParams->fSineNegX;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1480 v55 = pBLVRenderParams->fCosineY;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1481 v56 = pBLVRenderParams->fSineY;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1482 if ( pBLVRenderParams->sPartyRotX )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1483 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1484 v58 = a1.vWorldPosition.x - (double)pParty->vPosition.x;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1485 *(float *)&uNumRepeats = a1.vWorldPosition.y - (double)pParty->vPosition.y;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1486 v18 = a1.vWorldPosition.z - (double)pParty->vPosition.z;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1487 if ( pRenderer->pRenderD3D )
0
Ritor1
parents:
diff changeset
1488 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1489 v19 = *(float *)&uNumRepeats * v56 + v58 * v55;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1490 v20 = v58 * v56 - *(float *)&uNumRepeats * v55;
0
Ritor1
parents:
diff changeset
1491 }
Ritor1
parents:
diff changeset
1492 else
Ritor1
parents:
diff changeset
1493 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1494 v19 = v58 * v55 - *(float *)&uNumRepeats * v56;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1495 v20 = v58 * v56 + *(float *)&uNumRepeats * v55;
0
Ritor1
parents:
diff changeset
1496 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1497 a1.vWorldViewPosition.x = v19 * v16 - v18 * v17;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1498 a1.vWorldViewPosition.y = v20;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1499 a1.vWorldViewPosition.z = v19 * v17 + v18 * v16;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1500 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1501 else
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1502 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1503 v58 = a1.vWorldPosition.x - (double)pParty->vPosition.x;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1504 *(float *)&uNumRepeats = a1.vWorldPosition.y - (double)pParty->vPosition.y;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1505 if ( pRenderer->pRenderD3D )
0
Ritor1
parents:
diff changeset
1506 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1507 a1.vWorldViewPosition.x = *(float *)&uNumRepeats * v56 + v58 * v55;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1508 v21 = v58 * v56 - *(float *)&uNumRepeats * v55;
0
Ritor1
parents:
diff changeset
1509 }
Ritor1
parents:
diff changeset
1510 else
Ritor1
parents:
diff changeset
1511 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1512 a1.vWorldViewPosition.x = v58 * v55 - *(float *)&uNumRepeats * v56;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1513 v21 = v58 * v56 + *(float *)&uNumRepeats * v55;
0
Ritor1
parents:
diff changeset
1514 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1515 a1.vWorldViewPosition.y = v21;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1516 a1.vWorldViewPosition.z = a1.vWorldPosition.z - (double)pParty->vPosition.z;
0
Ritor1
parents:
diff changeset
1517 }
Ritor1
parents:
diff changeset
1518 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1519 else
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1520 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1521 LABEL_31:
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1522 pGame->pIndoorCameraD3D->ViewTransform(&a1, 1u);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1523 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1524 v58 = a1.vWorldViewPosition.y * -0.012207031;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1525 v22 = a1.vWorldViewPosition.x * 0.012207031;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1526 *(float *)&uNumRepeats = v22;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1527 v23 = abs((signed __int64)v22);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1528 v24 = abs(0);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1529 v25 = abs((signed __int64)v58);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1530 if ( int_get_vector_length(v25, v24, v23) <= 100 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1531 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1532 AIL_set_3D_position(v6->hSample, LODWORD(v58), 0.0, uNumRepeats);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1533 v26 = -*(float *)&uNumRepeats;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1534 v27 = -v58;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1535 AIL_set_3D_orientation(v6->hSample, LODWORD(v27), 0.0, LODWORD(v26), 0.0, 1.0, 0.0);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1536 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1537 else
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1538 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1539 AIL_end_3D_sample(v6->hSample);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1540 pAudioPlayer->_4ABF23(v6);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1541 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1542 goto LABEL_35;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1543 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1544 }
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1545
0
Ritor1
parents:
diff changeset
1546 LABEL_37:
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1547 for (uint i = 0; i < uMixerChannels; ++i)
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1548 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1549 if (AIL_sample_status(pMixerChannels[i].hSample) == AIL::Sample::Done)
390
35a62d1948d4 More sound fixes
Nomad
parents: 388
diff changeset
1550 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1551 AIL_end_sample(pMixerChannels[i].hSample);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1552 FreeChannel(&pMixerChannels[i]);
390
35a62d1948d4 More sound fixes
Nomad
parents: 388
diff changeset
1553 }
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1554 }
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1555
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1556 for (uint i = 0; i < uMixerChannels; ++i)
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1557 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1558 if (pMixerChannels[i].source_pid <= 0)
390
35a62d1948d4 More sound fixes
Nomad
parents: 388
diff changeset
1559 continue;
35a62d1948d4 More sound fixes
Nomad
parents: 388
diff changeset
1560
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1561 int source_type = PID_TYPE(pMixerChannels[i].source_pid),
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1562 source_id = PID_ID(pMixerChannels[i].source_pid);
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1563 int source_x,
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1564 source_y,
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1565 source_z;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1566
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1567 switch (source_type)
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1568 {
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1569 case 0:
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1570 case OBJECT_Player:
411
747933903b1c 00401A91 sub_401A91_AI(): actors drop when dead
Nomad
parents: 390
diff changeset
1571 case OBJECT_BModel:
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1572 continue;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1573
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1574 case OBJECT_BLVDoor:
0
Ritor1
parents:
diff changeset
1575 {
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1576 assert(uCurrentlyLoadedLevelType == LEVEL_Indoor);
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1577
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1578 assert(source_id < pIndoor->uNumDoors);
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1579 if (!pIndoor->pDoors[source_id].uDoorID)
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1580 continue;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1581
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1582 source_x = pIndoor->pDoors[source_id].pXOffsets[0];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1583 source_y = pIndoor->pDoors[source_id].pYOffsets[0];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1584 source_z = pIndoor->pDoors[source_id].pZOffsets[0];
0
Ritor1
parents:
diff changeset
1585 }
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1586 break;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1587
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1588 case OBJECT_Item:
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1589 {
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 412
diff changeset
1590 assert(source_id < uNumSpriteObjects);
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1591
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1592 source_x = pSpriteObjects[source_id].vPosition.x;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1593 source_y = pSpriteObjects[source_id].vPosition.y;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1594 source_z = pSpriteObjects[source_id].vPosition.z;
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1595 }
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1596 break;
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1597
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1598 case OBJECT_Decoration:
0
Ritor1
parents:
diff changeset
1599 {
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1600 assert(source_id < uNumLevelDecorations);
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1601
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1602 source_x = pLevelDecorations[source_id].vPosition.x;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1603 source_y = pLevelDecorations[source_id].vPosition.y;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1604 source_z = pLevelDecorations[source_id].vPosition.z;
0
Ritor1
parents:
diff changeset
1605 }
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1606 break;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1607
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1608 case OBJECT_Actor:
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1609 {
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1610 assert(source_id < uNumActors);
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1611
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1612 source_x = pActors[source_id].vPosition.x;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1613 source_y = pActors[source_id].vPosition.y;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1614 source_z = pActors[source_id].vPosition.z;
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1615 }
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1616 break;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1617
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1618 default:
408
Ritor1
parents: 405
diff changeset
1619 assert(false);
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1620 continue;
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1621 }
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1622
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1623 if (auto sound_strength = GetSoundStrengthByDistanceFromParty(source_x, source_y, source_z))
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1624 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1625 AIL_set_sample_volume(pMixerChannels[i].hSample, sound_strength);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1626 AIL_set_sample_pan(pMixerChannels[i].hSample, sub_4AB66C(source_x, source_y));
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1627 }
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1628 else
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1629 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1630 AIL_end_sample(pMixerChannels[i].hSample);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1631 FreeChannel(&pMixerChannels[i]);
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1632 }
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1633 }
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1634
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1635
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1636
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1637 if (pCurrentScreen != SCREEN_GAME)
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1638 {
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1639 auto channel = &pMixerChannels[4];
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1640 if (AIL_sample_status(channel->hSample) == AIL::Sample::Playing)
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1641 AIL_end_sample(channel->hSample);
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1642 return;
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1643 }
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1644 if (!_6807E0_num_decorations_with_sounds_6807B8)
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1645 return;
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1646
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1647 v55 = 0;
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1648 //v59 = 0;
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1649 for (uint i = 0; i < _6807E0_num_decorations_with_sounds_6807B8; ++i)
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1650 {
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1651 //while ( 1 )
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1652 //{
0
Ritor1
parents:
diff changeset
1653 LODWORD(v56) = 1;
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1654 //v43 = _6807B8_level_decorations_ids[v59];
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1655 //v44 = &pLevelDecorations[_6807B8_level_decorations_ids[v59]];
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1656 //v45 = abs(v44->vPosition.z - pParty->vPosition.z);
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1657 //v46 = abs(v44->vPosition.y - pParty->vPosition.y);
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1658 //v47 = abs(v44->vPosition.x - pParty->vPosition.x);
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1659 auto decor = &pLevelDecorations[_6807B8_level_decorations_ids[i]];
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1660 if (int_get_vector_length(decor->vPosition.x - pParty->vPosition.x,
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1661 decor->vPosition.y - pParty->vPosition.y,
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1662 decor->vPosition.z - pParty->vPosition.z) > 8192)
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1663 continue;
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1664
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1665 auto decor_desc = &pDecorationList->pDecorations[decor->uDecorationDescID];
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1666 //v48 = &pDecorationList->pDecorations[decor->uDecorationDescID];
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1667 //v49 = v48->uFlags;
592
96f48cfdd657 some flags
Nomad
parents: 515
diff changeset
1668 uNumRepeats = (~(unsigned __int8)decor_desc->uFlags & DECORATION_SLOW_LOOP) >> 6;
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1669
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1670 if (decor_desc->SoundOnDawn() || decor_desc->SoundOnDusk())
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1671 {
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1672 //v50 = decor->field_1A;
0
Ritor1
parents:
diff changeset
1673 v55 = 0.0;
Ritor1
parents:
diff changeset
1674 uNumRepeats = 2;
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1675 if (decor->field_1A)
0
Ritor1
parents:
diff changeset
1676 {
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1677 v51 = decor->field_1A - 32;
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1678 decor->field_1A = v51;
0
Ritor1
parents:
diff changeset
1679 if ( v51 < 0 )
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1680 decor->field_1A = 0;
0
Ritor1
parents:
diff changeset
1681 }
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1682 }
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1683
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1684 //v52 = v48->uFlags;
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1685 if (!decor_desc->SoundOnDawn())
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1686 {
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1687 if (!decor_desc->SoundOnDusk())
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1688 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1689 if ( v55 == 0.0 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1690 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1691 if ( v56 != 0.0 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1692 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1693 v53 = 8 * _6807B8_level_decorations_ids[i];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1694 LOBYTE(v53) = v53 | OBJECT_Decoration;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1695 PlaySound((SoundID)decor_desc->uSoundID, v53, uNumRepeats, -1, 0, 0, 0, 0);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1696 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1697 continue;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1698 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1699 if ( !decor->field_1A )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1700 decor->field_1A = (rand() % 15 + 1) << 7;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1701 if ( v56 != 0.0 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1702 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1703 v53 = 8 * _6807B8_level_decorations_ids[i];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1704 LOBYTE(v53) = v53 | OBJECT_Decoration;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1705 PlaySound((SoundID)decor_desc->uSoundID, v53, uNumRepeats, -1, 0, 0, 0, 0);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1706 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1707 continue;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1708 }
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1709 if ( v55 != 0.0 )
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1710 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1711 if ( !decor->field_1A )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1712 decor->field_1A = (rand() % 15 + 1) << 7;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1713 if ( v56 != 0.0 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1714 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1715 v53 = 8 * _6807B8_level_decorations_ids[i];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1716 LOBYTE(v53) = v53 | OBJECT_Decoration;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1717 PlaySound((SoundID)decor_desc->uSoundID, v53, uNumRepeats, -1, 0, 0, 0, 0);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1718 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1719 continue;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1720 }
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1721 }
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1722 v56 = 0.0;
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1723
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1724 if (pParty->uCurrentHour >= 5 && pParty->uCurrentHour < 6 ||
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1725 pParty->uCurrentHour >= 20 && pParty->uCurrentHour < 21)
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1726 {
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1727 if ( !decor->field_1A && rand() % 100 < 100 )
0
Ritor1
parents:
diff changeset
1728 LODWORD(v56) = 1;
Ritor1
parents:
diff changeset
1729 LODWORD(v55) = 1;
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1730 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1731 if ( v55 == 0.0 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1732 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1733 if ( v56 != 0.0 )
0
Ritor1
parents:
diff changeset
1734 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1735 v53 = 8 * _6807B8_level_decorations_ids[i];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1736 LOBYTE(v53) = v53 | OBJECT_Decoration;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1737 PlaySound((SoundID)decor_desc->uSoundID, v53, uNumRepeats, -1, 0, 0, 0, 0);
0
Ritor1
parents:
diff changeset
1738 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1739 continue;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1740 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1741 if ( !decor->field_1A )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1742 decor->field_1A = (rand() % 15 + 1) << 7;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1743 if ( v56 != 0.0 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1744 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1745 v53 = 8 * _6807B8_level_decorations_ids[i];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1746 LOBYTE(v53) = v53 | OBJECT_Decoration;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1747 PlaySound((SoundID)decor_desc->uSoundID, v53, uNumRepeats, -1, 0, 0, 0, 0);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1748 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1749 continue;
379
5bea494a2365 AudioPlayer::UpdateSounds (004AAFCF) take 2
Nomad
parents: 378
diff changeset
1750 }
0
Ritor1
parents:
diff changeset
1751 }
Ritor1
parents:
diff changeset
1752
Ritor1
parents:
diff changeset
1753 //----- (004AB66C) --------------------------------------------------------
Ritor1
parents:
diff changeset
1754 int __fastcall sub_4AB66C(int a1, int a2)
Ritor1
parents:
diff changeset
1755 {
Ritor1
parents:
diff changeset
1756 signed int v2; // eax@1
Ritor1
parents:
diff changeset
1757
Ritor1
parents:
diff changeset
1758 v2 = stru_5C6E00->uDoublePiMask & (stru_5C6E00->Atan2(a1 - pParty->vPosition.x, a2 - pParty->vPosition.y)
147
c70fea5013aa 12.02.13
Ritor1
parents: 82
diff changeset
1759 - stru_5C6E00->uIntegerHalfPi - pParty->sRotationY);
0
Ritor1
parents:
diff changeset
1760 if ( v2 > (signed int)stru_5C6E00->uIntegerPi )
Ritor1
parents:
diff changeset
1761 v2 = 2 * stru_5C6E00->uIntegerPi - v2;
Ritor1
parents:
diff changeset
1762 return (v2 >> 3) - (v2 >> 10);
Ritor1
parents:
diff changeset
1763 }
Ritor1
parents:
diff changeset
1764 // 4AB66C: using guessed type int __fastcall sub_4AB66C(int, int);
Ritor1
parents:
diff changeset
1765
Ritor1
parents:
diff changeset
1766 //----- (004AB6B1) --------------------------------------------------------
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1767 int GetSoundStrengthByDistanceFromParty(int x, int y, int z)
0
Ritor1
parents:
diff changeset
1768 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1769 int dir_x; // ST08_4@1
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1770 int dir_y; // esi@1
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1771 int dir_z; // eax@1
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1772 int length; // [sp+10h] [bp+8h]@1
0
Ritor1
parents:
diff changeset
1773
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1774 dir_z = abs(z - pParty->vPosition.z);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1775 dir_y = abs(y - pParty->vPosition.y);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1776 dir_x = abs(x - pParty->vPosition.x);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1777 length = int_get_vector_length(dir_x, dir_y, dir_z);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1778 if ( length <= 8192 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1779 return 114 - (unsigned __int64)(signed __int64)((double)length * 0.0001220703125 * 100.0);
0
Ritor1
parents:
diff changeset
1780 else
322
ce39b96acf5c Killing friendly peasants subs
Nomad
parents: 225
diff changeset
1781 return 0;
0
Ritor1
parents:
diff changeset
1782 }
Ritor1
parents:
diff changeset
1783
Ritor1
parents:
diff changeset
1784 //----- (004AB71F) --------------------------------------------------------
Ritor1
parents:
diff changeset
1785 void AudioPlayer::StopChannels(int uStartChannel, int uEndChannel)
Ritor1
parents:
diff changeset
1786 {
Ritor1
parents:
diff changeset
1787 //AudioPlayer *v3; // esi@1
Ritor1
parents:
diff changeset
1788 int v4; // ecx@1
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1789 //AudioPlayer_3DSample *v5; // edi@4
0
Ritor1
parents:
diff changeset
1790 int v6; // ebx@12
Ritor1
parents:
diff changeset
1791 MixerChannel *pChannel; // edi@14
Ritor1
parents:
diff changeset
1792 //_STREAM *v8; // esi@23
Ritor1
parents:
diff changeset
1793 int v9; // [sp+4h] [bp-4h]@3
Ritor1
parents:
diff changeset
1794
Ritor1
parents:
diff changeset
1795 if ( bPlayerReady )
Ritor1
parents:
diff changeset
1796 {
Ritor1
parents:
diff changeset
1797 if ( b3DSoundInitialized )
Ritor1
parents:
diff changeset
1798 {
Ritor1
parents:
diff changeset
1799 v9 = 0;
Ritor1
parents:
diff changeset
1800 if ( uNum3DSamples > 0 )
Ritor1
parents:
diff changeset
1801 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1802 //v5 = p3DSamples;//;(char *)&p3DSamples[0].field_8;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1803 for ( v4 = 0; v4 < uNum3DSamples; ++v4 )
0
Ritor1
parents:
diff changeset
1804 {
Ritor1
parents:
diff changeset
1805 if ( (uStartChannel == -1 || v4 < uStartChannel || v4 > uEndChannel)
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1806 && p3DSamples[v4].field_8
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1807 && pSoundList->pSounds[p3DSamples[v4].field_8].eType != SOUND_DESC_SYSTEM)
0
Ritor1
parents:
diff changeset
1808 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1809 AIL_end_3D_sample(p3DSamples[v4].hSample);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1810 _4ABF23(&p3DSamples[v4]);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1811 p3DSamples[v4].field_4 = 0;
0
Ritor1
parents:
diff changeset
1812 v4 = v9;
Ritor1
parents:
diff changeset
1813 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1814 //v5 += 16;
0
Ritor1
parents:
diff changeset
1815 v9 = v4;
Ritor1
parents:
diff changeset
1816 }
Ritor1
parents:
diff changeset
1817 }
Ritor1
parents:
diff changeset
1818 }
Ritor1
parents:
diff changeset
1819 if ( hDigDriver && uMixerChannels > 0 )
Ritor1
parents:
diff changeset
1820 {
Ritor1
parents:
diff changeset
1821 pChannel = pMixerChannels;
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
1822 for ( v6 = 0; v6 < uMixerChannels; ++v6 )
0
Ritor1
parents:
diff changeset
1823 {
Ritor1
parents:
diff changeset
1824 if ( (uStartChannel == -1 || v6 < uStartChannel || v6 > uEndChannel)
Ritor1
parents:
diff changeset
1825 && pSoundList->pSounds[pChannel->uSourceTrackIdx].eType != SOUND_DESC_SYSTEM)
Ritor1
parents:
diff changeset
1826 {
Ritor1
parents:
diff changeset
1827 AIL_end_sample(pChannel->hSample);
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
1828 FreeChannel(pChannel);
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
1829 pChannel->source_pid = 0;
0
Ritor1
parents:
diff changeset
1830 }
Ritor1
parents:
diff changeset
1831 ++pChannel;
Ritor1
parents:
diff changeset
1832 }
Ritor1
parents:
diff changeset
1833 }
Ritor1
parents:
diff changeset
1834 if (hSequence)
Ritor1
parents:
diff changeset
1835 AIL_end_sequence(hSequence);
Ritor1
parents:
diff changeset
1836 //v8 = hStream;
Ritor1
parents:
diff changeset
1837 if (hStream)
Ritor1
parents:
diff changeset
1838 AIL_pause_stream(hStream, 1);
Ritor1
parents:
diff changeset
1839 }
Ritor1
parents:
diff changeset
1840 }
Ritor1
parents:
diff changeset
1841
Ritor1
parents:
diff changeset
1842 //----- (004AB818) --------------------------------------------------------
Ritor1
parents:
diff changeset
1843 void AudioPlayer::LoadAudioSnd()
Ritor1
parents:
diff changeset
1844 {
Ritor1
parents:
diff changeset
1845 DWORD NumberOfBytesRead; // [sp+Ch] [bp-4h]@3
Ritor1
parents:
diff changeset
1846
Ritor1
parents:
diff changeset
1847 hAudioSnd = CreateFileA("Sounds\\Audio.snd", GENERIC_READ, FILE_SHARE_READ, 0, OPEN_EXISTING, 0x8000080u, 0);
Ritor1
parents:
diff changeset
1848 if (hAudioSnd == INVALID_HANDLE_VALUE)
Ritor1
parents:
diff changeset
1849 {
Ritor1
parents:
diff changeset
1850 Log::Warning(L"Can't open file: %s", L"Sounds\\Audio.snd");
Ritor1
parents:
diff changeset
1851 return;
Ritor1
parents:
diff changeset
1852 }
Ritor1
parents:
diff changeset
1853
Ritor1
parents:
diff changeset
1854 ReadFile(hAudioSnd, &uNumSoundHeaders, 4u, &NumberOfBytesRead, 0);
Ritor1
parents:
diff changeset
1855 pSoundHeaders = nullptr;
Ritor1
parents:
diff changeset
1856 pSoundHeaders = (SoundHeader *)pAllocator->AllocNamedChunk(0, 52 * uNumSoundHeaders + 2, 0);
Ritor1
parents:
diff changeset
1857 ReadFile(hAudioSnd, pSoundHeaders, 52 * uNumSoundHeaders, &NumberOfBytesRead, 0);
Ritor1
parents:
diff changeset
1858 }
Ritor1
parents:
diff changeset
1859
Ritor1
parents:
diff changeset
1860 //----- (004AB8CE) --------------------------------------------------------
Ritor1
parents:
diff changeset
1861 void AudioPlayer::Initialize(HWND hWnd)
Ritor1
parents:
diff changeset
1862 {
Ritor1
parents:
diff changeset
1863 //AudioPlayer *v2; // esi@1
Ritor1
parents:
diff changeset
1864 int v3; // ebx@1
Ritor1
parents:
diff changeset
1865 //_DIG_DRIVER *v4; // eax@1
Ritor1
parents:
diff changeset
1866 char v5; // dl@5
Ritor1
parents:
diff changeset
1867 _PROVIDER *v6; // eax@9
Ritor1
parents:
diff changeset
1868 HWND v7; // ST00_4@9
Ritor1
parents:
diff changeset
1869 MixerChannel *pChannel; // edi@14
Ritor1
parents:
diff changeset
1870 _SAMPLE *v9; // eax@15
Ritor1
parents:
diff changeset
1871 //_REDBOOK *v10; // eax@19
Ritor1
parents:
diff changeset
1872 //int v11; // ecx@21
Ritor1
parents:
diff changeset
1873 int v12; // [sp+Ch] [bp-Ch]@9
Ritor1
parents:
diff changeset
1874 char *Str1; // [sp+10h] [bp-8h]@6
Ritor1
parents:
diff changeset
1875 int v14; // [sp+14h] [bp-4h]@5
Ritor1
parents:
diff changeset
1876
Ritor1
parents:
diff changeset
1877 //v2 = this;
Ritor1
parents:
diff changeset
1878 v3 = 0;
Ritor1
parents:
diff changeset
1879 this->hWindow = hWnd;
Ritor1
parents:
diff changeset
1880 this->hAILRedbook = 0;
Ritor1
parents:
diff changeset
1881 this->hDigDriver = 0;
Ritor1
parents:
diff changeset
1882 this->dword_0002AC = 0;
Ritor1
parents:
diff changeset
1883 this->hSequence = 0;
Ritor1
parents:
diff changeset
1884 this->uMasterVolume = 127;
Ritor1
parents:
diff changeset
1885 this->dword_0002C8 = 64;
Ritor1
parents:
diff changeset
1886 this->dword_0002CC = 2;
Ritor1
parents:
diff changeset
1887
Ritor1
parents:
diff changeset
1888 MSS32_DLL_Initialize();
Ritor1
parents:
diff changeset
1889 BINKW32_DLL_Initialize();
Ritor1
parents:
diff changeset
1890 SMACKW32_DLL_Initialize();
Ritor1
parents:
diff changeset
1891
Ritor1
parents:
diff changeset
1892 AIL_startup();
Ritor1
parents:
diff changeset
1893 if (bCanLoadFromCD)
Ritor1
parents:
diff changeset
1894 hAILRedbook = AIL_redbook_open_drive(cMM7GameCDDriveLetter/*cGameCDDriveLetter*/);
Ritor1
parents:
diff changeset
1895 //else
Ritor1
parents:
diff changeset
1896 // hAILRedbook = AIL_redbook_open(0);
Ritor1
parents:
diff changeset
1897 //v4 = Audio_GetFirstHardwareDigitalDriver();
Ritor1
parents:
diff changeset
1898
Ritor1
parents:
diff changeset
1899 hDigDriver = Audio_GetFirstHardwareDigitalDriver();
Ritor1
parents:
diff changeset
1900 if ( hDigDriver )
Ritor1
parents:
diff changeset
1901 SmackSoundUseMSS(hDigDriver);
Ritor1
parents:
diff changeset
1902 if ( ReadWindowsRegistryInt("Disable3DSound", 0) != 1 && pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT )
Ritor1
parents:
diff changeset
1903 {
Ritor1
parents:
diff changeset
1904 v14 = 0;
Ritor1
parents:
diff changeset
1905 bEAXSupported = 0;
Ritor1
parents:
diff changeset
1906 b3DSoundInitialized = 0;
Ritor1
parents:
diff changeset
1907 ReadWindowsRegistryString("3DSoundProvider", p3DSoundProvider, 128u, "NONE");
1409
c9e3b93ec570 Highlighted locations with "using uninitialized variable" warning.
Nomad
parents: 1408
diff changeset
1908 __debugbreak(); // audioplayer.cpp(1926): warning C4700: uninitialized local variable 'v5' used
0
Ritor1
parents:
diff changeset
1909 CheckA3DSupport(v5);
Ritor1
parents:
diff changeset
1910 while ( AIL_enumerate_3D_providers(&v14, (HPROVIDER *)&hWnd, &Str1) )
Ritor1
parents:
diff changeset
1911 {
Ritor1
parents:
diff changeset
1912 if ( !strcmp(Str1, p3DSoundProvider) )
Ritor1
parents:
diff changeset
1913 {
Ritor1
parents:
diff changeset
1914 if ( AIL_open_3D_provider((HPROVIDER)hWnd) )
Ritor1
parents:
diff changeset
1915 {
Ritor1
parents:
diff changeset
1916 bEAXSupported = 0;
Ritor1
parents:
diff changeset
1917 b3DSoundInitialized = 0;
Ritor1
parents:
diff changeset
1918 h3DSoundProvider = 0;
Ritor1
parents:
diff changeset
1919 }
Ritor1
parents:
diff changeset
1920 else
Ritor1
parents:
diff changeset
1921 {
Ritor1
parents:
diff changeset
1922 v6 = (_PROVIDER *)hWnd;
Ritor1
parents:
diff changeset
1923 v7 = hWnd;
Ritor1
parents:
diff changeset
1924 b3DSoundInitialized = 1;
Ritor1
parents:
diff changeset
1925 h3DSoundProvider = v6;
Ritor1
parents:
diff changeset
1926 uNum3DSamples = 4;
Ritor1
parents:
diff changeset
1927 AIL_3D_provider_attribute((HPROVIDER)v7, "EAX environment selection", &v12);
Ritor1
parents:
diff changeset
1928 if ( v12 != -1 )
Ritor1
parents:
diff changeset
1929 bEAXSupported = 1;
Ritor1
parents:
diff changeset
1930 }
Ritor1
parents:
diff changeset
1931 pAudioPlayer->_4AC0A2();
Ritor1
parents:
diff changeset
1932 break;
Ritor1
parents:
diff changeset
1933 }
Ritor1
parents:
diff changeset
1934 }
Ritor1
parents:
diff changeset
1935 }
Ritor1
parents:
diff changeset
1936 if ( uMixerChannels > 0 )
Ritor1
parents:
diff changeset
1937 {
Ritor1
parents:
diff changeset
1938 pChannel = pMixerChannels;
Ritor1
parents:
diff changeset
1939 do
Ritor1
parents:
diff changeset
1940 {
Ritor1
parents:
diff changeset
1941 v9 = AIL_allocate_sample_handle(hDigDriver);
Ritor1
parents:
diff changeset
1942 pChannel->hSample = v9;
Ritor1
parents:
diff changeset
1943 if ( !v9 )
Ritor1
parents:
diff changeset
1944 break;
Ritor1
parents:
diff changeset
1945 ++v3;
Ritor1
parents:
diff changeset
1946 ++pChannel;
Ritor1
parents:
diff changeset
1947 }
Ritor1
parents:
diff changeset
1948 while ( v3 < uMixerChannels );
Ritor1
parents:
diff changeset
1949 }
Ritor1
parents:
diff changeset
1950 uMixerChannels = v3;
Ritor1
parents:
diff changeset
1951 if ( bPlayerReady )
Ritor1
parents:
diff changeset
1952 StopChannels(-1, -1);
Ritor1
parents:
diff changeset
1953 //v10 = hAILRedbook;
Ritor1
parents:
diff changeset
1954 bPlayerReady = true;
Ritor1
parents:
diff changeset
1955 if ( hAILRedbook )
Ritor1
parents:
diff changeset
1956 {
Ritor1
parents:
diff changeset
1957 AIL_redbook_stop(hAILRedbook);
Ritor1
parents:
diff changeset
1958 uNumRedbookTracks = AIL_redbook_tracks(hAILRedbook);
Ritor1
parents:
diff changeset
1959 }
Ritor1
parents:
diff changeset
1960 pAudioPlayer->sRedbookVolume = AIL_redbook_volume(hAILRedbook);
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
1961 pAudioPlayer->SetMasterVolume(pSoundVolumeLevels[uSoundVolumeMultiplier] * 128.0f);
0
Ritor1
parents:
diff changeset
1962 if ( bPlayerReady && hAILRedbook )
328
8e23edf57e27 little fix
Ritor1
parents: 322
diff changeset
1963 AIL_redbook_set_volume(hAILRedbook, (unsigned __int64)(pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f) >> 32);
0
Ritor1
parents:
diff changeset
1964 LoadAudioSnd();
Ritor1
parents:
diff changeset
1965 }
Ritor1
parents:
diff changeset
1966
Ritor1
parents:
diff changeset
1967 //----- (004ABAF7) --------------------------------------------------------
Ritor1
parents:
diff changeset
1968 _DIG_DRIVER *Audio_GetFirstHardwareDigitalDriver(void)
Ritor1
parents:
diff changeset
1969 {
Ritor1
parents:
diff changeset
1970 int v0; // ecx@1
Ritor1
parents:
diff changeset
1971 unsigned int v1; // ebp@2
Ritor1
parents:
diff changeset
1972 size_t v2; // eax@4
Ritor1
parents:
diff changeset
1973 signed int v3; // kr14_4@9
Ritor1
parents:
diff changeset
1974 char *v5; // [sp+10h] [bp-Ch]@2
Ritor1
parents:
diff changeset
1975 unsigned int v6; // [sp+14h] [bp-8h]@1
Ritor1
parents:
diff changeset
1976 _DIG_DRIVER *hDrv; // [sp+18h] [bp-4h]@3
Ritor1
parents:
diff changeset
1977
Ritor1
parents:
diff changeset
1978 static int dword_4F00DC = 22050;
Ritor1
parents:
diff changeset
1979 static int dword_4F00E0 = 16;
Ritor1
parents:
diff changeset
1980 static int dword_4F00E4 = 2;
Ritor1
parents:
diff changeset
1981
Ritor1
parents:
diff changeset
1982 AIL_set_preference(15, 0);
Ritor1
parents:
diff changeset
1983 AIL_set_preference(33, 1);
Ritor1
parents:
diff changeset
1984 v0 = dword_4F00DC;
Ritor1
parents:
diff changeset
1985 pAudioPlayer->pDeviceNames[0][0] = 0;
Ritor1
parents:
diff changeset
1986 pAudioPlayer->uNumDevices = 0;
Ritor1
parents:
diff changeset
1987 v6 = 0;
Ritor1
parents:
diff changeset
1988
Ritor1
parents:
diff changeset
1989 if ( dword_4F00DC < 11025 )
Ritor1
parents:
diff changeset
1990 return 0;
Ritor1
parents:
diff changeset
1991 v1 = 0;
Ritor1
parents:
diff changeset
1992 v5 = (char *)pAudioPlayer->array_000BF0;
Ritor1
parents:
diff changeset
1993 while ( 1 )
Ritor1
parents:
diff changeset
1994 {
Ritor1
parents:
diff changeset
1995 while ( 1 )
Ritor1
parents:
diff changeset
1996 {
Ritor1
parents:
diff changeset
1997 pcmWaveFormat.wf.wFormatTag = 1;
Ritor1
parents:
diff changeset
1998 pcmWaveFormat.wf.nChannels = dword_4F00E4;
Ritor1
parents:
diff changeset
1999 pcmWaveFormat.wf.nSamplesPerSec = v0;
Ritor1
parents:
diff changeset
2000 pcmWaveFormat.wf.nBlockAlign = dword_4F00E4 * dword_4F00E0 / 8;
Ritor1
parents:
diff changeset
2001 pcmWaveFormat.wBitsPerSample = dword_4F00E0;
Ritor1
parents:
diff changeset
2002 pcmWaveFormat.wf.nAvgBytesPerSec = v0 * dword_4F00E4 * dword_4F00E0 / 8;
Ritor1
parents:
diff changeset
2003 if ( !AIL_waveOutOpen(&hDrv, 0, -1, &pcmWaveFormat.wf) )
Ritor1
parents:
diff changeset
2004 break;
Ritor1
parents:
diff changeset
2005 if ( !AIL_get_preference(15) )
Ritor1
parents:
diff changeset
2006 goto LABEL_8;
Ritor1
parents:
diff changeset
2007 v3 = dword_4F00DC;
Ritor1
parents:
diff changeset
2008 v0 = dword_4F00DC / 2;
Ritor1
parents:
diff changeset
2009 dword_4F00DC /= 2;
Ritor1
parents:
diff changeset
2010 if ( v3 / 2 < 11025 )
Ritor1
parents:
diff changeset
2011 {
Ritor1
parents:
diff changeset
2012 if ( dword_4F00E0 == 8 )
Ritor1
parents:
diff changeset
2013 {
Ritor1
parents:
diff changeset
2014 v0 = 22050;
Ritor1
parents:
diff changeset
2015 dword_4F00E0 = 8;
Ritor1
parents:
diff changeset
2016 dword_4F00DC = 22050;
Ritor1
parents:
diff changeset
2017 }
Ritor1
parents:
diff changeset
2018 goto LABEL_12;
Ritor1
parents:
diff changeset
2019 }
Ritor1
parents:
diff changeset
2020 }
Ritor1
parents:
diff changeset
2021 strcpy(pAudioPlayer->pDeviceNames[v1 / 8], "Device: ");
Ritor1
parents:
diff changeset
2022 v2 = strlen(pAudioPlayer->pDeviceNames[v1 / 8]);
Ritor1
parents:
diff changeset
2023 AIL_digital_configuration(hDrv, (int *)v5, (int *)(v5 + 64), (char *)pAudioPlayer->pDeviceNames + v2 + v1 * 16);
Ritor1
parents:
diff changeset
2024 ++v6;
Ritor1
parents:
diff changeset
2025 v1 += 8;
Ritor1
parents:
diff changeset
2026 v5 += 4;
Ritor1
parents:
diff changeset
2027 pAudioPlayer->uNumDevices = v6;
Ritor1
parents:
diff changeset
2028 if ( AIL_get_preference(15) )
Ritor1
parents:
diff changeset
2029 return hDrv;
Ritor1
parents:
diff changeset
2030 if ( !strstr(pAudioPlayer->pDeviceNames[v1 / 8 - 1], "Emulated") )
Ritor1
parents:
diff changeset
2031 return hDrv;
Ritor1
parents:
diff changeset
2032 AIL_waveOutClose(hDrv);
Ritor1
parents:
diff changeset
2033 AIL_set_preference(15, 1);
Ritor1
parents:
diff changeset
2034 LABEL_8:
Ritor1
parents:
diff changeset
2035 AIL_set_preference(15, 1);
Ritor1
parents:
diff changeset
2036 v0 = dword_4F00DC;
Ritor1
parents:
diff changeset
2037 LABEL_12:
Ritor1
parents:
diff changeset
2038 if ( v0 < 11025 )
Ritor1
parents:
diff changeset
2039 return 0;
Ritor1
parents:
diff changeset
2040 }
Ritor1
parents:
diff changeset
2041 }
Ritor1
parents:
diff changeset
2042
Ritor1
parents:
diff changeset
2043 //----- (004ABC9B) --------------------------------------------------------
Ritor1
parents:
diff changeset
2044 LSTATUS AudioPlayer::CheckA3DSupport(char a2)
Ritor1
parents:
diff changeset
2045 {
Ritor1
parents:
diff changeset
2046 LSTATUS result; // eax@1
Ritor1
parents:
diff changeset
2047 DWORD cbData; // [sp+8h] [bp-Ch]@1
Ritor1
parents:
diff changeset
2048 int Data; // [sp+Ch] [bp-8h]@1
Ritor1
parents:
diff changeset
2049 HKEY hKey; // [sp+10h] [bp-4h]@1
Ritor1
parents:
diff changeset
2050 char v6; // [sp+1Ch] [bp+8h]@0
222
8113753ed2ae more item init fixing
Gloval
parents: 153
diff changeset
2051 v6=0; //to fix
0
Ritor1
parents:
diff changeset
2052 hKey = 0;
Ritor1
parents:
diff changeset
2053 cbData = 4;
Ritor1
parents:
diff changeset
2054 Data = 0;
Ritor1
parents:
diff changeset
2055 result = RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE\\Aureal\\A3D", 0, 0x2001Fu, &hKey);
Ritor1
parents:
diff changeset
2056 if ( !result )
Ritor1
parents:
diff changeset
2057 {
Ritor1
parents:
diff changeset
2058 if ( v6 )
Ritor1
parents:
diff changeset
2059 RegQueryValueExA(hKey, "SplashAudio", 0, 0, (LPBYTE)&Aureal3D_SplashAudio, &cbData);
Ritor1
parents:
diff changeset
2060 else
Ritor1
parents:
diff changeset
2061 Data = Aureal3D_SplashAudio;
Ritor1
parents:
diff changeset
2062 RegSetValueExA(hKey, "SplashAudio", 0, 4u, (const BYTE *)&Data, 4u);
Ritor1
parents:
diff changeset
2063 Data = 0;
Ritor1
parents:
diff changeset
2064 if ( v6 )
Ritor1
parents:
diff changeset
2065 RegQueryValueExA(hKey, "SplashScreen", 0, 0, (LPBYTE)&Aureal3D_SplashScreen, &cbData);
Ritor1
parents:
diff changeset
2066 else
Ritor1
parents:
diff changeset
2067 Data = Aureal3D_SplashScreen;
Ritor1
parents:
diff changeset
2068 RegSetValueExA(hKey, "SplashScreen", 0, 4u, (const BYTE *)&Data, 4u);
Ritor1
parents:
diff changeset
2069 result = RegCloseKey(hKey);
Ritor1
parents:
diff changeset
2070 }
Ritor1
parents:
diff changeset
2071 return result;
Ritor1
parents:
diff changeset
2072 }
Ritor1
parents:
diff changeset
2073 // 4ABC9B: inconsistent function type and number of purged bytes
Ritor1
parents:
diff changeset
2074
Ritor1
parents:
diff changeset
2075 //----- (004ABD5B) --------------------------------------------------------
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2076 void AudioPlayer::Release() //Îñâîáîäèòü
0
Ritor1
parents:
diff changeset
2077 {
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2078 MixerChannel *pMixerChannel; // ebx@3
0
Ritor1
parents:
diff changeset
2079 char v4; // dl@5
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2080 AudioPlayer_3DSample *p3DSample; // edi@7
0
Ritor1
parents:
diff changeset
2081 void *v9; // ecx@15
Ritor1
parents:
diff changeset
2082
Ritor1
parents:
diff changeset
2083 if ( this->bPlayerReady )
Ritor1
parents:
diff changeset
2084 {
Ritor1
parents:
diff changeset
2085 CloseHandle(pVideoPlayer->hMagicVid);
Ritor1
parents:
diff changeset
2086 CloseHandle(pVideoPlayer->hMightVid);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2087 pAudioPlayer->StopChannels(-1, -1);
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2088 if ( pAudioPlayer->uMixerChannels > 0 )
0
Ritor1
parents:
diff changeset
2089 {
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2090 pMixerChannel = pAudioPlayer->pMixerChannels;
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2091 for ( uint i = 0; i < pAudioPlayer->uMixerChannels; ++i )
0
Ritor1
parents:
diff changeset
2092 {
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2093 AIL_release_sample_handle(pMixerChannel->hSample);
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2094 ++pMixerChannel;
0
Ritor1
parents:
diff changeset
2095 }
Ritor1
parents:
diff changeset
2096 }
Ritor1
parents:
diff changeset
2097 if ( ReadWindowsRegistryInt("Disable3DSound", 0) != 1 )
Ritor1
parents:
diff changeset
2098 {
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 11
diff changeset
2099 pAudioPlayer->CheckA3DSupport(0);// pAudioPlayer->CheckA3DSupport(v4);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2100 if ( pAudioPlayer->uNum3DSamples > 0 )
0
Ritor1
parents:
diff changeset
2101 {
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2102 p3DSample = pAudioPlayer->p3DSamples;
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2103 for ( uint i = 0; i < pAudioPlayer->uNum3DSamples; ++i )
0
Ritor1
parents:
diff changeset
2104 {
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2105 if ( p3DSample->hSample )
0
Ritor1
parents:
diff changeset
2106 {
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2107 AIL_release_3D_sample_handle(p3DSample->hSample);
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2108 p3DSample->hSample = 0;
0
Ritor1
parents:
diff changeset
2109 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2110 ++p3DSample;
0
Ritor1
parents:
diff changeset
2111 }
Ritor1
parents:
diff changeset
2112 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2113 if ( pAudioPlayer->h3DSoundProvider )
0
Ritor1
parents:
diff changeset
2114 {
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2115 AIL_close_3D_provider(pAudioPlayer->h3DSoundProvider);
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2116 pAudioPlayer->h3DSoundProvider = 0;
0
Ritor1
parents:
diff changeset
2117 }
Ritor1
parents:
diff changeset
2118 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2119 if ( pAudioPlayer->hAILRedbook )
0
Ritor1
parents:
diff changeset
2120 {
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2121 AIL_redbook_stop(pAudioPlayer->hAILRedbook);
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2122 AIL_redbook_set_volume((HREDBOOK)&pAudioPlayer->hAILRedbook, pAudioPlayer->sRedbookVolume);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2123 AIL_redbook_close(pAudioPlayer->hAILRedbook);
0
Ritor1
parents:
diff changeset
2124 }
Ritor1
parents:
diff changeset
2125 AIL_shutdown();
Ritor1
parents:
diff changeset
2126 pSoundList->Release();
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2127 v9 = *(void **)&pAudioPlayer->field_C78[0];
0
Ritor1
parents:
diff changeset
2128 if ( v9 )
Ritor1
parents:
diff changeset
2129 ReleaseSoundData(v9);
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
2130 CloseHandle(pAudioPlayer->hAudioSnd);
0
Ritor1
parents:
diff changeset
2131 }
Ritor1
parents:
diff changeset
2132 }
Ritor1
parents:
diff changeset
2133
Ritor1
parents:
diff changeset
2134 //----- (004ABE55) --------------------------------------------------------
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2135 void AudioPlayer::FreeChannel(MixerChannel *pChannel)
0
Ritor1
parents:
diff changeset
2136 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2137 //int v2; // ebx@1
0
Ritor1
parents:
diff changeset
2138 //AudioPlayer *v3; // esi@1
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2139 //SoundDesc *v4; // eax@2
0
Ritor1
parents:
diff changeset
2140 unsigned __int8 v5; // zf@5
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2141 //unsigned __int8 v6; // sf@5
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2142 //char *v7; // edi@6
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2143 int num_same_sound_on_channels; // eax@8
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2144 //int v9; // ST04_4@8
0
Ritor1
parents:
diff changeset
2145 int v10; // ecx@12
Ritor1
parents:
diff changeset
2146 int v11; // edi@13
Ritor1
parents:
diff changeset
2147 int v12; // eax@13
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2148 //unsigned __int8 v13; // of@13
0
Ritor1
parents:
diff changeset
2149 int v14[16]; // [sp+Ch] [bp-48h]@8
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2150 int num_playing_channels; // [sp+4Ch] [bp-8h]@5
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2151 //int v16; // [sp+50h] [bp-4h]@5
0
Ritor1
parents:
diff changeset
2152
390
35a62d1948d4 More sound fixes
Nomad
parents: 388
diff changeset
2153 if (!pSoundList->pSounds)
35a62d1948d4 More sound fixes
Nomad
parents: 388
diff changeset
2154 return;
35a62d1948d4 More sound fixes
Nomad
parents: 388
diff changeset
2155
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2156 //v4 = &pSoundList->pSounds[pChannel->uSourceTrackIdx];
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2157 if ( pSoundList->pSounds[pChannel->uSourceTrackIdx].eType == SOUND_DESC_SWAP)
0
Ritor1
parents:
diff changeset
2158 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2159 if ( pSoundList->pSounds[pChannel->uSourceTrackIdx].pSoundData[0] &&
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2160 !(pSoundList->pSounds[pChannel->uSourceTrackIdx].uFlags & SOUND_DESC_SYSTEM) )
0
Ritor1
parents:
diff changeset
2161 {
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2162 num_playing_channels = 0;
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2163 num_same_sound_on_channels = 0;
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2164 if ( this->uMixerChannels <= 0 )
0
Ritor1
parents:
diff changeset
2165 goto LABEL_16;
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2166 for ( uint i = 0; i < uMixerChannels; i++ )
0
Ritor1
parents:
diff changeset
2167 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2168 if ( pChannel->uSourceTrackID == pMixerChannels[i].uSourceTrackID )
0
Ritor1
parents:
diff changeset
2169 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2170 v14[num_same_sound_on_channels++] = i;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2171 if ( AIL_sample_status((HSAMPLE)pMixerChannels[i].hSample) == AIL::Sample::Playing)
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2172 ++num_playing_channels;
0
Ritor1
parents:
diff changeset
2173 }
Ritor1
parents:
diff changeset
2174 }
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2175 if ( !num_playing_channels )
0
Ritor1
parents:
diff changeset
2176 {
Ritor1
parents:
diff changeset
2177 LABEL_16:
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2178 pSoundList->UnloadSound(pChannel->uSourceTrackIdx, 1);
0
Ritor1
parents:
diff changeset
2179 v10 = 0;
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2180 if ( num_same_sound_on_channels > 0 )
0
Ritor1
parents:
diff changeset
2181 {
Ritor1
parents:
diff changeset
2182 do
Ritor1
parents:
diff changeset
2183 {
Ritor1
parents:
diff changeset
2184 v11 = v14[v10];
1265
2b4c8cdd8db0 more sounds playing
Grumpy7
parents: 1262
diff changeset
2185 v12 = 16 * (v14[v10++] + 47);
0
Ritor1
parents:
diff changeset
2186 pMixerChannels[v11].uSourceTrackID = 0;
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2187 //v13 = __OFSUB__(v10, num_same_sound_on_channels);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2188 //v6 = v10 - num_same_sound_on_channels < 0;
1265
2b4c8cdd8db0 more sounds playing
Grumpy7
parents: 1262
diff changeset
2189 *(unsigned int *)((char *)&bEAXSupported + v12) = 0;
0
Ritor1
parents:
diff changeset
2190 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2191 while (v10 < num_same_sound_on_channels);
0
Ritor1
parents:
diff changeset
2192 }
Ritor1
parents:
diff changeset
2193 }
Ritor1
parents:
diff changeset
2194 }
Ritor1
parents:
diff changeset
2195 }
Ritor1
parents:
diff changeset
2196 }
Ritor1
parents:
diff changeset
2197
Ritor1
parents:
diff changeset
2198 //----- (004ABF23) --------------------------------------------------------
Ritor1
parents:
diff changeset
2199 void AudioPlayer::_4ABF23(AudioPlayer_3DSample *a2)
Ritor1
parents:
diff changeset
2200 {
Ritor1
parents:
diff changeset
2201 int v2; // ebx@1
Ritor1
parents:
diff changeset
2202 //AudioPlayer *v3; // esi@1
Ritor1
parents:
diff changeset
2203 SoundDesc *v4; // eax@2
Ritor1
parents:
diff changeset
2204 unsigned __int8 v5; // zf@5
Ritor1
parents:
diff changeset
2205 unsigned __int8 v6; // sf@5
Ritor1
parents:
diff changeset
2206 char *v7; // edi@6
Ritor1
parents:
diff changeset
2207 int v8; // eax@8
Ritor1
parents:
diff changeset
2208 int v9; // ST04_4@8
Ritor1
parents:
diff changeset
2209 int v10; // ecx@12
Ritor1
parents:
diff changeset
2210 int v11; // eax@13
Ritor1
parents:
diff changeset
2211 unsigned __int8 v12; // of@13
Ritor1
parents:
diff changeset
2212 int v13[16]; // [sp+Ch] [bp-48h]@8
Ritor1
parents:
diff changeset
2213 int v14; // [sp+4Ch] [bp-8h]@5
Ritor1
parents:
diff changeset
2214 int v15; // [sp+50h] [bp-4h]@5
Ritor1
parents:
diff changeset
2215
Ritor1
parents:
diff changeset
2216 v2 = 0;
Ritor1
parents:
diff changeset
2217 //v3 = this;
Ritor1
parents:
diff changeset
2218 if ( pSoundList->pSounds )
Ritor1
parents:
diff changeset
2219 {
Ritor1
parents:
diff changeset
2220 v4 = &pSoundList->pSounds[a2->field_8];
Ritor1
parents:
diff changeset
2221 if ( v4->eType == SOUND_DESC_SWAP)
Ritor1
parents:
diff changeset
2222 {
592
96f48cfdd657 some flags
Nomad
parents: 515
diff changeset
2223 if ( v4->p3DSound && !(v4->uFlags & SOUND_DESC_SYSTEM) )
0
Ritor1
parents:
diff changeset
2224 {
Ritor1
parents:
diff changeset
2225 v5 = this->uNum3DSamples == 0;
Ritor1
parents:
diff changeset
2226 v6 = this->uNum3DSamples < 0;
Ritor1
parents:
diff changeset
2227 v14 = 0;
Ritor1
parents:
diff changeset
2228 v15 = 0;
Ritor1
parents:
diff changeset
2229 if ( v6 | v5 )
Ritor1
parents:
diff changeset
2230 goto LABEL_16;
Ritor1
parents:
diff changeset
2231 v7 = (char *)this->p3DSamples;
Ritor1
parents:
diff changeset
2232 do
Ritor1
parents:
diff changeset
2233 {
Ritor1
parents:
diff changeset
2234 if ( a2->field_C == *((int *)v7 + 3) )
Ritor1
parents:
diff changeset
2235 {
Ritor1
parents:
diff changeset
2236 v8 = v15;
Ritor1
parents:
diff changeset
2237 v9 = *(int *)v7;
Ritor1
parents:
diff changeset
2238 ++v15;
Ritor1
parents:
diff changeset
2239 v13[v8] = v2;
Ritor1
parents:
diff changeset
2240 if ( AIL_3D_sample_status((void *)v9) == 4 )
Ritor1
parents:
diff changeset
2241 ++v14;
Ritor1
parents:
diff changeset
2242 }
Ritor1
parents:
diff changeset
2243 ++v2;
Ritor1
parents:
diff changeset
2244 v7 += 16;
Ritor1
parents:
diff changeset
2245 }
Ritor1
parents:
diff changeset
2246 while ( v2 < uNum3DSamples );
Ritor1
parents:
diff changeset
2247 if ( !v14 )
Ritor1
parents:
diff changeset
2248 {
Ritor1
parents:
diff changeset
2249 LABEL_16:
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 703
diff changeset
2250 pSoundList->UnloadSound(a2->field_8, 1);
0
Ritor1
parents:
diff changeset
2251 v10 = 0;
Ritor1
parents:
diff changeset
2252 if ( v15 > 0 )
Ritor1
parents:
diff changeset
2253 {
Ritor1
parents:
diff changeset
2254 do
Ritor1
parents:
diff changeset
2255 {
Ritor1
parents:
diff changeset
2256 v11 = v13[v10++];
Ritor1
parents:
diff changeset
2257 *(&bEAXSupported + 4 * (v11 + 2)) = 0;
Ritor1
parents:
diff changeset
2258 v12 = __OFSUB__(v10, v15);
Ritor1
parents:
diff changeset
2259 v6 = v10 - v15 < 0;
Ritor1
parents:
diff changeset
2260 p3DSamples[v11].field_8 = 0;
Ritor1
parents:
diff changeset
2261 }
Ritor1
parents:
diff changeset
2262 while ( v6 ^ v12 );
Ritor1
parents:
diff changeset
2263 }
Ritor1
parents:
diff changeset
2264 }
Ritor1
parents:
diff changeset
2265 }
Ritor1
parents:
diff changeset
2266 }
Ritor1
parents:
diff changeset
2267 }
Ritor1
parents:
diff changeset
2268 }
Ritor1
parents:
diff changeset
2269 // 4D82F4: using guessed type int __stdcall AIL_3D_sample_status(int);
Ritor1
parents:
diff changeset
2270 // 4ABF23: using guessed type int var_48[16];
Ritor1
parents:
diff changeset
2271
Ritor1
parents:
diff changeset
2272 //----- (004ABFDB) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1425
diff changeset
2273 void PlayLevelMusic()
0
Ritor1
parents:
diff changeset
2274 {
Ritor1
parents:
diff changeset
2275 unsigned int v0; // eax@1
Ritor1
parents:
diff changeset
2276
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2277 v0 = pMapStats->GetMapInfo(pCurrentMapName.data());
0
Ritor1
parents:
diff changeset
2278 if ( v0 )
Ritor1
parents:
diff changeset
2279 pAudioPlayer->PlayMusicTrack((MusicID)pMapStats->pInfos[v0].uRedbookTrackID);
Ritor1
parents:
diff changeset
2280 }
Ritor1
parents:
diff changeset
2281
Ritor1
parents:
diff changeset
2282 //----- (004AC004) --------------------------------------------------------
Ritor1
parents:
diff changeset
2283 void AudioPlayer::SetEAXPreferences()
Ritor1
parents:
diff changeset
2284 {
Ritor1
parents:
diff changeset
2285 float v4; // [sp+4h] [bp-4h]@2
Ritor1
parents:
diff changeset
2286
Ritor1
parents:
diff changeset
2287 if ( this->bEAXSupported )
Ritor1
parents:
diff changeset
2288 {
Ritor1
parents:
diff changeset
2289 v4 = 0.0;
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2290 AIL_set_3D_provider_preference(this->h3DSoundProvider, "EAX effect volume", (int *)&v4);
0
Ritor1
parents:
diff changeset
2291 v4 = 1.0;
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2292 AIL_set_3D_provider_preference(this->h3DSoundProvider, "EAX damping", (int *)&v4);
0
Ritor1
parents:
diff changeset
2293 }
Ritor1
parents:
diff changeset
2294 }
Ritor1
parents:
diff changeset
2295 // 4D82DC: using guessed type int __stdcall AIL_set_3D_provider_preference(int, int, int);
Ritor1
parents:
diff changeset
2296
Ritor1
parents:
diff changeset
2297 //----- (004AC041) --------------------------------------------------------
Ritor1
parents:
diff changeset
2298 void AudioPlayer::SetMapEAX()
Ritor1
parents:
diff changeset
2299 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2300 unsigned int pMapID; // eax@1
0
Ritor1
parents:
diff changeset
2301 int v3; // [sp+4h] [bp-4h]@3
Ritor1
parents:
diff changeset
2302
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2303 pMapID = pMapStats->GetMapInfo(pCurrentMapName.data());
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2304 if ( this->b3DSoundInitialized && this->bEAXSupported )
0
Ritor1
parents:
diff changeset
2305 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2306 v3 = pMapStats->pInfos[pMapID].uEAXEnv;
0
Ritor1
parents:
diff changeset
2307 if ( (unsigned int)v3 >= 0x1A )
Ritor1
parents:
diff changeset
2308 {
Ritor1
parents:
diff changeset
2309 SetEAXPreferences();
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2310 this->field_214 = -1;
0
Ritor1
parents:
diff changeset
2311 }
Ritor1
parents:
diff changeset
2312 else
Ritor1
parents:
diff changeset
2313 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2314 AIL_set_3D_provider_preference(this->h3DSoundProvider, "EAX environment selection", &v3);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2315 this->field_214 = v3;
0
Ritor1
parents:
diff changeset
2316 }
Ritor1
parents:
diff changeset
2317 }
Ritor1
parents:
diff changeset
2318 }
Ritor1
parents:
diff changeset
2319 // 4D82DC: using guessed type int __stdcall AIL_set_3D_provider_preference(int, int, int);
Ritor1
parents:
diff changeset
2320
Ritor1
parents:
diff changeset
2321 //----- (004AC0A2) --------------------------------------------------------
Ritor1
parents:
diff changeset
2322 int AudioPlayer::_4AC0A2()
Ritor1
parents:
diff changeset
2323 {
Ritor1
parents:
diff changeset
2324 AudioPlayer *v1; // esi@1
Ritor1
parents:
diff changeset
2325 unsigned int v2; // eax@1
Ritor1
parents:
diff changeset
2326 char v3; // zf@1
Ritor1
parents:
diff changeset
2327 int v4; // ebx@1
Ritor1
parents:
diff changeset
2328 int *v5; // edi@2
Ritor1
parents:
diff changeset
2329 int v6; // eax@4
Ritor1
parents:
diff changeset
2330 AudioPlayer_3DSample *v8; // ebx@7
Ritor1
parents:
diff changeset
2331 void *v9; // eax@8
Ritor1
parents:
diff changeset
2332 int v10; // ebx@14
Ritor1
parents:
diff changeset
2333 unsigned int v11; // eax@14
Ritor1
parents:
diff changeset
2334 int v12; // [sp+1Ch] [bp-8h]@1
Ritor1
parents:
diff changeset
2335 int v13; // [sp+20h] [bp-4h]@6
Ritor1
parents:
diff changeset
2336
Ritor1
parents:
diff changeset
2337 v1 = this;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
2338 v2 = pMapStats->GetMapInfo(pCurrentMapName.data());
0
Ritor1
parents:
diff changeset
2339 v3 = v1->b3DSoundInitialized == 0;
Ritor1
parents:
diff changeset
2340 v4 = v2;
Ritor1
parents:
diff changeset
2341 v12 = v2;
Ritor1
parents:
diff changeset
2342 if ( !v3 )
Ritor1
parents:
diff changeset
2343 {
Ritor1
parents:
diff changeset
2344 v5 = &v1->uNum3DSamples;
Ritor1
parents:
diff changeset
2345 AIL_3D_provider_attribute(v1->h3DSoundProvider, "Maximum supported samples", &v1->uNum3DSamples);
Ritor1
parents:
diff changeset
2346 if ( v1->uNum3DSamples > 32 )
Ritor1
parents:
diff changeset
2347 *v5 = 32;
Ritor1
parents:
diff changeset
2348 v6 = *v5;
Ritor1
parents:
diff changeset
2349 if ( !*v5 )
Ritor1
parents:
diff changeset
2350 {
Ritor1
parents:
diff changeset
2351 v1->b3DSoundInitialized = 0;
Ritor1
parents:
diff changeset
2352 return -1;
Ritor1
parents:
diff changeset
2353 }
Ritor1
parents:
diff changeset
2354 v13 = 0;
Ritor1
parents:
diff changeset
2355 if ( v6 > 0 )
Ritor1
parents:
diff changeset
2356 {
Ritor1
parents:
diff changeset
2357 v8 = v1->p3DSamples;
Ritor1
parents:
diff changeset
2358 while ( 1 )
Ritor1
parents:
diff changeset
2359 {
Ritor1
parents:
diff changeset
2360 v9 = (void *)AIL_allocate_3D_sample_handle(v1->h3DSoundProvider);
Ritor1
parents:
diff changeset
2361 v8->hSample = v9;
Ritor1
parents:
diff changeset
2362 if ( !v9 )
Ritor1
parents:
diff changeset
2363 break;
Ritor1
parents:
diff changeset
2364 AIL_set_3D_sample_float_distances(v9, 4096.0, 256.0, 4096.0, 256.0);
Ritor1
parents:
diff changeset
2365 AIL_set_3D_sample_volume(v8->hSample, v1->s3DSoundVolume);
Ritor1
parents:
diff changeset
2366 ++v13;
Ritor1
parents:
diff changeset
2367 ++v8;
Ritor1
parents:
diff changeset
2368 if ( v13 >= *v5 )
Ritor1
parents:
diff changeset
2369 goto LABEL_12;
Ritor1
parents:
diff changeset
2370 }
Ritor1
parents:
diff changeset
2371 *v5 = v13;
Ritor1
parents:
diff changeset
2372 LABEL_12:
Ritor1
parents:
diff changeset
2373 v4 = v12;
Ritor1
parents:
diff changeset
2374 }
Ritor1
parents:
diff changeset
2375 if ( v1->bEAXSupported )
Ritor1
parents:
diff changeset
2376 {
Ritor1
parents:
diff changeset
2377 v10 = v4;
Ritor1
parents:
diff changeset
2378 v11 = pMapStats->pInfos[v10].uEAXEnv;
Ritor1
parents:
diff changeset
2379 v12 = pMapStats->pInfos[v10].uEAXEnv;
Ritor1
parents:
diff changeset
2380 if ( v11 >= 0x1A )
Ritor1
parents:
diff changeset
2381 {
Ritor1
parents:
diff changeset
2382 pAudioPlayer->SetEAXPreferences();
Ritor1
parents:
diff changeset
2383 v1->field_214 = -1;
Ritor1
parents:
diff changeset
2384 }
Ritor1
parents:
diff changeset
2385 else
Ritor1
parents:
diff changeset
2386 {
Ritor1
parents:
diff changeset
2387 AIL_set_3D_provider_preference(v1->h3DSoundProvider, "EAX environment selection", &v12);
Ritor1
parents:
diff changeset
2388 v1->field_214 = v12;
Ritor1
parents:
diff changeset
2389 }
Ritor1
parents:
diff changeset
2390 }
Ritor1
parents:
diff changeset
2391 }
Ritor1
parents:
diff changeset
2392 return 1;
Ritor1
parents:
diff changeset
2393 }
Ritor1
parents:
diff changeset
2394
Ritor1
parents:
diff changeset
2395 //----- (004A96BE) --------------------------------------------------------
Ritor1
parents:
diff changeset
2396 void ReleaseSoundData(void *_this)
Ritor1
parents:
diff changeset
2397 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2398 for ( uint i = 0; (void *)&pSounds[i].pSoundData < (void *)&pSounds[2999].pSoundData; i++ )
0
Ritor1
parents:
diff changeset
2399 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2400 if ( pSounds[i].pSoundData == _this )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2401 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2402 pAllocator->FreeChunk(_this);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2403 memset(&pSounds[i], 0, 0x80u);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2404 }
0
Ritor1
parents:
diff changeset
2405 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2406
0
Ritor1
parents:
diff changeset
2407 }
Ritor1
parents:
diff changeset
2408
Ritor1
parents:
diff changeset
2409 //----- (004A96FF) --------------------------------------------------------
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2410 struct SoundHeader *FindSound_BinSearch(unsigned int uStart, unsigned int uEnd, const char *pName)
0
Ritor1
parents:
diff changeset
2411 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2412 /* SoundHeader *result; // eax@2
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2413 SoundHeader *pSound;
0
Ritor1
parents:
diff changeset
2414 signed int v6; // ebx@11
Ritor1
parents:
diff changeset
2415
Ritor1
parents:
diff changeset
2416 while ( 1 )
Ritor1
parents:
diff changeset
2417 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2418 v6 = uEnd - uStart;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2419 pSound = &pAudioPlayer->pSoundHeaders[v6 / 2 + uStart];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2420 if ( !pSound )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2421 return false;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2422 result = (SoundHeader *)_stricmp(pName, pSound->pSoundName);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2423 if ( !_stricmp(pName, pSound->pSoundName) )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2424 uFindSound_BinSearch_ResultID = v6 / 2 + uStart;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2425 if ( uStart == uEnd )
0
Ritor1
parents:
diff changeset
2426 {
Ritor1
parents:
diff changeset
2427 uFindSound_BinSearch_ResultID = -1;
Ritor1
parents:
diff changeset
2428 return result;
Ritor1
parents:
diff changeset
2429 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2430 if ( (signed int)result < 0 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2431 break;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2432
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2433 if ( v6 <= 4 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2434 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2435 if ( (signed int)uStart < (signed int)uEnd )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2436 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2437 for ( uint i = uStart; i < (signed int)uEnd; ++i )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2438 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2439 if ( !_stricmp(pName, pAudioPlayer->pSoundHeaders[i].pSoundName) )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2440 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2441 uFindSound_BinSearch_ResultID = i;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2442 return &pAudioPlayer->pSoundHeaders[i];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2443 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2444 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2445 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2446 uFindSound_BinSearch_ResultID = -1;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2447 return false;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2448 }
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2449
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2450 uStart += v6 / 2;
0
Ritor1
parents:
diff changeset
2451 LABEL_10:
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2452 ;
0
Ritor1
parents:
diff changeset
2453 }
Ritor1
parents:
diff changeset
2454 if ( v6 > 4 )
Ritor1
parents:
diff changeset
2455 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2456 uEnd = v6 / 2 + uStart;
0
Ritor1
parents:
diff changeset
2457 goto LABEL_10;
Ritor1
parents:
diff changeset
2458 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2459 if ( (signed int)uStart >= (signed int)uEnd )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2460 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2461 uFindSound_BinSearch_ResultID = -1;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2462 return false;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2463 }*/
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2464 for ( uint i = uStart; i < (signed int)uEnd; ++i )
0
Ritor1
parents:
diff changeset
2465 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2466 if ( !_stricmp(pName, pAudioPlayer->pSoundHeaders[i].pSoundName) )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2467 {
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2468 uFindSound_BinSearch_ResultID = i;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2469 return &pAudioPlayer->pSoundHeaders[i];
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2470 }
0
Ritor1
parents:
diff changeset
2471 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2472 uFindSound_BinSearch_ResultID = -1;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2473 return false;
0
Ritor1
parents:
diff changeset
2474 }
Ritor1
parents:
diff changeset
2475 // F1B4C8: using guessed type int uFindSound_BinSearch_ResultID;
Ritor1
parents:
diff changeset
2476
Ritor1
parents:
diff changeset
2477 //----- (004A97C6) --------------------------------------------------------
Ritor1
parents:
diff changeset
2478 SoundData *LoadSound(const char *pSoundName, SoundData *pOutBuff, unsigned int uID)
Ritor1
parents:
diff changeset
2479 {
Ritor1
parents:
diff changeset
2480 DWORD NumberOfBytesRead; // [sp+14h] [bp-8h]@8
Ritor1
parents:
diff changeset
2481
Ritor1
parents:
diff changeset
2482 for (uint i = 0; i < 3000; ++i)
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 11
diff changeset
2483 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2484 if (pSounds[i].uID == uID)
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2485 return pSounds[i].pSoundData;
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 11
diff changeset
2486 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2487 FindSound_BinSearch(0, pAudioPlayer->uNumSoundHeaders, pSoundName);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2488 if ( uFindSound_BinSearch_ResultID == -1 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2489 return 0;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2490 if ( pOutBuff == (SoundData *)-1 )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2491 pOutBuff = (SoundData *)pAllocator->AllocNamedChunk(0, pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uDecompressedSize + 4, pSoundName);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2492 SetFilePointer(pAudioPlayer->hAudioSnd, pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uFileOffset, 0, 0);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2493 if ( (signed int)pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uCompressedSize >= (signed int)pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uDecompressedSize )
0
Ritor1
parents:
diff changeset
2494 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2495 pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uCompressedSize = pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uDecompressedSize;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2496 if ( pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uDecompressedSize )
0
Ritor1
parents:
diff changeset
2497 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2498 ReadFile(pAudioPlayer->hAudioSnd, (char *)pOutBuff + 4, pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uDecompressedSize, &NumberOfBytesRead, 0);
0
Ritor1
parents:
diff changeset
2499 }
Ritor1
parents:
diff changeset
2500 else
Ritor1
parents:
diff changeset
2501 {
Ritor1
parents:
diff changeset
2502 MessageBoxW(nullptr, L"Can't load sound file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Sound.cpp:448", 0);
Ritor1
parents:
diff changeset
2503 }
Ritor1
parents:
diff changeset
2504 }
Ritor1
parents:
diff changeset
2505 else
Ritor1
parents:
diff changeset
2506 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2507 uID = (unsigned int)malloc(pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uCompressedSize);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2508 ReadFile(pAudioPlayer->hAudioSnd, (LPVOID)uID, pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uCompressedSize, &NumberOfBytesRead, 0);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2509 zlib::MemUnzip((char *)pOutBuff + 4, &pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uDecompressedSize, (const void *)uID, pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uCompressedSize);
0
Ritor1
parents:
diff changeset
2510 free((void *)uID);
Ritor1
parents:
diff changeset
2511 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2512 if ( pOutBuff )
0
Ritor1
parents:
diff changeset
2513 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2514 *(int *)pOutBuff = pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uDecompressedSize;
0
Ritor1
parents:
diff changeset
2515 uLastLoadedSoundID = 0;
Ritor1
parents:
diff changeset
2516 if ( pSounds[0].pSoundData )
Ritor1
parents:
diff changeset
2517 {
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2518 for ( uint i = 0; pSounds[i].pSoundData; i++ )
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2519 ++uLastLoadedSoundID;
0
Ritor1
parents:
diff changeset
2520 }
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2521 strcpy((char *)pSounds[uLastLoadedSoundID].SoundName, pSoundName);
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2522 pSoundList->uTotalLoadedSoundSize += pAudioPlayer->pSoundHeaders[uFindSound_BinSearch_ResultID].uDecompressedSize;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2523 pSounds[uLastLoadedSoundID].pSoundData = pOutBuff;
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2524 return pOutBuff;
0
Ritor1
parents:
diff changeset
2525 }
Ritor1
parents:
diff changeset
2526 else
1408
204cce84300b FindSound
Ritor1
parents: 1406
diff changeset
2527 return 0;
0
Ritor1
parents:
diff changeset
2528 }