2020-04-09 18:50:24 +00:00
|
|
|
#pragma once
|
2019-06-24 14:57:54 +00:00
|
|
|
|
2020-04-28 11:00:38 +00:00
|
|
|
#include "audio_enums.h"
|
2020-01-25 10:41:22 +00:00
|
|
|
#include "AudioCollision.h"
|
|
|
|
#include "PoliceRadio.h"
|
2019-06-12 17:56:45 +00:00
|
|
|
|
2020-01-13 17:36:30 +00:00
|
|
|
class tSound
|
2019-10-19 11:21:35 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-07-12 16:27:12 +00:00
|
|
|
int32 m_nEntityIndex;
|
2020-04-12 00:39:27 +00:00
|
|
|
int32 m_nCounter;
|
2019-07-12 16:27:12 +00:00
|
|
|
int32 m_nSampleIndex;
|
2020-04-28 11:00:38 +00:00
|
|
|
uint8 m_nBankIndex;
|
2020-04-07 13:44:31 +00:00
|
|
|
bool m_bIs2D;
|
|
|
|
int32 m_nReleasingVolumeModificator;
|
2020-04-28 11:00:38 +00:00
|
|
|
uint32 m_nFrequency;
|
|
|
|
uint8 m_nVolume;
|
2019-06-12 17:56:45 +00:00
|
|
|
float m_fDistance;
|
2019-07-12 16:27:12 +00:00
|
|
|
int32 m_nLoopCount;
|
|
|
|
int32 m_nLoopStart;
|
|
|
|
int32 m_nLoopEnd;
|
2020-04-28 11:00:38 +00:00
|
|
|
uint8 m_nEmittingVolume;
|
2020-04-07 13:44:31 +00:00
|
|
|
float m_fSpeedMultiplier;
|
2019-06-12 17:56:45 +00:00
|
|
|
float m_fSoundIntensity;
|
2020-04-07 13:44:31 +00:00
|
|
|
bool m_bReleasingSoundFlag;
|
2019-06-12 17:56:45 +00:00
|
|
|
CVector m_vecPos;
|
2020-02-02 13:57:27 +00:00
|
|
|
bool m_bReverbFlag;
|
2020-04-28 11:00:38 +00:00
|
|
|
uint8 m_nLoopsRemaining;
|
2020-04-07 13:44:31 +00:00
|
|
|
bool m_bRequireReflection; // Used for oneshots
|
2020-04-28 11:00:38 +00:00
|
|
|
uint8 m_nOffset;
|
2020-04-07 13:44:31 +00:00
|
|
|
int32 m_nReleasingVolumeDivider;
|
2020-04-12 00:39:27 +00:00
|
|
|
bool m_bIsProcessed;
|
|
|
|
bool m_bLoopEnded;
|
2020-04-13 01:19:20 +00:00
|
|
|
int32 m_nCalculatedVolume;
|
2020-04-07 13:44:31 +00:00
|
|
|
int8 m_nVolumeChange;
|
2019-06-12 17:56:45 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tSound, 92);
|
2019-06-12 17:56:45 +00:00
|
|
|
|
2019-07-02 18:35:47 +00:00
|
|
|
class CPhysical;
|
2019-08-02 15:43:40 +00:00
|
|
|
class CAutomobile;
|
2019-07-02 18:35:47 +00:00
|
|
|
|
2019-10-19 11:21:35 +00:00
|
|
|
class tAudioEntity
|
|
|
|
{
|
|
|
|
public:
|
2019-06-12 17:56:45 +00:00
|
|
|
eAudioType m_nType;
|
2019-07-16 15:03:37 +00:00
|
|
|
void *m_pEntity;
|
2019-06-30 21:20:10 +00:00
|
|
|
bool m_bIsUsed;
|
2020-12-25 06:59:32 +00:00
|
|
|
uint8 m_bStatus;
|
2020-03-21 13:51:30 +00:00
|
|
|
int16 m_awAudioEvent[NUM_AUDIOENTITY_EVENTS];
|
|
|
|
float m_afVolume[NUM_AUDIOENTITY_EVENTS];
|
2019-10-26 14:47:57 +00:00
|
|
|
uint8 m_AudioEvents;
|
2019-06-12 17:56:45 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tAudioEntity, 40);
|
2019-06-12 17:56:45 +00:00
|
|
|
|
2019-10-19 11:21:35 +00:00
|
|
|
class tPedComment
|
|
|
|
{
|
|
|
|
public:
|
2019-08-16 18:17:15 +00:00
|
|
|
int32 m_nSampleIndex;
|
2020-04-07 13:44:31 +00:00
|
|
|
int32 m_nEntityIndex;
|
2019-06-12 17:56:45 +00:00
|
|
|
CVector m_vecPos;
|
|
|
|
float m_fDistance;
|
2019-07-12 16:27:12 +00:00
|
|
|
uint8 m_bVolume;
|
2020-04-13 01:19:20 +00:00
|
|
|
int8 m_nProcess;
|
2019-06-12 17:56:45 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tPedComment, 28);
|
2019-06-12 17:56:45 +00:00
|
|
|
|
2019-06-13 19:16:55 +00:00
|
|
|
class cPedComments
|
|
|
|
{
|
2019-06-12 17:56:45 +00:00
|
|
|
public:
|
2020-03-21 13:51:30 +00:00
|
|
|
tPedComment m_asPedComments[NUM_PED_COMMENTS_BANKS][NUM_PED_COMMENTS_SLOTS];
|
2020-04-07 13:44:31 +00:00
|
|
|
uint8 m_nIndexMap[NUM_PED_COMMENTS_BANKS][NUM_PED_COMMENTS_SLOTS];
|
|
|
|
uint8 m_nCommentsInBank[NUM_PED_COMMENTS_BANKS];
|
|
|
|
uint8 m_nActiveBank;
|
2019-07-31 15:54:18 +00:00
|
|
|
|
2020-05-16 17:29:13 +00:00
|
|
|
cPedComments()
|
|
|
|
{
|
|
|
|
for (int i = 0; i < NUM_PED_COMMENTS_SLOTS; i++)
|
|
|
|
for (int j = 0; j < NUM_PED_COMMENTS_BANKS; j++) {
|
|
|
|
m_asPedComments[j][i].m_nProcess = -1;
|
|
|
|
m_nIndexMap[j][i] = NUM_PED_COMMENTS_SLOTS;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < NUM_PED_COMMENTS_BANKS; i++)
|
|
|
|
m_nCommentsInBank[i] = 0;
|
|
|
|
m_nActiveBank = 0;
|
|
|
|
}
|
2020-04-13 01:19:20 +00:00
|
|
|
void Add(tPedComment *com);
|
|
|
|
void Process();
|
2019-06-12 17:56:45 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(cPedComments, 1164);
|
2019-06-12 17:56:45 +00:00
|
|
|
|
|
|
|
class CEntity;
|
|
|
|
|
2019-06-27 16:45:16 +00:00
|
|
|
class cMissionAudio
|
|
|
|
{
|
|
|
|
public:
|
2019-06-12 17:56:45 +00:00
|
|
|
CVector m_vecPos;
|
2020-04-12 00:39:27 +00:00
|
|
|
bool m_bPredefinedProperties;
|
2020-04-28 11:00:38 +00:00
|
|
|
int32 m_nSampleIndex;
|
|
|
|
uint8 m_nLoadingStatus;
|
|
|
|
uint8 m_nPlayStatus;
|
2020-06-30 16:06:58 +00:00
|
|
|
bool m_bIsPlaying;
|
2020-04-12 00:39:27 +00:00
|
|
|
int32 m_nMissionAudioCounter;
|
2019-07-02 18:35:47 +00:00
|
|
|
bool m_bIsPlayed;
|
2019-06-12 17:56:45 +00:00
|
|
|
};
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(cMissionAudio, 32);
|
2019-07-16 15:03:37 +00:00
|
|
|
|
2020-04-14 14:13:38 +00:00
|
|
|
// name made up
|
|
|
|
class cAudioScriptObjectManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int32 m_anScriptObjectEntityIndices[NUM_SCRIPT_MAX_ENTITIES];
|
|
|
|
int32 m_nScriptObjectEntityTotal;
|
|
|
|
|
|
|
|
cAudioScriptObjectManager() { m_nScriptObjectEntityTotal = 0; }
|
|
|
|
~cAudioScriptObjectManager() { m_nScriptObjectEntityTotal = 0; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-04-27 17:06:54 +00:00
|
|
|
class cTransmission;
|
2019-07-16 15:03:37 +00:00
|
|
|
class CPlane;
|
|
|
|
class CVehicle;
|
2019-07-18 21:49:21 +00:00
|
|
|
class CPed;
|
2020-04-27 17:06:54 +00:00
|
|
|
|
|
|
|
class cPedParams
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool m_bDistanceCalculated;
|
|
|
|
float m_fDistance;
|
|
|
|
CPed *m_pPed;
|
2020-12-25 15:39:49 +00:00
|
|
|
|
|
|
|
cPedParams()
|
|
|
|
{
|
|
|
|
m_bDistanceCalculated = false;
|
|
|
|
m_fDistance = 0.0f;
|
2020-12-26 12:21:45 +00:00
|
|
|
m_pPed = nil;
|
2020-12-25 15:39:49 +00:00
|
|
|
}
|
2020-04-27 17:06:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class cVehicleParams
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool m_bDistanceCalculated;
|
|
|
|
float m_fDistance;
|
|
|
|
CVehicle *m_pVehicle;
|
|
|
|
cTransmission *m_pTransmission;
|
2020-04-28 11:00:38 +00:00
|
|
|
int32 m_nIndex;
|
2020-04-27 17:06:54 +00:00
|
|
|
float m_fVelocityChange;
|
2020-12-25 18:22:43 +00:00
|
|
|
|
|
|
|
cVehicleParams()
|
|
|
|
{
|
|
|
|
m_bDistanceCalculated = false;
|
|
|
|
m_fDistance = 0.0f;
|
2020-12-26 12:21:45 +00:00
|
|
|
m_pVehicle = nil;
|
2020-12-25 18:22:43 +00:00
|
|
|
m_pTransmission = nil;
|
|
|
|
m_nIndex = 0;
|
|
|
|
m_fVelocityChange = 0.0f;
|
|
|
|
}
|
2020-04-27 17:06:54 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(cVehicleParams, 0x18);
|
2019-07-08 19:44:32 +00:00
|
|
|
|
2019-08-02 15:43:40 +00:00
|
|
|
enum {
|
2019-08-02 20:20:12 +00:00
|
|
|
/*
|
|
|
|
REFLECTION_YMAX = 0, top
|
|
|
|
REFLECTION_YMIN = 1, bottom
|
|
|
|
REFLECTION_XMIN = 2, left
|
|
|
|
REFLECTION_XMAX = 3, right
|
|
|
|
REFLECTION_ZMAX = 4,
|
|
|
|
*/
|
|
|
|
|
|
|
|
REFLECTION_TOP = 0,
|
|
|
|
REFLECTION_BOTTOM,
|
|
|
|
REFLECTION_LEFT,
|
|
|
|
REFLECTION_RIGHT,
|
|
|
|
REFLECTION_UP,
|
|
|
|
MAX_REFLECTIONS,
|
|
|
|
};
|
2019-08-15 01:43:00 +00:00
|
|
|
|
2019-06-12 17:56:45 +00:00
|
|
|
class cAudioManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool m_bIsInitialised;
|
2021-01-03 14:44:21 +00:00
|
|
|
bool m_bReverb; // unused
|
2020-04-07 13:44:31 +00:00
|
|
|
bool m_bFifthFrameFlag;
|
2020-04-28 11:00:38 +00:00
|
|
|
uint8 m_nActiveSamples;
|
2020-04-07 13:44:31 +00:00
|
|
|
uint8 field_4; // unused
|
2019-06-30 20:31:14 +00:00
|
|
|
bool m_bDynamicAcousticModelingStatus;
|
2020-04-07 13:44:31 +00:00
|
|
|
float m_fSpeedOfSound;
|
2019-06-12 17:56:45 +00:00
|
|
|
bool m_bTimerJustReset;
|
2019-07-12 16:27:12 +00:00
|
|
|
int32 m_nTimer;
|
2020-01-13 17:36:30 +00:00
|
|
|
tSound m_sQueueSample;
|
2020-05-02 14:10:51 +00:00
|
|
|
uint8 m_nActiveSampleQueue;
|
2020-03-21 13:51:30 +00:00
|
|
|
tSound m_asSamples[NUM_SOUNDS_SAMPLES_BANKS][NUM_SOUNDS_SAMPLES_SLOTS];
|
|
|
|
uint8 m_abSampleQueueIndexTable[NUM_SOUNDS_SAMPLES_BANKS][NUM_SOUNDS_SAMPLES_SLOTS];
|
2020-04-28 11:00:38 +00:00
|
|
|
uint8 m_SampleRequestQueuesStatus[NUM_SOUNDS_SAMPLES_BANKS];
|
2020-03-21 13:51:30 +00:00
|
|
|
tSound m_asActiveSamples[NUM_SOUNDS_SAMPLES_SLOTS];
|
|
|
|
tAudioEntity m_asAudioEntities[NUM_AUDIOENTITIES];
|
|
|
|
int32 m_anAudioEntityIndices[NUM_AUDIOENTITIES];
|
2019-07-12 16:27:12 +00:00
|
|
|
int32 m_nAudioEntitiesTotal;
|
2020-03-21 13:51:30 +00:00
|
|
|
CVector m_avecReflectionsPos[NUM_AUDIO_REFLECTIONS];
|
|
|
|
float m_afReflectionsDistances[NUM_AUDIO_REFLECTIONS];
|
2020-04-14 14:13:38 +00:00
|
|
|
cAudioScriptObjectManager m_sAudioScriptObjectManager;
|
2019-06-12 17:56:45 +00:00
|
|
|
cPedComments m_sPedComments;
|
2019-07-12 16:27:12 +00:00
|
|
|
int32 m_nFireAudioEntity;
|
|
|
|
int32 m_nWaterCannonEntity;
|
|
|
|
int32 m_nPoliceChannelEntity;
|
2020-01-25 10:41:22 +00:00
|
|
|
cPoliceRadioQueue m_sPoliceRadioQueue;
|
2019-07-12 16:27:12 +00:00
|
|
|
int32 m_nFrontEndEntity;
|
|
|
|
int32 m_nCollisionEntity;
|
2019-06-12 17:56:45 +00:00
|
|
|
cAudioCollisionManager m_sCollisionManager;
|
2019-07-12 16:27:12 +00:00
|
|
|
int32 m_nProjectileEntity;
|
|
|
|
int32 m_nBridgeEntity;
|
2019-06-12 17:56:45 +00:00
|
|
|
cMissionAudio m_sMissionAudio;
|
2019-07-12 16:27:12 +00:00
|
|
|
int32 m_anRandomTable[5];
|
2020-04-28 11:00:38 +00:00
|
|
|
uint8 m_nTimeSpent;
|
|
|
|
uint8 m_nUserPause;
|
|
|
|
uint8 m_nPreviousUserPause;
|
2020-02-25 17:24:45 +00:00
|
|
|
uint32 m_FrameCounter;
|
2019-08-02 15:43:40 +00:00
|
|
|
|
2020-04-13 01:19:20 +00:00
|
|
|
cAudioManager();
|
|
|
|
~cAudioManager();
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
// getters
|
2020-02-25 17:24:45 +00:00
|
|
|
uint32 GetFrameCounter() const { return m_FrameCounter; }
|
2019-08-16 18:17:15 +00:00
|
|
|
float GetReflectionsDistance(int32 idx) const { return m_afReflectionsDistances[idx]; }
|
2019-08-27 18:50:59 +00:00
|
|
|
int32 GetRandomNumber(int32 idx) const { return m_anRandomTable[idx]; }
|
2020-05-02 14:10:51 +00:00
|
|
|
int32 GetRandomNumberInRange(int32 idx, int32 low, int32 high) const { return (m_anRandomTable[idx] % (high - low + 1)) + low; }
|
2020-09-19 13:39:31 +00:00
|
|
|
bool ShouldDuckMissionAudio() const { return m_sMissionAudio.m_nPlayStatus == 1; }
|
2019-06-12 17:56:45 +00:00
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
// "Should" be in alphabetic order, except "getXTalkSfx"
|
2020-04-13 01:19:20 +00:00
|
|
|
void AddDetailsToRequestedOrderList(uint8 sample);
|
2020-06-06 00:45:24 +00:00
|
|
|
void AddPlayerCarSample(uint8 emittingVolume, int32 freq, uint32 sample, uint8 bank,
|
2020-04-13 01:19:20 +00:00
|
|
|
uint8 counter, bool notLooping);
|
|
|
|
void AddReflectionsToRequestedQueue();
|
|
|
|
void AddReleasingSounds();
|
|
|
|
void AddSampleToRequestedQueue();
|
|
|
|
void AgeCrimes();
|
|
|
|
|
|
|
|
void CalculateDistance(bool &condition, float dist);
|
|
|
|
bool CheckForAnAudioFileOnCD() const;
|
|
|
|
void ClearActiveSamples();
|
|
|
|
void ClearMissionAudio();
|
|
|
|
void ClearRequestedQueue();
|
2019-07-08 19:44:32 +00:00
|
|
|
int32 ComputeDopplerEffectedFrequency(uint32 oldFreq, float position1, float position2,
|
2020-04-13 01:19:20 +00:00
|
|
|
float speedMultiplier) const;
|
|
|
|
int32 ComputePan(float, CVector *);
|
|
|
|
uint8 ComputeVolume(uint8 emittingVolume, float soundIntensity, float distance) const;
|
2020-05-16 17:29:13 +00:00
|
|
|
int32 CreateEntity(eAudioType type, void *entity);
|
2019-07-08 19:44:32 +00:00
|
|
|
|
2020-04-13 01:19:20 +00:00
|
|
|
void DestroyAllGameCreatedEntities();
|
|
|
|
void DestroyEntity(int32 id);
|
|
|
|
void DoPoliceRadioCrackle();
|
2019-07-08 19:44:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
// functions returning talk sfx,
|
|
|
|
// order from GetPedCommentSfx
|
2019-06-27 16:45:16 +00:00
|
|
|
uint32 GetPlayerTalkSfx(int16 sound);
|
|
|
|
uint32 GetCopTalkSfx(int16 sound);
|
|
|
|
uint32 GetSwatTalkSfx(int16 sound);
|
|
|
|
uint32 GetFBITalkSfx(int16 sound);
|
|
|
|
uint32 GetArmyTalkSfx(int16 sound);
|
|
|
|
uint32 GetMedicTalkSfx(int16 sound);
|
|
|
|
uint32 GetFiremanTalkSfx(int16 sound);
|
|
|
|
uint32 GetNormalMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetTaxiDriverTalkSfx(int16 sound);
|
|
|
|
uint32 GetPimpTalkSfx(int16 sound);
|
|
|
|
uint32 GetMafiaTalkSfx(int16 sound);
|
|
|
|
uint32 GetTriadTalkSfx(int16 sound);
|
|
|
|
uint32 GetDiabloTalkSfx(int16 sound);
|
|
|
|
uint32 GetYakuzaTalkSfx(int16 sound);
|
|
|
|
uint32 GetYardieTalkSfx(int16 sound);
|
2019-06-29 11:44:20 +00:00
|
|
|
uint32 GetColumbianTalkSfx(int16 sound);
|
|
|
|
uint32 GetHoodTalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackCriminalTalkSfx(int16 sound);
|
|
|
|
uint32 GetWhiteCriminalTalkSfx(int16 sound);
|
|
|
|
uint32 GetMaleNo2TalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackProjectMaleTalkSfx(int16 sound, int32 model);
|
|
|
|
uint32 GetWhiteFatMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackFatMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackCasualFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetWhiteCasualFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetFemaleNo3TalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackFatFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetWhiteFatFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackFemaleProstituteTalkSfx(int16 sound);
|
|
|
|
uint32 GetWhiteFemaleProstituteTalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackProjectFemaleOldTalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackProjectFemaleYoungTalkSfx(int16 sound);
|
|
|
|
uint32 GetChinatownMaleOldTalkSfx(int16 sound);
|
|
|
|
uint32 GetChinatownMaleYoungTalkSfx(int16 sound);
|
|
|
|
uint32 GetChinatownFemaleOldTalkSfx(int16 sound);
|
|
|
|
uint32 GetChinatownFemaleYoungTalkSfx(int16 sound);
|
|
|
|
uint32 GetLittleItalyMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetLittleItalyFemaleOldTalkSfx(int16 sound);
|
|
|
|
uint32 GetLittleItalyFemaleYoungTalkSfx(int16 sound);
|
|
|
|
uint32 GetWhiteDockerMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackDockerMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetScumMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetScumFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetWhiteWorkerMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackWorkerMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetBusinessMaleYoungTalkSfx(int16 sound, int32 model);
|
|
|
|
uint32 GetBusinessMaleOldTalkSfx(int16 sound);
|
|
|
|
uint32 GetWhiteBusinessFemaleTalkSfx(int16 sound, int32 model);
|
|
|
|
uint32 GetBlackBusinessFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetSupermodelMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetSupermodelFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetStewardMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetStewardFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetFanMaleTalkSfx(int16 sound, int32 model);
|
|
|
|
uint32 GetFanFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetHospitalMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetHospitalFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetWhiteConstructionWorkerTalkSfx(int16 sound);
|
|
|
|
uint32 GetBlackConstructionWorkerTalkSfx(int16 sound);
|
|
|
|
uint32 GetShopperFemaleTalkSfx(int16 sound, int32 model);
|
|
|
|
uint32 GetStudentMaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetStudentFemaleTalkSfx(int16 sound);
|
|
|
|
uint32 GetCasualMaleOldTalkSfx(int16 sound);
|
|
|
|
|
2019-06-30 16:38:53 +00:00
|
|
|
uint32 GetSpecialCharacterTalkSfx(int32 modelIndex, int32 sound);
|
|
|
|
uint32 GetEightTalkSfx(int16 sound);
|
|
|
|
uint32 GetFrankieTalkSfx(int16 sound);
|
|
|
|
uint32 GetMistyTalkSfx(int16 sound);
|
|
|
|
uint32 GetOJGTalkSfx(int16 sound);
|
|
|
|
uint32 GetCatatalinaTalkSfx(int16 sound);
|
|
|
|
uint32 GetBomberTalkSfx(int16 sound);
|
|
|
|
uint32 GetSecurityGuardTalkSfx(int16 sound);
|
|
|
|
uint32 GetChunkyTalkSfx(int16 sound);
|
|
|
|
|
2019-06-27 16:45:16 +00:00
|
|
|
uint32 GetGenericMaleTalkSfx(int16 sound);
|
2019-06-29 11:44:20 +00:00
|
|
|
uint32 GetGenericFemaleTalkSfx(int16 sound);
|
2019-08-27 18:50:59 +00:00
|
|
|
// end of functions returning talk sfx
|
2019-07-08 19:44:32 +00:00
|
|
|
|
2020-04-13 01:19:20 +00:00
|
|
|
void GenerateIntegerRandomNumberTable();
|
2019-08-27 18:50:59 +00:00
|
|
|
char *Get3DProviderName(uint8 id) const;
|
|
|
|
uint8 GetCDAudioDriveLetter() const;
|
2020-04-13 01:19:20 +00:00
|
|
|
int8 GetCurrent3DProviderIndex() const;
|
2019-08-27 18:50:59 +00:00
|
|
|
float GetCollisionLoopingRatio(uint32 a, uint32 b, float c) const; // not used
|
2020-04-13 01:19:20 +00:00
|
|
|
float GetCollisionOneShotRatio(int32 a, float b) const;
|
|
|
|
float GetCollisionRatio(float a, float b, float c, float d) const;
|
2020-05-07 11:32:00 +00:00
|
|
|
float GetDistanceSquared(const CVector &v) const;
|
2020-04-13 01:19:20 +00:00
|
|
|
int32 GetJumboTaxiFreq() const;
|
2020-05-23 19:48:50 +00:00
|
|
|
uint8 GetMissionAudioLoadingStatus() const;
|
2020-04-13 01:19:20 +00:00
|
|
|
int8 GetMissionScriptPoliceAudioPlayingStatus() const;
|
2019-08-27 18:50:59 +00:00
|
|
|
uint8 GetNum3DProvidersAvailable() const;
|
|
|
|
int32 GetPedCommentSfx(CPed *ped, int32 sound);
|
2020-11-07 10:59:53 +00:00
|
|
|
void GetPhrase(uint32 &phrase, uint32 &prevPhrase, uint32 sample, uint32 maxOffset) const;
|
2019-08-29 22:44:57 +00:00
|
|
|
float GetVehicleDriveWheelSkidValue(uint8 wheel, CAutomobile *automobile,
|
2020-04-13 01:19:20 +00:00
|
|
|
cTransmission *transmission, float velocityChange);
|
2019-08-29 22:44:57 +00:00
|
|
|
float GetVehicleNonDriveWheelSkidValue(uint8 wheel, CAutomobile *automobile,
|
2020-04-13 01:19:20 +00:00
|
|
|
cTransmission *transmission, float velocityChange);
|
2019-08-16 18:17:15 +00:00
|
|
|
|
2020-04-13 01:19:20 +00:00
|
|
|
bool HasAirBrakes(int32 model) const;
|
2019-08-16 18:17:15 +00:00
|
|
|
|
2020-04-13 01:19:20 +00:00
|
|
|
void Initialise();
|
|
|
|
void InitialisePoliceRadio();
|
|
|
|
void InitialisePoliceRadioZones();
|
|
|
|
void InterrogateAudioEntities();
|
|
|
|
bool IsAudioInitialised() const;
|
|
|
|
bool IsMissionAudioSampleFinished();
|
2019-08-27 18:50:59 +00:00
|
|
|
bool IsMP3RadioChannelAvailable() const;
|
2019-08-16 18:17:15 +00:00
|
|
|
|
2020-04-13 01:19:20 +00:00
|
|
|
bool MissionScriptAudioUsesPoliceChannel(int32 soundMission) const;
|
|
|
|
|
|
|
|
void PlayLoadedMissionAudio();
|
2020-11-22 21:10:41 +00:00
|
|
|
void PlayOneShot(int32 index, uint16 sound, float vol);
|
2020-04-13 01:19:20 +00:00
|
|
|
void PlaySuspectLastSeen(float x, float y, float z);
|
|
|
|
void PlayerJustGotInCar() const;
|
|
|
|
void PlayerJustLeftCar() const;
|
|
|
|
void PostInitialiseGameSpecificSetup();
|
|
|
|
void PostTerminateGameSpecificShutdown();
|
|
|
|
void PreInitialiseGameSpecificSetup() const;
|
2020-06-08 07:33:32 +00:00
|
|
|
void PreloadMissionAudio(Const char *name);
|
2020-04-13 01:19:20 +00:00
|
|
|
void PreTerminateGameSpecificShutdown();
|
2019-08-16 18:17:15 +00:00
|
|
|
/// processX - main logic of adding new sounds
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessActiveQueues();
|
2020-11-08 17:50:46 +00:00
|
|
|
bool ProcessAirBrakes(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessAirportScriptObject(uint8 sound);
|
2020-11-08 17:50:46 +00:00
|
|
|
bool ProcessBoatEngine(cVehicleParams& params);
|
|
|
|
bool ProcessBoatMovingOverWater(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessBridge();
|
|
|
|
void ProcessBridgeMotor();
|
|
|
|
void ProcessBridgeOneShots();
|
|
|
|
void ProcessBridgeWarning();
|
2020-11-08 17:50:46 +00:00
|
|
|
bool ProcessCarBombTick(cVehicleParams& params);
|
|
|
|
void ProcessCesna(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessCinemaScriptObject(uint8 sound);
|
|
|
|
void ProcessCrane();
|
|
|
|
void ProcessDocksScriptObject(uint8 sound);
|
2020-11-08 17:50:46 +00:00
|
|
|
bool ProcessEngineDamage(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessEntity(int32 sound);
|
|
|
|
void ProcessExplosions(int32 explosion);
|
|
|
|
void ProcessFireHydrant();
|
|
|
|
void ProcessFires(int32 entity);
|
|
|
|
void ProcessFrontEnd();
|
|
|
|
void ProcessGarages();
|
2020-11-08 17:50:46 +00:00
|
|
|
bool ProcessHelicopter(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessHomeScriptObject(uint8 sound);
|
2020-11-08 17:50:46 +00:00
|
|
|
void ProcessJumbo(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessJumboAccel(CPlane *plane);
|
|
|
|
void ProcessJumboDecel(CPlane *plane);
|
|
|
|
void ProcessJumboFlying();
|
|
|
|
void ProcessJumboLanding(CPlane *plane);
|
|
|
|
void ProcessJumboTakeOff(CPlane *plane);
|
|
|
|
void ProcessJumboTaxi();
|
|
|
|
void ProcessLaunderetteScriptObject(uint8 sound);
|
|
|
|
void ProcessLoopingScriptObject(uint8 sound);
|
|
|
|
void ProcessMissionAudio();
|
2020-11-08 17:50:46 +00:00
|
|
|
void ProcessModelCarEngine(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessOneShotScriptObject(uint8 sound);
|
|
|
|
void ProcessPed(CPhysical *ped);
|
2020-11-22 21:10:41 +00:00
|
|
|
void ProcessPedHeadphones(cPedParams ¶ms);
|
|
|
|
void ProcessPedOneShots(cPedParams ¶ms);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessPhysical(int32 id);
|
2020-11-08 17:50:46 +00:00
|
|
|
void ProcessPlane(cVehicleParams& params);
|
|
|
|
void ProcessPlayersVehicleEngine(cVehicleParams& params, CAutomobile *automobile);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessPoliceCellBeatingScriptObject(uint8 sound);
|
|
|
|
void ProcessPornCinema(uint8 sound);
|
|
|
|
void ProcessProjectiles();
|
2020-11-08 17:50:46 +00:00
|
|
|
void ProcessRainOnVehicle(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessReverb() const;
|
2020-11-08 17:50:46 +00:00
|
|
|
bool ProcessReverseGear(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessSawMillScriptObject(uint8 sound);
|
|
|
|
void ProcessScriptObject(int32 id);
|
|
|
|
void ProcessShopScriptObject(uint8 sound);
|
|
|
|
void ProcessSpecial();
|
2020-11-08 17:50:46 +00:00
|
|
|
bool ProcessTrainNoise(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessVehicle(CVehicle *vehicle);
|
2020-11-08 17:50:46 +00:00
|
|
|
bool ProcessVehicleDoors(cVehicleParams& params);
|
|
|
|
void ProcessVehicleEngine(cVehicleParams& params);
|
|
|
|
void ProcessVehicleHorn(cVehicleParams& params);
|
|
|
|
void ProcessVehicleOneShots(cVehicleParams& params);
|
|
|
|
bool ProcessVehicleReverseWarning(cVehicleParams& params);
|
|
|
|
bool ProcessVehicleRoadNoise(cVehicleParams& params);
|
|
|
|
bool ProcessVehicleSirenOrAlarm(cVehicleParams& params);
|
|
|
|
bool ProcessVehicleSkidding(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessWaterCannon(int32);
|
|
|
|
void ProcessWeather(int32 id);
|
2020-11-08 17:50:46 +00:00
|
|
|
bool ProcessWetRoadNoise(cVehicleParams& params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessWorkShopScriptObject(uint8 sound);
|
2019-07-31 15:54:18 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
int32 RandomDisplacement(uint32 seed) const;
|
|
|
|
void ReacquireDigitalHandle() const;
|
|
|
|
void ReleaseDigitalHandle() const;
|
2020-04-13 01:19:20 +00:00
|
|
|
void ReportCollision(CEntity *entity1, CEntity *entity2, uint8 surface1, uint8 surface2,
|
|
|
|
float collisionPower, float intensity2);
|
2020-10-22 09:35:38 +00:00
|
|
|
void ReportCrime(eCrimeType crime, const CVector &pos);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ResetAudioLogicTimers(uint32 timer);
|
|
|
|
void ResetPoliceRadio();
|
|
|
|
void ResetTimers(uint32 time);
|
|
|
|
|
|
|
|
void Service();
|
|
|
|
void ServiceCollisions();
|
|
|
|
void ServicePoliceRadio();
|
2020-10-22 19:03:27 +00:00
|
|
|
void ServicePoliceRadioChannel(uint8 wantedLevel);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ServiceSoundEffects();
|
|
|
|
int8 SetCurrent3DProvider(uint8 which);
|
2020-06-27 21:01:51 +00:00
|
|
|
void SetDynamicAcousticModelingStatus(uint8 status);
|
2020-06-29 07:29:02 +00:00
|
|
|
void SetEffectsFadeVol(uint8 volume) const;
|
2019-08-27 18:50:59 +00:00
|
|
|
void SetEffectsMasterVolume(uint8 volume) const;
|
2019-10-27 17:04:13 +00:00
|
|
|
void SetEntityStatus(int32 id, uint8 status);
|
2020-05-07 11:10:56 +00:00
|
|
|
uint32 SetLoopingCollisionRequestedSfxFreqAndGetVol(const cAudioCollision &audioCollision);
|
2019-08-27 18:50:59 +00:00
|
|
|
void SetMissionAudioLocation(float x, float y, float z);
|
|
|
|
void SetMissionScriptPoliceAudio(int32 sfx) const;
|
2020-06-27 21:01:51 +00:00
|
|
|
void SetMonoMode(uint8 mono);
|
2020-06-29 07:29:02 +00:00
|
|
|
void SetMusicFadeVol(uint8 volume) const;
|
2019-08-27 18:50:59 +00:00
|
|
|
void SetMusicMasterVolume(uint8 volume) const;
|
|
|
|
void SetSpeakerConfig(int32 conf) const;
|
2020-05-07 11:10:56 +00:00
|
|
|
void SetUpLoopingCollisionSound(const cAudioCollision &col, uint8 counter);
|
|
|
|
void SetUpOneShotCollisionSound(const cAudioCollision &col);
|
2020-04-13 01:19:20 +00:00
|
|
|
bool SetupCrimeReport();
|
2020-09-28 18:37:59 +00:00
|
|
|
bool SetupJumboEngineSound(uint8 vol, uint32 freq);
|
2020-04-13 01:19:20 +00:00
|
|
|
bool SetupJumboFlySound(uint8 emittingVol);
|
|
|
|
bool SetupJumboRumbleSound(uint8 emittingVol);
|
|
|
|
bool SetupJumboTaxiSound(uint8 vol);
|
2020-09-28 18:37:59 +00:00
|
|
|
bool SetupJumboWhineSound(uint8 emittingVol, uint32 freq);
|
2020-11-22 21:10:41 +00:00
|
|
|
void SetupPedComments(cPedParams ¶ms, uint16 sound);
|
2020-04-13 01:19:20 +00:00
|
|
|
void SetupSuspectLastSeenReport();
|
2019-08-27 18:50:59 +00:00
|
|
|
|
|
|
|
void Terminate();
|
2020-04-30 10:48:01 +00:00
|
|
|
void TranslateEntity(Const CVector *v1, CVector *v2) const;
|
2019-08-27 18:50:59 +00:00
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
void UpdateGasPedalAudio(CAutomobile *automobile);
|
2019-11-04 23:31:50 +00:00
|
|
|
void UpdateReflections();
|
2019-08-27 18:50:59 +00:00
|
|
|
bool UsesReverseWarning(int32 model) const;
|
|
|
|
bool UsesSiren(int32 model) const;
|
|
|
|
bool UsesSirenSwitching(int32 model) const;
|
2019-08-29 22:44:57 +00:00
|
|
|
|
2020-05-16 17:29:13 +00:00
|
|
|
#ifdef GTA_PC
|
2019-10-19 11:21:35 +00:00
|
|
|
// only used in pc
|
2020-04-13 01:19:20 +00:00
|
|
|
void AdjustSamplesVolume();
|
|
|
|
uint8 ComputeEmittingVolume(uint8 emittingVolume, float intensity, float dist);
|
2020-05-16 17:29:13 +00:00
|
|
|
#endif
|
2019-06-24 14:57:54 +00:00
|
|
|
};
|
|
|
|
|
2020-05-04 17:33:48 +00:00
|
|
|
#ifdef AUDIO_MSS
|
|
|
|
static_assert(sizeof(cAudioManager) == 19220, "cAudioManager: error");
|
|
|
|
#endif
|
2019-06-12 17:56:45 +00:00
|
|
|
|
2020-04-14 14:13:38 +00:00
|
|
|
extern cAudioManager AudioManager;
|