2021-12-05 17:54:36 +00:00
|
|
|
#include "CDRewardsTable.h"
|
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
void CDRewardsTable::LoadValuesFromDatabase() {
|
2021-12-05 17:54:36 +00:00
|
|
|
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM Rewards");
|
|
|
|
while (!tableData.eof()) {
|
2023-08-11 04:27:40 +00:00
|
|
|
CDRewards entry;
|
|
|
|
entry.id = tableData.getIntField("id", -1);
|
|
|
|
entry.levelID = tableData.getIntField("LevelID", -1);
|
|
|
|
entry.missionID = tableData.getIntField("MissionID", -1);
|
|
|
|
entry.rewardType = tableData.getIntField("RewardType", -1);
|
|
|
|
entry.value = tableData.getIntField("value", -1);
|
|
|
|
entry.count = tableData.getIntField("count", -1);
|
|
|
|
|
|
|
|
m_entries.insert(std::make_pair(entry.id, entry));
|
2021-12-05 17:54:36 +00:00
|
|
|
tableData.nextRow();
|
|
|
|
}
|
|
|
|
|
|
|
|
tableData.finalize();
|
|
|
|
}
|
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
std::vector<CDRewards> CDRewardsTable::GetByLevelID(uint32_t levelID) {
|
|
|
|
std::vector<CDRewards> result{};
|
2021-12-05 17:54:36 +00:00
|
|
|
for (const auto& e : m_entries) {
|
2023-08-11 04:27:40 +00:00
|
|
|
if (e.second.levelID == levelID) result.push_back(e.second);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
return result;
|
|
|
|
}
|
2023-01-07 09:48:59 +00:00
|
|
|
|