mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 05:27:19 +00:00
perf: Behavior Parameter memory savings (#1166)
* Memory Savings Behavior Parameter table * Update CDBehaviorParameterTable.h
This commit is contained in:
parent
a22ecf385f
commit
9a07020a51
@ -1,26 +1,30 @@
|
|||||||
#include "CDBehaviorParameterTable.h"
|
#include "CDBehaviorParameterTable.h"
|
||||||
#include "GeneralUtils.h"
|
#include "GeneralUtils.h"
|
||||||
|
|
||||||
CDBehaviorParameterTable::CDBehaviorParameterTable(void) {
|
uint64_t GetHash(const uint32_t behaviorID, const uint32_t parameterID) {
|
||||||
|
uint64_t hash = behaviorID;
|
||||||
|
hash <<= 31U;
|
||||||
|
hash |= parameterID;
|
||||||
|
|
||||||
|
return hash;
|
||||||
|
}
|
||||||
|
|
||||||
|
CDBehaviorParameterTable::CDBehaviorParameterTable() {
|
||||||
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM BehaviorParameter");
|
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM BehaviorParameter");
|
||||||
uint32_t uniqueParameterId = 0;
|
|
||||||
uint64_t hash = 0;
|
|
||||||
while (!tableData.eof()) {
|
while (!tableData.eof()) {
|
||||||
CDBehaviorParameter entry;
|
uint32_t behaviorID = tableData.getIntField("behaviorID", -1);
|
||||||
entry.behaviorID = tableData.getIntField("behaviorID", -1);
|
|
||||||
auto candidateStringToAdd = std::string(tableData.getStringField("parameterID", ""));
|
auto candidateStringToAdd = std::string(tableData.getStringField("parameterID", ""));
|
||||||
auto parameter = m_ParametersList.find(candidateStringToAdd);
|
auto parameter = m_ParametersList.find(candidateStringToAdd);
|
||||||
|
uint32_t parameterId;
|
||||||
if (parameter != m_ParametersList.end()) {
|
if (parameter != m_ParametersList.end()) {
|
||||||
entry.parameterID = parameter;
|
parameterId = parameter->second;
|
||||||
} else {
|
} else {
|
||||||
entry.parameterID = m_ParametersList.insert(std::make_pair(candidateStringToAdd, uniqueParameterId)).first;
|
parameterId = m_ParametersList.insert(std::make_pair(candidateStringToAdd, m_ParametersList.size())).first->second;
|
||||||
uniqueParameterId++;
|
|
||||||
}
|
}
|
||||||
hash = entry.behaviorID;
|
uint64_t hash = GetHash(behaviorID, parameterId);
|
||||||
hash = (hash << 31U) | entry.parameterID->second;
|
float value = tableData.getFloatField("value", -1.0f);
|
||||||
entry.value = tableData.getFloatField("value", -1.0f);
|
|
||||||
|
|
||||||
m_Entries.insert(std::make_pair(hash, entry));
|
m_Entries.insert(std::make_pair(hash, value));
|
||||||
|
|
||||||
tableData.nextRow();
|
tableData.nextRow();
|
||||||
}
|
}
|
||||||
@ -30,27 +34,22 @@ CDBehaviorParameterTable::CDBehaviorParameterTable(void) {
|
|||||||
float CDBehaviorParameterTable::GetValue(const uint32_t behaviorID, const std::string& name, const float defaultValue) {
|
float CDBehaviorParameterTable::GetValue(const uint32_t behaviorID, const std::string& name, const float defaultValue) {
|
||||||
auto parameterID = this->m_ParametersList.find(name);
|
auto parameterID = this->m_ParametersList.find(name);
|
||||||
if (parameterID == this->m_ParametersList.end()) return defaultValue;
|
if (parameterID == this->m_ParametersList.end()) return defaultValue;
|
||||||
|
auto hash = GetHash(behaviorID, parameterID->second);
|
||||||
uint64_t hash = behaviorID;
|
|
||||||
|
|
||||||
hash = (hash << 31U) | parameterID->second;
|
|
||||||
|
|
||||||
// Search for specific parameter
|
// Search for specific parameter
|
||||||
const auto& it = m_Entries.find(hash);
|
auto it = m_Entries.find(hash);
|
||||||
return it != m_Entries.end() ? it->second.value : defaultValue;
|
return it != m_Entries.end() ? it->second : defaultValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::map<std::string, float> CDBehaviorParameterTable::GetParametersByBehaviorID(uint32_t behaviorID) {
|
std::map<std::string, float> CDBehaviorParameterTable::GetParametersByBehaviorID(uint32_t behaviorID) {
|
||||||
uint64_t hashBase = behaviorID;
|
uint64_t hashBase = behaviorID;
|
||||||
std::map<std::string, float> returnInfo;
|
std::map<std::string, float> returnInfo;
|
||||||
uint64_t hash;
|
for (auto& [parameterString, parameterId] : m_ParametersList) {
|
||||||
for (auto& parameterCandidate : m_ParametersList) {
|
uint64_t hash = GetHash(hashBase, parameterId);
|
||||||
hash = (hashBase << 31U) | parameterCandidate.second;
|
|
||||||
auto infoCandidate = m_Entries.find(hash);
|
auto infoCandidate = m_Entries.find(hash);
|
||||||
if (infoCandidate != m_Entries.end()) {
|
if (infoCandidate != m_Entries.end()) {
|
||||||
returnInfo.insert(std::make_pair(infoCandidate->second.parameterID->first, infoCandidate->second.value));
|
returnInfo.insert(std::make_pair(parameterString, infoCandidate->second));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return returnInfo;
|
return returnInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,18 +5,15 @@
|
|||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <unordered_set>
|
#include <unordered_set>
|
||||||
|
|
||||||
struct CDBehaviorParameter {
|
|
||||||
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
|
|
||||||
};
|
|
||||||
|
|
||||||
class CDBehaviorParameterTable : public CDTable<CDBehaviorParameterTable> {
|
class CDBehaviorParameterTable : public CDTable<CDBehaviorParameterTable> {
|
||||||
private:
|
private:
|
||||||
std::unordered_map<uint64_t, CDBehaviorParameter> m_Entries;
|
typedef uint64_t BehaviorParameterHash;
|
||||||
|
typedef float BehaviorParameterValue;
|
||||||
|
std::unordered_map<BehaviorParameterHash, BehaviorParameterValue> m_Entries;
|
||||||
std::unordered_map<std::string, uint32_t> m_ParametersList;
|
std::unordered_map<std::string, uint32_t> m_ParametersList;
|
||||||
public:
|
public:
|
||||||
CDBehaviorParameterTable();
|
CDBehaviorParameterTable();
|
||||||
|
|
||||||
float GetValue(const uint32_t behaviorID, const std::string& name, const float defaultValue = 0);
|
float GetValue(const uint32_t behaviorID, const std::string& name, const float defaultValue = 0);
|
||||||
|
|
||||||
std::map<std::string, float> GetParametersByBehaviorID(uint32_t behaviorID);
|
std::map<std::string, float> GetParametersByBehaviorID(uint32_t behaviorID);
|
||||||
|
Loading…
Reference in New Issue
Block a user