mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
b7497a47e4
* Added caching for table Added caching for table Add more caching Update MasterServer.cpp grds Update CDBehaviorParameterTable.cpp Update CDBehaviorParameterTable.h Update CDBehaviorTemplateTable.cpp Update Behavior.cpp Update Behavior.cpp change to map Remove redundant query * Remove include * change to enum * Update Behavior.cpp * Use already cached table * Update Behavior.cpp * Reduce memory usage Reduces the memory usage for the BehaviorParameter table by 10MB in memory. * Update CDBehaviorTemplateTable.cpp
56 lines
1.6 KiB
C++
56 lines
1.6 KiB
C++
#pragma once
|
|
|
|
// Custom Classes
|
|
#include "CDTable.h"
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
|
|
/*!
|
|
\file CDBehaviorTemplateTable.hpp
|
|
\brief Contains data for the BehaviorTemplate table
|
|
*/
|
|
|
|
//! BehaviorTemplate Entry Struct
|
|
struct CDBehaviorTemplate {
|
|
unsigned int behaviorID; //!< The Behavior ID
|
|
unsigned int templateID; //!< The Template ID (LOT)
|
|
unsigned int effectID; //!< The Effect ID attached
|
|
std::unordered_set<std::string>::iterator effectHandle; //!< The effect handle
|
|
};
|
|
|
|
|
|
//! BehaviorTemplate table
|
|
class CDBehaviorTemplateTable : public CDTable {
|
|
private:
|
|
std::vector<CDBehaviorTemplate> entries;
|
|
std::unordered_map<uint32_t, CDBehaviorTemplate> entriesMappedByBehaviorID;
|
|
std::unordered_set<std::string> m_EffectHandles;
|
|
public:
|
|
|
|
//! Constructor
|
|
CDBehaviorTemplateTable(void);
|
|
|
|
//! Destructor
|
|
~CDBehaviorTemplateTable(void);
|
|
|
|
//! Returns the table's name
|
|
/*!
|
|
\return The table name
|
|
*/
|
|
std::string GetName(void) const override;
|
|
|
|
//! Queries the table with a custom "where" clause
|
|
/*!
|
|
\param predicate The predicate
|
|
*/
|
|
std::vector<CDBehaviorTemplate> Query(std::function<bool(CDBehaviorTemplate)> predicate);
|
|
|
|
//! Gets all the entries in the table
|
|
/*!
|
|
\return The entries
|
|
*/
|
|
std::vector<CDBehaviorTemplate> GetEntries(void) const;
|
|
|
|
const CDBehaviorTemplate GetByBehaviorID(uint32_t behaviorID);
|
|
};
|