re3/src/audio/AudioManager.h

506 lines
16 KiB
C
Raw Normal View History

2020-04-09 20:50:24 +02:00
#pragma once
#include "audio_enums.h"
#include "AudioCollision.h"
2021-02-26 10:05:37 +01:00
#include "PolRadio.h"
2019-06-12 19:56:45 +02:00
class tSound
2019-10-19 13:21:35 +02:00
{
public:
2019-07-12 18:27:12 +02:00
int32 m_nEntityIndex;
2020-04-12 02:39:27 +02:00
int32 m_nCounter;
2019-07-12 18:27:12 +02:00
int32 m_nSampleIndex;
uint8 m_nBankIndex;
2021-05-22 11:11:50 +02:00
bool8 m_bIs2D;
int32 m_nReleasingVolumeModificator;
uint32 m_nFrequency;
uint8 m_nVolume;
2019-06-12 19:56:45 +02:00
float m_fDistance;
2019-07-12 18:27:12 +02:00
int32 m_nLoopCount;
int32 m_nLoopStart;
int32 m_nLoopEnd;
uint8 m_nEmittingVolume;
float m_fSpeedMultiplier;
2019-06-12 19:56:45 +02:00
float m_fSoundIntensity;
2021-05-22 11:11:50 +02:00
bool8 m_bReleasingSoundFlag;
2019-06-12 19:56:45 +02:00
CVector m_vecPos;
2021-05-22 11:11:50 +02:00
bool8 m_bReverbFlag;
uint8 m_nLoopsRemaining;
2021-05-22 11:11:50 +02:00
bool8 m_bRequireReflection; // Used for oneshots
uint8 m_nOffset;
int32 m_nReleasingVolumeDivider;
2021-05-22 11:11:50 +02:00
bool8 m_bIsProcessed;
bool8 m_bLoopEnded;
2020-04-13 03:19:20 +02:00
int32 m_nCalculatedVolume;
int8 m_nVolumeChange;
2019-06-12 19:56:45 +02:00
};
VALIDATE_SIZE(tSound, 92);
2019-06-12 19:56:45 +02:00
2019-07-02 20:35:47 +02:00
class CPhysical;
2019-08-02 17:43:40 +02:00
class CAutomobile;
2019-07-02 20:35:47 +02:00
2019-10-19 13:21:35 +02:00
class tAudioEntity
{
public:
2019-06-12 19:56:45 +02:00
eAudioType m_nType;
2019-07-16 17:03:37 +02:00
void *m_pEntity;
2021-05-22 11:11:50 +02:00
bool8 m_bIsUsed;
2020-12-25 07:59:32 +01:00
uint8 m_bStatus;
2020-03-21 14:51:30 +01:00
int16 m_awAudioEvent[NUM_AUDIOENTITY_EVENTS];
float m_afVolume[NUM_AUDIOENTITY_EVENTS];
2019-10-26 16:47:57 +02:00
uint8 m_AudioEvents;
2019-06-12 19:56:45 +02:00
};
VALIDATE_SIZE(tAudioEntity, 40);
2019-06-12 19:56:45 +02:00
2019-10-19 13:21:35 +02:00
class tPedComment
{
public:
2019-08-16 20:17:15 +02:00
int32 m_nSampleIndex;
int32 m_nEntityIndex;
2019-06-12 19:56:45 +02:00
CVector m_vecPos;
float m_fDistance;
2019-07-12 18:27:12 +02:00
uint8 m_bVolume;
2020-04-13 03:19:20 +02:00
int8 m_nProcess;
2019-06-12 19:56:45 +02:00
};
VALIDATE_SIZE(tPedComment, 28);
2019-06-12 19:56:45 +02:00
2019-06-13 21:16:55 +02:00
class cPedComments
{
2019-06-12 19:56:45 +02:00
public:
2020-03-21 14:51:30 +01:00
tPedComment m_asPedComments[NUM_PED_COMMENTS_BANKS][NUM_PED_COMMENTS_SLOTS];
uint8 m_nIndexMap[NUM_PED_COMMENTS_BANKS][NUM_PED_COMMENTS_SLOTS];
uint8 m_nCommentsInBank[NUM_PED_COMMENTS_BANKS];
uint8 m_nActiveBank;
2019-07-31 17:54:18 +02: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 03:19:20 +02:00
void Add(tPedComment *com);
void Process();
2019-06-12 19:56:45 +02:00
};
VALIDATE_SIZE(cPedComments, 1164);
2019-06-12 19:56:45 +02:00
class CEntity;
2019-06-27 18:45:16 +02:00
class cMissionAudio
{
public:
2019-06-12 19:56:45 +02:00
CVector m_vecPos;
2021-05-22 11:11:50 +02:00
bool8 m_bPredefinedProperties;
int32 m_nSampleIndex;
uint8 m_nLoadingStatus;
uint8 m_nPlayStatus;
2021-05-22 11:11:50 +02:00
bool8 m_bIsPlaying;
2020-04-12 02:39:27 +02:00
int32 m_nMissionAudioCounter;
2021-05-22 11:11:50 +02:00
bool8 m_bIsPlayed;
2019-06-12 19:56:45 +02:00
};
VALIDATE_SIZE(cMissionAudio, 32);
2019-07-16 17:03:37 +02:00
2020-04-14 16:13:38 +02: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; }
};
class cTransmission;
2019-07-16 17:03:37 +02:00
class CPlane;
class CVehicle;
2019-07-18 23:49:21 +02:00
class CPed;
class cPedParams
{
public:
2021-05-22 11:11:50 +02:00
bool8 m_bDistanceCalculated;
float m_fDistance;
CPed *m_pPed;
2020-12-25 16:39:49 +01:00
cPedParams()
{
m_bDistanceCalculated = false;
m_fDistance = 0.0f;
m_pPed = nil;
2020-12-25 16:39:49 +01:00
}
};
class cVehicleParams
{
public:
2021-05-22 11:11:50 +02:00
bool8 m_bDistanceCalculated;
float m_fDistance;
CVehicle *m_pVehicle;
cTransmission *m_pTransmission;
int32 m_nIndex;
float m_fVelocityChange;
2020-12-25 19:22:43 +01:00
cVehicleParams()
{
m_bDistanceCalculated = false;
m_fDistance = 0.0f;
m_pVehicle = nil;
2020-12-25 19:22:43 +01:00
m_pTransmission = nil;
m_nIndex = 0;
m_fVelocityChange = 0.0f;
}
};
VALIDATE_SIZE(cVehicleParams, 0x18);
2019-07-08 21:44:32 +02:00
2019-08-02 17:43:40 +02:00
enum {
2019-08-02 22:20:12 +02: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 03:43:00 +02:00
2019-06-12 19:56:45 +02:00
class cAudioManager
{
public:
2021-05-22 11:11:50 +02:00
bool8 m_bIsInitialised;
bool8 m_bReverb; // unused
bool8 m_bFifthFrameFlag;
uint8 m_nActiveSamples;
uint8 field_4; // unused
2021-05-22 11:11:50 +02:00
bool8 m_bDynamicAcousticModelingStatus;
float m_fSpeedOfSound;
2021-05-22 11:11:50 +02:00
bool8 m_bTimerJustReset;
2019-07-12 18:27:12 +02:00
int32 m_nTimer;
tSound m_sQueueSample;
2020-05-02 16:10:51 +02:00
uint8 m_nActiveSampleQueue;
2020-03-21 14:51:30 +01:00
tSound m_asSamples[NUM_SOUNDS_SAMPLES_BANKS][NUM_SOUNDS_SAMPLES_SLOTS];
uint8 m_abSampleQueueIndexTable[NUM_SOUNDS_SAMPLES_BANKS][NUM_SOUNDS_SAMPLES_SLOTS];
uint8 m_SampleRequestQueuesStatus[NUM_SOUNDS_SAMPLES_BANKS];
2020-03-21 14:51:30 +01:00
tSound m_asActiveSamples[NUM_SOUNDS_SAMPLES_SLOTS];
tAudioEntity m_asAudioEntities[NUM_AUDIOENTITIES];
int32 m_anAudioEntityIndices[NUM_AUDIOENTITIES];
2019-07-12 18:27:12 +02:00
int32 m_nAudioEntitiesTotal;
2020-03-21 14:51:30 +01:00
CVector m_avecReflectionsPos[NUM_AUDIO_REFLECTIONS];
float m_afReflectionsDistances[NUM_AUDIO_REFLECTIONS];
2020-04-14 16:13:38 +02:00
cAudioScriptObjectManager m_sAudioScriptObjectManager;
2019-06-12 19:56:45 +02:00
cPedComments m_sPedComments;
2019-07-12 18:27:12 +02:00
int32 m_nFireAudioEntity;
int32 m_nWaterCannonEntity;
int32 m_nPoliceChannelEntity;
cPoliceRadioQueue m_sPoliceRadioQueue;
2019-07-12 18:27:12 +02:00
int32 m_nFrontEndEntity;
int32 m_nCollisionEntity;
2019-06-12 19:56:45 +02:00
cAudioCollisionManager m_sCollisionManager;
2019-07-12 18:27:12 +02:00
int32 m_nProjectileEntity;
int32 m_nBridgeEntity;
2019-06-12 19:56:45 +02:00
cMissionAudio m_sMissionAudio;
2019-07-12 18:27:12 +02:00
int32 m_anRandomTable[5];
uint8 m_nTimeSpent;
uint8 m_nUserPause;
uint8 m_nPreviousUserPause;
uint32 m_FrameCounter;
2019-08-02 17:43:40 +02:00
2020-04-13 03:19:20 +02:00
cAudioManager();
~cAudioManager();
2019-08-16 20:17:15 +02:00
// getters
uint32 GetFrameCounter() const { return m_FrameCounter; }
2019-08-16 20:17:15 +02:00
float GetReflectionsDistance(int32 idx) const { return m_afReflectionsDistances[idx]; }
2019-08-27 20:50:59 +02:00
int32 GetRandomNumber(int32 idx) const { return m_anRandomTable[idx]; }
2020-05-02 16:10:51 +02:00
int32 GetRandomNumberInRange(int32 idx, int32 low, int32 high) const { return (m_anRandomTable[idx] % (high - low + 1)) + low; }
2021-05-22 11:11:50 +02:00
bool8 ShouldDuckMissionAudio() const { return m_sMissionAudio.m_nPlayStatus == 1; }
2019-06-12 19:56:45 +02:00
2019-08-16 20:17:15 +02:00
// "Should" be in alphabetic order, except "getXTalkSfx"
2020-04-13 03:19:20 +02:00
void AddDetailsToRequestedOrderList(uint8 sample);
2020-06-06 02:45:24 +02:00
void AddPlayerCarSample(uint8 emittingVolume, int32 freq, uint32 sample, uint8 bank,
2021-05-22 11:11:50 +02:00
uint8 counter, bool8 notLooping);
2020-04-13 03:19:20 +02:00
void AddReflectionsToRequestedQueue();
void AddReleasingSounds();
void AddSampleToRequestedQueue();
void AgeCrimes();
2021-05-22 11:11:50 +02:00
void CalculateDistance(bool8 &condition, float dist);
bool8 CheckForAnAudioFileOnCD() const;
2020-04-13 03:19:20 +02:00
void ClearActiveSamples();
void ClearMissionAudio();
void ClearRequestedQueue();
2019-07-08 21:44:32 +02:00
int32 ComputeDopplerEffectedFrequency(uint32 oldFreq, float position1, float position2,
2020-04-13 03:19:20 +02:00
float speedMultiplier) const;
int32 ComputePan(float, CVector *);
uint8 ComputeVolume(uint8 emittingVolume, float soundIntensity, float distance) const;
int32 CreateEntity(eAudioType type, void *entity);
2019-07-08 21:44:32 +02:00
2020-04-13 03:19:20 +02:00
void DestroyAllGameCreatedEntities();
void DestroyEntity(int32 id);
void DoPoliceRadioCrackle();
2019-07-08 21:44:32 +02:00
2019-08-27 20:50:59 +02:00
// functions returning talk sfx,
// order from GetPedCommentSfx
2019-06-27 18:45:16 +02: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 13:44:20 +02: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 18:38:53 +02: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 18:45:16 +02:00
uint32 GetGenericMaleTalkSfx(int16 sound);
2019-06-29 13:44:20 +02:00
uint32 GetGenericFemaleTalkSfx(int16 sound);
2019-08-27 20:50:59 +02:00
// end of functions returning talk sfx
2019-07-08 21:44:32 +02:00
2020-04-13 03:19:20 +02:00
void GenerateIntegerRandomNumberTable();
2019-08-27 20:50:59 +02:00
char *Get3DProviderName(uint8 id) const;
2021-05-22 11:16:10 +02:00
char GetCDAudioDriveLetter() const;
2020-04-13 03:19:20 +02:00
int8 GetCurrent3DProviderIndex() const;
2019-08-27 20:50:59 +02:00
float GetCollisionLoopingRatio(uint32 a, uint32 b, float c) const; // not used
2020-04-13 03:19:20 +02:00
float GetCollisionOneShotRatio(int32 a, float b) const;
float GetCollisionRatio(float a, float b, float c, float d) const;
2020-05-07 13:32:00 +02:00
float GetDistanceSquared(const CVector &v) const;
2020-04-13 03:19:20 +02:00
int32 GetJumboTaxiFreq() const;
2020-05-23 21:48:50 +02:00
uint8 GetMissionAudioLoadingStatus() const;
2020-04-13 03:19:20 +02:00
int8 GetMissionScriptPoliceAudioPlayingStatus() const;
2019-08-27 20:50:59 +02:00
uint8 GetNum3DProvidersAvailable() const;
int32 GetPedCommentSfx(CPed *ped, int32 sound);
2020-11-07 11:59:53 +01:00
void GetPhrase(uint32 &phrase, uint32 &prevPhrase, uint32 sample, uint32 maxOffset) const;
2019-08-30 00:44:57 +02:00
float GetVehicleDriveWheelSkidValue(uint8 wheel, CAutomobile *automobile,
2020-04-13 03:19:20 +02:00
cTransmission *transmission, float velocityChange);
2019-08-30 00:44:57 +02:00
float GetVehicleNonDriveWheelSkidValue(uint8 wheel, CAutomobile *automobile,
2020-04-13 03:19:20 +02:00
cTransmission *transmission, float velocityChange);
2019-08-16 20:17:15 +02:00
2021-05-22 11:11:50 +02:00
bool8 HasAirBrakes(int32 model) const;
2019-08-16 20:17:15 +02:00
2020-04-13 03:19:20 +02:00
void Initialise();
void InitialisePoliceRadio();
void InitialisePoliceRadioZones();
void InterrogateAudioEntities();
2021-05-22 11:11:50 +02:00
bool8 IsAudioInitialised() const;
bool8 IsMissionAudioSampleFinished();
bool8 IsMP3RadioChannelAvailable() const;
2019-08-16 20:17:15 +02:00
2021-05-22 11:11:50 +02:00
bool8 MissionScriptAudioUsesPoliceChannel(int32 soundMission) const;
2020-04-13 03:19:20 +02:00
void PlayLoadedMissionAudio();
2020-11-22 22:10:41 +01:00
void PlayOneShot(int32 index, uint16 sound, float vol);
2020-04-13 03:19:20 +02: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 09:33:32 +02:00
void PreloadMissionAudio(Const char *name);
2020-04-13 03:19:20 +02:00
void PreTerminateGameSpecificShutdown();
2019-08-16 20:17:15 +02:00
/// processX - main logic of adding new sounds
2020-04-13 03:19:20 +02:00
void ProcessActiveQueues();
2021-05-22 11:11:50 +02:00
bool8 ProcessAirBrakes(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessAirportScriptObject(uint8 sound);
2021-05-22 11:11:50 +02:00
bool8 ProcessBoatEngine(cVehicleParams& params);
bool8 ProcessBoatMovingOverWater(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessBridge();
void ProcessBridgeMotor();
void ProcessBridgeOneShots();
void ProcessBridgeWarning();
2021-05-22 11:11:50 +02:00
bool8 ProcessCarBombTick(cVehicleParams& params);
2020-11-08 18:50:46 +01:00
void ProcessCesna(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessCinemaScriptObject(uint8 sound);
void ProcessCrane();
void ProcessDocksScriptObject(uint8 sound);
2021-05-22 11:11:50 +02:00
bool8 ProcessEngineDamage(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessEntity(int32 sound);
void ProcessExplosions(int32 explosion);
void ProcessFireHydrant();
void ProcessFires(int32 entity);
void ProcessFrontEnd();
void ProcessGarages();
2021-05-22 11:11:50 +02:00
bool8 ProcessHelicopter(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessHomeScriptObject(uint8 sound);
2020-11-08 18:50:46 +01:00
void ProcessJumbo(cVehicleParams& params);
2020-04-13 03:19:20 +02: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 18:50:46 +01:00
void ProcessModelCarEngine(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessOneShotScriptObject(uint8 sound);
void ProcessPed(CPhysical *ped);
2020-11-22 22:10:41 +01:00
void ProcessPedHeadphones(cPedParams &params);
void ProcessPedOneShots(cPedParams &params);
2020-04-13 03:19:20 +02:00
void ProcessPhysical(int32 id);
2020-11-08 18:50:46 +01:00
void ProcessPlane(cVehicleParams& params);
void ProcessPlayersVehicleEngine(cVehicleParams& params, CAutomobile *automobile);
2020-04-13 03:19:20 +02:00
void ProcessPoliceCellBeatingScriptObject(uint8 sound);
void ProcessPornCinema(uint8 sound);
void ProcessProjectiles();
2020-11-08 18:50:46 +01:00
void ProcessRainOnVehicle(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessReverb() const;
2021-05-22 11:11:50 +02:00
bool8 ProcessReverseGear(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessSawMillScriptObject(uint8 sound);
void ProcessScriptObject(int32 id);
void ProcessShopScriptObject(uint8 sound);
void ProcessSpecial();
2021-05-22 11:11:50 +02:00
bool8 ProcessTrainNoise(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessVehicle(CVehicle *vehicle);
2021-05-22 11:11:50 +02:00
bool8 ProcessVehicleDoors(cVehicleParams& params);
2020-11-08 18:50:46 +01:00
void ProcessVehicleEngine(cVehicleParams& params);
void ProcessVehicleHorn(cVehicleParams& params);
void ProcessVehicleOneShots(cVehicleParams& params);
2021-05-22 11:11:50 +02:00
bool8 ProcessVehicleReverseWarning(cVehicleParams& params);
bool8 ProcessVehicleRoadNoise(cVehicleParams& params);
bool8 ProcessVehicleSirenOrAlarm(cVehicleParams& params);
bool8 ProcessVehicleSkidding(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessWaterCannon(int32);
void ProcessWeather(int32 id);
2021-05-22 11:11:50 +02:00
bool8 ProcessWetRoadNoise(cVehicleParams& params);
2020-04-13 03:19:20 +02:00
void ProcessWorkShopScriptObject(uint8 sound);
2019-07-31 17:54:18 +02:00
2019-08-27 20:50:59 +02:00
int32 RandomDisplacement(uint32 seed) const;
void ReacquireDigitalHandle() const;
void ReleaseDigitalHandle() const;
2020-04-13 03:19:20 +02:00
void ReportCollision(CEntity *entity1, CEntity *entity2, uint8 surface1, uint8 surface2,
float collisionPower, float intensity2);
2020-10-22 11:35:38 +02:00
void ReportCrime(eCrimeType crime, const CVector &pos);
2020-04-13 03:19:20 +02:00
void ResetAudioLogicTimers(uint32 timer);
void ResetPoliceRadio();
void ResetTimers(uint32 time);
void Service();
void ServiceCollisions();
void ServicePoliceRadio();
2020-10-22 21:03:27 +02:00
void ServicePoliceRadioChannel(uint8 wantedLevel);
2020-04-13 03:19:20 +02:00
void ServiceSoundEffects();
int8 SetCurrent3DProvider(uint8 which);
2021-05-22 11:11:50 +02:00
void SetDynamicAcousticModelingStatus(bool8 status);
2020-06-29 09:29:02 +02:00
void SetEffectsFadeVol(uint8 volume) const;
2019-08-27 20:50:59 +02:00
void SetEffectsMasterVolume(uint8 volume) const;
2021-05-22 11:11:50 +02:00
void SetEntityStatus(int32 id, bool8 status);
2020-05-07 13:10:56 +02:00
uint32 SetLoopingCollisionRequestedSfxFreqAndGetVol(const cAudioCollision &audioCollision);
2019-08-27 20:50:59 +02:00
void SetMissionAudioLocation(float x, float y, float z);
void SetMissionScriptPoliceAudio(int32 sfx) const;
2021-05-22 11:11:50 +02:00
void SetMonoMode(bool8 mono);
2020-06-29 09:29:02 +02:00
void SetMusicFadeVol(uint8 volume) const;
2019-08-27 20:50:59 +02:00
void SetMusicMasterVolume(uint8 volume) const;
void SetSpeakerConfig(int32 conf) const;
2020-05-07 13:10:56 +02:00
void SetUpLoopingCollisionSound(const cAudioCollision &col, uint8 counter);
void SetUpOneShotCollisionSound(const cAudioCollision &col);
2021-05-22 11:11:50 +02:00
bool8 SetupCrimeReport();
bool8 SetupJumboEngineSound(uint8 vol, uint32 freq);
bool8 SetupJumboFlySound(uint8 emittingVol);
bool8 SetupJumboRumbleSound(uint8 emittingVol);
bool8 SetupJumboTaxiSound(uint8 vol);
bool8 SetupJumboWhineSound(uint8 emittingVol, uint32 freq);
2020-11-22 22:10:41 +01:00
void SetupPedComments(cPedParams &params, uint16 sound);
2020-04-13 03:19:20 +02:00
void SetupSuspectLastSeenReport();
2019-08-27 20:50:59 +02:00
void Terminate();
2020-04-30 12:48:01 +02:00
void TranslateEntity(Const CVector *v1, CVector *v2) const;
2019-08-27 20:50:59 +02:00
2019-08-30 00:44:57 +02:00
void UpdateGasPedalAudio(CAutomobile *automobile);
2019-11-05 00:31:50 +01:00
void UpdateReflections();
2021-05-22 11:11:50 +02:00
bool8 UsesReverseWarning(int32 model) const;
bool8 UsesSiren(int32 model) const;
bool8 UsesSirenSwitching(int32 model) const;
2019-08-30 00:44:57 +02:00
#ifdef GTA_PC
2019-10-19 13:21:35 +02:00
// only used in pc
2020-04-13 03:19:20 +02:00
void AdjustSamplesVolume();
uint8 ComputeEmittingVolume(uint8 emittingVolume, float intensity, float dist);
#endif
};
2020-05-04 19:33:48 +02:00
#ifdef AUDIO_MSS
static_assert(sizeof(cAudioManager) == 19220, "cAudioManager: error");
#endif
2019-06-12 19:56:45 +02:00
2020-04-14 16:13:38 +02:00
extern cAudioManager AudioManager;