2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
2022-07-09 06:07:52 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <unordered_set>
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
struct CDBehaviorParameter {
|
2022-12-29 09:43:52 +00:00
|
|
|
unsigned int behaviorID; //!< The Behavior ID
|
|
|
|
std::unordered_map<std::string, uint32_t>::iterator parameterID; //!< The Parameter ID
|
|
|
|
float value; //!< The value of the behavior template
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2023-07-16 07:27:30 +00:00
|
|
|
namespace CDBehaviorParameterTable {
|
|
|
|
void LoadTableIntoMemory();
|
|
|
|
float GetValue(const uint32_t behaviorID, const std::string& name, const float defaultValue = 0.0f);
|
2022-07-09 06:07:52 +00:00
|
|
|
|
|
|
|
std::map<std::string, float> GetParametersByBehaviorID(uint32_t behaviorID);
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|