mirror of
https://github.com/halpz/re3.git
synced 2025-03-04 03:39:41 +00:00
Audio: a couple of LCS changes
This commit is contained in:
parent
e0be6beb18
commit
3779a39f1f
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define NUMAUDIOCOLLISIONS 10
|
#define NUMAUDIOCOLLISIONS 14
|
||||||
|
|
||||||
class CEntity;
|
class CEntity;
|
||||||
|
|
||||||
|
|
|
@ -527,7 +527,7 @@ cAudioManager::ServiceSoundEffects()
|
||||||
ClearRequestedQueue();
|
ClearRequestedQueue();
|
||||||
InterrogateAudioEntities();
|
InterrogateAudioEntities();
|
||||||
m_sPedComments.Process();
|
m_sPedComments.Process();
|
||||||
ServicePoliceRadio();
|
//ServicePoliceRadio(); // LCS: removed
|
||||||
ServiceCollisions();
|
ServiceCollisions();
|
||||||
AddReleasingSounds();
|
AddReleasingSounds();
|
||||||
ProcessMissionAudio();
|
ProcessMissionAudio();
|
||||||
|
|
|
@ -119,7 +119,7 @@ public:
|
||||||
|
|
||||||
VALIDATE_SIZE(cPedComments, 0x490);
|
VALIDATE_SIZE(cPedComments, 0x490);
|
||||||
|
|
||||||
#define MISSION_AUDIO_SLOTS (2)
|
#define MISSION_AUDIO_SLOTS (5)
|
||||||
|
|
||||||
// name made up
|
// name made up
|
||||||
class cAudioScriptObjectManager
|
class cAudioScriptObjectManager
|
||||||
|
@ -241,6 +241,7 @@ public:
|
||||||
#endif
|
#endif
|
||||||
cAudioScriptObjectManager m_sAudioScriptObjectManager;
|
cAudioScriptObjectManager m_sAudioScriptObjectManager;
|
||||||
|
|
||||||
|
bool8 field_4348_lcs;
|
||||||
// miami
|
// miami
|
||||||
bool8 m_bIsPlayerShutUp;
|
bool8 m_bIsPlayerShutUp;
|
||||||
uint8 m_nPlayerMood;
|
uint8 m_nPlayerMood;
|
||||||
|
@ -284,6 +285,10 @@ public:
|
||||||
bool8 m_nPreviousUserPause;
|
bool8 m_nPreviousUserPause;
|
||||||
uint32 m_FrameCounter;
|
uint32 m_FrameCounter;
|
||||||
|
|
||||||
|
uint32 field_5644_lcs;
|
||||||
|
uint32 field_5648_lcs;
|
||||||
|
uint8 field_564C_lcs;
|
||||||
|
|
||||||
cAudioManager();
|
cAudioManager();
|
||||||
~cAudioManager();
|
~cAudioManager();
|
||||||
|
|
||||||
|
|
|
@ -119,6 +119,7 @@ cAudioManager::DoPoliceRadioCrackle()
|
||||||
void
|
void
|
||||||
cAudioManager::ServicePoliceRadio()
|
cAudioManager::ServicePoliceRadio()
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
int32 wantedLevel = 0; // uninitialized variable
|
int32 wantedLevel = 0; // uninitialized variable
|
||||||
static uint32 nLastSeen = 300;
|
static uint32 nLastSeen = 300;
|
||||||
|
|
||||||
|
@ -150,6 +151,7 @@ cAudioManager::ServicePoliceRadio()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ServicePoliceRadioChannel(wantedLevel);
|
ServicePoliceRadioChannel(wantedLevel);
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue