DarkflameServer/dGame/dComponents/MissionComponent.cpp

623 lines
14 KiB
C++
Raw Normal View History

/*
* Darkflame Universe
* Copyright 2019
*/
#include <sstream>
#include <string>
#include "MissionComponent.h"
#include "dLogger.h"
#include "CDClientManager.h"
#include "CDMissionTasksTable.h"
#include "InventoryComponent.h"
#include "GameMessages.h"
#include "Game.h"
#include "AMFFormat.h"
#include "dZoneManager.h"
#include "Mail.h"
#include "MissionPrerequisites.h"
2022-07-28 13:39:57 +00:00
// MARK: Mission Component
std::unordered_map<size_t, std::vector<uint32_t>> MissionComponent::m_AchievementCache = {};
//! Initializer
MissionComponent::MissionComponent(Entity* parent) : Component(parent) {
m_LastUsedMissionOrderUID = dZoneManager::Instance()->GetUniqueMissionIdStartingValue();
}
//! Destructor
MissionComponent::~MissionComponent() {
2022-07-28 13:39:57 +00:00
for (const auto& mission : m_Missions) {
delete mission.second;
}
2022-07-28 13:39:57 +00:00
this->m_Missions.clear();
}
Mission* MissionComponent::GetMission(const uint32_t missionId) const {
2022-07-28 13:39:57 +00:00
if (m_Missions.count(missionId) == 0) {
return nullptr;
}
2022-07-28 13:39:57 +00:00
const auto& index = m_Missions.find(missionId);
2022-07-28 13:39:57 +00:00
if (index == m_Missions.end()) {
return nullptr;
}
2022-07-28 13:39:57 +00:00
return index->second;
}
MissionState MissionComponent::GetMissionState(const uint32_t missionId) const {
2022-07-28 13:39:57 +00:00
auto* mission = GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission == nullptr) {
return CanAccept(missionId) ? MissionState::MISSION_STATE_AVAILABLE : MissionState::MISSION_STATE_UNKNOWN;
}
2022-07-28 13:39:57 +00:00
return mission->GetMissionState();
}
const std::unordered_map<uint32_t, Mission*>& MissionComponent::GetMissions() const {
2022-07-28 13:39:57 +00:00
return m_Missions;
}
bool MissionComponent::CanAccept(const uint32_t missionId) const {
2022-07-28 13:39:57 +00:00
return MissionPrerequisites::CanAccept(missionId, m_Missions);
}
void MissionComponent::AcceptMission(const uint32_t missionId, const bool skipChecks) {
2022-07-28 13:39:57 +00:00
if (!skipChecks && !CanAccept(missionId)) {
return;
}
2022-07-28 13:39:57 +00:00
// If this is a daily mission, it may already be "accepted"
auto* mission = this->GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission != nullptr) {
if (mission->GetClientInfo().repeatable) {
mission->Accept();
if (mission->IsMission()) mission->SetUniqueMissionOrderID(++m_LastUsedMissionOrderUID);
2022-07-28 13:39:57 +00:00
}
2022-07-28 13:39:57 +00:00
return;
}
2022-07-28 13:39:57 +00:00
mission = new Mission(this, missionId);
if (mission->IsMission()) mission->SetUniqueMissionOrderID(++m_LastUsedMissionOrderUID);
2022-07-28 13:39:57 +00:00
mission->Accept();
2022-07-28 13:39:57 +00:00
this->m_Missions.insert_or_assign(missionId, mission);
2022-07-28 13:39:57 +00:00
if (missionId == 1728) {
//Needs to send a mail
2022-07-28 13:39:57 +00:00
auto address = m_Parent->GetSystemAddress();
2022-07-28 13:39:57 +00:00
Mail::HandleNotificationRequest(address, m_Parent->GetObjectID());
}
}
void MissionComponent::CompleteMission(const uint32_t missionId, const bool skipChecks, const bool yieldRewards) {
2022-07-28 13:39:57 +00:00
// Get the mission first
auto* mission = this->GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission == nullptr) {
AcceptMission(missionId, skipChecks);
2022-07-28 13:39:57 +00:00
mission = this->GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission == nullptr) {
return;
}
}
2022-07-28 13:39:57 +00:00
//If this mission is not repeatable, and already completed, we stop here.
if (mission->IsComplete() && !mission->IsRepeatable()) {
return;
}
2022-07-28 13:39:57 +00:00
mission->Complete(yieldRewards);
}
void MissionComponent::RemoveMission(uint32_t missionId) {
2022-07-28 13:39:57 +00:00
auto* mission = this->GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission == nullptr) {
return;
}
2022-07-28 13:39:57 +00:00
delete mission;
2022-07-28 13:39:57 +00:00
m_Missions.erase(missionId);
}
void MissionComponent::Progress(MissionTaskType type, int32_t value, LWOOBJID associate, const std::string& targets, int32_t count, bool ignoreAchievements) {
2022-07-28 13:39:57 +00:00
for (const auto& pair : m_Missions) {
auto* mission = pair.second;
2022-07-28 13:39:57 +00:00
if (mission->IsAchievement() && ignoreAchievements) continue;
2022-07-28 13:39:57 +00:00
if (mission->IsComplete()) continue;
2022-07-28 13:39:57 +00:00
mission->Progress(type, value, associate, targets, count);
}
2022-07-28 13:39:57 +00:00
if (count > 0 && !ignoreAchievements) {
LookForAchievements(type, value, true, associate, targets, count);
}
}
void MissionComponent::ForceProgress(const uint32_t missionId, const uint32_t taskId, const int32_t value, const bool acceptMission) {
2022-07-28 13:39:57 +00:00
auto* mission = GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission == nullptr) {
if (!acceptMission) {
return;
}
2022-07-28 13:39:57 +00:00
AcceptMission(missionId);
2022-07-28 13:39:57 +00:00
mission = GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission == nullptr) {
return;
}
}
2022-07-28 13:39:57 +00:00
for (auto* element : mission->GetTasks()) {
if (element->GetClientInfo().uid != taskId) continue;
2022-07-28 13:39:57 +00:00
element->AddProgress(value);
}
2022-07-28 13:39:57 +00:00
if (!mission->IsComplete()) {
mission->CheckCompletion();
}
}
void MissionComponent::ForceProgressTaskType(const uint32_t missionId, const uint32_t taskType, const int32_t value, const bool acceptMission) {
2022-07-28 13:39:57 +00:00
auto* mission = GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission == nullptr) {
if (!acceptMission) {
return;
}
2022-07-28 13:39:57 +00:00
CDMissions missionInfo;
2022-07-28 13:39:57 +00:00
if (!GetMissionInfo(missionId, missionInfo)) {
return;
}
2022-07-28 13:39:57 +00:00
if (missionInfo.isMission) {
return;
}
2022-07-28 13:39:57 +00:00
AcceptMission(missionId);
2022-07-28 13:39:57 +00:00
mission = GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission == nullptr) {
return;
}
}
2022-07-28 13:39:57 +00:00
for (auto* element : mission->GetTasks()) {
if (element->GetType() != static_cast<MissionTaskType>(taskType)) continue;
2022-07-28 13:39:57 +00:00
element->AddProgress(value);
}
2022-07-28 13:39:57 +00:00
if (!mission->IsComplete()) {
mission->CheckCompletion();
}
}
2022-07-28 13:39:57 +00:00
void MissionComponent::ForceProgressValue(uint32_t missionId, uint32_t taskType, int32_t value, bool acceptMission) {
auto* mission = GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission == nullptr) {
if (!acceptMission) {
return;
}
2022-07-28 13:39:57 +00:00
CDMissions missionInfo;
2022-07-28 13:39:57 +00:00
if (!GetMissionInfo(missionId, missionInfo)) {
return;
}
2022-07-28 13:39:57 +00:00
if (missionInfo.isMission) {
return;
}
2022-07-28 13:39:57 +00:00
AcceptMission(missionId);
2022-07-28 13:39:57 +00:00
mission = GetMission(missionId);
2022-07-28 13:39:57 +00:00
if (mission == nullptr) {
return;
}
}
2022-07-28 13:39:57 +00:00
for (auto* element : mission->GetTasks()) {
if (element->GetType() != static_cast<MissionTaskType>(taskType) || !element->InAllTargets(value)) continue;
2022-07-28 13:39:57 +00:00
element->AddProgress(1);
}
2022-07-28 13:39:57 +00:00
if (!mission->IsComplete()) {
mission->CheckCompletion();
}
}
bool MissionComponent::GetMissionInfo(uint32_t missionId, CDMissions& result) {
2022-07-28 13:39:57 +00:00
auto* missionsTable = CDClientManager::Instance()->GetTable<CDMissionsTable>("Missions");
2022-07-28 13:39:57 +00:00
const auto missions = missionsTable->Query([=](const CDMissions& entry) {
return entry.id == static_cast<int>(missionId);
});
2022-07-28 13:39:57 +00:00
if (missions.empty()) {
return false;
}
2022-07-28 13:39:57 +00:00
result = missions[0];
2022-07-28 13:39:57 +00:00
return true;
}
#define MISSION_NEW_METHOD
bool MissionComponent::LookForAchievements(MissionTaskType type, int32_t value, bool progress, LWOOBJID associate, const std::string& targets, int32_t count) {
#ifdef MISSION_NEW_METHOD
2022-07-28 13:39:57 +00:00
// Query for achievments, using the cache
const auto& result = QueryAchievements(type, value, targets);
2022-07-28 13:39:57 +00:00
bool any = false;
2022-07-28 13:39:57 +00:00
for (const uint32_t missionID : result) {
// Check if we already have this achievement
if (GetMission(missionID) != nullptr) {
continue;
}
2022-07-28 13:39:57 +00:00
// Check if we can accept this achievement
if (!MissionPrerequisites::CanAccept(missionID, m_Missions)) {
continue;
}
2022-07-28 13:39:57 +00:00
// Instantiate new mission and accept it
auto* instance = new Mission(this, missionID);
2022-07-28 13:39:57 +00:00
m_Missions.insert_or_assign(missionID, instance);
if (instance->IsMission()) instance->SetUniqueMissionOrderID(++m_LastUsedMissionOrderUID);
2022-07-28 13:39:57 +00:00
instance->Accept();
2022-07-28 13:39:57 +00:00
any = true;
2022-07-28 13:39:57 +00:00
if (progress) {
// Progress mission to bring it up to speed
instance->Progress(type, value, associate, targets, count);
}
}
2022-07-28 13:39:57 +00:00
return any;
#else
2022-07-28 13:39:57 +00:00
auto* missionTasksTable = CDClientManager::Instance()->GetTable<CDMissionTasksTable>("MissionTasks");
auto* missionsTable = CDClientManager::Instance()->GetTable<CDMissionsTable>("Missions");
2022-07-28 13:39:57 +00:00
auto tasks = missionTasksTable->Query([=](const CDMissionTasks& entry) {
return entry.taskType == static_cast<unsigned>(type);
});
2022-07-28 13:39:57 +00:00
auto any = false;
2022-07-28 13:39:57 +00:00
for (const auto& task : tasks) {
if (GetMission(task.id) != nullptr) {
continue;
}
2022-07-28 13:39:57 +00:00
const auto missionEntries = missionsTable->Query([=](const CDMissions& entry) {
return entry.id == static_cast<int>(task.id) && !entry.isMission;
});
2022-07-28 13:39:57 +00:00
if (missionEntries.empty()) {
continue;
}
2022-07-28 13:39:57 +00:00
const auto mission = missionEntries[0];
2022-07-28 13:39:57 +00:00
if (mission.isMission || !MissionPrerequisites::CanAccept(mission.id, m_Missions)) {
continue;
}
2022-07-28 13:39:57 +00:00
if (task.target != value && task.targetGroup != targets) {
auto stream = std::istringstream(task.targetGroup);
std::string token;
2022-07-28 13:39:57 +00:00
auto found = false;
2022-07-28 13:39:57 +00:00
while (std::getline(stream, token, ',')) {
try {
const auto target = std::stoul(token);
2022-07-28 13:39:57 +00:00
found = target == value;
2022-07-28 13:39:57 +00:00
if (found) {
break;
}
} catch (std::invalid_argument& exception) {
Game::logger->Log("MissionComponent", "Failed to parse target (%s): (%s)!", token.c_str(), exception.what());
}
}
2022-07-28 13:39:57 +00:00
if (!found) {
continue;
}
}
2022-07-28 13:39:57 +00:00
auto* instance = new Mission(this, mission.id);
2022-07-28 13:39:57 +00:00
m_Missions.insert_or_assign(mission.id, instance);
if (instance->IsMission()) instance->SetUniqueMissionOrderID(++m_LastUsedMissionOrderUID);
2022-07-28 13:39:57 +00:00
instance->Accept();
2022-07-28 13:39:57 +00:00
any = true;
2022-07-28 13:39:57 +00:00
if (progress) {
instance->Progress(type, value, associate, targets, count);
}
}
2022-07-28 13:39:57 +00:00
return any;
#endif
}
const std::vector<uint32_t>& MissionComponent::QueryAchievements(MissionTaskType type, int32_t value, const std::string targets) {
2022-07-28 13:39:57 +00:00
// Create a hash which represent this query for achievements
size_t hash = 0;
GeneralUtils::hash_combine(hash, type);
GeneralUtils::hash_combine(hash, value);
GeneralUtils::hash_combine(hash, targets);
2022-07-28 13:39:57 +00:00
const std::unordered_map<size_t, std::vector<uint32_t>>::iterator& iter = m_AchievementCache.find(hash);
2022-07-28 13:39:57 +00:00
// Check if this query is cached
if (iter != m_AchievementCache.end()) {
return iter->second;
}
2022-07-28 13:39:57 +00:00
// Find relevent tables
auto* missionTasksTable = CDClientManager::Instance()->GetTable<CDMissionTasksTable>("MissionTasks");
auto* missionsTable = CDClientManager::Instance()->GetTable<CDMissionsTable>("Missions");
2022-07-28 13:39:57 +00:00
std::vector<uint32_t> result;
2022-07-28 13:39:57 +00:00
// Loop through all mission tasks, might cache this task check later
for (const auto& task : missionTasksTable->GetEntries()) {
if (task.taskType != static_cast<uint32_t>(type)) {
continue;
}
2022-07-28 13:39:57 +00:00
// Seek the assosicated mission
auto foundMission = false;
2022-07-28 13:39:57 +00:00
const auto& mission = missionsTable->GetByMissionID(task.id, foundMission);
2022-07-28 13:39:57 +00:00
if (!foundMission || mission.isMission) {
continue;
}
2022-07-28 13:39:57 +00:00
// Compare the easy values
if (task.target == value || task.targetGroup == targets) {
result.push_back(mission.id);
2022-07-28 13:39:57 +00:00
continue;
}
2022-07-28 13:39:57 +00:00
// Compare the target group, array separated by ','
auto stream = std::istringstream(task.targetGroup);
std::string token;
2022-07-28 13:39:57 +00:00
while (std::getline(stream, token, ',')) {
try {
if (std::stoi(token) == value) {
result.push_back(mission.id);
2022-07-28 13:39:57 +00:00
continue;
}
} catch (std::invalid_argument& exception) {
// Ignored
}
}
}
2022-07-28 13:39:57 +00:00
// Insert into cache
m_AchievementCache.insert_or_assign(hash, result);
2022-07-28 13:39:57 +00:00
return m_AchievementCache.find(hash)->second;
}
bool MissionComponent::RequiresItem(const LOT lot) {
2022-07-28 13:39:57 +00:00
auto query = CDClientDatabase::CreatePreppedStmt(
"SELECT type FROM Objects WHERE id = ?;");
query.bind(1, (int)lot);
2022-07-28 13:39:57 +00:00
auto result = query.execQuery();
2022-07-28 13:39:57 +00:00
if (result.eof()) {
return false;
}
2022-07-28 13:39:57 +00:00
if (!result.fieldIsNull(0)) {
const auto type = std::string(result.getStringField(0));
2022-07-28 13:39:57 +00:00
result.finalize();
2022-07-28 13:39:57 +00:00
if (type == "Powerup") {
return true;
}
}
2022-07-28 13:39:57 +00:00
result.finalize();
2022-07-28 13:39:57 +00:00
for (const auto& pair : m_Missions) {
auto* mission = pair.second;
2022-07-28 13:39:57 +00:00
if (mission->IsComplete()) {
continue;
}
2022-07-28 13:39:57 +00:00
for (auto* task : mission->GetTasks()) {
if (task->IsComplete() || task->GetType() != MissionTaskType::MISSION_TASK_TYPE_ITEM_COLLECTION) {
continue;
}
2022-07-28 13:39:57 +00:00
if (!task->InAllTargets(lot)) {
continue;
}
2022-07-28 13:39:57 +00:00
return true;
}
}
2022-07-28 13:39:57 +00:00
const auto required = LookForAchievements(MissionTaskType::MISSION_TASK_TYPE_ITEM_COLLECTION, lot, false);
2022-07-28 13:39:57 +00:00
return required;
}
void MissionComponent::LoadFromXml(tinyxml2::XMLDocument* doc) {
2022-07-28 13:39:57 +00:00
if (doc == nullptr) return;
2022-07-28 13:39:57 +00:00
auto* mis = doc->FirstChildElement("obj")->FirstChildElement("mis");
2022-07-28 13:39:57 +00:00
if (mis == nullptr) return;
2022-07-28 13:39:57 +00:00
auto* cur = mis->FirstChildElement("cur");
auto* done = mis->FirstChildElement("done");
2022-07-28 13:39:57 +00:00
auto* doneM = done->FirstChildElement();
2022-07-28 13:39:57 +00:00
while (doneM) {
int missionId;
2022-07-28 13:39:57 +00:00
doneM->QueryAttribute("id", &missionId);
2022-07-28 13:39:57 +00:00
auto* mission = new Mission(this, missionId);
2022-07-28 13:39:57 +00:00
mission->LoadFromXml(doneM);
2022-07-28 13:39:57 +00:00
doneM = doneM->NextSiblingElement();
2022-07-28 13:39:57 +00:00
m_Missions.insert_or_assign(missionId, mission);
}
2022-07-28 13:39:57 +00:00
auto* currentM = cur->FirstChildElement();
uint32_t missionOrder{};
2022-07-28 13:39:57 +00:00
while (currentM) {
int missionId;
2022-07-28 13:39:57 +00:00
currentM->QueryAttribute("id", &missionId);
2022-07-28 13:39:57 +00:00
auto* mission = new Mission(this, missionId);
2022-07-28 13:39:57 +00:00
mission->LoadFromXml(currentM);
if (currentM->QueryAttribute("o", &missionOrder) == tinyxml2::XML_SUCCESS && mission->IsMission()) {
mission->SetUniqueMissionOrderID(missionOrder);
if (missionOrder > m_LastUsedMissionOrderUID) m_LastUsedMissionOrderUID = missionOrder;
}
2022-07-28 13:39:57 +00:00
currentM = currentM->NextSiblingElement();
2022-07-28 13:39:57 +00:00
m_Missions.insert_or_assign(missionId, mission);
}
}
void MissionComponent::UpdateXml(tinyxml2::XMLDocument* doc) {
2022-07-28 13:39:57 +00:00
if (doc == nullptr) return;
2022-07-28 13:39:57 +00:00
auto shouldInsertMis = false;
2022-07-28 13:39:57 +00:00
auto* obj = doc->FirstChildElement("obj");
2022-07-28 13:39:57 +00:00
auto* mis = obj->FirstChildElement("mis");
2022-07-28 13:39:57 +00:00
if (mis == nullptr) {
mis = doc->NewElement("mis");
2022-07-28 13:39:57 +00:00
shouldInsertMis = true;
}
2022-07-28 13:39:57 +00:00
mis->DeleteChildren();
2022-07-28 13:39:57 +00:00
auto* done = doc->NewElement("done");
auto* cur = doc->NewElement("cur");
2022-07-28 13:39:57 +00:00
for (const auto& pair : m_Missions) {
auto* mission = pair.second;
2022-07-28 13:39:57 +00:00
if (mission) {
const auto complete = mission->IsComplete();
auto* m = doc->NewElement("m");
if (complete) {
2022-07-28 13:39:57 +00:00
mission->UpdateXml(m);
2022-07-28 13:39:57 +00:00
done->LinkEndChild(m);
2022-07-28 13:39:57 +00:00
continue;
}
if (mission->IsMission()) m->SetAttribute("o", mission->GetUniqueMissionOrderID());
2022-07-28 13:39:57 +00:00
mission->UpdateXml(m);
2022-07-28 13:39:57 +00:00
cur->LinkEndChild(m);
}
}
2022-07-28 13:39:57 +00:00
mis->InsertFirstChild(done);
mis->InsertEndChild(cur);
2022-07-28 13:39:57 +00:00
if (shouldInsertMis) {
obj->LinkEndChild(mis);
}
}
2022-07-28 13:39:57 +00:00
void MissionComponent::AddCollectible(int32_t collectibleID) {
// Check if this collectible is already in the list
if (HasCollectible(collectibleID)) {
return;
}
2022-07-28 13:39:57 +00:00
m_Collectibles.push_back(collectibleID);
}
2022-07-28 13:39:57 +00:00
bool MissionComponent::HasCollectible(int32_t collectibleID) {
return std::find(m_Collectibles.begin(), m_Collectibles.end(), collectibleID) != m_Collectibles.end();
}
2022-07-28 13:39:57 +00:00
bool MissionComponent::HasMission(uint32_t missionId) {
return GetMission(missionId) != nullptr;
}