mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
5eca25e42a
* Move away from constructor queries Fix up other large tables to have proper backup lookups Revert "idk im just dumb ig" This reverts commit 5d5be5df53b8959b42b291613d7db749a65a3585. idk im just dumb ig * Fix slow components registry lookup * add define for cdclient cache all * Update CDBehaviorParameterTable.cpp
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
#pragma once
|
|
#include "CDTable.h"
|
|
|
|
struct CDRailActivatorComponent {
|
|
int32_t id;
|
|
std::u16string startAnimation;
|
|
std::u16string loopAnimation;
|
|
std::u16string stopAnimation;
|
|
std::u16string startSound;
|
|
std::u16string loopSound;
|
|
std::u16string stopSound;
|
|
std::pair<uint32_t, std::u16string> startEffectID;
|
|
std::pair<uint32_t, std::u16string> loopEffectID;
|
|
std::pair<uint32_t, std::u16string> stopEffectID;
|
|
std::string preconditions;
|
|
bool playerCollision;
|
|
bool cameraLocked;
|
|
bool damageImmune;
|
|
bool noAggro;
|
|
bool showNameBillboard;
|
|
};
|
|
|
|
class CDRailActivatorComponentTable : public CDTable<CDRailActivatorComponentTable> {
|
|
public:
|
|
void LoadValuesFromDatabase();
|
|
static const std::string GetTableName() { return "RailActivatorComponent"; };
|
|
[[nodiscard]] CDRailActivatorComponent GetEntryByID(int32_t id) const;
|
|
[[nodiscard]] const std::vector<CDRailActivatorComponent>& GetEntries() const;
|
|
private:
|
|
static std::pair<uint32_t, std::u16string> EffectPairFromString(std::string& str);
|
|
std::vector<CDRailActivatorComponent> m_Entries{};
|
|
};
|