2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDObjects {
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t id; //!< The LOT of the object
|
2021-12-05 17:54:36 +00:00
|
|
|
std::string name; //!< The internal name of the object
|
2024-01-09 07:54:14 +00:00
|
|
|
UNUSED(uint32_t placeable); //!< Whether or not the object is placable
|
2021-12-05 17:54:36 +00:00
|
|
|
std::string type; //!< The object type
|
|
|
|
UNUSED(std::string description); //!< An internal description of the object
|
2024-01-09 07:54:14 +00:00
|
|
|
UNUSED(uint32_t localize); //!< Whether or not the object should localize
|
|
|
|
UNUSED(uint32_t npcTemplateID); //!< Something related to NPCs...
|
2021-12-05 17:54:36 +00:00
|
|
|
UNUSED(std::string displayName); //!< The display name of the object
|
|
|
|
float interactionDistance; //!< The interaction distance of the object
|
2024-01-09 07:54:14 +00:00
|
|
|
UNUSED(uint32_t nametag); //!< ???
|
2021-12-05 17:54:36 +00:00
|
|
|
UNUSED(std::string _internalNotes); //!< Some internal notes (rarely used)
|
2024-01-09 07:54:14 +00:00
|
|
|
UNUSED(uint32_t locStatus); //!< ???
|
2021-12-05 17:54:36 +00:00
|
|
|
UNUSED(std::string gate_version); //!< The gate version for the object
|
2024-01-09 07:54:14 +00:00
|
|
|
UNUSED(uint32_t HQ_valid); //!< Probably used for the Nexus HQ database on LEGOUniverse.com
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDObjectsTable : public CDTable<CDObjectsTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
2024-01-09 07:54:14 +00:00
|
|
|
std::map<uint32_t, CDObjects> entries;
|
2021-12-05 17:54:36 +00:00
|
|
|
CDObjects m_default;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
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
|
|
|
// Gets an entry by ID
|
2024-01-09 07:54:14 +00:00
|
|
|
const CDObjects& GetByID(uint32_t LOT);
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|