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
|
|
|
|
|
|
|
/*!
|
|
|
|
\file CDBehaviorParameterTable.hpp
|
|
|
|
\brief Contains data for the BehaviorParameter table
|
|
|
|
*/
|
|
|
|
|
|
|
|
//! BehaviorParameter Entry Struct
|
|
|
|
struct CDBehaviorParameter {
|
2022-07-12 03:43:09 +00:00
|
|
|
unsigned int behaviorID; //!< The Behavior ID
|
|
|
|
std::unordered_set<std::string>::iterator parameterID; //!< The Parameter ID
|
|
|
|
float value; //!< The value of the behavior template
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//! BehaviorParameter table
|
|
|
|
class CDBehaviorParameterTable : public CDTable {
|
|
|
|
private:
|
2022-07-09 06:07:52 +00:00
|
|
|
std::unordered_map<size_t, CDBehaviorParameter> m_Entries;
|
|
|
|
std::unordered_set<std::string> m_ParametersList;
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
//! Constructor
|
|
|
|
CDBehaviorParameterTable(void);
|
|
|
|
|
|
|
|
//! Destructor
|
|
|
|
~CDBehaviorParameterTable(void);
|
|
|
|
|
|
|
|
//! Returns the table's name
|
|
|
|
/*!
|
|
|
|
\return The table name
|
|
|
|
*/
|
|
|
|
std::string GetName(void) const override;
|
|
|
|
|
2022-07-09 06:07:52 +00:00
|
|
|
CDBehaviorParameter GetEntry(const uint32_t behaviorID, const std::string& name, const float defaultValue = 0);
|
|
|
|
|
|
|
|
std::map<std::string, float> GetParametersByBehaviorID(uint32_t behaviorID);
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|