2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDObjectSkills {
|
|
|
|
unsigned int objectTemplate; //!< The LOT of the item
|
|
|
|
unsigned int skillID; //!< The Skill ID of the object
|
|
|
|
unsigned int castOnType; //!< ???
|
|
|
|
unsigned int AICombatWeight; //!< ???
|
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDObjectSkillsTable : public CDTable<CDObjectSkillsTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
std::vector<CDObjectSkills> entries;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-03-17 14:36:21 +00:00
|
|
|
CDObjectSkillsTable();
|
|
|
|
// Queries the table with a custom "where" clause
|
2021-12-05 17:54:36 +00:00
|
|
|
std::vector<CDObjectSkills> Query(std::function<bool(CDObjectSkills)> predicate);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
// Gets all the entries in the table
|
2021-12-05 17:54:36 +00:00
|
|
|
std::vector<CDObjectSkills> GetEntries(void) const;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|