2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
#include "dCommonVars.h"
|
|
|
|
#include "Entity.h"
|
|
|
|
#include "GUID.h"
|
|
|
|
#include "Component.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
struct MusicCue {
|
|
|
|
std::string name;
|
|
|
|
uint32_t result;
|
|
|
|
float boredomTime;
|
2023-08-06 20:38:12 +00:00
|
|
|
|
|
|
|
MusicCue(std::string name, float boredomTime = -1.0, uint32_t result = 1){
|
|
|
|
this->name = name;
|
|
|
|
this->result = result;
|
|
|
|
this->boredomTime = boredomTime;
|
|
|
|
};
|
|
|
|
|
|
|
|
void Serialize(RakNet::BitStream* outBitStream);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MusicParameter {
|
|
|
|
std::string name;
|
|
|
|
float value;
|
|
|
|
|
|
|
|
MusicParameter(std::string name, float value = 0.0){
|
|
|
|
this->name = name;
|
|
|
|
this->value = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Serialize(RakNet::BitStream* outBitStream);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GUIDResults{
|
|
|
|
GUID guid;
|
|
|
|
uint32_t result;
|
|
|
|
|
|
|
|
GUIDResults(std::string guidString, uint32_t result = 1){
|
|
|
|
this->guid = GUID(guidString);
|
|
|
|
this->result = result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Serialize(RakNet::BitStream* outBitStream);
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2023-08-06 20:38:12 +00:00
|
|
|
struct MixerProgram{
|
|
|
|
std::string name;
|
|
|
|
uint32_t result;
|
|
|
|
|
|
|
|
MixerProgram(std::string name, uint32_t result = 0){
|
|
|
|
this->name = name;
|
|
|
|
this->result = result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Serialize(RakNet::BitStream* outBitStream);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
class SoundTriggerComponent : public Component {
|
|
|
|
public:
|
2023-03-04 07:16:37 +00:00
|
|
|
static const eReplicaComponentType ComponentType = eReplicaComponentType::SOUND_TRIGGER;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
explicit SoundTriggerComponent(Entity* parent);
|
|
|
|
void Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags);
|
2023-08-06 20:38:12 +00:00
|
|
|
void ActivateMusicCue(const std::string& name, float bordemTime = -1.0);
|
2021-12-05 17:54:36 +00:00
|
|
|
void DeactivateMusicCue(const std::string& name);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2023-08-06 20:38:12 +00:00
|
|
|
std::vector<MusicCue> m_MusicCues = {};
|
|
|
|
std::vector<MusicParameter> m_MusicParameters = {};
|
|
|
|
std::vector<GUIDResults> m_2DAmbientSounds = {};
|
|
|
|
std::vector<GUIDResults> m_3DAmbientSounds = {};
|
|
|
|
std::vector<MixerProgram> m_MixerPrograms = {};
|
|
|
|
|
|
|
|
bool m_Dirty = false;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|