mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
d2aeebcd46
* Move CDClientManager to be a namespace Tested that worlds still load data as expected. Had no use being a singleton anyways. * Move cdclient data storage to tu local containers Allows some data from these containers to be saved on object by reference instead of always needing to copy. iteration 2 - move all unnamed namespace containers to a singular spot - use macro for template specialization and variable declaration - use templates to allow for as little copy paste of types and functions as possible * remember to use typename! compiler believes T::StorageType is accessing a member, not a type. * Update CDClientManager.cpp * move to cpp?
68 lines
2.9 KiB
C++
68 lines
2.9 KiB
C++
#include "CDZoneTableTable.h"
|
|
|
|
void CDZoneTableTable::LoadValuesFromDatabase() {
|
|
|
|
// First, get the size of the table
|
|
uint32_t size = 0;
|
|
auto tableSize = CDClientDatabase::ExecuteQuery("SELECT COUNT(*) FROM ZoneTable");
|
|
while (!tableSize.eof()) {
|
|
size = tableSize.getIntField(0, 0);
|
|
|
|
tableSize.nextRow();
|
|
}
|
|
|
|
tableSize.finalize();
|
|
|
|
// Now get the data
|
|
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM ZoneTable");
|
|
auto& entries = GetEntriesMutable();
|
|
while (!tableData.eof()) {
|
|
CDZoneTable entry;
|
|
entry.zoneID = tableData.getIntField("zoneID", -1);
|
|
entry.locStatus = tableData.getIntField("locStatus", -1);
|
|
entry.zoneName = tableData.getStringField("zoneName", "");
|
|
entry.scriptID = tableData.getIntField("scriptID", -1);
|
|
entry.ghostdistance_min = tableData.getFloatField("ghostdistance_min", -1.0f);
|
|
entry.ghostdistance = tableData.getFloatField("ghostdistance", -1.0f);
|
|
entry.population_soft_cap = tableData.getIntField("population_soft_cap", -1);
|
|
entry.population_hard_cap = tableData.getIntField("population_hard_cap", -1);
|
|
UNUSED(entry.DisplayDescription = tableData.getStringField("DisplayDescription", ""));
|
|
UNUSED(entry.mapFolder = tableData.getStringField("mapFolder", ""));
|
|
entry.smashableMinDistance = tableData.getFloatField("smashableMinDistance", -1.0f);
|
|
entry.smashableMaxDistance = tableData.getFloatField("smashableMaxDistance", -1.0f);
|
|
UNUSED(entry.mixerProgram = tableData.getStringField("mixerProgram", ""));
|
|
UNUSED(entry.clientPhysicsFramerate = tableData.getStringField("clientPhysicsFramerate", ""));
|
|
entry.serverPhysicsFramerate = tableData.getStringField("serverPhysicsFramerate", "");
|
|
entry.zoneControlTemplate = tableData.getIntField("zoneControlTemplate", -1);
|
|
entry.widthInChunks = tableData.getIntField("widthInChunks", -1);
|
|
entry.heightInChunks = tableData.getIntField("heightInChunks", -1);
|
|
entry.petsAllowed = tableData.getIntField("petsAllowed", -1) == 1 ? true : false;
|
|
entry.localize = tableData.getIntField("localize", -1) == 1 ? true : false;
|
|
entry.fZoneWeight = tableData.getFloatField("fZoneWeight", -1.0f);
|
|
UNUSED(entry.thumbnail = tableData.getStringField("thumbnail", ""));
|
|
entry.PlayerLoseCoinsOnDeath = tableData.getIntField("PlayerLoseCoinsOnDeath", -1) == 1 ? true : false;
|
|
entry.disableSaveLoc = tableData.getIntField("disableSaveLoc", -1) == 1 ? true : false;
|
|
entry.teamRadius = tableData.getFloatField("teamRadius", -1.0f);
|
|
UNUSED(entry.gate_version = tableData.getStringField("gate_version", ""));
|
|
entry.mountsAllowed = tableData.getIntField("mountsAllowed", -1) == 1 ? true : false;
|
|
|
|
entries.insert(std::make_pair(entry.zoneID, entry));
|
|
tableData.nextRow();
|
|
}
|
|
|
|
tableData.finalize();
|
|
}
|
|
|
|
//! Queries the table with a zoneID to find.
|
|
const CDZoneTable* CDZoneTableTable::Query(uint32_t zoneID) {
|
|
auto& m_Entries = GetEntries();
|
|
const auto& iter = m_Entries.find(zoneID);
|
|
|
|
if (iter != m_Entries.end()) {
|
|
return &iter->second;
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|