2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDObjects {
|
2022-07-28 13:39:57 +00:00
|
|
|
unsigned int id; //!< The LOT of the object
|
|
|
|
std::string name; //!< The internal name of the object
|
|
|
|
UNUSED(unsigned int placeable); //!< Whether or not the object is placable
|
|
|
|
std::string type; //!< The object type
|
|
|
|
UNUSED(std::string description); //!< An internal description of the object
|
|
|
|
UNUSED(unsigned int localize); //!< Whether or not the object should localize
|
|
|
|
UNUSED(unsigned int npcTemplateID); //!< Something related to NPCs...
|
|
|
|
UNUSED(std::string displayName); //!< The display name of the object
|
|
|
|
float interactionDistance; //!< The interaction distance of the object
|
|
|
|
UNUSED(unsigned int nametag); //!< ???
|
|
|
|
UNUSED(std::string _internalNotes); //!< Some internal notes (rarely used)
|
|
|
|
UNUSED(unsigned int locStatus); //!< ???
|
|
|
|
UNUSED(std::string gate_version); //!< The gate version for the object
|
|
|
|
UNUSED(unsigned int 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:
|
|
|
|
std::map<unsigned int, CDObjects> entries;
|
|
|
|
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
|
2021-12-05 17:54:36 +00:00
|
|
|
const CDObjects& GetByID(unsigned int LOT);
|
|
|
|
};
|
|
|
|
|