2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDInventoryComponent {
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t id; //!< The component ID for this object
|
|
|
|
uint32_t itemid; //!< The LOT of the object
|
|
|
|
uint32_t count; //!< The count of the items the object has
|
2022-07-28 13:39:57 +00:00
|
|
|
bool equip; //!< Whether or not to equip the item
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDInventoryComponentTable : public CDTable<CDInventoryComponentTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
2022-07-28 13:39:57 +00:00
|
|
|
std::vector<CDInventoryComponent> entries;
|
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-08-11 04:27:40 +00:00
|
|
|
void LoadValuesFromDatabase();
|
2023-03-17 14:36:21 +00:00
|
|
|
// Queries the table with a custom "where" clause
|
2022-07-28 13:39:57 +00:00
|
|
|
std::vector<CDInventoryComponent> Query(std::function<bool(CDInventoryComponent)> predicate);
|
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
const std::vector<CDInventoryComponent>& GetEntries() const;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|