2021-12-05 17:54:36 +00:00
|
|
|
#include "CDPropertyEntranceComponentTable.h"
|
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
void CDPropertyEntranceComponentTable::LoadValuesFromDatabase() {
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
// First, get the size of the table
|
|
|
|
size_t size = 0;
|
|
|
|
auto tableSize = CDClientDatabase::ExecuteQuery("SELECT COUNT(*) FROM PropertyEntranceComponent");
|
|
|
|
while (!tableSize.eof()) {
|
|
|
|
size = tableSize.getIntField(0, 0);
|
|
|
|
tableSize.nextRow();
|
|
|
|
}
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
tableSize.finalize();
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
this->entries.reserve(size);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM PropertyEntranceComponent;");
|
|
|
|
while (!tableData.eof()) {
|
|
|
|
auto entry = CDPropertyEntranceComponent{
|
2023-01-07 09:48:59 +00:00
|
|
|
static_cast<uint32_t>(tableData.getIntField("id", -1)),
|
|
|
|
static_cast<uint32_t>(tableData.getIntField("mapID", -1)),
|
|
|
|
tableData.getStringField("propertyName", ""),
|
|
|
|
static_cast<bool>(tableData.getIntField("isOnProperty", false)),
|
|
|
|
tableData.getStringField("groupType", "")
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
this->entries.push_back(entry);
|
|
|
|
tableData.nextRow();
|
|
|
|
}
|
|
|
|
|
|
|
|
tableData.finalize();
|
|
|
|
}
|
|
|
|
|
|
|
|
CDPropertyEntranceComponent CDPropertyEntranceComponentTable::GetByID(uint32_t id) {
|
|
|
|
for (const auto& entry : entries) {
|
|
|
|
if (entry.id == id)
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
return defaultEntry;
|
|
|
|
}
|
2023-01-07 09:48:59 +00:00
|
|
|
|