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"
|
2020-09-18 17:32:25 +00:00
|
|
|
#include "VehicleModelInfo.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-06-08 11:29:55 +00:00
|
|
|
uint8 field_4C;
|
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-06-08 11:29:55 +00:00
|
|
|
VALIDATE_SIZE(tSound, 96);
|
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-04-28 11:00:38 +00:00
|
|
|
uint8 m_nStatus;
|
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;
|
|
|
|
|
2020-06-08 07:34:31 +00:00
|
|
|
#define MISSION_AUDIO_SLOTS (2)
|
|
|
|
|
|
|
|
// So instead of doing cMissionAudio [2] they've added [2] to every field of the struct...
|
|
|
|
// Only someone with a VERY EXTRAORDINARY mind could have come up with that
|
2019-06-27 16:45:16 +00:00
|
|
|
class cMissionAudio
|
|
|
|
{
|
|
|
|
public:
|
2020-06-08 07:34:31 +00:00
|
|
|
CVector m_vecPos[MISSION_AUDIO_SLOTS];
|
|
|
|
bool m_bPredefinedProperties[MISSION_AUDIO_SLOTS];
|
|
|
|
int32 m_nSampleIndex[MISSION_AUDIO_SLOTS];
|
|
|
|
uint8 m_nLoadingStatus[MISSION_AUDIO_SLOTS];
|
|
|
|
uint8 m_nPlayStatus[MISSION_AUDIO_SLOTS];
|
2020-06-30 16:12:06 +00:00
|
|
|
bool m_bIsPlaying[MISSION_AUDIO_SLOTS];
|
2020-06-08 07:34:31 +00:00
|
|
|
int32 m_nMissionAudioCounter[MISSION_AUDIO_SLOTS];
|
|
|
|
bool m_bIsPlayed[MISSION_AUDIO_SLOTS];
|
|
|
|
bool m_bIsMobile[MISSION_AUDIO_SLOTS];
|
2019-06-12 17:56:45 +00:00
|
|
|
};
|
2020-06-08 07:34:31 +00:00
|
|
|
VALIDATE_SIZE(cMissionAudio, 0x38);
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
class cVehicleParams
|
|
|
|
{
|
|
|
|
public:
|
2020-09-18 16:14:36 +00:00
|
|
|
eVehicleType m_VehicleType;
|
2020-04-27 17:06:54 +00:00
|
|
|
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-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;
|
2020-04-07 13:44:31 +00:00
|
|
|
uint8 field_1; // unused
|
|
|
|
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;
|
2020-06-08 11:29:55 +00:00
|
|
|
|
|
|
|
// miami
|
2020-09-09 16:37:44 +00:00
|
|
|
uint8 m_bIsPlayerShutUp;
|
2020-09-09 22:08:44 +00:00
|
|
|
uint8 m_nPlayerMood;
|
2020-09-09 21:32:51 +00:00
|
|
|
uint32 m_nPlayerMoodTimer;
|
2020-06-08 11:29:55 +00:00
|
|
|
uint8 field_rest[4];
|
|
|
|
uint8 field_4B3C;
|
|
|
|
|
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;
|
2020-06-08 11:29:55 +00:00
|
|
|
#ifdef GTA_BRIDGE
|
2019-07-12 16:27:12 +00:00
|
|
|
int32 m_nBridgeEntity;
|
2020-06-08 11:29:55 +00:00
|
|
|
#endif
|
|
|
|
int32 m_nEscalatorEntity;
|
|
|
|
int32 m_nExtraSoundsEntity;
|
2019-06-12 17:56:45 +00:00
|
|
|
cMissionAudio m_sMissionAudio;
|
2020-06-08 07:34:31 +00:00
|
|
|
uint8 field_5538; // something related to phone dialogues
|
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;
|
2020-06-08 11:29:55 +00:00
|
|
|
uint32 field_5554;
|
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-06-08 07:34:31 +00:00
|
|
|
bool IsMissionAudioSamplePlaying(uint8 slot) const;// { return m_sMissionAudio.m_nPlayStatus == 1; }
|
|
|
|
bool ShouldDuckMissionAudio(uint8 slot) const;
|
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();
|
2020-06-08 07:34:31 +00:00
|
|
|
void ClearMissionAudio(uint8 slot);
|
2020-04-13 01:19:20 +00:00
|
|
|
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
|
2020-05-16 21:33:52 +00:00
|
|
|
// TODO: miami
|
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;
|
2020-09-09 16:37:44 +00:00
|
|
|
int8 AutoDetect3DProviders() 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-06-08 07:34:31 +00:00
|
|
|
uint8 GetMissionAudioLoadingStatus(uint8 slot) 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);
|
|
|
|
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;
|
2020-06-08 07:34:31 +00:00
|
|
|
bool IsMissionAudioSampleFinished(uint8 slot);
|
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;
|
|
|
|
|
2020-06-08 07:34:31 +00:00
|
|
|
void PlayLoadedMissionAudio(uint8 slot);
|
2020-04-13 01:19:20 +00:00
|
|
|
void PlayOneShot(int32 index, int16 sound, float vol);
|
|
|
|
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:34:31 +00:00
|
|
|
void PreloadMissionAudio(uint8 slot, 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();
|
|
|
|
bool ProcessAirBrakes(cVehicleParams *params);
|
|
|
|
bool ProcessBoatEngine(cVehicleParams *params);
|
|
|
|
bool ProcessBoatMovingOverWater(cVehicleParams *params);
|
2020-05-26 15:25:34 +00:00
|
|
|
#ifdef GTA_BRIDGE
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessBridge();
|
|
|
|
void ProcessBridgeMotor();
|
|
|
|
void ProcessBridgeOneShots();
|
|
|
|
void ProcessBridgeWarning();
|
2020-05-26 15:25:34 +00:00
|
|
|
#endif
|
2020-04-13 01:19:20 +00:00
|
|
|
bool ProcessCarBombTick(cVehicleParams *params);
|
|
|
|
void ProcessCesna(cVehicleParams *params);
|
2020-05-26 15:25:34 +00:00
|
|
|
//void ProcessCrane();
|
2020-04-13 01:19:20 +00:00
|
|
|
bool ProcessEngineDamage(cVehicleParams *params);
|
|
|
|
void ProcessEntity(int32 sound);
|
|
|
|
void ProcessExplosions(int32 explosion);
|
|
|
|
void ProcessFireHydrant();
|
|
|
|
void ProcessFires(int32 entity);
|
|
|
|
void ProcessFrontEnd();
|
|
|
|
void ProcessGarages();
|
|
|
|
bool ProcessHelicopter(cVehicleParams *params);
|
2020-09-24 22:43:19 +00:00
|
|
|
void ProcessCarHeli(cVehicleParams* params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessJumbo(cVehicleParams *);
|
|
|
|
void ProcessJumboAccel(CPlane *plane);
|
|
|
|
void ProcessJumboDecel(CPlane *plane);
|
|
|
|
void ProcessJumboFlying();
|
|
|
|
void ProcessJumboLanding(CPlane *plane);
|
|
|
|
void ProcessJumboTakeOff(CPlane *plane);
|
|
|
|
void ProcessJumboTaxi();
|
|
|
|
void ProcessLoopingScriptObject(uint8 sound);
|
|
|
|
void ProcessMissionAudio();
|
2020-06-08 07:34:31 +00:00
|
|
|
void ProcessMissionAudioSlot(uint8 slot);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessModelCarEngine(cVehicleParams *params);
|
|
|
|
void ProcessOneShotScriptObject(uint8 sound);
|
|
|
|
void ProcessPed(CPhysical *ped);
|
|
|
|
void ProcessPedOneShots(cPedParams *params);
|
|
|
|
void ProcessPhysical(int32 id);
|
|
|
|
void ProcessPlane(cVehicleParams *params);
|
2020-09-14 18:47:00 +00:00
|
|
|
void ProcessPlayersVehicleEngine(cVehicleParams *params, CVehicle* veh);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessProjectiles();
|
|
|
|
void ProcessRainOnVehicle(cVehicleParams *params);
|
|
|
|
void ProcessReverb() const;
|
|
|
|
bool ProcessReverseGear(cVehicleParams *params);
|
|
|
|
void ProcessScriptObject(int32 id);
|
|
|
|
void ProcessSpecial();
|
2020-05-26 15:25:34 +00:00
|
|
|
#ifdef GTA_TRAIN
|
2020-04-13 01:19:20 +00:00
|
|
|
bool ProcessTrainNoise(cVehicleParams *params);
|
2020-05-26 15:25:34 +00:00
|
|
|
#endif
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessVehicle(CVehicle *vehicle);
|
|
|
|
bool ProcessVehicleDoors(cVehicleParams *params);
|
|
|
|
void ProcessVehicleEngine(cVehicleParams *params);
|
2020-09-21 00:21:17 +00:00
|
|
|
void UpdateGasPedalAudio(CVehicle* veh, int vehType);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessVehicleHorn(cVehicleParams *params);
|
|
|
|
void ProcessVehicleOneShots(cVehicleParams *params);
|
|
|
|
bool ProcessVehicleReverseWarning(cVehicleParams *params);
|
|
|
|
bool ProcessVehicleRoadNoise(cVehicleParams *params);
|
2020-06-03 13:16:31 +00:00
|
|
|
bool ProcessVehicleSirenOrAlarm(cVehicleParams *params);
|
2020-07-16 19:30:55 +00:00
|
|
|
bool ProcessVehicleSkidding(cVehicleParams *params);
|
2020-04-13 01:19:20 +00:00
|
|
|
void ProcessWaterCannon(int32);
|
|
|
|
void ProcessWeather(int32 id);
|
|
|
|
bool ProcessWetRoadNoise(cVehicleParams *params);
|
2020-09-22 00:28:14 +00:00
|
|
|
void ProcessEscalators();
|
|
|
|
void ProcessExtraSounds();
|
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);
|
|
|
|
void ReportCrime(int32 crime, const CVector *pos);
|
|
|
|
void ResetAudioLogicTimers(uint32 timer);
|
|
|
|
void ResetPoliceRadio();
|
|
|
|
void ResetTimers(uint32 time);
|
|
|
|
|
|
|
|
void Service();
|
|
|
|
void ServiceCollisions();
|
|
|
|
void ServicePoliceRadio();
|
|
|
|
void ServicePoliceRadioChannel(int32 wantedLevel);
|
|
|
|
void ServiceSoundEffects();
|
|
|
|
int8 SetCurrent3DProvider(uint8 which);
|
2020-06-27 21:01:51 +00:00
|
|
|
void SetDynamicAcousticModelingStatus(uint8 status);
|
2020-05-16 17:29:13 +00:00
|
|
|
void SetEffectsFadeVol(uint8 volume) const;
|
2019-08-27 18:50:59 +00:00
|
|
|
void SetEffectsMasterVolume(uint8 volume) const;
|
2020-09-09 16:37:44 +00:00
|
|
|
void SetMP3BoostVolume(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);
|
2020-06-08 07:34:31 +00:00
|
|
|
void SetMissionAudioLocation(uint8 slot, float x, float y, float z);
|
2019-08-27 18:50:59 +00:00
|
|
|
void SetMissionScriptPoliceAudio(int32 sfx) const;
|
2020-06-27 21:01:51 +00:00
|
|
|
void SetMonoMode(uint8 mono);
|
2020-05-16 17:29:13 +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();
|
|
|
|
bool SetupJumboEngineSound(uint8 vol, int32 freq);
|
|
|
|
bool SetupJumboFlySound(uint8 emittingVol);
|
|
|
|
bool SetupJumboRumbleSound(uint8 emittingVol);
|
|
|
|
bool SetupJumboTaxiSound(uint8 vol);
|
|
|
|
bool SetupJumboWhineSound(uint8 emittingVol, int32 freq);
|
|
|
|
void SetupPedComments(cPedParams *params, uint32 sound);
|
|
|
|
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-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-09-09 16:37:44 +00:00
|
|
|
CVehicle *FindVehicleOfPlayer();
|
|
|
|
void SetPedTalkingStatus(CPed *ped, uint8 status);
|
|
|
|
void SetPlayersMood(uint8 mood, int32 time);
|
|
|
|
|
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
|
2020-06-08 11:29:55 +00:00
|
|
|
static_assert(sizeof(cAudioManager) == 0x5558, "cAudioManager: error");
|
2020-05-04 17:33:48 +00:00
|
|
|
#endif
|
2019-06-12 17:56:45 +00:00
|
|
|
|
2020-04-14 14:13:38 +00:00
|
|
|
extern cAudioManager AudioManager;
|