2021-12-05 17:54:36 +00:00
|
|
|
#include "CDRarityTableTable.h"
|
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
void CDRarityTableTable::LoadValuesFromDatabase() {
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
// First, get the size of the table
|
|
|
|
unsigned int size = 0;
|
|
|
|
auto tableSize = CDClientDatabase::ExecuteQuery("SELECT COUNT(*) FROM RarityTable");
|
|
|
|
while (!tableSize.eof()) {
|
|
|
|
size = tableSize.getIntField(0, 0);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
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
|
|
|
// Reserve the size
|
|
|
|
this->entries.reserve(size);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
// Now get the data
|
|
|
|
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM RarityTable");
|
|
|
|
while (!tableData.eof()) {
|
|
|
|
CDRarityTable entry;
|
2023-01-07 09:48:59 +00:00
|
|
|
entry.id = tableData.getIntField("id", -1);
|
|
|
|
entry.randmax = tableData.getFloatField("randmax", -1);
|
|
|
|
entry.rarity = tableData.getIntField("rarity", -1);
|
|
|
|
entry.RarityTableIndex = tableData.getIntField("RarityTableIndex", -1);
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Queries the table with a custom "where" clause
|
|
|
|
std::vector<CDRarityTable> CDRarityTableTable::Query(std::function<bool(CDRarityTable)> predicate) {
|
|
|
|
|
|
|
|
std::vector<CDRarityTable> data = cpplinq::from(this->entries)
|
|
|
|
>> cpplinq::where(predicate)
|
|
|
|
>> cpplinq::to_vector();
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Gets all the entries in the table
|
2023-08-11 04:27:40 +00:00
|
|
|
const std::vector<CDRarityTable>& CDRarityTableTable::GetEntries() const {
|
2021-12-05 17:54:36 +00:00
|
|
|
return this->entries;
|
|
|
|
}
|
2023-01-07 09:48:59 +00:00
|
|
|
|