mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
4104 lines
121 KiB
C++
4104 lines
121 KiB
C++
|
|
/* EQEMu: Everquest Server Emulator
|
|
Copyright (C) 2001-2008 EQEMu Development Team (http://eqemulator.net)
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY except by those people which sell it, which
|
|
are required to give you total support for your newly bought product;
|
|
without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "../common/global_define.h"
|
|
#include "tasks.h"
|
|
|
|
#include <string.h>
|
|
|
|
#ifdef _WINDOWS
|
|
#define strcasecmp _stricmp
|
|
#endif
|
|
|
|
#include "../common/misc_functions.h"
|
|
#include "../common/rulesys.h"
|
|
#include "../common/string_util.h"
|
|
#include "../common/say_link.h"
|
|
#include "zonedb.h"
|
|
#include "../common/repositories/goallists_repository.h"
|
|
#include "client.h"
|
|
#include "mob.h"
|
|
#include "string_ids.h"
|
|
|
|
#include "queryserv.h"
|
|
#include "quest_parser_collection.h"
|
|
#include "../common/repositories/completed_tasks_repository.h"
|
|
#include "../common/repositories/tasksets_repository.h"
|
|
#include "../common/repositories/tasks_repository.h"
|
|
#include "../common/repositories/task_activities_repository.h"
|
|
#include "../common/repositories/character_activities_repository.h"
|
|
#include "../common/repositories/character_tasks_repository.h"
|
|
#include "../common/repositories/proximities_repository.h"
|
|
|
|
extern QueryServ *QServ;
|
|
|
|
TaskManager::TaskManager()
|
|
{
|
|
for (auto &task : p_task_data) {
|
|
task = nullptr;
|
|
}
|
|
}
|
|
|
|
TaskManager::~TaskManager()
|
|
{
|
|
for (auto &task : p_task_data) {
|
|
if (task != nullptr) {
|
|
safe_delete(task);
|
|
}
|
|
}
|
|
}
|
|
|
|
bool TaskManager::LoadTaskSets()
|
|
{
|
|
// Clear all task sets in memory. Done so we can reload them on the fly if required by just calling
|
|
// this method again.
|
|
for (auto &task_set : task_sets) {
|
|
task_set.clear();
|
|
}
|
|
|
|
auto rows = TasksetsRepository::GetWhere(
|
|
content_db,
|
|
fmt::format(
|
|
"`id` > 0 AND `id` < {} AND `taskid` >= 0 AND `taskid` < {} ORDER BY `id`, `taskid` ASC",
|
|
MAXTASKSETS,
|
|
MAXTASKS
|
|
)
|
|
);
|
|
|
|
for (auto &task_set: rows) {
|
|
task_sets[task_set.id].push_back(task_set.taskid);
|
|
LogTasksDetail("[LoadTaskSets] Adding task_id [{}] to task_set [{}]", task_set.taskid, task_set.id);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void TaskManager::ReloadGoalLists()
|
|
{
|
|
if (!goal_list_manager.LoadLists()) {
|
|
Log(Logs::Detail, Logs::Tasks, "TaskManager::LoadTasks LoadLists failed");
|
|
}
|
|
}
|
|
|
|
bool TaskManager::LoadTasks(int single_task)
|
|
{
|
|
std::string task_query_filter = fmt::format("id = {}", single_task);
|
|
std::string query;
|
|
if (single_task == 0) {
|
|
if (!goal_list_manager.LoadLists()) {
|
|
LogTasks("[TaskManager::LoadTasks] LoadLists failed");
|
|
}
|
|
|
|
if (!LoadTaskSets()) {
|
|
LogTasks("[TaskManager::LoadTasks] LoadTaskSets failed");
|
|
}
|
|
|
|
task_query_filter = fmt::format("id < {}", MAXTASKS);
|
|
}
|
|
|
|
// load task level data
|
|
auto repo_tasks = TasksRepository::GetWhere(content_db, task_query_filter);
|
|
|
|
for (auto &task: repo_tasks) {
|
|
int task_id = task.id;
|
|
|
|
if ((task_id <= 0) || (task_id >= MAXTASKS)) {
|
|
// This shouldn't happen, as the SELECT is bounded by MAXTASKS
|
|
LogError("[TASKS]Task ID [{}] out of range while loading tasks from database", task_id);
|
|
continue;
|
|
}
|
|
|
|
// load task data
|
|
p_task_data[task_id] = new TaskInformation;
|
|
p_task_data[task_id]->type = static_cast<TaskType>(task.type);
|
|
p_task_data[task_id]->duration = task.duration;
|
|
p_task_data[task_id]->duration_code = static_cast<DurationCode>(task.duration_code);
|
|
p_task_data[task_id]->title = task.title;
|
|
p_task_data[task_id]->description = task.description;
|
|
p_task_data[task_id]->reward = task.reward;
|
|
p_task_data[task_id]->reward_id = task.rewardid;
|
|
p_task_data[task_id]->cash_reward = task.cashreward;
|
|
p_task_data[task_id]->experience_reward = task.xpreward;
|
|
p_task_data[task_id]->reward_method = (TaskMethodType) task.rewardmethod;
|
|
p_task_data[task_id]->faction_reward = task.faction_reward;
|
|
p_task_data[task_id]->min_level = task.minlevel;
|
|
p_task_data[task_id]->max_level = task.maxlevel;
|
|
p_task_data[task_id]->repeatable = task.repeatable;
|
|
p_task_data[task_id]->completion_emote = task.completion_emote;
|
|
p_task_data[task_id]->activity_count = 0;
|
|
p_task_data[task_id]->sequence_mode = ActivitiesSequential;
|
|
p_task_data[task_id]->last_step = 0;
|
|
|
|
LogTasksDetail(
|
|
"[LoadTasks] (Task) task_id [{}] type [{}] duration [{}] duration_code [{}] title [{}] description [{}] "
|
|
" reward [{}] rewardid [{}] cashreward [{}] xpreward [{}] rewardmethod [{}] faction_reward [{}] minlevel [{}] "
|
|
" maxlevel [{}] repeatable [{}] completion_emote [{}] ",
|
|
task.id,
|
|
task.type,
|
|
task.duration,
|
|
task.duration_code,
|
|
task.title,
|
|
task.description,
|
|
task.reward,
|
|
task.rewardid,
|
|
task.cashreward,
|
|
task.xpreward,
|
|
task.rewardmethod,
|
|
task.faction_reward,
|
|
task.minlevel,
|
|
task.maxlevel,
|
|
task.repeatable,
|
|
task.completion_emote
|
|
);
|
|
}
|
|
|
|
LogTasks("Loaded [{}] Tasks", repo_tasks.size());
|
|
|
|
std::string activities_query_filter = fmt::format(
|
|
"taskid = {} and activityid < {} ORDER BY taskid, activityid ASC",
|
|
single_task,
|
|
MAXACTIVITIESPERTASK
|
|
);
|
|
|
|
// if loading only a single task
|
|
if (single_task == 0) {
|
|
activities_query_filter = fmt::format(
|
|
"taskid < {} and activityid < {} ORDER BY taskid, activityid ASC",
|
|
MAXTASKS,
|
|
MAXACTIVITIESPERTASK
|
|
);
|
|
}
|
|
|
|
// load activity data
|
|
auto task_activities = TaskActivitiesRepository::GetWhere(content_db, activities_query_filter);
|
|
for (auto &task_activity: task_activities) {
|
|
int task_id = task_activity.taskid;
|
|
int step = task_activity.step;
|
|
int activity_id = task_activity.activityid;
|
|
|
|
// create pointer to activity data since declarations get unruly long
|
|
int activity_index = p_task_data[task_id]->activity_count;
|
|
ActivityInformation *p_activity_data = &p_task_data[task_id]->activity_information[activity_index];
|
|
|
|
if ((task_id <= 0) || (task_id >= MAXTASKS) || (activity_id < 0) || (activity_id >= MAXACTIVITIESPERTASK)) {
|
|
|
|
// This shouldn't happen, as the SELECT is bounded by MAXTASKS
|
|
LogTasks(
|
|
"Error: Task or activity_information ID ([{}], [{}]) out of range while loading activities from database",
|
|
task_id,
|
|
activity_id
|
|
);
|
|
continue;
|
|
}
|
|
|
|
if (p_task_data[task_id] == nullptr) {
|
|
LogTasks(
|
|
"Error: activity_information for non-existent task ([{}], [{}]) while loading activities from database",
|
|
task_id,
|
|
activity_id
|
|
);
|
|
continue;
|
|
}
|
|
|
|
p_task_data[task_id]->activity_information[p_task_data[task_id]->activity_count].step_number = step;
|
|
|
|
if (step != 0) {
|
|
p_task_data[task_id]->sequence_mode = ActivitiesStepped;
|
|
}
|
|
|
|
if (step > p_task_data[task_id]->last_step) {
|
|
p_task_data[task_id]->last_step = step;
|
|
}
|
|
|
|
// Task Activities MUST be numbered sequentially from 0. If not, log an error
|
|
// and set the task to nullptr. Subsequent activities for this task will raise
|
|
// ERR_NOTASK errors.
|
|
// Change to (activityID != (Tasks[taskID]->activity_count + 1)) to index from 1
|
|
if (activity_id != p_task_data[task_id]->activity_count) {
|
|
LogError("[TASKS]Activities for Task [{}] are not sequential starting at 0. Not loading task",
|
|
task_id,
|
|
activity_id);
|
|
p_task_data[task_id] = nullptr;
|
|
continue;
|
|
}
|
|
|
|
// set activity data
|
|
p_activity_data->activity_type = task_activity.activitytype;
|
|
p_activity_data->target_name = task_activity.target_name;
|
|
p_activity_data->item_list = task_activity.item_list;
|
|
p_activity_data->skill_list = task_activity.skill_list;
|
|
p_activity_data->skill_id = std::stoi(task_activity.skill_list); // for older clients
|
|
p_activity_data->spell_list = task_activity.spell_list;
|
|
p_activity_data->spell_id = std::stoi(task_activity.spell_list); // for older clients
|
|
p_activity_data->description_override = task_activity.description_override;
|
|
p_activity_data->goal_id = task_activity.goalid;
|
|
p_activity_data->goal_method = (TaskMethodType) task_activity.goalmethod;
|
|
p_activity_data->goal_count = task_activity.goalcount;
|
|
p_activity_data->deliver_to_npc = task_activity.delivertonpc;
|
|
|
|
// zones
|
|
p_activity_data->zones = task_activity.zones;
|
|
auto zones = SplitString(
|
|
task_activity.zones,
|
|
';'
|
|
);
|
|
|
|
for (auto &&e : zones) {
|
|
p_activity_data->zone_ids.push_back(std::stoi(e));
|
|
}
|
|
|
|
p_activity_data->optional = task_activity.optional;
|
|
|
|
LogTasksDetail(
|
|
"[LoadTasks] (Activity) task_id [{}] activity_id [{}] slot [{}] activity_type [{}] goal_id [{}] goal_method [{}] goal_count [{}] zones [{}]"
|
|
" target_name [{}] item_list [{}] skill_list [{}] spell_list [{}] description_override [{}]",
|
|
task_id,
|
|
activity_id,
|
|
p_task_data[task_id]->activity_count,
|
|
p_activity_data->activity_type,
|
|
p_activity_data->goal_id,
|
|
p_activity_data->goal_method,
|
|
p_activity_data->goal_count,
|
|
p_activity_data->zones.c_str(),
|
|
p_activity_data->target_name.c_str(),
|
|
p_activity_data->item_list.c_str(),
|
|
p_activity_data->skill_list.c_str(),
|
|
p_activity_data->spell_list.c_str(),
|
|
p_activity_data->description_override.c_str()
|
|
);
|
|
|
|
p_task_data[task_id]->activity_count++;
|
|
}
|
|
|
|
LogTasks("Loaded [{}] Task Activities", task_activities.size());
|
|
|
|
return true;
|
|
}
|
|
|
|
bool TaskManager::SaveClientState(Client *client, ClientTaskState *client_task_state)
|
|
{
|
|
// I am saving the slot in the ActiveTasks table, because unless a Task is cancelled/completed, the client
|
|
// doesn't seem to like tasks moving slots between zoning and you can end up with 'bogus' activities if the task
|
|
// previously in that slot had more activities than the one now occupying it. Hopefully retaining the slot
|
|
// number for the duration of a session will overcome this.
|
|
if (!client || !client_task_state) {
|
|
return false;
|
|
}
|
|
|
|
const char *ERR_MYSQLERROR = "[TASKS]Error in TaskManager::SaveClientState %s";
|
|
|
|
int character_id = client->CharacterID();
|
|
|
|
LogTasks("[SaveClientState] character_id [{}]", character_id);
|
|
|
|
if (client_task_state->active_task_count > 0 ||
|
|
client_task_state->active_task.task_id != TASKSLOTEMPTY) { // TODO: tasks
|
|
for (auto &active_task : client_task_state->active_tasks) {
|
|
int task_id = active_task.task_id;
|
|
if (task_id == TASKSLOTEMPTY) {
|
|
continue;
|
|
}
|
|
|
|
int slot = active_task.slot;
|
|
if (active_task.updated) {
|
|
|
|
LogTasks(
|
|
"[SaveClientState] character_id [{}] updating task_index [{}] task_id [{}]",
|
|
character_id,
|
|
slot,
|
|
task_id
|
|
);
|
|
|
|
std::string query = StringFormat(
|
|
"REPLACE INTO character_tasks (charid, taskid, slot, type, acceptedtime) "
|
|
"VALUES (%i, %i, %i, %i, %i)",
|
|
character_id,
|
|
task_id,
|
|
slot,
|
|
static_cast<int>(p_task_data[task_id]->type),
|
|
active_task.accepted_time
|
|
);
|
|
|
|
auto results = database.QueryDatabase(query);
|
|
if (!results.Success()) {
|
|
LogError(ERR_MYSQLERROR, results.ErrorMessage().c_str());
|
|
}
|
|
else {
|
|
active_task.updated = false;
|
|
}
|
|
}
|
|
|
|
std::string query =
|
|
"REPLACE INTO character_activities (charid, taskid, activityid, donecount, completed) "
|
|
"VALUES ";
|
|
|
|
int updated_activity_count = 0;
|
|
|
|
for (int activity_index = 0; activity_index < p_task_data[task_id]->activity_count; ++activity_index) {
|
|
if (!active_task.activity[activity_index].updated) {
|
|
continue;
|
|
}
|
|
|
|
LogTasks(
|
|
"[SaveClientState] Updating activity character_id [{}] updating task_index [{}] task_id [{}] activity_index [{}]",
|
|
character_id,
|
|
slot,
|
|
task_id,
|
|
activity_index
|
|
);
|
|
|
|
if (updated_activity_count == 0) {
|
|
query +=
|
|
StringFormat(
|
|
"(%i, %i, %i, %i, %i)", character_id, task_id, activity_index,
|
|
active_task.activity[activity_index].done_count,
|
|
active_task.activity[activity_index].activity_state ==
|
|
ActivityCompleted
|
|
);
|
|
}
|
|
else {
|
|
query +=
|
|
StringFormat(
|
|
", (%i, %i, %i, %i, %i)", character_id, task_id, activity_index,
|
|
active_task.activity[activity_index].done_count,
|
|
active_task.activity[activity_index].activity_state ==
|
|
ActivityCompleted
|
|
);
|
|
}
|
|
|
|
updated_activity_count++;
|
|
}
|
|
|
|
if (updated_activity_count == 0) {
|
|
continue;
|
|
}
|
|
|
|
auto results = database.QueryDatabase(query);
|
|
|
|
if (!results.Success()) {
|
|
LogError(ERR_MYSQLERROR, results.ErrorMessage().c_str());
|
|
continue;
|
|
}
|
|
|
|
active_task.updated = false;
|
|
for (int activity_index = 0;
|
|
activity_index < p_task_data[task_id]->activity_count;
|
|
++activity_index)
|
|
active_task.activity[activity_index].updated = false;
|
|
}
|
|
}
|
|
|
|
if (!RuleB(TaskSystem, RecordCompletedTasks) ||
|
|
(client_task_state->completed_tasks.size() <= (unsigned int) client_task_state->last_completed_task_loaded)) {
|
|
client_task_state->last_completed_task_loaded = client_task_state->completed_tasks.size();
|
|
return true;
|
|
}
|
|
|
|
const char *completed_task_query = "REPLACE INTO completed_tasks (charid, completedtime, taskid, activityid) "
|
|
"VALUES (%i, %i, %i, %i)";
|
|
|
|
for (unsigned int task_index = client_task_state->last_completed_task_loaded;
|
|
task_index < client_task_state->completed_tasks.size();
|
|
task_index++) {
|
|
|
|
int task_id = client_task_state->completed_tasks[task_index].task_id;
|
|
|
|
if ((task_id <= 0) || (task_id >= MAXTASKS) || (p_task_data[task_id] == nullptr)) {
|
|
continue;
|
|
}
|
|
|
|
// First we save a record with an activity_id of -1.
|
|
// This indicates this task was completed at the given time. We infer that all
|
|
// none optional activities were completed.
|
|
//
|
|
std::string query = StringFormat(
|
|
completed_task_query,
|
|
character_id,
|
|
client_task_state->completed_tasks[task_index].completed_time,
|
|
task_id,
|
|
-1
|
|
);
|
|
|
|
auto results = database.QueryDatabase(query);
|
|
if (!results.Success()) {
|
|
LogError(ERR_MYSQLERROR, results.ErrorMessage().c_str());
|
|
continue;
|
|
}
|
|
|
|
// If the Rule to record non-optional task completion is not enabled, don't save it
|
|
if (!RuleB(TaskSystem, RecordCompletedOptionalActivities)) {
|
|
continue;
|
|
}
|
|
|
|
// Insert one record for each completed optional task.
|
|
for (int activity_id = 0; activity_id < p_task_data[task_id]->activity_count; activity_id++) {
|
|
if (!p_task_data[task_id]->activity_information[activity_id].optional ||
|
|
!client_task_state->completed_tasks[task_index].activity_done[activity_id]) {
|
|
continue;
|
|
}
|
|
|
|
query = StringFormat(
|
|
completed_task_query,
|
|
character_id,
|
|
client_task_state->completed_tasks[task_index].completed_time,
|
|
task_id, activity_id
|
|
);
|
|
|
|
results = database.QueryDatabase(query);
|
|
if (!results.Success()) {
|
|
LogError(ERR_MYSQLERROR, results.ErrorMessage().c_str());
|
|
}
|
|
}
|
|
}
|
|
|
|
client_task_state->last_completed_task_loaded = client_task_state->completed_tasks.size();
|
|
return true;
|
|
}
|
|
|
|
void Client::LoadClientTaskState()
|
|
{
|
|
if (RuleB(TaskSystem, EnableTaskSystem) && p_task_manager) {
|
|
if (task_state) {
|
|
safe_delete(task_state);
|
|
}
|
|
|
|
task_state = new ClientTaskState;
|
|
if (!p_task_manager->LoadClientState(this, task_state)) {
|
|
safe_delete(task_state);
|
|
}
|
|
else {
|
|
p_task_manager->SendActiveTasksToClient(this);
|
|
p_task_manager->SendCompletedTasksToClient(this, task_state);
|
|
}
|
|
}
|
|
}
|
|
|
|
void Client::RemoveClientTaskState()
|
|
{
|
|
if (task_state) {
|
|
task_state->CancelAllTasks(this);
|
|
safe_delete(task_state);
|
|
}
|
|
}
|
|
|
|
bool TaskManager::LoadClientState(Client *client, ClientTaskState *client_task_state)
|
|
{
|
|
if (!client || !client_task_state) {
|
|
return false;
|
|
}
|
|
|
|
int character_id = client->CharacterID();
|
|
|
|
client_task_state->active_task_count = 0;
|
|
|
|
LogTasks("[LoadClientState] for character_id [{}]", character_id);
|
|
|
|
auto character_tasks = CharacterTasksRepository::GetWhere(
|
|
database,
|
|
fmt::format("charid = {} ORDER BY acceptedtime", character_id)
|
|
);
|
|
|
|
for (auto &character_task: character_tasks) {
|
|
int task_id = character_task.taskid;
|
|
int slot = character_task.slot;
|
|
auto type = static_cast<TaskType>(character_task.type);
|
|
|
|
if ((task_id < 0) || (task_id >= MAXTASKS)) {
|
|
LogTasks("[LoadClientState] Error: task_id [{}] out of range while loading character tasks from database",
|
|
task_id);
|
|
continue;
|
|
}
|
|
|
|
auto task_info = client_task_state->GetClientTaskInfo(type, slot);
|
|
|
|
if (task_info == nullptr) {
|
|
LogTasks("[LoadClientState] Error: slot [{}] out of range while loading character tasks from database",
|
|
slot);
|
|
continue;
|
|
}
|
|
|
|
if (task_info->task_id != TASKSLOTEMPTY) {
|
|
LogTasks("[LoadClientState] Error: slot [{}] for task [{}] is already occupied", slot, task_id);
|
|
continue;
|
|
}
|
|
|
|
task_info->task_id = task_id;
|
|
task_info->current_step = -1;
|
|
task_info->accepted_time = character_task.acceptedtime;
|
|
task_info->updated = false;
|
|
|
|
for (auto &i : task_info->activity) {
|
|
i.activity_id = -1;
|
|
}
|
|
|
|
if (type == TaskType::Quest) {
|
|
++client_task_state->active_task_count;
|
|
}
|
|
|
|
LogTasks(
|
|
"[LoadClientState] character_id [{}] task_id [{}] accepted_time [{}]",
|
|
character_id,
|
|
task_id,
|
|
character_task.acceptedtime
|
|
);
|
|
}
|
|
|
|
// Load Activities
|
|
LogTasks("[LoadClientState] Loading activities for character_id [{}]", character_id);
|
|
|
|
auto character_activities = CharacterActivitiesRepository::GetWhere(
|
|
database,
|
|
fmt::format("charid = {} ORDER BY `taskid` ASC, `activityid` ASC", character_id)
|
|
);
|
|
|
|
for (auto &character_activity: character_activities) {
|
|
int task_id = character_activity.taskid;
|
|
if ((task_id < 0) || (task_id >= MAXTASKS)) {
|
|
LogTasks(
|
|
"[LoadClientState] Error: task_id [{}] out of range while loading character activities from database character_id [{}]",
|
|
task_id,
|
|
character_id
|
|
);
|
|
continue;
|
|
}
|
|
|
|
int activity_id = character_activity.activityid;
|
|
if ((activity_id < 0) || (activity_id >= MAXACTIVITIESPERTASK)) {
|
|
LogTasks(
|
|
"[LoadClientState] Error: activity_id [{}] out of range while loading character activities from database character_id [{}]",
|
|
activity_id,
|
|
character_id
|
|
);
|
|
|
|
continue;
|
|
}
|
|
|
|
ClientTaskInformation *task_info = nullptr;
|
|
if (client_task_state->active_task.task_id == task_id) {
|
|
task_info = &client_task_state->active_task;
|
|
}
|
|
|
|
// wasn't task
|
|
if (task_info == nullptr) {
|
|
for (auto &active_quest : client_task_state->active_quests) {
|
|
if (active_quest.task_id == task_id) {
|
|
task_info = &active_quest;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (task_info == nullptr) {
|
|
LogTasks(
|
|
"[LoadClientState] Error: activity_id [{}] found for task_id [{}] which client does not have character_id [{}]",
|
|
activity_id,
|
|
task_id,
|
|
character_id
|
|
);
|
|
|
|
continue;
|
|
}
|
|
|
|
task_info->activity[activity_id].activity_id = activity_id;
|
|
task_info->activity[activity_id].done_count = character_activity.donecount;
|
|
if (character_activity.completed) {
|
|
task_info->activity[activity_id].activity_state = ActivityCompleted;
|
|
}
|
|
else {
|
|
task_info->activity[activity_id].activity_state = ActivityHidden;
|
|
}
|
|
|
|
task_info->activity[activity_id].updated = false;
|
|
|
|
LogTasks(
|
|
"[LoadClientState] character_id [{}] task_id [{}] activity_id [{}] done_count [{}] completed [{}]",
|
|
character_id,
|
|
task_id,
|
|
activity_id,
|
|
character_activity.donecount,
|
|
character_activity.completed
|
|
);
|
|
}
|
|
|
|
if (RuleB(TaskSystem, RecordCompletedTasks)) {
|
|
CompletedTaskInformation completed_task_information{};
|
|
|
|
for (bool &i : completed_task_information.activity_done) {
|
|
i = false;
|
|
}
|
|
|
|
int previous_task_id = -1;
|
|
int previous_completed_time = -1;
|
|
|
|
auto character_completed_tasks = CompletedTasksRepository::GetWhere(
|
|
database,
|
|
fmt::format("charid = {} ORDER BY completedtime, taskid, activityid", character_id)
|
|
);
|
|
|
|
for (auto &character_completed_task: character_completed_tasks) {
|
|
int task_id = character_completed_task.taskid;
|
|
if ((task_id <= 0) || (task_id >= MAXTASKS)) {
|
|
LogError("[TASKS]Task ID [{}] out of range while loading completed tasks from database", task_id);
|
|
continue;
|
|
}
|
|
|
|
// An activity_id of -1 means mark all the none optional activities in the
|
|
// task as complete. If the Rule to record optional activities is enabled,
|
|
// subsequent records for this task will flag any optional tasks that were
|
|
// completed.
|
|
int activity_id = character_completed_task.activityid;
|
|
if ((activity_id < -1) || (activity_id >= MAXACTIVITIESPERTASK)) {
|
|
LogError("[TASKS]activity_information ID [{}] out of range while loading completed tasks from database",
|
|
activity_id);
|
|
continue;
|
|
}
|
|
|
|
int completed_time = character_completed_task.completedtime;
|
|
if ((previous_task_id != -1) &&
|
|
((task_id != previous_task_id) || (completed_time != previous_completed_time))) {
|
|
client_task_state->completed_tasks.push_back(completed_task_information);
|
|
for (bool &activity_done : completed_task_information.activity_done) {
|
|
activity_done = false;
|
|
}
|
|
}
|
|
|
|
completed_task_information.task_id = previous_task_id = task_id;
|
|
completed_task_information.completed_time = previous_completed_time = completed_time;
|
|
|
|
// If activity_id is -1, Mark all the non-optional tasks as completed.
|
|
if (activity_id < 0) {
|
|
TaskInformation *task = p_task_data[task_id];
|
|
if (task == nullptr) {
|
|
continue;
|
|
}
|
|
|
|
for (int i = 0; i < task->activity_count; i++) {
|
|
if (!task->activity_information[i].optional) {
|
|
completed_task_information.activity_done[i] = true;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
completed_task_information.activity_done[activity_id] = true;
|
|
}
|
|
}
|
|
|
|
if (previous_task_id != -1) {
|
|
client_task_state->completed_tasks.push_back(completed_task_information);
|
|
}
|
|
|
|
client_task_state->last_completed_task_loaded = client_task_state->completed_tasks.size();
|
|
}
|
|
|
|
std::string query = StringFormat(
|
|
"SELECT `taskid` FROM character_enabledtasks "
|
|
"WHERE `charid` = %i AND `taskid` >0 AND `taskid` < %i "
|
|
"ORDER BY `taskid` ASC",
|
|
character_id, MAXTASKS
|
|
);
|
|
auto results = database.QueryDatabase(query);
|
|
if (results.Success()) {
|
|
for (auto row = results.begin(); row != results.end(); ++row) {
|
|
int task_id = atoi(row[0]);
|
|
client_task_state->enabled_tasks.push_back(task_id);
|
|
LogTasksDetail("[LoadClientState] Adding task_id [{}] to enabled tasks", task_id);
|
|
}
|
|
}
|
|
|
|
// Check that there is an entry in the client task state for every activity_information in each task
|
|
// This should only break if a ServerOP adds or deletes activites for a task that players already
|
|
// have active, or due to a bug.
|
|
for (int task_index = 0; task_index < MAXACTIVEQUESTS + 1; task_index++) {
|
|
int task_id = client_task_state->active_tasks[task_index].task_id;
|
|
if (task_id == TASKSLOTEMPTY) {
|
|
continue;
|
|
}
|
|
if (!p_task_data[task_id]) {
|
|
client->Message(
|
|
Chat::Red,
|
|
"Active Task Slot %i, references a task (%i), that does not exist. "
|
|
"Removing from memory. Contact a GM to resolve this.",
|
|
task_index,
|
|
task_id
|
|
);
|
|
|
|
LogError("[LoadClientState] Character [{}] has task [{}] which does not exist", character_id, task_id);
|
|
client_task_state->active_tasks[task_index].task_id = TASKSLOTEMPTY;
|
|
continue;
|
|
}
|
|
for (int activity_index = 0; activity_index < p_task_data[task_id]->activity_count; activity_index++) {
|
|
if (client_task_state->active_tasks[task_index].activity[activity_index].activity_id != activity_index) {
|
|
client->Message(
|
|
Chat::Red,
|
|
"Active Task %i, %s. activity_information count does not match expected value."
|
|
"Removing from memory. Contact a GM to resolve this.",
|
|
task_id, p_task_data[task_id]->title.c_str()
|
|
);
|
|
|
|
LogTasks(
|
|
"[LoadClientState] Fatal error in character [{}] task state. activity_information [{}] for Task [{}] either missing from client state or from task",
|
|
character_id,
|
|
activity_index,
|
|
task_id
|
|
);
|
|
client_task_state->active_tasks[task_index].task_id = TASKSLOTEMPTY;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (client_task_state->active_task.task_id != TASKSLOTEMPTY) {
|
|
client_task_state->UnlockActivities(character_id, client_task_state->active_task);
|
|
}
|
|
|
|
// TODO: shared
|
|
for (auto &active_quest : client_task_state->active_quests) {
|
|
if (active_quest.task_id != TASKSLOTEMPTY) {
|
|
client_task_state->UnlockActivities(character_id, active_quest);
|
|
}
|
|
}
|
|
|
|
LogTasks("[LoadClientState] for Character ID [{}] DONE!", character_id);
|
|
|
|
return true;
|
|
}
|
|
|
|
void ClientTaskState::EnableTask(int character_id, int task_count, int *task_list)
|
|
{
|
|
// Check if the Task is already enabled for this client
|
|
std::vector<int> tasks_enabled;
|
|
for (int i = 0; i < task_count; i++) {
|
|
|
|
auto iterator = enabled_tasks.begin();
|
|
bool add_task = true;
|
|
|
|
while (iterator != enabled_tasks.end()) {
|
|
// If this task is already enabled, stop looking
|
|
if ((*iterator) == task_list[i]) {
|
|
add_task = false;
|
|
break;
|
|
}
|
|
// Our list of enabled tasks is sorted, so we can quit if we find a taskid higher than
|
|
// the one we are looking for.
|
|
if ((*iterator) > task_list[i]) {
|
|
break;
|
|
}
|
|
++iterator;
|
|
}
|
|
|
|
if (add_task) {
|
|
enabled_tasks.insert(iterator, task_list[i]);
|
|
// Make a note of the task we enabled, for later SQL generation
|
|
tasks_enabled.push_back(task_list[i]);
|
|
}
|
|
}
|
|
|
|
LogTasksDetail("[EnableTask] New enabled task list");
|
|
for (int enabled_task : enabled_tasks) {
|
|
LogTasksDetail("[EnableTask] enabled [{}] character_id [{}]", enabled_task, character_id);
|
|
}
|
|
|
|
if (tasks_enabled.empty()) {
|
|
return;
|
|
}
|
|
|
|
std::stringstream query_stream;
|
|
query_stream << "REPLACE INTO character_enabledtasks (charid, taskid) VALUES ";
|
|
for (unsigned int i = 0; i < tasks_enabled.size(); i++) {
|
|
query_stream << (i ? ", " : "") << StringFormat("(%i, %i)", character_id, tasks_enabled[i]);
|
|
}
|
|
|
|
std::string query = query_stream.str();
|
|
if (!tasks_enabled.empty()) {
|
|
database.QueryDatabase(query);
|
|
}
|
|
else {
|
|
LogTasks("[EnableTask] Called for character_id [{}] but, no tasks exist", character_id);
|
|
}
|
|
}
|
|
|
|
void ClientTaskState::DisableTask(int character_id, int task_count, int *task_list)
|
|
{
|
|
|
|
// Check if the Task is enabled for this client
|
|
std::vector<int> tasks_disabled;
|
|
|
|
for (int i = 0; i < task_count; i++) {
|
|
auto iterator = enabled_tasks.begin();
|
|
bool removeTask = false;
|
|
|
|
while (iterator != enabled_tasks.end()) {
|
|
if ((*iterator) == task_list[i]) {
|
|
removeTask = true;
|
|
break;
|
|
}
|
|
|
|
if ((*iterator) > task_list[i]) {
|
|
break;
|
|
}
|
|
|
|
++iterator;
|
|
}
|
|
|
|
if (removeTask) {
|
|
enabled_tasks.erase(iterator);
|
|
tasks_disabled.push_back(task_list[i]);
|
|
}
|
|
}
|
|
|
|
LogTasks("[DisableTask] New enabled task list ");
|
|
for (int enabled_task : enabled_tasks) {
|
|
LogTasks("[DisableTask] enabled_tasks [{}]", enabled_task);
|
|
}
|
|
|
|
if (tasks_disabled.empty()) {
|
|
return;
|
|
}
|
|
|
|
std::stringstream queryStream;
|
|
queryStream << StringFormat("DELETE FROM character_enabledtasks WHERE charid = %i AND (", character_id);
|
|
|
|
for (unsigned int i = 0; i < tasks_disabled.size(); i++)
|
|
queryStream
|
|
<< (i ? StringFormat("taskid = %i ", tasks_disabled[i]) : StringFormat(
|
|
"OR taskid = %i ",
|
|
tasks_disabled[i]
|
|
));
|
|
|
|
queryStream << ")";
|
|
|
|
std::string query = queryStream.str();
|
|
|
|
if (tasks_disabled.size()) {
|
|
database.QueryDatabase(query);
|
|
}
|
|
else {
|
|
LogTasks(
|
|
"[DisableTask] DisableTask called for characterID: [{}] ... but, no tasks exist",
|
|
character_id
|
|
);
|
|
}
|
|
}
|
|
|
|
bool ClientTaskState::IsTaskEnabled(int task_id)
|
|
{
|
|
std::vector<int>::iterator Iterator;
|
|
|
|
Iterator = enabled_tasks.begin();
|
|
|
|
while (Iterator != enabled_tasks.end()) {
|
|
if ((*Iterator) == task_id) { return true; }
|
|
if ((*Iterator) > task_id) { break; }
|
|
++Iterator;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
int ClientTaskState::EnabledTaskCount(int task_set_id)
|
|
{
|
|
|
|
// Return the number of tasks in TaskSet that this character is enabled for.
|
|
|
|
unsigned int enabled_task_index = 0;
|
|
unsigned int task_set_index = 0;
|
|
int enabled_task_count = 0;
|
|
|
|
if ((task_set_id <= 0) || (task_set_id >= MAXTASKSETS)) { return -1; }
|
|
|
|
while ((enabled_task_index < enabled_tasks.size()) &&
|
|
(task_set_index < p_task_manager->task_sets[task_set_id].size())) {
|
|
|
|
if (enabled_tasks[enabled_task_index] == p_task_manager->task_sets[task_set_id][task_set_index]) {
|
|
enabled_task_count++;
|
|
enabled_task_index++;
|
|
task_set_index++;
|
|
continue;
|
|
}
|
|
|
|
if (enabled_tasks[enabled_task_index] < p_task_manager->task_sets[task_set_id][task_set_index]) {
|
|
enabled_task_index++;
|
|
}
|
|
else {
|
|
task_set_index++;
|
|
}
|
|
|
|
}
|
|
|
|
return enabled_task_count;
|
|
}
|
|
int ClientTaskState::ActiveTasksInSet(int task_set_id)
|
|
{
|
|
if ((task_set_id <= 0) || (task_set_id >= MAXTASKSETS)) {
|
|
return -1;
|
|
}
|
|
|
|
int active_task_in_set_count = 0;
|
|
for (int i : p_task_manager->task_sets[task_set_id]) {
|
|
if (IsTaskActive(i)) {
|
|
active_task_in_set_count++;
|
|
}
|
|
}
|
|
|
|
return active_task_in_set_count;
|
|
}
|
|
|
|
int ClientTaskState::CompletedTasksInSet(int task_set_id)
|
|
{
|
|
if ((task_set_id <= 0) || (task_set_id >= MAXTASKSETS)) {
|
|
return -1;
|
|
}
|
|
|
|
int completed_tasks_count = 0;
|
|
for (int i : p_task_manager->task_sets[task_set_id]) {
|
|
if (IsTaskCompleted(i)) {
|
|
completed_tasks_count++;
|
|
}
|
|
}
|
|
|
|
return completed_tasks_count;
|
|
}
|
|
|
|
bool ClientTaskState::HasSlotForTask(TaskInformation *task)
|
|
{
|
|
if (task == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
switch (task->type) {
|
|
case TaskType::Task:
|
|
return active_task.task_id == TASKSLOTEMPTY;
|
|
case TaskType::Shared:
|
|
return false; // todo
|
|
case TaskType::Quest:
|
|
for (auto &active_quest : active_quests) {
|
|
if (active_quest.task_id == TASKSLOTEMPTY) {
|
|
return true;
|
|
}
|
|
}
|
|
case TaskType::E:
|
|
return false; // removed on live
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
int TaskManager::FirstTaskInSet(int task_set)
|
|
{
|
|
if ((task_set <= 0) || (task_set >= MAXTASKSETS)) {
|
|
return 0;
|
|
}
|
|
|
|
if (task_sets[task_set].empty()) {
|
|
return 0;
|
|
}
|
|
|
|
auto iterator = task_sets[task_set].begin();
|
|
while (iterator != task_sets[task_set].end()) {
|
|
if ((*iterator) > 0) {
|
|
return (*iterator);
|
|
}
|
|
++iterator;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int TaskManager::LastTaskInSet(int task_set)
|
|
{
|
|
if ((task_set <= 0) || (task_set >= MAXTASKSETS)) {
|
|
return 0;
|
|
}
|
|
|
|
if (task_sets[task_set].empty()) {
|
|
return 0;
|
|
}
|
|
|
|
return task_sets[task_set][task_sets[task_set].size() - 1];
|
|
}
|
|
|
|
int TaskManager::NextTaskInSet(int task_set, int task_id)
|
|
{
|
|
if ((task_set <= 0) || (task_set >= MAXTASKSETS)) {
|
|
return 0;
|
|
}
|
|
|
|
if (task_sets[task_set].empty()) {
|
|
return 0;
|
|
}
|
|
|
|
for (int i : task_sets[task_set]) {
|
|
if (i > task_id) {
|
|
return i;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
bool TaskManager::ValidateLevel(int task_id, int player_level)
|
|
{
|
|
if (p_task_data[task_id] == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
if (p_task_data[task_id]->min_level && (player_level < p_task_data[task_id]->min_level)) {
|
|
return false;
|
|
}
|
|
|
|
if (p_task_data[task_id]->max_level && (player_level > p_task_data[task_id]->max_level)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
std::string TaskManager::GetTaskName(uint32 task_id)
|
|
{
|
|
if (task_id > 0 && task_id < MAXTASKS) {
|
|
if (p_task_data[task_id] != nullptr) {
|
|
return p_task_data[task_id]->title;
|
|
}
|
|
}
|
|
|
|
return std::string();
|
|
}
|
|
|
|
TaskType TaskManager::GetTaskType(uint32 task_id)
|
|
{
|
|
if (task_id > 0 && task_id < MAXTASKS) {
|
|
if (p_task_data[task_id] != nullptr) {
|
|
return p_task_data[task_id]->type;
|
|
}
|
|
}
|
|
return TaskType::Task;
|
|
}
|
|
|
|
void TaskManager::TaskSetSelector(Client *client, ClientTaskState *client_task_state, Mob *mob, int task_set_id)
|
|
{
|
|
int task_list[MAXCHOOSERENTRIES];
|
|
int task_list_index = 0;
|
|
int player_level = client->GetLevel();
|
|
|
|
LogTasks(
|
|
"TaskSetSelector called for task_set_id [{}] EnableTaskSize is [{}]",
|
|
task_set_id,
|
|
client_task_state->enabled_tasks.size()
|
|
);
|
|
|
|
if (task_set_id <= 0 || task_set_id >= MAXTASKSETS) {
|
|
return;
|
|
}
|
|
|
|
if (task_sets[task_set_id].empty()) {
|
|
// I think this is suppose to be yellow
|
|
mob->SayString(
|
|
client,
|
|
Chat::Yellow,
|
|
MAX_ACTIVE_TASKS,
|
|
client->GetName()
|
|
);
|
|
return;
|
|
}
|
|
|
|
bool all_enabled = false;
|
|
|
|
// A task_id of 0 in a TaskSet indicates that all Tasks in the set are enabled for all players.
|
|
if (task_sets[task_set_id][0] == 0) {
|
|
LogTasks("[TaskSetSelector] TaskSets[{}][0] == 0. All Tasks in Set enabled.", task_set_id);
|
|
all_enabled = true;
|
|
}
|
|
|
|
auto iterator = task_sets[task_set_id].begin();
|
|
if (all_enabled) {
|
|
++iterator;
|
|
} // skip first when all enabled since it's useless data
|
|
|
|
while (iterator != task_sets[task_set_id].end() && task_list_index < MAXCHOOSERENTRIES) {
|
|
auto task = *iterator;
|
|
// verify level, we're not currently on it, repeatable status, if it's a (shared) task
|
|
// we aren't currently on another, and if it's enabled if not all_enabled
|
|
if ((all_enabled || client_task_state->IsTaskEnabled(task)) && ValidateLevel(task, player_level) &&
|
|
!client_task_state->IsTaskActive(task) && client_task_state->HasSlotForTask(p_task_data[task]) &&
|
|
// this slot checking is a bit silly, but we allow mixing of task types ...
|
|
(IsTaskRepeatable(task) || !client_task_state->IsTaskCompleted(task))) {
|
|
task_list[task_list_index++] = task;
|
|
}
|
|
|
|
++iterator;
|
|
}
|
|
|
|
if (task_list_index > 0) {
|
|
SendTaskSelector(client, mob, task_list_index, task_list);
|
|
}
|
|
else {
|
|
// TODO: check color, I think this might be only for (Shared) Tasks, w/e -- think should be yellow
|
|
mob->SayString(
|
|
client,
|
|
Chat::Yellow,
|
|
MAX_ACTIVE_TASKS,
|
|
client->GetName()
|
|
);
|
|
}
|
|
}
|
|
|
|
// unlike the non-Quest version of this function, it does not check enabled, that is assumed the responsibility of the quest to handle
|
|
// we do however still want it to check the other stuff like level, active, room, etc
|
|
void TaskManager::TaskQuestSetSelector(
|
|
Client *client,
|
|
ClientTaskState *client_task_state,
|
|
Mob *mob,
|
|
int count,
|
|
int *tasks
|
|
)
|
|
{
|
|
int task_list[MAXCHOOSERENTRIES];
|
|
int task_list_index = 0;
|
|
int player_level = client->GetLevel();
|
|
|
|
LogTasks("[UPDATE] TaskQuestSetSelector called for array size [{}]", count);
|
|
|
|
if (count <= 0) {
|
|
return;
|
|
}
|
|
|
|
for (int i = 0; i < count; ++i) {
|
|
auto task = tasks[i];
|
|
// verify level, we're not currently on it, repeatable status, if it's a (shared) task
|
|
// we aren't currently on another, and if it's enabled if not all_enabled
|
|
if (ValidateLevel(task, player_level) && !client_task_state->IsTaskActive(task) &&
|
|
client_task_state->HasSlotForTask(p_task_data[task]) &&
|
|
// this slot checking is a bit silly, but we allow mixing of task types ...
|
|
(IsTaskRepeatable(task) || !client_task_state->IsTaskCompleted(task))) {
|
|
task_list[task_list_index++] = task;
|
|
}
|
|
}
|
|
|
|
if (task_list_index > 0) {
|
|
SendTaskSelector(client, mob, task_list_index, task_list);
|
|
}
|
|
else {
|
|
// TODO: check color, I think this might be only for (Shared) Tasks, w/e -- think should be yellow
|
|
mob->SayString(
|
|
client,
|
|
Chat::Yellow,
|
|
MAX_ACTIVE_TASKS,
|
|
client->GetName()
|
|
);
|
|
}
|
|
}
|
|
|
|
// sends task selector to client
|
|
void TaskManager::SendTaskSelector(Client *client, Mob *mob, int task_count, int *task_list)
|
|
{
|
|
if (client->ClientVersion() >= EQ::versions::ClientVersion::RoF) {
|
|
SendTaskSelectorNew(client, mob, task_count, task_list);
|
|
return;
|
|
}
|
|
// Titanium OpCode: 0x5e7c
|
|
LogTasks("TaskSelector for [{}] Tasks", task_count);
|
|
int player_level = client->GetLevel();
|
|
|
|
// Check if any of the tasks exist
|
|
for (int i = 0; i < task_count; i++) {
|
|
if (p_task_data[task_list[i]] != nullptr) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
int valid_task_count = 0;
|
|
|
|
for (int i = 0; i < task_count; i++) {
|
|
if (!ValidateLevel(task_list[i], player_level)) {
|
|
continue;
|
|
}
|
|
if (client->IsTaskActive(task_list[i])) {
|
|
continue;
|
|
}
|
|
if (!IsTaskRepeatable(task_list[i]) && client->IsTaskCompleted(task_list[i])) {
|
|
continue;
|
|
}
|
|
|
|
valid_task_count++;
|
|
}
|
|
|
|
if (valid_task_count == 0) {
|
|
return;
|
|
}
|
|
|
|
SerializeBuffer buf(50 * valid_task_count);
|
|
|
|
buf.WriteUInt32(valid_task_count);
|
|
buf.WriteUInt32(2); // task type, live doesn't let you send more than one type, but we do?
|
|
buf.WriteUInt32(mob->GetID());
|
|
|
|
for (int task_index = 0; task_index < task_count; task_index++) {
|
|
if (!ValidateLevel(task_list[task_index], player_level)) {
|
|
continue;
|
|
}
|
|
if (client->IsTaskActive(task_list[task_index])) {
|
|
continue;
|
|
}
|
|
if (!IsTaskRepeatable(task_list[task_index]) && client->IsTaskCompleted(task_list[task_index])) {
|
|
continue;
|
|
}
|
|
|
|
buf.WriteUInt32(task_list[task_index]); // task_id
|
|
|
|
// affects color, difficulty?
|
|
if (client->ClientVersion() != EQ::versions::ClientVersion::Titanium) {
|
|
buf.WriteFloat(1.0f);
|
|
}
|
|
buf.WriteUInt32(p_task_data[task_list[task_index]]->duration);
|
|
buf.WriteUInt32(static_cast<int>(p_task_data[task_list[task_index]]->duration_code));
|
|
|
|
buf.WriteString(p_task_data[task_list[task_index]]->title); // max 64 with null
|
|
buf.WriteString(p_task_data[task_list[task_index]]->description); // max 4000 with null
|
|
|
|
// Has reward set flag
|
|
if (client->ClientVersion() != EQ::versions::ClientVersion::Titanium) {
|
|
buf.WriteUInt8(0);
|
|
}
|
|
|
|
buf.WriteUInt32(p_task_data[task_list[task_index]]->activity_count);
|
|
|
|
for (int activity_index = 0;
|
|
activity_index < p_task_data[task_list[task_index]]->activity_count;
|
|
++activity_index) {
|
|
buf.WriteUInt32(activity_index); // ActivityNumber
|
|
auto &activity = p_task_data[task_list[task_index]]->activity_information[activity_index];
|
|
buf.WriteUInt32(activity.activity_type);
|
|
buf.WriteUInt32(0); // solo, group, raid?
|
|
buf.WriteString(activity.target_name); // max length 64, "target name" so like loot x foo from bar (this is bar)
|
|
buf.WriteString(activity.item_list); // max length 64 in these clients
|
|
buf.WriteUInt32(activity.goal_count);
|
|
buf.WriteInt32(activity.skill_id);
|
|
buf.WriteInt32(activity.spell_id);
|
|
buf.WriteInt32(activity.zone_ids.empty() ? 0 : activity.zone_ids.front());
|
|
buf.WriteString(activity.description_override);
|
|
}
|
|
}
|
|
|
|
auto outapp = new EQApplicationPacket(OP_OpenNewTasksWindow, buf);
|
|
|
|
client->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
}
|
|
|
|
void TaskManager::SendTaskSelectorNew(Client *client, Mob *mob, int task_count, int *task_list)
|
|
{
|
|
LogTasks("SendTaskSelectorNew for [{}] Tasks", task_count);
|
|
|
|
int player_level = client->GetLevel();
|
|
|
|
// Check if any of the tasks exist
|
|
for (int i = 0; i < task_count; i++) {
|
|
if (p_task_data[task_list[i]] != nullptr) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
int valid_tasks_count = 0;
|
|
for (int task_index = 0; task_index < task_count; task_index++) {
|
|
if (!ValidateLevel(task_list[task_index], player_level)) {
|
|
continue;
|
|
}
|
|
if (client->IsTaskActive(task_list[task_index])) {
|
|
continue;
|
|
}
|
|
if (!IsTaskRepeatable(task_list[task_index]) && client->IsTaskCompleted(task_list[task_index])) {
|
|
continue;
|
|
}
|
|
|
|
valid_tasks_count++;
|
|
}
|
|
|
|
if (valid_tasks_count == 0) {
|
|
return;
|
|
}
|
|
|
|
SerializeBuffer buf(50 * valid_tasks_count);
|
|
|
|
buf.WriteUInt32(valid_tasks_count); // TaskCount
|
|
buf.WriteUInt32(2); // Type, valid values: 0-3. 0 = Task, 1 = Shared Task, 2 = Quest, 3 = ??? -- should fix maybe some day, but we let more than 1 type through :P
|
|
// so I guess an NPC can only offer one type of quests or we can only open a selection with one type :P (so quest call can tell us I guess)
|
|
// this is also sent in OP_TaskDescription
|
|
buf.WriteUInt32(mob->GetID()); // TaskGiver
|
|
|
|
for (int i = 0; i < task_count; i++) { // max 40
|
|
if (!ValidateLevel(task_list[i], player_level)) {
|
|
continue;
|
|
}
|
|
if (client->IsTaskActive(task_list[i])) {
|
|
continue;
|
|
}
|
|
if (!IsTaskRepeatable(task_list[i]) && client->IsTaskCompleted(task_list[i])) {
|
|
continue;
|
|
}
|
|
|
|
buf.WriteUInt32(task_list[i]); // task_id
|
|
buf.WriteFloat(1.0f); // affects color, difficulty?
|
|
buf.WriteUInt32(p_task_data[task_list[i]]->duration);
|
|
buf.WriteUInt32(static_cast<int>(p_task_data[task_list[i]]->duration_code)); // 1 = Short, 2 = Medium, 3 = Long, anything else Unlimited
|
|
|
|
buf.WriteString(p_task_data[task_list[i]]->title); // max 64 with null
|
|
buf.WriteString(p_task_data[task_list[i]]->description); // max 4000 with null
|
|
|
|
buf.WriteUInt8(0); // Has reward set flag
|
|
buf.WriteUInt32(p_task_data[task_list[i]]->activity_count); // activity_count
|
|
|
|
for (int j = 0; j < p_task_data[task_list[i]]->activity_count; ++j) {
|
|
buf.WriteUInt32(j); // ActivityNumber
|
|
auto &activity = p_task_data[task_list[i]]->activity_information[j];
|
|
buf.WriteUInt32(activity.activity_type); // ActivityType
|
|
buf.WriteUInt32(0); // solo, group, raid?
|
|
buf.WriteString(activity.target_name); // max length 64, "target name" so like loot x foo from bar (this is bar)
|
|
|
|
// this string is item names
|
|
buf.WriteLengthString(activity.item_list);
|
|
|
|
buf.WriteUInt32(activity.goal_count); // GoalCount
|
|
|
|
// this string is skill IDs? probably one of the "use on" tasks
|
|
buf.WriteLengthString(activity.skill_list);
|
|
|
|
// this string is spell IDs? probably one of the "use on" tasks
|
|
buf.WriteLengthString(activity.spell_list);
|
|
|
|
//buf.WriteString(itoa(Tasks[TaskList[i]]->activity_information[activity_id].ZoneID));
|
|
buf.WriteString(activity.zones); // Zone number in ascii max length 64, can be multiple with separated by ;
|
|
buf.WriteString(activity.description_override); // max length 128 -- overrides the automatic descriptions
|
|
// this doesn't appear to be shown to the client at all and isn't the same as zones ... defaults to '0' though
|
|
buf.WriteString(activity.zones); // Zone number in ascii max length 64, probably can be separated by ; too, haven't found it used
|
|
}
|
|
}
|
|
|
|
auto outapp = new EQApplicationPacket(OP_OpenNewTasksWindow, buf);
|
|
|
|
client->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
}
|
|
|
|
int TaskManager::GetActivityCount(int task_id)
|
|
{
|
|
if ((task_id > 0) && (task_id < MAXTASKS)) {
|
|
if (p_task_data[task_id]) { return p_task_data[task_id]->activity_count; }
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void TaskManager::ExplainTask(Client *client, int task_id)
|
|
{
|
|
|
|
// TODO: This method is not finished (hardly started). It was intended to
|
|
// explain in English, what each activity_information did, conditions for step unlocking, etc.
|
|
//
|
|
return;
|
|
|
|
if (!client) { return; }
|
|
|
|
if ((task_id <= 0) || (task_id >= MAXTASKS)) {
|
|
client->Message(Chat::White, "task_id out-of-range.");
|
|
return;
|
|
}
|
|
|
|
if (p_task_data[task_id] == nullptr) {
|
|
client->Message(Chat::White, "Task does not exist.");
|
|
return;
|
|
}
|
|
|
|
char explanation[1000], *ptr;
|
|
client->Message(Chat::White, "Task %4i: title: %s", task_id, p_task_data[task_id]->description.c_str());
|
|
client->Message(Chat::White, "%3i Activities", p_task_data[task_id]->activity_count);
|
|
ptr = explanation;
|
|
for (int i = 0; i < p_task_data[task_id]->activity_count; i++) {
|
|
|
|
sprintf(ptr, "Act: %3i: ", i);
|
|
ptr = ptr + strlen(ptr);
|
|
switch (p_task_data[task_id]->activity_information[i].activity_type) {
|
|
case ActivityDeliver:
|
|
sprintf(ptr, "Deliver");
|
|
break;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
ClientTaskState::ClientTaskState()
|
|
{
|
|
active_task_count = 0;
|
|
last_completed_task_loaded = 0;
|
|
checked_touch_activities = false;
|
|
|
|
for (int i = 0; i < MAXACTIVEQUESTS; i++) {
|
|
active_quests[i].slot = i;
|
|
active_quests[i].task_id = TASKSLOTEMPTY;
|
|
}
|
|
|
|
active_task.slot = 0;
|
|
active_task.task_id = TASKSLOTEMPTY;
|
|
// TODO: shared task
|
|
}
|
|
|
|
ClientTaskState::~ClientTaskState()
|
|
{
|
|
}
|
|
|
|
|
|
int ClientTaskState::GetActiveTaskID(int index)
|
|
{
|
|
// Return the task_id from the client's specified Active Task slot.
|
|
if ((index < 0) || (index >= MAXACTIVEQUESTS)) {
|
|
return 0;
|
|
}
|
|
|
|
return active_quests[index].task_id;
|
|
}
|
|
|
|
static void DeleteCompletedTaskFromDatabase(int character_id, int task_id)
|
|
{
|
|
LogTasks("[DeleteCompletedTasksFromDatabase] character_id [{}], task_id [{}]", character_id, task_id);
|
|
|
|
CompletedTasksRepository::DeleteWhere(
|
|
database,
|
|
fmt::format("charid = {} and taskid = {}", character_id, task_id)
|
|
);
|
|
}
|
|
|
|
bool ClientTaskState::UnlockActivities(int character_id, ClientTaskInformation &task_info)
|
|
{
|
|
bool all_activities_complete = true;
|
|
|
|
TaskInformation *p_task_information = p_task_manager->p_task_data[task_info.task_id];
|
|
if (p_task_information == nullptr) {
|
|
return true;
|
|
}
|
|
|
|
// On loading the client state, all activities that are not completed, are
|
|
// marked as hidden. For Sequential (non-stepped) mode, we mark the first
|
|
// activity_information as active if not complete.
|
|
LogTasks(
|
|
"character_id [{}] task_id [{}] sequence_mode [{}]",
|
|
character_id,
|
|
task_info.task_id,
|
|
p_task_information->sequence_mode
|
|
);
|
|
|
|
if (p_task_information->sequence_mode == ActivitiesSequential) {
|
|
if (task_info.activity[0].activity_state != ActivityCompleted) {
|
|
task_info.activity[0].activity_state = ActivityActive;
|
|
}
|
|
|
|
// Enable the next Hidden task.
|
|
for (int i = 0; i < p_task_information->activity_count; i++) {
|
|
if ((task_info.activity[i].activity_state == ActivityActive) &&
|
|
(!p_task_information->activity_information[i].optional)) {
|
|
all_activities_complete = false;
|
|
break;
|
|
}
|
|
|
|
if (task_info.activity[i].activity_state == ActivityHidden) {
|
|
task_info.activity[i].activity_state = ActivityActive;
|
|
all_activities_complete = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (all_activities_complete && RuleB(TaskSystem, RecordCompletedTasks)) {
|
|
if (RuleB(TasksSystem, KeepOneRecordPerCompletedTask)) {
|
|
LogTasks("KeepOneRecord enabled");
|
|
auto iterator = completed_tasks.begin();
|
|
int erased_elements = 0;
|
|
while (iterator != completed_tasks.end()) {
|
|
int task_id = (*iterator).task_id;
|
|
if (task_id == task_info.task_id) {
|
|
iterator = completed_tasks.erase(iterator);
|
|
erased_elements++;
|
|
}
|
|
else {
|
|
++iterator;
|
|
}
|
|
}
|
|
|
|
LogTasks("Erased Element count is [{}]", erased_elements);
|
|
|
|
if (erased_elements) {
|
|
last_completed_task_loaded -= erased_elements;
|
|
DeleteCompletedTaskFromDatabase(character_id, task_info.task_id);
|
|
}
|
|
}
|
|
|
|
CompletedTaskInformation completed_task_information{};
|
|
completed_task_information.task_id = task_info.task_id;
|
|
completed_task_information.completed_time = time(nullptr);
|
|
|
|
for (int i = 0; i < p_task_information->activity_count; i++) {
|
|
completed_task_information.activity_done[i] = (task_info.activity[i].activity_state ==
|
|
ActivityCompleted);
|
|
}
|
|
|
|
completed_tasks.push_back(completed_task_information);
|
|
}
|
|
|
|
LogTasks("Returning sequential task, AllActivitiesComplete is [{}]", all_activities_complete);
|
|
|
|
return all_activities_complete;
|
|
}
|
|
|
|
// Stepped Mode
|
|
// TODO: This code is probably more complex than it needs to be
|
|
|
|
bool current_step_complete = true;
|
|
|
|
LogTasks(
|
|
"[UnlockActivities] Current step [{}] last_step [{}]",
|
|
task_info.current_step,
|
|
p_task_information->last_step
|
|
);
|
|
|
|
// If current_step is -1, this is the first call to this method since loading the
|
|
// client state. Unlock all activities with a step number of 0
|
|
|
|
if (task_info.current_step == -1) {
|
|
for (int i = 0; i < p_task_information->activity_count; i++) {
|
|
|
|
if (p_task_information->activity_information[i].step_number == 0 &&
|
|
task_info.activity[i].activity_state == ActivityHidden) {
|
|
task_info.activity[i].activity_state = ActivityActive;
|
|
// task_info.activity_information[i].updated=true;
|
|
}
|
|
}
|
|
task_info.current_step = 0;
|
|
}
|
|
|
|
for (int current_step = task_info.current_step; current_step <= p_task_information->last_step; current_step++) {
|
|
for (int activity = 0; activity < p_task_information->activity_count; activity++) {
|
|
if (p_task_information->activity_information[activity].step_number == (int) task_info.current_step) {
|
|
if ((task_info.activity[activity].activity_state != ActivityCompleted) &&
|
|
(!p_task_information->activity_information[activity].optional)) {
|
|
current_step_complete = false;
|
|
all_activities_complete = false;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (!current_step_complete) {
|
|
break;
|
|
}
|
|
task_info.current_step++;
|
|
}
|
|
|
|
if (all_activities_complete) {
|
|
if (RuleB(TaskSystem, RecordCompletedTasks)) {
|
|
// If we are only keeping one completed record per task, and the player has done
|
|
// the same task again, erase the previous completed entry for this task.
|
|
if (RuleB(TasksSystem, KeepOneRecordPerCompletedTask)) {
|
|
LogTasksDetail("[UnlockActivities] KeepOneRecord enabled");
|
|
auto iterator = completed_tasks.begin();
|
|
int erased_elements = 0;
|
|
|
|
while (iterator != completed_tasks.end()) {
|
|
int task_id = (*iterator).task_id;
|
|
if (task_id == task_info.task_id) {
|
|
iterator = completed_tasks.erase(iterator);
|
|
erased_elements++;
|
|
}
|
|
else {
|
|
++iterator;
|
|
}
|
|
}
|
|
|
|
LogTasksDetail("[UnlockActivities] Erased Element count is [{}]", erased_elements);
|
|
|
|
if (erased_elements) {
|
|
last_completed_task_loaded -= erased_elements;
|
|
DeleteCompletedTaskFromDatabase(character_id, task_info.task_id);
|
|
}
|
|
}
|
|
|
|
CompletedTaskInformation completed_task_information{};
|
|
completed_task_information.task_id = task_info.task_id;
|
|
completed_task_information.completed_time = time(nullptr);
|
|
|
|
for (int i = 0; i < p_task_information->activity_count; i++) {
|
|
completed_task_information.activity_done[i] = (task_info.activity[i].activity_state ==
|
|
ActivityCompleted);
|
|
}
|
|
|
|
completed_tasks.push_back(completed_task_information);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// Mark all non-completed tasks in the current step as active
|
|
for (int activity = 0; activity < p_task_information->activity_count; activity++) {
|
|
if ((p_task_information->activity_information[activity].step_number == (int) task_info.current_step) &&
|
|
(task_info.activity[activity].activity_state == ActivityHidden)) {
|
|
task_info.activity[activity].activity_state = ActivityActive;
|
|
task_info.activity[activity].updated = true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void ClientTaskState::UpdateTasksOnKill(Client *client, int npc_type_id)
|
|
{
|
|
UpdateTasksByNPC(client, ActivityKill, npc_type_id);
|
|
}
|
|
|
|
bool ClientTaskState::UpdateTasksOnSpeakWith(Client *client, int npc_type_id)
|
|
{
|
|
return UpdateTasksByNPC(client, ActivitySpeakWith, npc_type_id);
|
|
}
|
|
|
|
bool ClientTaskState::UpdateTasksByNPC(Client *client, int activity_type, int npc_type_id)
|
|
{
|
|
|
|
int is_updating = false;
|
|
|
|
// If the client has no tasks, there is nothing further to check.
|
|
if (!p_task_manager || (active_task_count == 0 && active_task.task_id == TASKSLOTEMPTY)) { // could be better ...
|
|
return false;
|
|
}
|
|
|
|
// loop over the union of tasks and quests
|
|
for (auto &ActiveTask : active_tasks) {
|
|
auto current_task = &ActiveTask;
|
|
if (current_task->task_id == TASKSLOTEMPTY) {
|
|
continue;
|
|
}
|
|
|
|
// Check if there are any active kill activities for this p_task_information
|
|
auto p_task_data = p_task_manager->p_task_data[current_task->task_id];
|
|
if (p_task_data == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
for (int activity_id = 0; activity_id < p_task_data->activity_count; activity_id++) {
|
|
ClientActivityInformation *client_activity = ¤t_task->activity[activity_id];
|
|
ActivityInformation *activity_info = &p_task_data->activity_information[activity_id];
|
|
|
|
// We are not interested in completed or hidden activities
|
|
if (client_activity->activity_state != ActivityActive) {
|
|
continue;
|
|
}
|
|
// We are only interested in Kill activities
|
|
if (activity_info->activity_type != activity_type) {
|
|
continue;
|
|
}
|
|
// Is there a zone restriction on the activity_information ?
|
|
if (!activity_info->CheckZone(zone->GetZoneID())) {
|
|
LogTasks(
|
|
"[UPDATE] character [{}] task_id [{}] activity_id [{}] activity_type [{}] for NPC [{}] failed zone check",
|
|
client->GetName(),
|
|
current_task->task_id,
|
|
activity_id,
|
|
activity_type,
|
|
npc_type_id
|
|
);
|
|
continue;
|
|
}
|
|
// Is the activity_information to kill this type of NPC ?
|
|
switch (activity_info->goal_method) {
|
|
case METHODSINGLEID:
|
|
if (activity_info->goal_id != npc_type_id) {
|
|
continue;
|
|
}
|
|
break;
|
|
|
|
case METHODLIST:
|
|
if (!p_task_manager->goal_list_manager.IsInList(
|
|
activity_info->goal_id,
|
|
npc_type_id
|
|
)) {
|
|
continue;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
// If METHODQUEST, don't updated the activity_information here
|
|
continue;
|
|
}
|
|
// We found an active p_task_information to kill this type of NPC, so increment the done count
|
|
LogTasksDetail("Calling increment done count ByNPC");
|
|
IncrementDoneCount(client, p_task_data, current_task->slot, activity_id);
|
|
is_updating = true;
|
|
}
|
|
}
|
|
|
|
return is_updating;
|
|
}
|
|
|
|
int ClientTaskState::ActiveSpeakTask(int npc_type_id)
|
|
{
|
|
|
|
// This method is to be used from Perl quests only and returns the task_id of the first
|
|
// active task found which has an active SpeakWith activity_information for this NPC.
|
|
if (!p_task_manager || (active_task_count == 0 && active_task.task_id == TASKSLOTEMPTY)) { // could be better ...
|
|
return 0;
|
|
}
|
|
|
|
// loop over the union of tasks and quests
|
|
for (auto &active_task : active_tasks) {
|
|
auto current_task = &active_task;
|
|
if (current_task->task_id == TASKSLOTEMPTY) {
|
|
continue;
|
|
}
|
|
|
|
TaskInformation *p_task_data = p_task_manager->p_task_data[current_task->task_id];
|
|
if (p_task_data == nullptr) {
|
|
continue;
|
|
}
|
|
|
|
for (int activity_id = 0; activity_id < p_task_data->activity_count; activity_id++) {
|
|
ClientActivityInformation *client_activity = ¤t_task->activity[activity_id];
|
|
ActivityInformation *activity_info = &p_task_data->activity_information[activity_id];
|
|
|
|
// We are not interested in completed or hidden activities
|
|
if (client_activity->activity_state != ActivityActive) {
|
|
continue;
|
|
}
|
|
if (activity_info->activity_type != ActivitySpeakWith) {
|
|
continue;
|
|
}
|
|
// Is there a zone restriction on the activity_information ?
|
|
if (!activity_info->CheckZone(zone->GetZoneID())) {
|
|
continue;
|
|
}
|
|
// Is the activity_information to speak with this type of NPC ?
|
|
if (activity_info->goal_method == METHODQUEST && activity_info->goal_id == npc_type_id) {
|
|
return current_task->task_id;
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int ClientTaskState::ActiveSpeakActivity(int npc_type_id, int task_id)
|
|
{
|
|
|
|
// This method is to be used from Perl quests only and returns the activity_id of the first
|
|
// active activity_information found in the specified task which is to SpeakWith this NPC.
|
|
if (!p_task_manager || (active_task_count == 0 && active_task.task_id == TASKSLOTEMPTY)) { // could be better ...
|
|
return -1;
|
|
}
|
|
if (task_id <= 0 || task_id >= MAXTASKS) {
|
|
return -1;
|
|
}
|
|
|
|
// loop over the union of tasks and quests
|
|
for (auto &active_task : active_tasks) {
|
|
auto current_task = &active_task;
|
|
if (current_task->task_id != task_id) {
|
|
continue;
|
|
}
|
|
|
|
TaskInformation *p_task_data = p_task_manager->p_task_data[current_task->task_id];
|
|
if (p_task_data == nullptr) {
|
|
continue;
|
|
}
|
|
|
|
for (int activity_id = 0; activity_id < p_task_data->activity_count; activity_id++) {
|
|
ClientActivityInformation *client_activity = ¤t_task->activity[activity_id];
|
|
ActivityInformation *activity_info = &p_task_data->activity_information[activity_id];
|
|
|
|
// We are not interested in completed or hidden activities
|
|
if (client_activity->activity_state != ActivityActive) {
|
|
continue;
|
|
}
|
|
if (activity_info->activity_type != ActivitySpeakWith) {
|
|
continue;
|
|
}
|
|
// Is there a zone restriction on the activity_information ?
|
|
if (!activity_info->CheckZone(zone->GetZoneID())) {
|
|
continue;
|
|
}
|
|
|
|
// Is the activity_information to speak with this type of NPC ?
|
|
if (activity_info->goal_method == METHODQUEST && activity_info->goal_id == npc_type_id) {
|
|
return activity_id;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void ClientTaskState::UpdateTasksForItem(Client *client, ActivityType activity_type, int item_id, int count)
|
|
{
|
|
|
|
// This method updates the client's task activities of the specified type which relate
|
|
// to the specified item.
|
|
//
|
|
// Type should be one of ActivityLoot, ActivityTradeSkill, ActivityFish or ActivityForage
|
|
|
|
// If the client has no tasks, there is nothing further to check.
|
|
|
|
LogTasks(
|
|
"[UpdateTasksForItem] activity_type [{}] item_id [{}]",
|
|
activity_type,
|
|
item_id
|
|
);
|
|
|
|
if (!p_task_manager || (active_task_count == 0 && active_task.task_id == TASKSLOTEMPTY)) { // could be better ...
|
|
return;
|
|
}
|
|
|
|
// loop over the union of tasks and quests
|
|
for (auto &active_task : active_tasks) {
|
|
auto current_task = &active_task;
|
|
if (current_task->task_id == TASKSLOTEMPTY) {
|
|
continue;
|
|
}
|
|
|
|
// Check if there are any active loot activities for this task
|
|
|
|
TaskInformation *p_task_data = p_task_manager->p_task_data[current_task->task_id];
|
|
if (p_task_data == nullptr) {
|
|
return;
|
|
}
|
|
|
|
for (int activity_id = 0; activity_id < p_task_data->activity_count; activity_id++) {
|
|
ClientActivityInformation *client_activity = ¤t_task->activity[activity_id];
|
|
ActivityInformation *activity_info = &p_task_data->activity_information[activity_id];
|
|
|
|
// We are not interested in completed or hidden activities
|
|
if (client_activity->activity_state != ActivityActive) {
|
|
continue;
|
|
}
|
|
// We are only interested in the ActivityType we were called with
|
|
if (activity_info->activity_type != (int) activity_type) {
|
|
continue;
|
|
}
|
|
// Is there a zone restriction on the activity_information ?
|
|
if (!activity_info->CheckZone(zone->GetZoneID())) {
|
|
LogTasks(
|
|
"[UpdateTasksForItem] Error: Character [{}] activity_information type [{}] for Item [{}] failed zone check",
|
|
client->GetName(),
|
|
activity_type,
|
|
item_id
|
|
);
|
|
continue;
|
|
}
|
|
// Is the activity_information related to this item ?
|
|
//
|
|
switch (activity_info->goal_method) {
|
|
|
|
case METHODSINGLEID:
|
|
if (activity_info->goal_id != item_id) { continue; }
|
|
break;
|
|
|
|
case METHODLIST:
|
|
if (!p_task_manager->goal_list_manager.IsInList(
|
|
activity_info->goal_id,
|
|
item_id
|
|
)) { continue; }
|
|
break;
|
|
|
|
default:
|
|
// If METHODQUEST, don't updated the activity_information here
|
|
continue;
|
|
}
|
|
// We found an active task related to this item, so increment the done count
|
|
LogTasksDetail("[UpdateTasksForItem] Calling increment done count ForItem");
|
|
IncrementDoneCount(client, p_task_data, current_task->slot, activity_id, count);
|
|
}
|
|
}
|
|
}
|
|
|
|
void ClientTaskState::UpdateTasksOnExplore(Client *client, int explore_id)
|
|
{
|
|
LogTasks("[UpdateTasksOnExplore] explore_id [{}]", explore_id);
|
|
if (!p_task_manager || (active_task_count == 0 && active_task.task_id == TASKSLOTEMPTY)) { // could be better ...
|
|
return;
|
|
}
|
|
|
|
// loop over the union of tasks and quests
|
|
for (auto &active_task : active_tasks) {
|
|
auto current_task = &active_task;
|
|
if (current_task->task_id == TASKSLOTEMPTY) {
|
|
continue;
|
|
}
|
|
|
|
// Check if there are any active explore activities for this task
|
|
|
|
TaskInformation *task_data = p_task_manager->p_task_data[current_task->task_id];
|
|
if (task_data == nullptr) {
|
|
return;
|
|
}
|
|
|
|
for (int activity_id = 0; activity_id < task_data->activity_count; activity_id++) {
|
|
ClientActivityInformation *client_activity = ¤t_task->activity[activity_id];
|
|
ActivityInformation *activity_info = &task_data->activity_information[activity_id];
|
|
|
|
// We are not interested in completed or hidden activities
|
|
if (client_activity->activity_state != ActivityActive) {
|
|
continue;
|
|
}
|
|
// We are only interested in explore activities
|
|
if (activity_info->activity_type != ActivityExplore) {
|
|
continue;
|
|
}
|
|
if (!activity_info->CheckZone(zone->GetZoneID())) {
|
|
LogTasks(
|
|
"[UpdateTasksOnExplore] character [{}] explore_id [{}] failed zone check",
|
|
client->GetName(),
|
|
explore_id
|
|
);
|
|
continue;
|
|
}
|
|
// Is the activity_information to explore this area id ?
|
|
switch (activity_info->goal_method) {
|
|
|
|
case METHODSINGLEID:
|
|
if (activity_info->goal_id != explore_id) {
|
|
continue;
|
|
}
|
|
break;
|
|
|
|
case METHODLIST:
|
|
if (!p_task_manager->goal_list_manager.IsInList(
|
|
activity_info->goal_id,
|
|
explore_id
|
|
)) {
|
|
continue;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
// If METHODQUEST, don't updated the activity_information here
|
|
continue;
|
|
}
|
|
|
|
// We found an active task to explore this area, so set done count to goal count
|
|
// (Only a goal count of 1 makes sense for explore activities?)
|
|
LogTasks(
|
|
"[UpdateTasksOnExplore] character [{}] explore_id [{}] increment on explore",
|
|
client->GetName(),
|
|
explore_id
|
|
);
|
|
|
|
IncrementDoneCount(
|
|
client,
|
|
task_data,
|
|
current_task->slot,
|
|
activity_id,
|
|
activity_info->goal_count - current_task->activity[activity_id].done_count
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
bool
|
|
ClientTaskState::UpdateTasksOnDeliver(Client *client, std::list<EQ::ItemInstance *> &items, int cash, int npc_type_id)
|
|
{
|
|
bool is_updated = false;
|
|
|
|
LogTasks("[UpdateTasksOnDeliver] [{}]", npc_type_id);
|
|
if (!p_task_manager || (active_task_count == 0 && active_task.task_id == TASKSLOTEMPTY)) { // could be better ...
|
|
return false;
|
|
}
|
|
|
|
// loop over the union of tasks and quests
|
|
for (int i = 0; i < MAXACTIVEQUESTS + 1; i++) {
|
|
auto current_task = &active_tasks[i];
|
|
if (current_task->task_id == TASKSLOTEMPTY) {
|
|
continue;
|
|
}
|
|
|
|
// Check if there are any active deliver activities for this task
|
|
TaskInformation *p_task_data = p_task_manager->p_task_data[current_task->task_id];
|
|
if (p_task_data == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
for (int activity_id = 0; activity_id < p_task_data->activity_count; activity_id++) {
|
|
ClientActivityInformation *client_activity = ¤t_task->activity[activity_id];
|
|
ActivityInformation *activity_info = &p_task_data->activity_information[activity_id];
|
|
|
|
// We are not interested in completed or hidden activities
|
|
if (client_activity->activity_state != ActivityActive) {
|
|
continue;
|
|
}
|
|
|
|
// We are only interested in Deliver activities
|
|
if (activity_info->activity_type != ActivityDeliver &&
|
|
activity_info->activity_type != ActivityGiveCash) {
|
|
continue;
|
|
}
|
|
// Is there a zone restriction on the activity_information ?
|
|
if (!activity_info->CheckZone(zone->GetZoneID())) {
|
|
Log(Logs::General, Logs::Tasks,
|
|
"[UPDATE] Char: %s Deliver activity_information failed zone check (current zone %i, need zone "
|
|
"%s",
|
|
client->GetName(), zone->GetZoneID(), activity_info->zones.c_str());
|
|
continue;
|
|
}
|
|
// Is the activity_information to deliver to this NPCTypeID ?
|
|
if (activity_info->deliver_to_npc != npc_type_id) {
|
|
continue;
|
|
}
|
|
// Is the activity_information related to these items ?
|
|
//
|
|
if ((activity_info->activity_type == ActivityGiveCash) && cash) {
|
|
LogTasks("[UpdateTasksOnDeliver] Increment on GiveCash");
|
|
IncrementDoneCount(client, p_task_data, i, activity_id, cash);
|
|
is_updated = true;
|
|
}
|
|
else {
|
|
for (auto &item : items) {
|
|
switch (activity_info->goal_method) {
|
|
case METHODSINGLEID:
|
|
if (activity_info->goal_id != item->GetID()) {
|
|
continue;
|
|
}
|
|
break;
|
|
|
|
case METHODLIST:
|
|
if (!p_task_manager->goal_list_manager.IsInList(
|
|
activity_info->goal_id,
|
|
item->GetID())) {
|
|
continue;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
// If METHODQUEST, don't updated the activity_information here
|
|
continue;
|
|
}
|
|
// We found an active task related to this item, so increment the done count
|
|
LogTasks("[UpdateTasksOnDeliver] Increment on GiveItem");
|
|
IncrementDoneCount(
|
|
client,
|
|
p_task_data,
|
|
current_task->slot,
|
|
activity_id,
|
|
item->GetCharges() <= 0 ? 1 : item->GetCharges()
|
|
);
|
|
is_updated = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return is_updated;
|
|
}
|
|
|
|
void ClientTaskState::UpdateTasksOnTouch(Client *client, int zone_id)
|
|
{
|
|
// If the client has no tasks, there is nothing further to check.
|
|
|
|
LogTasks("[UpdateTasksOnTouch] [{}] ", zone_id);
|
|
if (!p_task_manager || (active_task_count == 0 && active_task.task_id == TASKSLOTEMPTY)) { // could be better ...
|
|
return;
|
|
}
|
|
|
|
// loop over the union of tasks and quests
|
|
for (auto &active_task : active_tasks) {
|
|
auto current_task = &active_task;
|
|
if (current_task->task_id == TASKSLOTEMPTY) {
|
|
continue;
|
|
}
|
|
|
|
// Check if there are any active explore activities for this task
|
|
TaskInformation *p_task_data = p_task_manager->p_task_data[current_task->task_id];
|
|
if (p_task_data == nullptr) {
|
|
return;
|
|
}
|
|
|
|
for (int activity_id = 0; activity_id < p_task_data->activity_count; activity_id++) {
|
|
ClientActivityInformation *client_activity = ¤t_task->activity[activity_id];
|
|
ActivityInformation *activity_info = &p_task_data->activity_information[activity_id];
|
|
|
|
// We are not interested in completed or hidden activities
|
|
if (current_task->activity[activity_id].activity_state != ActivityActive) {
|
|
continue;
|
|
}
|
|
// We are only interested in touch activities
|
|
if (activity_info->activity_type != ActivityTouch) {
|
|
continue;
|
|
}
|
|
if (activity_info->goal_method != METHODSINGLEID) {
|
|
continue;
|
|
}
|
|
if (!activity_info->CheckZone(zone_id)) {
|
|
LogTasks(
|
|
"[UpdateTasksOnTouch] character [{}] Touch activity_information failed zone check",
|
|
client->GetName()
|
|
);
|
|
continue;
|
|
}
|
|
|
|
// We found an active task to zone into this zone, so set done count to goal count
|
|
// (Only a goal count of 1 makes sense for touch activities?)
|
|
LogTasks("[UpdateTasksOnTouch] Increment on Touch");
|
|
IncrementDoneCount(
|
|
client,
|
|
p_task_data,
|
|
current_task->slot,
|
|
activity_id,
|
|
activity_info->goal_count - current_task->activity[activity_id].done_count
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
void ClientTaskState::IncrementDoneCount(
|
|
Client *client,
|
|
TaskInformation *task_information,
|
|
int task_index,
|
|
int activity_id,
|
|
int count,
|
|
bool ignore_quest_update
|
|
)
|
|
{
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] IncrementDoneCount");
|
|
|
|
auto info = GetClientTaskInfo(task_information->type, task_index);
|
|
|
|
if (info == nullptr) {
|
|
return;
|
|
}
|
|
|
|
info->activity[activity_id].done_count += count;
|
|
|
|
if (info->activity[activity_id].done_count > task_information->activity_information[activity_id].goal_count) {
|
|
info->activity[activity_id].done_count = task_information->activity_information[activity_id].goal_count;
|
|
}
|
|
|
|
if (!ignore_quest_update) {
|
|
char buf[24];
|
|
snprintf(
|
|
buf,
|
|
23,
|
|
"%d %d %d",
|
|
info->activity[activity_id].done_count,
|
|
info->activity[activity_id].activity_id,
|
|
info->task_id
|
|
);
|
|
buf[23] = '\0';
|
|
parse->EventPlayer(EVENT_TASK_UPDATE, client, buf, 0);
|
|
}
|
|
|
|
info->activity[activity_id].updated = true;
|
|
// Have we reached the goal count for this activity_information ?
|
|
if (info->activity[activity_id].done_count >= task_information->activity_information[activity_id].goal_count) {
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] Done (%i) = Goal (%i) for activity_information %i",
|
|
info->activity[activity_id].done_count,
|
|
task_information->activity_information[activity_id].goal_count,
|
|
activity_id);
|
|
|
|
// Flag the activity_information as complete
|
|
info->activity[activity_id].activity_state = ActivityCompleted;
|
|
// Unlock subsequent activities for this task
|
|
bool TaskComplete = UnlockActivities(client->CharacterID(), *info);
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] TaskCompleted is %i", TaskComplete);
|
|
// and by the 'Task Stage Completed' message
|
|
client->SendTaskActivityComplete(info->task_id, activity_id, task_index, task_information->type);
|
|
// Send the updated task/activity_information list to the client
|
|
p_task_manager->SendSingleActiveTaskToClient(client, *info, TaskComplete, false);
|
|
// Inform the client the task has been updated, both by a chat message
|
|
client->Message(Chat::White, "Your task '%s' has been updated.", task_information->title.c_str());
|
|
|
|
if (task_information->activity_information[activity_id].goal_method != METHODQUEST) {
|
|
if (!ignore_quest_update) {
|
|
char buf[24];
|
|
snprintf(buf, 23, "%d %d", info->task_id, info->activity[activity_id].activity_id);
|
|
buf[23] = '\0';
|
|
parse->EventPlayer(EVENT_TASK_STAGE_COMPLETE, client, buf, 0);
|
|
}
|
|
/* QS: PlayerLogTaskUpdates :: Update */
|
|
if (RuleB(QueryServ, PlayerLogTaskUpdates)) {
|
|
std::string event_desc = StringFormat(
|
|
"Task Stage Complete :: taskid:%i activityid:%i donecount:%i in zoneid:%i instid:%i",
|
|
info->task_id,
|
|
info->activity[activity_id].activity_id,
|
|
info->activity[activity_id].done_count,
|
|
client->GetZoneID(),
|
|
client->GetInstanceID());
|
|
QServ->PlayerLogEvent(Player_Log_Task_Updates, client->CharacterID(), event_desc);
|
|
}
|
|
}
|
|
|
|
// If this task is now complete, the Completed tasks will have been
|
|
// updated in UnlockActivities. Send the completed task list to the
|
|
// client. This is the same sequence the packets are sent on live.
|
|
if (TaskComplete) {
|
|
char buf[24];
|
|
snprintf(
|
|
buf,
|
|
23,
|
|
"%d %d %d",
|
|
info->activity[activity_id].done_count,
|
|
info->activity[activity_id].activity_id,
|
|
info->task_id
|
|
);
|
|
buf[23] = '\0';
|
|
parse->EventPlayer(EVENT_TASK_COMPLETE, client, buf, 0);
|
|
|
|
/* QS: PlayerLogTaskUpdates :: Complete */
|
|
if (RuleB(QueryServ, PlayerLogTaskUpdates)) {
|
|
std::string event_desc = StringFormat(
|
|
"Task Complete :: taskid:%i activityid:%i donecount:%i in zoneid:%i instid:%i",
|
|
info->task_id,
|
|
info->activity[activity_id].activity_id,
|
|
info->activity[activity_id].done_count,
|
|
client->GetZoneID(),
|
|
client->GetInstanceID());
|
|
QServ->PlayerLogEvent(Player_Log_Task_Updates, client->CharacterID(), event_desc);
|
|
}
|
|
|
|
p_task_manager->SendCompletedTasksToClient(client, this);
|
|
client->SendTaskActivityComplete(info->task_id, 0, task_index, task_information->type, 0);
|
|
p_task_manager->SaveClientState(client, this);
|
|
//c->SendTaskComplete(TaskIndex);
|
|
client->CancelTask(task_index, task_information->type);
|
|
//if(Task->reward_method != METHODQUEST) RewardTask(c, Task);
|
|
// If Experience and/or cash rewards are set, reward them from the task even if reward_method is METHODQUEST
|
|
RewardTask(client, task_information);
|
|
//RemoveTask(c, TaskIndex);
|
|
|
|
}
|
|
|
|
}
|
|
else {
|
|
// Send an updated packet for this single activity_information
|
|
p_task_manager->SendTaskActivityLong(
|
|
client, info->task_id, activity_id, task_index,
|
|
task_information->activity_information[activity_id].optional
|
|
);
|
|
p_task_manager->SaveClientState(client, this);
|
|
}
|
|
}
|
|
|
|
void ClientTaskState::RewardTask(Client *client, TaskInformation *task_information)
|
|
{
|
|
|
|
if (!task_information || !client) {
|
|
return;
|
|
}
|
|
|
|
const EQ::ItemData *Item;
|
|
std::vector<int> RewardList;
|
|
|
|
switch (task_information->reward_method) {
|
|
case METHODSINGLEID: {
|
|
if (task_information->reward_id) {
|
|
client->SummonItem(task_information->reward_id);
|
|
Item = database.GetItem(task_information->reward_id);
|
|
if (Item) {
|
|
client->Message(Chat::Yellow, "You receive %s as a reward.", Item->Name);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case METHODLIST: {
|
|
RewardList = p_task_manager->goal_list_manager.GetListContents(task_information->reward_id);
|
|
for (int i : RewardList) {
|
|
client->SummonItem(i);
|
|
Item = database.GetItem(i);
|
|
if (Item) {
|
|
client->Message(Chat::Yellow, "You receive %s as a reward.", Item->Name);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
default: {
|
|
// Nothing special done for METHODQUEST
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!task_information->completion_emote.empty()) {
|
|
client->SendColoredText(
|
|
Chat::Yellow,
|
|
task_information->completion_emote
|
|
);
|
|
} // unsure if they use this packet or color, should work
|
|
|
|
// just use normal NPC faction ID stuff
|
|
if (task_information->faction_reward) {
|
|
client->SetFactionLevel(
|
|
client->CharacterID(),
|
|
task_information->faction_reward,
|
|
client->GetBaseClass(),
|
|
client->GetBaseRace(),
|
|
client->GetDeity()
|
|
);
|
|
}
|
|
|
|
if (task_information->cash_reward) {
|
|
int platinum, gold, silver, copper;
|
|
|
|
copper = task_information->cash_reward;
|
|
client->AddMoneyToPP(copper, true);
|
|
|
|
platinum = copper / 1000;
|
|
copper = copper - (platinum * 1000);
|
|
gold = copper / 100;
|
|
copper = copper - (gold * 100);
|
|
silver = copper / 10;
|
|
copper = copper - (silver * 10);
|
|
|
|
std::string cash_message;
|
|
|
|
if (platinum > 0) {
|
|
cash_message = "You receive ";
|
|
cash_message += itoa(platinum);
|
|
cash_message += " platinum";
|
|
}
|
|
if (gold > 0) {
|
|
if (cash_message.length() == 0) {
|
|
cash_message = "You receive ";
|
|
}
|
|
else {
|
|
cash_message += ",";
|
|
}
|
|
cash_message += itoa(gold);
|
|
cash_message += " gold";
|
|
}
|
|
if (silver > 0) {
|
|
if (cash_message.length() == 0) {
|
|
cash_message = "You receive ";
|
|
}
|
|
else {
|
|
cash_message += ",";
|
|
}
|
|
cash_message += itoa(silver);
|
|
cash_message += " silver";
|
|
}
|
|
if (copper > 0) {
|
|
if (cash_message.length() == 0) {
|
|
cash_message = "You receive ";
|
|
}
|
|
else {
|
|
cash_message += ",";
|
|
}
|
|
cash_message += itoa(copper);
|
|
cash_message += " copper";
|
|
}
|
|
cash_message += " pieces.";
|
|
client->Message(Chat::Yellow, cash_message.c_str());
|
|
}
|
|
int32 experience_reward = task_information->experience_reward;
|
|
if (experience_reward > 0) {
|
|
client->AddEXP(experience_reward);
|
|
}
|
|
if (experience_reward < 0) {
|
|
uint32 pos_reward = experience_reward * -1;
|
|
// Minimal Level Based Exp reward Setting is 101 (1% exp at level 1)
|
|
if (pos_reward > 100 && pos_reward < 25700) {
|
|
uint8 max_level = pos_reward / 100;
|
|
uint8 exp_percent = pos_reward - (max_level * 100);
|
|
client->AddLevelBasedExp(exp_percent, max_level);
|
|
}
|
|
}
|
|
|
|
client->SendSound();
|
|
}
|
|
|
|
bool ClientTaskState::IsTaskActive(int task_id)
|
|
{
|
|
if (active_task.task_id == task_id) {
|
|
return true;
|
|
}
|
|
|
|
if (active_task_count == 0 || task_id == 0) {
|
|
return false;
|
|
}
|
|
|
|
for (auto &active_quest : active_quests) {
|
|
if (active_quest.task_id == task_id) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void ClientTaskState::FailTask(Client *client, int task_id)
|
|
{
|
|
LogTasks(
|
|
"[FailTask] Failing task for character [{}] task_id [{}] task_count [{}]",
|
|
client->GetCleanName(),
|
|
task_id,
|
|
active_task_count
|
|
);
|
|
|
|
if (active_task.task_id == task_id) {
|
|
client->SendTaskFailed(task_id, 0, TaskType::Task);
|
|
// Remove the task from the client
|
|
client->CancelTask(0, TaskType::Task);
|
|
return;
|
|
}
|
|
|
|
// TODO: shared tasks
|
|
|
|
if (active_task_count == 0) {
|
|
return;
|
|
}
|
|
|
|
for (int i = 0; i < MAXACTIVEQUESTS; i++) {
|
|
if (active_quests[i].task_id == task_id) {
|
|
client->SendTaskFailed(active_quests[i].task_id, i, TaskType::Quest);
|
|
// Remove the task from the client
|
|
client->CancelTask(i, TaskType::Quest);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: Shared tasks
|
|
bool ClientTaskState::IsTaskActivityActive(int task_id, int activity_id)
|
|
{
|
|
LogTasks("[IsTaskActivityActive] task_id [{}] activity_id [{}]", task_id, activity_id);
|
|
|
|
// Quick sanity check
|
|
if (activity_id < 0) {
|
|
return false;
|
|
}
|
|
if (active_task_count == 0 && active_task.task_id == TASKSLOTEMPTY) {
|
|
return false;
|
|
}
|
|
|
|
int active_task_index = -1;
|
|
auto task_type = TaskType::Task;
|
|
|
|
if (active_task.task_id == task_id) {
|
|
active_task_index = 0;
|
|
}
|
|
|
|
if (active_task_index == -1) {
|
|
for (int i = 0; i < MAXACTIVEQUESTS; i++) {
|
|
if (active_quests[i].task_id == task_id) {
|
|
active_task_index = i;
|
|
task_type = TaskType::Quest;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// The client does not have this task
|
|
if (active_task_index == -1) {
|
|
return false;
|
|
}
|
|
|
|
auto info = GetClientTaskInfo(task_type, active_task_index);
|
|
|
|
if (info == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
TaskInformation *p_task_data = p_task_manager->p_task_data[info->task_id];
|
|
|
|
// The task is invalid
|
|
if (p_task_data == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
// The activity_id is out of range
|
|
if (activity_id >= p_task_data->activity_count) {
|
|
return false;
|
|
}
|
|
|
|
LogTasks(
|
|
"[IsTaskActivityActive] (Update) task_id [{}] activity_id [{}] activity_state",
|
|
task_id,
|
|
activity_id,
|
|
info->activity[activity_id].activity_state
|
|
);
|
|
|
|
return (info->activity[activity_id].activity_state == ActivityActive);
|
|
}
|
|
|
|
void ClientTaskState::UpdateTaskActivity(
|
|
Client *client,
|
|
int task_id,
|
|
int activity_id,
|
|
int count,
|
|
bool ignore_quest_update /*= false*/)
|
|
{
|
|
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] ClientTaskState UpdateTaskActivity(%i, %i, %i).", task_id, activity_id,
|
|
count);
|
|
|
|
// Quick sanity check
|
|
if (activity_id < 0 || (active_task_count == 0 && active_task.task_id == TASKSLOTEMPTY)) {
|
|
return;
|
|
}
|
|
|
|
int active_task_index = -1;
|
|
auto type = TaskType::Task;
|
|
|
|
if (active_task.task_id == task_id) {
|
|
active_task_index = 0;
|
|
}
|
|
|
|
if (active_task_index == -1) {
|
|
for (int i = 0; i < MAXACTIVEQUESTS; i++) {
|
|
if (active_quests[i].task_id == task_id) {
|
|
active_task_index = i;
|
|
type = TaskType::Quest;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// The client does not have this task
|
|
if (active_task_index == -1) {
|
|
return;
|
|
}
|
|
|
|
auto info = GetClientTaskInfo(type, active_task_index);
|
|
|
|
if (info == nullptr) {
|
|
return;
|
|
}
|
|
|
|
TaskInformation *Task = p_task_manager->p_task_data[info->task_id];
|
|
|
|
// The task is invalid
|
|
if (Task == nullptr) {
|
|
return;
|
|
}
|
|
|
|
// The activity_id is out of range
|
|
if (activity_id >= Task->activity_count) {
|
|
return;
|
|
}
|
|
|
|
// The activity_information is not currently active
|
|
if (info->activity[activity_id].activity_state == ActivityHidden) {
|
|
return;
|
|
}
|
|
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] Increment done count on UpdateTaskActivity %d %d", activity_id, count);
|
|
IncrementDoneCount(client, Task, active_task_index, activity_id, count, ignore_quest_update);
|
|
}
|
|
|
|
void ClientTaskState::ResetTaskActivity(Client *client, int task_id, int activity_id)
|
|
{
|
|
Log(Logs::General, Logs::Tasks, "[RESET] ClientTaskState ResetTaskActivity(%i, %i).", task_id, activity_id);
|
|
|
|
// Quick sanity check
|
|
if (activity_id < 0 || (active_task_count == 0 && active_task.task_id == TASKSLOTEMPTY)) {
|
|
return;
|
|
}
|
|
|
|
int active_task_index = -1;
|
|
auto type = TaskType::Task;
|
|
|
|
if (active_task.task_id == task_id) {
|
|
active_task_index = 0;
|
|
}
|
|
|
|
if (active_task_index == -1) {
|
|
for (int i = 0; i < MAXACTIVEQUESTS; i++) {
|
|
if (active_quests[i].task_id == task_id) {
|
|
active_task_index = i;
|
|
type = TaskType::Quest;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// The client does not have this task
|
|
if (active_task_index == -1) {
|
|
return;
|
|
}
|
|
|
|
auto info = GetClientTaskInfo(type, active_task_index);
|
|
|
|
if (info == nullptr) {
|
|
return;
|
|
}
|
|
|
|
TaskInformation *p_task_data = p_task_manager->p_task_data[info->task_id];
|
|
if (p_task_data == nullptr) {
|
|
return;
|
|
}
|
|
|
|
// The activity_id is out of range
|
|
if (activity_id >= p_task_data->activity_count) {
|
|
return;
|
|
}
|
|
|
|
// The activity_information is not currently active
|
|
if (info->activity[activity_id].activity_state == ActivityHidden) {
|
|
return;
|
|
}
|
|
|
|
Log(Logs::General, Logs::Tasks, "[RESET] Increment done count on ResetTaskActivity");
|
|
IncrementDoneCount(
|
|
client,
|
|
p_task_data,
|
|
active_task_index,
|
|
activity_id,
|
|
(info->activity[activity_id].done_count * -1),
|
|
false
|
|
);
|
|
}
|
|
|
|
void ClientTaskState::ShowClientTasks(Client *client)
|
|
{
|
|
client->Message(Chat::White, "Task Information:");
|
|
if (active_task.task_id != TASKSLOTEMPTY) {
|
|
client->Message(
|
|
Chat::White,
|
|
"Task: %i %s",
|
|
active_task.task_id,
|
|
p_task_manager->p_task_data[active_task.task_id]->title.c_str()
|
|
);
|
|
client->Message(
|
|
Chat::White,
|
|
" description: [%s]\n",
|
|
p_task_manager->p_task_data[active_task.task_id]->description.c_str()
|
|
);
|
|
for (int activity_id = 0; activity_id < p_task_manager->GetActivityCount(active_task.task_id); activity_id++) {
|
|
client->Message(
|
|
Chat::White,
|
|
" activity_information: %2d, done_count: %2d, Status: %d (0=Hidden, 1=Active, 2=Complete)",
|
|
active_task.activity[activity_id].activity_id,
|
|
active_task.activity[activity_id].done_count,
|
|
active_task.activity[activity_id].activity_state
|
|
);
|
|
}
|
|
}
|
|
|
|
for (auto &active_quest : active_quests) {
|
|
if (active_quest.task_id == TASKSLOTEMPTY) {
|
|
continue;
|
|
}
|
|
|
|
client->Message(
|
|
Chat::White, "Quest: %i %s", active_quest.task_id,
|
|
p_task_manager->p_task_data[active_quest.task_id]->title.c_str()
|
|
);
|
|
|
|
client->Message(
|
|
Chat::White,
|
|
" description: [%s]\n",
|
|
p_task_manager->p_task_data[active_quest.task_id]->description.c_str()
|
|
);
|
|
|
|
for (int j = 0; j < p_task_manager->GetActivityCount(active_quest.task_id); j++) {
|
|
client->Message(
|
|
Chat::White,
|
|
" activity_information: %2d, done_count: %2d, Status: %d (0=Hidden, 1=Active, 2=Complete)",
|
|
active_quest.activity[j].activity_id,
|
|
active_quest.activity[j].done_count,
|
|
active_quest.activity[j].activity_state
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: Shared Task
|
|
int ClientTaskState::TaskTimeLeft(int task_id)
|
|
{
|
|
if (active_task.task_id == task_id) {
|
|
int time_now = time(nullptr);
|
|
|
|
TaskInformation *p_task_data = p_task_manager->p_task_data[task_id];
|
|
if (p_task_data == nullptr) {
|
|
return -1;
|
|
}
|
|
|
|
if (!p_task_data->duration) {
|
|
return -1;
|
|
}
|
|
|
|
int time_left = (active_task.accepted_time + p_task_data->duration - time_now);
|
|
|
|
return (time_left > 0 ? time_left : 0);
|
|
}
|
|
|
|
if (active_task_count == 0) {
|
|
return -1;
|
|
}
|
|
|
|
for (auto &active_quest : active_quests) {
|
|
if (active_quest.task_id != task_id) {
|
|
continue;
|
|
}
|
|
|
|
int time_now = time(nullptr);
|
|
|
|
TaskInformation *p_task_data = p_task_manager->p_task_data[active_quest.task_id];
|
|
if (p_task_data == nullptr) {
|
|
return -1;
|
|
}
|
|
|
|
if (!p_task_data->duration) {
|
|
return -1;
|
|
}
|
|
|
|
int time_left = (active_quest.accepted_time + p_task_data->duration - time_now);
|
|
|
|
// If Timeleft is negative, return 0, else return the number of seconds left
|
|
|
|
return (time_left > 0 ? time_left : 0);
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
int ClientTaskState::IsTaskCompleted(int task_id)
|
|
{
|
|
|
|
// Returns: -1 if RecordCompletedTasks is not true
|
|
// +1 if the task has been completed
|
|
// 0 if the task has not been completed
|
|
|
|
if (!(RuleB(TaskSystem, RecordCompletedTasks))) {
|
|
return -1;
|
|
}
|
|
|
|
for (auto &completed_task : completed_tasks) {
|
|
LogTasks("[IsTaskCompleted] Comparing compelted task [{}] with [{}]", completed_task.task_id, task_id);
|
|
if (completed_task.task_id == task_id) {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
bool TaskManager::IsTaskRepeatable(int task_id)
|
|
{
|
|
if ((task_id <= 0) || (task_id >= MAXTASKS)) {
|
|
return false;
|
|
}
|
|
|
|
TaskInformation *task_data = p_task_manager->p_task_data[task_id];
|
|
if (task_data == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
return task_data->repeatable;
|
|
}
|
|
|
|
bool ClientTaskState::TaskOutOfTime(TaskType task_type, int index)
|
|
{
|
|
// Returns true if the Task in the specified slot has a time limit that has been exceeded.
|
|
auto info = GetClientTaskInfo(task_type, index);
|
|
if (info == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
// make sure the task_id is at least maybe in our array
|
|
if (info->task_id <= 0 || info->task_id >= MAXTASKS) {
|
|
return false;
|
|
}
|
|
|
|
int time_now = time(nullptr);
|
|
|
|
TaskInformation *task_data = p_task_manager->p_task_data[info->task_id];
|
|
if (task_data == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
return (task_data->duration && (info->accepted_time + task_data->duration <= time_now));
|
|
}
|
|
|
|
void ClientTaskState::TaskPeriodicChecks(Client *client)
|
|
{
|
|
if (active_task.task_id != TASKSLOTEMPTY) {
|
|
if (TaskOutOfTime(TaskType::Task, 0)) {
|
|
// Send Red Task Failed Message
|
|
client->SendTaskFailed(active_task.task_id, 0, TaskType::Task);
|
|
// Remove the task from the client
|
|
client->CancelTask(0, TaskType::Task);
|
|
// It is a conscious decision to only fail one task per call to this method,
|
|
// otherwise the player will not see all the failed messages where multiple
|
|
// tasks fail at the same time.
|
|
return;
|
|
}
|
|
}
|
|
|
|
// TODO: shared tasks -- although that will probably be manager in world checking and telling zones to fail us
|
|
|
|
if (active_task_count == 0) {
|
|
return;
|
|
}
|
|
|
|
// Check for tasks that have failed because they have not been completed in the specified time
|
|
//
|
|
for (int i = 0; i < MAXACTIVEQUESTS; i++) {
|
|
if (active_quests[i].task_id == TASKSLOTEMPTY) {
|
|
continue;
|
|
}
|
|
|
|
if (TaskOutOfTime(TaskType::Quest, i)) {
|
|
// Send Red Task Failed Message
|
|
client->SendTaskFailed(active_quests[i].task_id, i, TaskType::Quest);
|
|
// Remove the task from the client
|
|
client->CancelTask(i, TaskType::Quest);
|
|
// It is a conscious decision to only fail one task per call to this method,
|
|
// otherwise the player will not see all the failed messages where multiple
|
|
// tasks fail at the same time.
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Check for activities that require zoning into a specific zone.
|
|
// This is done in this method because it gives an extra few seconds for the client screen to display
|
|
// the zone before we send the 'Task activity_information Completed' message.
|
|
//
|
|
if (!checked_touch_activities) {
|
|
UpdateTasksOnTouch(client, zone->GetZoneID());
|
|
checked_touch_activities = true;
|
|
}
|
|
}
|
|
|
|
#if 0
|
|
void Client::SendTaskComplete(int TaskIndex) {
|
|
|
|
// 0x4c8c
|
|
|
|
TaskComplete_Struct* tcs;
|
|
|
|
EQApplicationPacket* outapp = new EQApplicationPacket(OP_TaskComplete, sizeof(TaskComplete_Struct));
|
|
|
|
tcs = (TaskComplete_Struct*)outapp->pBuffer;
|
|
|
|
// I have seen unknown0 as non-zero. It always seems to match the value in the first word of the
|
|
// Task activity_information Complete packet sent immediately prior to it.
|
|
//tcs->unknown00 = 0x00000000;
|
|
tcs->unknown00 = TaskIndex;
|
|
// I have only seen 0x00000002 in the next field. This is a common 'unknown' value in the task packets.
|
|
// I suspect this is the type field to indicate this is a quest task, as opposed to other types.
|
|
tcs->unknown04 = 0x00000002;
|
|
|
|
Log.LogDebugType(Logs::Detail, Logs::Tasks, "SendTasksComplete");
|
|
DumpPacket(outapp); fflush(stdout);
|
|
|
|
QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
|
|
|
|
|
|
}
|
|
#endif
|
|
|
|
void ClientTaskState::SendTaskHistory(Client *client, int task_index)
|
|
{
|
|
|
|
LogTasks("[SendTaskHistory] Task history requested for completed task index [{}]", task_index);
|
|
|
|
// We only sent the most recent 50 completed tasks, so we need to offset the Index the client sent to us.
|
|
|
|
int adjusted_task_index = task_index;
|
|
if (completed_tasks.size() > 50) {
|
|
adjusted_task_index += (completed_tasks.size() - 50);
|
|
}
|
|
|
|
if ((adjusted_task_index < 0) || (adjusted_task_index >= (int) completed_tasks.size())) {
|
|
return;
|
|
}
|
|
|
|
int TaskID = completed_tasks[adjusted_task_index].task_id;
|
|
|
|
if ((TaskID < 0) || (TaskID > MAXTASKS)) {
|
|
return;
|
|
}
|
|
|
|
TaskInformation *Task = p_task_manager->p_task_data[TaskID];
|
|
|
|
if (Task == nullptr) {
|
|
return;
|
|
}
|
|
|
|
TaskHistoryReplyHeader_Struct *task_history_reply;
|
|
TaskHistoryReplyData1_Struct *task_history_reply_data_1;
|
|
TaskHistoryReplyData2_Struct *task_history_reply_data_2;
|
|
|
|
char *reply;
|
|
|
|
int completed_activity_count = 0;
|
|
int packet_length = sizeof(TaskHistoryReplyHeader_Struct);
|
|
|
|
for (int i = 0; i < Task->activity_count; i++) {
|
|
if (completed_tasks[adjusted_task_index].activity_done[i]) {
|
|
completed_activity_count++;
|
|
packet_length = packet_length + sizeof(TaskHistoryReplyData1_Struct) +
|
|
Task->activity_information[i].target_name.size() + 1 +
|
|
Task->activity_information[i].item_list.size() + 1 +
|
|
sizeof(TaskHistoryReplyData2_Struct) +
|
|
Task->activity_information[i].description_override.size() + 1;
|
|
}
|
|
}
|
|
|
|
auto outapp = new EQApplicationPacket(OP_TaskHistoryReply, packet_length);
|
|
|
|
task_history_reply = (TaskHistoryReplyHeader_Struct *) outapp->pBuffer;
|
|
|
|
// We use the TaskIndex the client sent in the request
|
|
task_history_reply->TaskID = task_index;
|
|
task_history_reply->ActivityCount = completed_activity_count;
|
|
|
|
reply = (char *) task_history_reply + sizeof(TaskHistoryReplyHeader_Struct);
|
|
|
|
for (int i = 0; i < Task->activity_count; i++) {
|
|
if (completed_tasks[adjusted_task_index].activity_done[i]) {
|
|
task_history_reply_data_1 = (TaskHistoryReplyData1_Struct *) reply;
|
|
task_history_reply_data_1->ActivityType = Task->activity_information[i].activity_type;
|
|
reply = (char *) task_history_reply_data_1 + sizeof(TaskHistoryReplyData1_Struct);
|
|
VARSTRUCT_ENCODE_STRING(reply, Task->activity_information[i].target_name.c_str());
|
|
VARSTRUCT_ENCODE_STRING(reply, Task->activity_information[i].item_list.c_str());
|
|
task_history_reply_data_2 = (TaskHistoryReplyData2_Struct *) reply;
|
|
task_history_reply_data_2->GoalCount = Task->activity_information[i].goal_count;
|
|
task_history_reply_data_2->unknown04 = 0xffffffff;
|
|
task_history_reply_data_2->unknown08 = 0xffffffff;
|
|
task_history_reply_data_2->ZoneID = Task->activity_information[i].zone_ids.empty() ? 0
|
|
: Task->activity_information[i].zone_ids.front();
|
|
task_history_reply_data_2->unknown16 = 0x00000000;
|
|
reply = (char *) task_history_reply_data_2 + sizeof(TaskHistoryReplyData2_Struct);
|
|
VARSTRUCT_ENCODE_STRING(reply, Task->activity_information[i].description_override.c_str());
|
|
}
|
|
}
|
|
|
|
|
|
client->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
}
|
|
|
|
void Client::SendTaskActivityComplete(
|
|
int task_id,
|
|
int activity_id,
|
|
int task_index,
|
|
TaskType task_type,
|
|
int task_incomplete
|
|
)
|
|
{
|
|
TaskActivityComplete_Struct *task_activity_complete;
|
|
|
|
auto outapp = new EQApplicationPacket(OP_TaskActivityComplete, sizeof(TaskActivityComplete_Struct));
|
|
|
|
task_activity_complete = (TaskActivityComplete_Struct *) outapp->pBuffer;
|
|
|
|
task_activity_complete->TaskIndex = task_index;
|
|
task_activity_complete->TaskType = static_cast<uint32>(task_type);
|
|
task_activity_complete->TaskID = task_id;
|
|
task_activity_complete->ActivityID = activity_id;
|
|
task_activity_complete->task_completed = 0x00000001;
|
|
task_activity_complete->stage_complete = task_incomplete;
|
|
|
|
QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
}
|
|
|
|
|
|
void Client::SendTaskFailed(int task_id, int task_index, TaskType task_type)
|
|
{
|
|
// 0x54eb
|
|
char buf[24];
|
|
snprintf(buf, 23, "%d", task_id);
|
|
buf[23] = '\0';
|
|
parse->EventPlayer(EVENT_TASK_FAIL, this, buf, 0);
|
|
|
|
TaskActivityComplete_Struct *task_activity_complete;
|
|
|
|
auto outapp = new EQApplicationPacket(OP_TaskActivityComplete, sizeof(TaskActivityComplete_Struct));
|
|
|
|
task_activity_complete = (TaskActivityComplete_Struct *) outapp->pBuffer;
|
|
task_activity_complete->TaskIndex = task_index;
|
|
task_activity_complete->TaskType = static_cast<uint32>(task_type);
|
|
task_activity_complete->TaskID = task_id;
|
|
task_activity_complete->ActivityID = 0;
|
|
task_activity_complete->task_completed = 0; //Fail
|
|
task_activity_complete->stage_complete = 0; // 0 for task complete or failed.
|
|
|
|
LogTasks("[SendTaskFailed] Sending failure to client [{}]", GetCleanName());
|
|
|
|
QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
}
|
|
|
|
void TaskManager::SendCompletedTasksToClient(Client *c, ClientTaskState *client_task_state)
|
|
{
|
|
int packet_length = 4;
|
|
|
|
//vector<CompletedTaskInformation>::const_iterator iterator;
|
|
// The client only display the first 50 Completed Tasks send, so send the 50 most recent
|
|
int first_task_to_send = 0;
|
|
int last_task_to_send = client_task_state->completed_tasks.size();
|
|
|
|
if (client_task_state->completed_tasks.size() > 50) {
|
|
first_task_to_send = client_task_state->completed_tasks.size() - 50;
|
|
}
|
|
|
|
LogTasks(
|
|
"[SendCompletedTasksToClient] completed task count [{}] first tank to send is [{}] last is [{}]",
|
|
client_task_state->completed_tasks.size(),
|
|
first_task_to_send,
|
|
last_task_to_send
|
|
);
|
|
|
|
/*
|
|
for(iterator=activity_state->CompletedTasks.begin(); iterator!=activity_state->CompletedTasks.end(); iterator++) {
|
|
int task_id = (*iterator).task_id;
|
|
if(Tasks[task_id] == nullptr) continue;
|
|
PacketLength = PacketLength + 8 + strlen(Tasks[task_id]->title) + 1;
|
|
}
|
|
*/
|
|
for (int i = first_task_to_send; i < last_task_to_send; i++) {
|
|
int TaskID = client_task_state->completed_tasks[i].task_id;
|
|
if (p_task_data[TaskID] == nullptr) { continue; }
|
|
packet_length = packet_length + 8 + p_task_data[TaskID]->title.size() + 1;
|
|
}
|
|
|
|
auto outapp = new EQApplicationPacket(OP_CompletedTasks, packet_length);
|
|
char *buf = (char *) outapp->pBuffer;
|
|
|
|
//*(uint32 *)buf = activity_state->CompletedTasks.size();
|
|
*(uint32 *) buf = last_task_to_send - first_task_to_send;
|
|
buf = buf + 4;
|
|
//for(iterator=activity_state->CompletedTasks.begin(); iterator!=activity_state->CompletedTasks.end(); iterator++) {
|
|
// int task_id = (*iterator).task_id;
|
|
for (int i = first_task_to_send; i < last_task_to_send; i++) {
|
|
int task_id = client_task_state->completed_tasks[i].task_id;
|
|
if (p_task_data[task_id] == nullptr) { continue; }
|
|
*(uint32 *) buf = task_id;
|
|
buf = buf + 4;
|
|
|
|
sprintf(buf, "%s", p_task_data[task_id]->title.c_str());
|
|
buf = buf + strlen(buf) + 1;
|
|
//*(uint32 *)buf = (*iterator).CompletedTime;
|
|
*(uint32 *) buf = client_task_state->completed_tasks[i].completed_time;
|
|
buf = buf + 4;
|
|
}
|
|
|
|
c->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
}
|
|
|
|
|
|
void TaskManager::SendTaskActivityShort(Client *client, int task_id, int activity_id, int client_task_index)
|
|
{
|
|
// This activity_information Packet is sent for activities that have not yet been unlocked and appear as ???
|
|
// in the client.
|
|
|
|
TaskActivityShort_Struct *task_activity_short;
|
|
if (client->ClientVersionBit() & EQ::versions::maskRoFAndLater) {
|
|
auto outapp = new EQApplicationPacket(OP_TaskActivity, 25);
|
|
outapp->WriteUInt32(client_task_index);
|
|
outapp->WriteUInt32(static_cast<uint32>(p_task_data[task_id]->type));
|
|
outapp->WriteUInt32(task_id);
|
|
outapp->WriteUInt32(activity_id);
|
|
outapp->WriteUInt32(0);
|
|
outapp->WriteUInt32(0xffffffff);
|
|
outapp->WriteUInt8(0);
|
|
client->FastQueuePacket(&outapp);
|
|
|
|
return;
|
|
}
|
|
|
|
auto outapp = new EQApplicationPacket(OP_TaskActivity, sizeof(TaskActivityShort_Struct));
|
|
|
|
task_activity_short = (TaskActivityShort_Struct *) outapp->pBuffer;
|
|
task_activity_short->TaskSequenceNumber = client_task_index;
|
|
task_activity_short->unknown2 = static_cast<uint32>(p_task_data[task_id]->type);
|
|
task_activity_short->TaskID = task_id;
|
|
task_activity_short->ActivityID = activity_id;
|
|
task_activity_short->unknown3 = 0x000000;
|
|
task_activity_short->ActivityType = 0xffffffff;
|
|
task_activity_short->unknown4 = 0x00000000;
|
|
|
|
client->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
}
|
|
|
|
|
|
void TaskManager::SendTaskActivityLong(
|
|
Client *client,
|
|
int task_id,
|
|
int activity_id,
|
|
int client_task_index,
|
|
bool optional,
|
|
bool task_complete
|
|
)
|
|
{
|
|
|
|
if (client->ClientVersion() >= EQ::versions::ClientVersion::RoF) {
|
|
SendTaskActivityNew(client, task_id, activity_id, client_task_index, optional, task_complete);
|
|
return;
|
|
}
|
|
|
|
SerializeBuffer buf(100);
|
|
|
|
buf.WriteUInt32(client_task_index);
|
|
buf.WriteUInt32(static_cast<uint32>(p_task_data[task_id]->type));
|
|
buf.WriteUInt32(task_id);
|
|
buf.WriteUInt32(activity_id);
|
|
buf.WriteUInt32(0); // unknown3
|
|
|
|
// We send our 'internal' types as ActivityCastOn. text3 should be set to the activity_information description, so it makes
|
|
// no difference to the client. All activity_information updates will be done based on our interal activity_information types.
|
|
if ((p_task_data[task_id]->activity_information[activity_id].activity_type > 0) &&
|
|
p_task_data[task_id]->activity_information[activity_id].activity_type < 100) {
|
|
buf.WriteUInt32(p_task_data[task_id]->activity_information[activity_id].activity_type);
|
|
}
|
|
else {
|
|
buf.WriteUInt32(ActivityCastOn);
|
|
} // w/e!
|
|
|
|
buf.WriteUInt32(optional);
|
|
buf.WriteUInt32(0); // solo, group, raid
|
|
|
|
buf.WriteString(p_task_data[task_id]->activity_information[activity_id].target_name); // target name string
|
|
buf.WriteString(p_task_data[task_id]->activity_information[activity_id].item_list); // item name list
|
|
|
|
if (p_task_data[task_id]->activity_information[activity_id].activity_type != ActivityGiveCash) {
|
|
buf.WriteUInt32(p_task_data[task_id]->activity_information[activity_id].goal_count);
|
|
}
|
|
else {
|
|
// For our internal type GiveCash, where the goal count has the amount of cash that must be given,
|
|
// we don't want the donecount and goalcount fields cluttered up with potentially large numbers, so we just
|
|
// send a goalcount of 1, and a bit further down, a donecount of 1 if the activity_information is complete, 0 otherwise.
|
|
// The text3 field should decribe the exact activity_information goal, e.g. give 3500gp to Hasten Bootstrutter.
|
|
buf.WriteUInt32(1);
|
|
}
|
|
|
|
buf.WriteUInt32(p_task_data[task_id]->activity_information[activity_id].skill_id);
|
|
buf.WriteUInt32(p_task_data[task_id]->activity_information[activity_id].spell_id);
|
|
buf.WriteUInt32(
|
|
p_task_data[task_id]->activity_information[activity_id].zone_ids.empty() ? 0
|
|
: p_task_data[task_id]->activity_information[activity_id].zone_ids.front());
|
|
buf.WriteUInt32(0);
|
|
|
|
buf.WriteString(p_task_data[task_id]->activity_information[activity_id].description_override);
|
|
|
|
if (p_task_data[task_id]->activity_information[activity_id].activity_type != ActivityGiveCash) {
|
|
buf.WriteUInt32(client->GetTaskActivityDoneCount(p_task_data[task_id]->type, client_task_index, activity_id));
|
|
}
|
|
else {
|
|
// For internal activity_information types, done_count is either 1 if the activity_information is complete, 0 otherwise.
|
|
buf.WriteUInt32((client->GetTaskActivityDoneCount(p_task_data[task_id]->type, client_task_index, activity_id) >=
|
|
p_task_data[task_id]->activity_information[activity_id].goal_count));
|
|
}
|
|
|
|
buf.WriteUInt32(1); // unknown
|
|
|
|
auto outapp = new EQApplicationPacket(OP_TaskActivity, buf);
|
|
|
|
client->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
|
|
}
|
|
|
|
// Used only by RoF+ Clients
|
|
void TaskManager::SendTaskActivityNew(
|
|
Client *client,
|
|
int task_id,
|
|
int activity_id,
|
|
int client_task_index,
|
|
bool optional,
|
|
bool task_complete
|
|
)
|
|
{
|
|
SerializeBuffer buf(100);
|
|
|
|
buf.WriteUInt32(client_task_index); // TaskSequenceNumber
|
|
buf.WriteUInt32(static_cast<uint32>(p_task_data[task_id]->type)); // task type
|
|
buf.WriteUInt32(task_id);
|
|
buf.WriteUInt32(activity_id);
|
|
buf.WriteUInt32(0); // unknown3
|
|
|
|
// We send our 'internal' types as ActivityCastOn. text3 should be set to the activity_information description, so it makes
|
|
// no difference to the client. All activity_information updates will be done based on our interal activity_information types.
|
|
if ((p_task_data[task_id]->activity_information[activity_id].activity_type > 0) &&
|
|
p_task_data[task_id]->activity_information[activity_id].activity_type < 100) {
|
|
buf.WriteUInt32(p_task_data[task_id]->activity_information[activity_id].activity_type);
|
|
}
|
|
else {
|
|
buf.WriteUInt32(ActivityCastOn);
|
|
} // w/e!
|
|
|
|
buf.WriteUInt8(optional);
|
|
buf.WriteUInt32(0); // solo, group, raid
|
|
|
|
// One of these unknown fields maybe related to the 'Use On' activity_information types
|
|
buf.WriteString(p_task_data[task_id]->activity_information[activity_id].target_name); // target name string
|
|
|
|
buf.WriteLengthString(p_task_data[task_id]->activity_information[activity_id].item_list); // item name list
|
|
|
|
// Goal Count
|
|
if (p_task_data[task_id]->activity_information[activity_id].activity_type != ActivityGiveCash) {
|
|
buf.WriteUInt32(p_task_data[task_id]->activity_information[activity_id].goal_count);
|
|
}
|
|
else {
|
|
buf.WriteUInt32(1);
|
|
} // GoalCount
|
|
|
|
// skill ID list ; separated
|
|
buf.WriteLengthString(p_task_data[task_id]->activity_information[activity_id].skill_list);
|
|
|
|
// spelll ID list ; separated -- unsure wtf we're doing here
|
|
buf.WriteLengthString(p_task_data[task_id]->activity_information[activity_id].spell_list);
|
|
|
|
buf.WriteString(p_task_data[task_id]->activity_information[activity_id].zones);
|
|
buf.WriteUInt32(0); // unknown7
|
|
|
|
buf.WriteString(p_task_data[task_id]->activity_information[activity_id].description_override); // description override
|
|
|
|
if (p_task_data[task_id]->activity_information[activity_id].activity_type != ActivityGiveCash) {
|
|
buf.WriteUInt32(
|
|
client->GetTaskActivityDoneCount(
|
|
p_task_data[task_id]->type,
|
|
client_task_index,
|
|
activity_id
|
|
)); // done_count
|
|
}
|
|
else {
|
|
// For internal activity_information types, done_count is either 1 if the activity_information is complete, 0 otherwise.
|
|
buf.WriteUInt32((client->GetTaskActivityDoneCount(p_task_data[task_id]->type, client_task_index, activity_id) >=
|
|
p_task_data[task_id]->activity_information[activity_id].goal_count));
|
|
}
|
|
|
|
buf.WriteUInt8(1); // unknown9
|
|
|
|
buf.WriteString(p_task_data[task_id]->activity_information[activity_id].zones);
|
|
|
|
auto outapp = new EQApplicationPacket(OP_TaskActivity, buf);
|
|
|
|
client->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
|
|
}
|
|
|
|
void TaskManager::SendActiveTasksToClient(Client *client, bool task_complete)
|
|
{
|
|
auto state = client->GetTaskState();
|
|
if (!state) {
|
|
return;
|
|
}
|
|
|
|
for (int task_index = 0; task_index < MAXACTIVEQUESTS + 1; task_index++) {
|
|
int task_id = state->active_tasks[task_index].task_id;
|
|
if ((task_id == 0) || (p_task_data[task_id] == 0)) {
|
|
continue;
|
|
}
|
|
int start_time = state->active_tasks[task_index].accepted_time;
|
|
|
|
SendActiveTaskDescription(
|
|
client, task_id, state->active_tasks[task_index], start_time, p_task_data[task_id]->duration,
|
|
false
|
|
);
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] SendActiveTasksToClient: Task %i, Activities: %i", task_id,
|
|
GetActivityCount(task_id));
|
|
|
|
int sequence = 0;
|
|
int fixed_index = p_task_data[task_id]->type == TaskType::Task ? 0 : task_index - 1; // hmmm fuck
|
|
for (int activity_id = 0; activity_id < GetActivityCount(task_id); activity_id++) {
|
|
if (client->GetTaskActivityState(p_task_data[task_id]->type, fixed_index, activity_id) != ActivityHidden) {
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] Long: %i, %i, %i Complete=%i", task_id,
|
|
activity_id, fixed_index, task_complete);
|
|
if (activity_id == GetActivityCount(task_id) - 1) {
|
|
SendTaskActivityLong(
|
|
client, task_id, activity_id, fixed_index,
|
|
p_task_data[task_id]->activity_information[activity_id].optional, task_complete
|
|
);
|
|
}
|
|
else {
|
|
SendTaskActivityLong(
|
|
client, task_id, activity_id, fixed_index,
|
|
p_task_data[task_id]->activity_information[activity_id].optional, 0
|
|
);
|
|
}
|
|
}
|
|
else {
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] Short: %i, %i, %i", task_id, activity_id,
|
|
fixed_index);
|
|
SendTaskActivityShort(client, task_id, activity_id, fixed_index);
|
|
}
|
|
sequence++;
|
|
}
|
|
}
|
|
}
|
|
|
|
void TaskManager::SendSingleActiveTaskToClient(
|
|
Client *client, ClientTaskInformation &task_info, bool task_complete,
|
|
bool bring_up_task_journal
|
|
)
|
|
{
|
|
int task_id = task_info.task_id;
|
|
if (task_id == 0 || p_task_data[task_id] == nullptr) {
|
|
return;
|
|
}
|
|
|
|
int start_time = task_info.accepted_time;
|
|
SendActiveTaskDescription(
|
|
client,
|
|
task_id,
|
|
task_info,
|
|
start_time,
|
|
p_task_data[task_id]->duration,
|
|
bring_up_task_journal
|
|
);
|
|
Log(Logs::General,
|
|
Logs::Tasks,
|
|
"[UPDATE] SendSingleActiveTasksToClient: Task %i, Activities: %i",
|
|
task_id,
|
|
GetActivityCount(task_id));
|
|
|
|
for (int activity_id = 0; activity_id < GetActivityCount(task_id); activity_id++) {
|
|
if (task_info.activity[activity_id].activity_state != ActivityHidden) {
|
|
LogTasks("[SendSingleActiveTaskToClient] Long [{}] [{}] complete [{}]",
|
|
task_id,
|
|
activity_id,
|
|
task_complete);
|
|
if (activity_id == GetActivityCount(task_id) - 1) {
|
|
SendTaskActivityLong(
|
|
client, task_id, activity_id, task_info.slot,
|
|
p_task_data[task_id]->activity_information[activity_id].optional, task_complete
|
|
);
|
|
}
|
|
else {
|
|
SendTaskActivityLong(
|
|
client, task_id, activity_id, task_info.slot,
|
|
p_task_data[task_id]->activity_information[activity_id].optional, 0
|
|
);
|
|
}
|
|
}
|
|
else {
|
|
LogTasks("[SendSingleActiveTaskToClient] Short [{}] [{}]", task_id, activity_id);
|
|
SendTaskActivityShort(client, task_id, activity_id, task_info.slot);
|
|
}
|
|
}
|
|
}
|
|
|
|
void TaskManager::SendActiveTaskDescription(
|
|
Client *client,
|
|
int task_id,
|
|
ClientTaskInformation &task_info,
|
|
int start_time,
|
|
int duration,
|
|
bool bring_up_task_journal
|
|
)
|
|
{
|
|
if ((task_id < 1) || (task_id >= MAXTASKS) || !p_task_data[task_id]) {
|
|
return;
|
|
}
|
|
|
|
int packet_length = sizeof(TaskDescriptionHeader_Struct) + p_task_data[task_id]->title.length() + 1
|
|
+ sizeof(TaskDescriptionData1_Struct) + p_task_data[task_id]->description.length() + 1
|
|
+ sizeof(TaskDescriptionData2_Struct) + 1 + sizeof(TaskDescriptionTrailer_Struct);
|
|
|
|
// If there is an item make the reward text into a link to the item (only the first item if a list
|
|
// is specified). I have been unable to get multiple item links to work.
|
|
//
|
|
if (p_task_data[task_id]->reward_id && p_task_data[task_id]->item_link.empty()) {
|
|
int item_id = 0;
|
|
// If the reward is a list of items, and the first entry on the list is valid
|
|
if (p_task_data[task_id]->reward_method == METHODSINGLEID) {
|
|
item_id = p_task_data[task_id]->reward_id;
|
|
}
|
|
else if (p_task_data[task_id]->reward_method == METHODLIST) {
|
|
item_id = goal_list_manager.GetFirstEntry(p_task_data[task_id]->reward_id);
|
|
if (item_id < 0) {
|
|
item_id = 0;
|
|
}
|
|
}
|
|
|
|
if (item_id) {
|
|
const EQ::ItemData *reward_item = database.GetItem(item_id);
|
|
|
|
EQ::SayLinkEngine linker;
|
|
linker.SetLinkType(EQ::saylink::SayLinkItemData);
|
|
linker.SetItemData(reward_item);
|
|
linker.SetTaskUse();
|
|
p_task_data[task_id]->item_link = linker.GenerateLink();
|
|
}
|
|
}
|
|
|
|
packet_length += p_task_data[task_id]->reward.length() + 1 + p_task_data[task_id]->item_link.length() + 1;
|
|
|
|
char *Ptr;
|
|
TaskDescriptionHeader_Struct *task_description_header;
|
|
TaskDescriptionData1_Struct *tdd1;
|
|
TaskDescriptionData2_Struct *tdd2;
|
|
TaskDescriptionTrailer_Struct *tdt;
|
|
|
|
auto outapp = new EQApplicationPacket(OP_TaskDescription, packet_length);
|
|
|
|
task_description_header = (TaskDescriptionHeader_Struct *) outapp->pBuffer;
|
|
|
|
task_description_header->SequenceNumber = task_info.slot;
|
|
task_description_header->TaskID = task_id;
|
|
task_description_header->open_window = bring_up_task_journal;
|
|
task_description_header->task_type = static_cast<uint32>(p_task_data[task_id]->type);
|
|
task_description_header->reward_type = 0; // TODO: 4 says Radiant Crystals else Ebon Crystals when shared task
|
|
|
|
Ptr = (char *) task_description_header + sizeof(TaskDescriptionHeader_Struct);
|
|
|
|
sprintf(Ptr, "%s", p_task_data[task_id]->title.c_str());
|
|
Ptr += p_task_data[task_id]->title.length() + 1;
|
|
|
|
tdd1 = (TaskDescriptionData1_Struct *) Ptr;
|
|
|
|
tdd1->Duration = duration;
|
|
tdd1->dur_code = static_cast<uint32>(p_task_data[task_id]->duration_code);
|
|
|
|
tdd1->StartTime = start_time;
|
|
|
|
Ptr = (char *) tdd1 + sizeof(TaskDescriptionData1_Struct);
|
|
|
|
sprintf(Ptr, "%s", p_task_data[task_id]->description.c_str());
|
|
Ptr += p_task_data[task_id]->description.length() + 1;
|
|
|
|
tdd2 = (TaskDescriptionData2_Struct *) Ptr;
|
|
|
|
// we have this reward stuff!
|
|
// if we ever don't hardcode this, TaskDescriptionTrailer_Struct will need to be fixed since
|
|
// "has_reward_selection" is after this bool! Smaller packet when this is 0
|
|
tdd2->has_rewards = 1;
|
|
|
|
tdd2->coin_reward = p_task_data[task_id]->cash_reward;
|
|
tdd2->xp_reward = p_task_data[task_id]->experience_reward ? 1 : 0; // just booled
|
|
tdd2->faction_reward = p_task_data[task_id]->faction_reward ? 1 : 0; // faction booled
|
|
|
|
Ptr = (char *) tdd2 + sizeof(TaskDescriptionData2_Struct);
|
|
|
|
// we actually have 2 strings here. One is max length 96 and not parsed for item links
|
|
// We actually skipped past that string incorrectly before, so TODO: fix item link string
|
|
sprintf(Ptr, "%s", p_task_data[task_id]->reward.c_str());
|
|
Ptr += p_task_data[task_id]->reward.length() + 1;
|
|
|
|
// second string is parsed for item links
|
|
sprintf(Ptr, "%s", p_task_data[task_id]->item_link.c_str());
|
|
Ptr += p_task_data[task_id]->item_link.length() + 1;
|
|
|
|
tdt = (TaskDescriptionTrailer_Struct *) Ptr;
|
|
tdt->Points = 0x00000000; // Points Count TODO: this does have a visible affect on the client ...
|
|
tdt->has_reward_selection = 0; // TODO: new rewards window
|
|
|
|
client->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
}
|
|
|
|
bool ClientTaskState::IsTaskActivityCompleted(TaskType task_type, int index, int activity_id)
|
|
{
|
|
switch (task_type) {
|
|
case TaskType::Task:
|
|
if (index != 0) {
|
|
return false;
|
|
}
|
|
return active_task.activity[activity_id].activity_state == ActivityCompleted;
|
|
case TaskType::Shared:
|
|
return false; // TODO: shared tasks
|
|
case TaskType::Quest:
|
|
if (index < MAXACTIVEQUESTS) {
|
|
return active_quests[index].activity[activity_id].activity_state == ActivityCompleted;
|
|
}
|
|
default:
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
// should we be defaulting to hidden?
|
|
ActivityState ClientTaskState::GetTaskActivityState(TaskType task_type, int index, int activity_id)
|
|
{
|
|
switch (task_type) {
|
|
case TaskType::Task:
|
|
if (index != 0) {
|
|
return ActivityHidden;
|
|
}
|
|
return active_task.activity[activity_id].activity_state;
|
|
case TaskType::Shared:
|
|
return ActivityHidden; // TODO: shared tasks
|
|
case TaskType::Quest:
|
|
if (index < MAXACTIVEQUESTS) {
|
|
return active_quests[index].activity[activity_id].activity_state;
|
|
}
|
|
default:
|
|
return ActivityHidden;
|
|
}
|
|
}
|
|
|
|
int ClientTaskState::GetTaskActivityDoneCount(TaskType task_type, int index, int activity_id)
|
|
{
|
|
switch (task_type) {
|
|
case TaskType::Task:
|
|
if (index != 0) {
|
|
return 0;
|
|
}
|
|
return active_task.activity[activity_id].done_count;
|
|
case TaskType::Shared:
|
|
return 0; // TODO: shared tasks
|
|
case TaskType::Quest:
|
|
if (index < MAXACTIVEQUESTS) {
|
|
return active_quests[index].activity[activity_id].done_count;
|
|
}
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
int ClientTaskState::GetTaskActivityDoneCountFromTaskID(int task_id, int activity_id)
|
|
{
|
|
if (active_task.task_id == task_id) {
|
|
return active_task.activity[activity_id].done_count;
|
|
}
|
|
|
|
// TODO: shared tasks
|
|
|
|
int active_task_index = -1;
|
|
for (int i = 0; i < MAXACTIVEQUESTS; i++) {
|
|
if (active_quests[i].task_id == task_id) {
|
|
active_task_index = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (active_task_index == -1) {
|
|
return 0;
|
|
}
|
|
|
|
if (active_quests[active_task_index].activity[activity_id].done_count) {
|
|
return active_quests[active_task_index].activity[activity_id].done_count;
|
|
}
|
|
else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
int ClientTaskState::GetTaskStartTime(TaskType task_type, int index)
|
|
{
|
|
switch (task_type) {
|
|
case TaskType::Task:
|
|
return active_task.accepted_time;
|
|
case TaskType::Quest:
|
|
return active_quests[index].accepted_time;
|
|
case TaskType::Shared: // TODO
|
|
default:
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
void ClientTaskState::CancelAllTasks(Client *client)
|
|
{
|
|
|
|
// This method exists solely to be called during #task reloadall
|
|
// It removes tasks from the in-game client state ready for them to be
|
|
// resent to the client, in case an updated task fails to load
|
|
|
|
CancelTask(client, 0, TaskType::Task, false);
|
|
active_task.task_id = TASKSLOTEMPTY;
|
|
|
|
for (int i = 0; i < MAXACTIVEQUESTS; i++)
|
|
if (active_quests[i].task_id != TASKSLOTEMPTY) {
|
|
CancelTask(client, i, TaskType::Quest, false);
|
|
active_quests[i].task_id = TASKSLOTEMPTY;
|
|
}
|
|
|
|
// TODO: shared
|
|
}
|
|
|
|
void ClientTaskState::CancelTask(Client *client, int sequence_number, TaskType task_type, bool remove_from_db)
|
|
{
|
|
auto outapp = new EQApplicationPacket(OP_CancelTask, sizeof(CancelTask_Struct));
|
|
|
|
CancelTask_Struct *cts = (CancelTask_Struct *) outapp->pBuffer;
|
|
cts->SequenceNumber = sequence_number;
|
|
cts->type = static_cast<uint32>(task_type);
|
|
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] CancelTask");
|
|
|
|
client->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
|
|
if (remove_from_db) {
|
|
RemoveTask(client, sequence_number, task_type);
|
|
}
|
|
}
|
|
|
|
void ClientTaskState::RemoveTask(Client *client, int sequence_number, TaskType task_type)
|
|
{
|
|
int character_id = client->CharacterID();
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] ClientTaskState Cancel Task %i ", sequence_number);
|
|
|
|
int task_id = -1;
|
|
switch (task_type) {
|
|
case TaskType::Task:
|
|
if (sequence_number == 0) {
|
|
task_id = active_task.task_id;
|
|
}
|
|
break;
|
|
case TaskType::Quest:
|
|
if (sequence_number < MAXACTIVEQUESTS) {
|
|
task_id = active_quests[sequence_number].task_id;
|
|
}
|
|
break;
|
|
case TaskType::Shared: // TODO:
|
|
default:
|
|
break;
|
|
}
|
|
|
|
CharacterActivitiesRepository::DeleteWhere(
|
|
database,
|
|
fmt::format("charid = {} AND taskid = {}", character_id, task_id)
|
|
);
|
|
|
|
CharacterTasksRepository::DeleteWhere(
|
|
database,
|
|
fmt::format("charid = {} AND taskid = {} AND type = {}", character_id, task_id, static_cast<int>(task_type))
|
|
);
|
|
|
|
switch (task_type) {
|
|
case TaskType::Task:
|
|
active_task.task_id = TASKSLOTEMPTY;
|
|
break;
|
|
case TaskType::Shared:
|
|
break; // TODO: shared tasks
|
|
case TaskType::Quest:
|
|
active_quests[sequence_number].task_id = TASKSLOTEMPTY;
|
|
active_task_count--;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
void ClientTaskState::RemoveTaskByTaskID(Client *client, uint32 task_id)
|
|
{
|
|
auto task_type = p_task_manager->GetTaskType(task_id);
|
|
int character_id = client->CharacterID();
|
|
|
|
CharacterActivitiesRepository::DeleteWhere(
|
|
database,
|
|
fmt::format("charid = {} AND taskid = {}", character_id, task_id)
|
|
);
|
|
|
|
CharacterTasksRepository::DeleteWhere(
|
|
database,
|
|
fmt::format("charid = {} AND taskid = {} AND type = {}", character_id, task_id, (int) task_type)
|
|
);
|
|
|
|
switch (task_type) {
|
|
case TaskType::Task: {
|
|
if (active_task.task_id == task_id) {
|
|
auto outapp = new EQApplicationPacket(OP_CancelTask, sizeof(CancelTask_Struct));
|
|
CancelTask_Struct *cts = (CancelTask_Struct *) outapp->pBuffer;
|
|
cts->SequenceNumber = 0;
|
|
cts->type = static_cast<uint32>(task_type);
|
|
LogTasks("[UPDATE] RemoveTaskByTaskID found Task [{}]", task_id);
|
|
client->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
active_task.task_id = TASKSLOTEMPTY;
|
|
}
|
|
break;
|
|
}
|
|
case TaskType::Shared: {
|
|
break; // TODO: shared tasks
|
|
}
|
|
case TaskType::Quest: {
|
|
for (int active_quest = 0; active_quest < MAXACTIVEQUESTS; active_quest++) {
|
|
if (active_quests[active_quest].task_id == task_id) {
|
|
auto outapp = new EQApplicationPacket(OP_CancelTask, sizeof(CancelTask_Struct));
|
|
CancelTask_Struct *cts = (CancelTask_Struct *) outapp->pBuffer;
|
|
cts->SequenceNumber = active_quest;
|
|
cts->type = static_cast<uint32>(task_type);
|
|
LogTasks("[UPDATE] RemoveTaskByTaskID found Quest [{}] at index [{}]", task_id, active_quest);
|
|
active_quests[active_quest].task_id = TASKSLOTEMPTY;
|
|
active_task_count--;
|
|
client->QueuePacket(outapp);
|
|
safe_delete(outapp);
|
|
}
|
|
}
|
|
}
|
|
default: {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void ClientTaskState::AcceptNewTask(Client *client, int task_id, int npc_type_id, bool enforce_level_requirement)
|
|
{
|
|
if (!p_task_manager || task_id < 0 || task_id >= MAXTASKS) {
|
|
client->Message(Chat::Red, "Task system not functioning, or task_id %i out of range.", task_id);
|
|
return;
|
|
}
|
|
|
|
auto task = p_task_manager->p_task_data[task_id];
|
|
|
|
if (task == nullptr) {
|
|
client->Message(Chat::Red, "Invalid task_id %i", task_id);
|
|
return;
|
|
}
|
|
|
|
bool max_tasks = false;
|
|
|
|
switch (task->type) {
|
|
case TaskType::Task:
|
|
if (active_task.task_id != TASKSLOTEMPTY) {
|
|
max_tasks = true;
|
|
}
|
|
break;
|
|
case TaskType::Shared: // TODO: shared tasks
|
|
// if (something)
|
|
max_tasks = true;
|
|
break;
|
|
case TaskType::Quest:
|
|
if (active_task_count == MAXACTIVEQUESTS) {
|
|
max_tasks = true;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (max_tasks) {
|
|
client->Message(
|
|
Chat::Red,
|
|
"You already have the maximum allowable number of active tasks (%i)",
|
|
MAXACTIVEQUESTS
|
|
);
|
|
return;
|
|
}
|
|
|
|
// only Quests can have more than one, so don't need to check others
|
|
if (task->type == TaskType::Quest) {
|
|
for (auto &active_quest : active_quests) {
|
|
if (active_quest.task_id == task_id) {
|
|
client->Message(Chat::Red, "You have already been assigned this task.");
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (enforce_level_requirement && !p_task_manager->ValidateLevel(task_id, client->GetLevel())) {
|
|
client->Message(Chat::Red, "You are outside the level range of this task.");
|
|
return;
|
|
}
|
|
|
|
if (!p_task_manager->IsTaskRepeatable(task_id) && IsTaskCompleted(task_id)) {
|
|
return;
|
|
}
|
|
|
|
// We do it this way, because when the Client cancels a task, it retains the sequence number of the remaining
|
|
// tasks in it's window, until something causes the TaskDescription packets to be sent again. We could just
|
|
// resend all the active task data to the client when it cancels a task, but that could be construed as a
|
|
// waste of bandwidth.
|
|
//
|
|
ClientTaskInformation *active_slot = nullptr;
|
|
switch (task->type) {
|
|
case TaskType::Task:
|
|
active_slot = &active_task;
|
|
break;
|
|
case TaskType::Shared: // TODO: shared
|
|
active_slot = nullptr;
|
|
break;
|
|
case TaskType::Quest:
|
|
for (int i = 0; i < MAXACTIVEQUESTS; i++) {
|
|
Log(Logs::General, Logs::Tasks,
|
|
"[UPDATE] ClientTaskState Looking for free slot in slot %i, found task_id of %i", i,
|
|
active_quests[i].task_id);
|
|
if (active_quests[i].task_id == 0) {
|
|
active_slot = &active_quests[i];
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
// This shouldn't happen unless there is a bug in the handling of ActiveTaskCount somewhere
|
|
if (active_slot == nullptr) {
|
|
client->Message(
|
|
Chat::Red,
|
|
"You already have the maximum allowable number of active tasks (%i)",
|
|
MAXACTIVEQUESTS
|
|
);
|
|
return;
|
|
}
|
|
|
|
active_slot->task_id = task_id;
|
|
active_slot->accepted_time = time(nullptr);
|
|
active_slot->updated = true;
|
|
active_slot->current_step = -1;
|
|
|
|
for (int activity_id = 0; activity_id < p_task_manager->p_task_data[task_id]->activity_count; activity_id++) {
|
|
active_slot->activity[activity_id].activity_id = activity_id;
|
|
active_slot->activity[activity_id].done_count = 0;
|
|
active_slot->activity[activity_id].activity_state = ActivityHidden;
|
|
active_slot->activity[activity_id].updated = true;
|
|
}
|
|
|
|
UnlockActivities(client->CharacterID(), *active_slot);
|
|
|
|
if (task->type == TaskType::Quest) {
|
|
active_task_count++;
|
|
}
|
|
|
|
p_task_manager->SendSingleActiveTaskToClient(client, *active_slot, false, true);
|
|
client->Message(
|
|
Chat::White,
|
|
"You have been assigned the task '%s'.",
|
|
p_task_manager->p_task_data[task_id]->title.c_str()
|
|
);
|
|
p_task_manager->SaveClientState(client, this);
|
|
std::string buf = std::to_string(task_id);
|
|
|
|
NPC *npc = entity_list.GetID(npc_type_id)->CastToNPC();
|
|
if (npc) {
|
|
parse->EventNPC(EVENT_TASK_ACCEPTED, npc, client, buf.c_str(), 0);
|
|
}
|
|
}
|
|
|
|
void ClientTaskState::ProcessTaskProximities(Client *client, float x, float y, float z)
|
|
{
|
|
float last_x = client->ProximityX();
|
|
float last_y = client->ProximityY();
|
|
float last_z = client->ProximityZ();
|
|
|
|
if ((last_x == x) && (last_y == y) && (last_z == z)) {
|
|
return;
|
|
}
|
|
|
|
LogTasksDetail("[ProcessTaskProximities] Checking proximities for Position x[{}] y[{}] z[{}]", x, y, z);
|
|
int explore_id = p_task_manager->proximity_manager.CheckProximities(x, y, z);
|
|
if (explore_id > 0) {
|
|
LogTasksDetail(
|
|
"[ProcessTaskProximities] Position x[{}] y[{}] z[{}] is within proximity explore_id [{}]",
|
|
x,
|
|
y,
|
|
z,
|
|
explore_id
|
|
);
|
|
|
|
UpdateTasksOnExplore(client, explore_id);
|
|
}
|
|
}
|
|
|
|
TaskGoalListManager::TaskGoalListManager()
|
|
{
|
|
goal_lists_count = 0;
|
|
}
|
|
|
|
TaskGoalListManager::~TaskGoalListManager() {}
|
|
|
|
bool TaskGoalListManager::LoadLists()
|
|
{
|
|
task_goal_lists.clear();
|
|
goal_lists_count = 0;
|
|
|
|
std::string query = "SELECT `listid`, COUNT(`entry`) FROM `goallists` GROUP by `listid` ORDER BY `listid`";
|
|
auto results = content_db.QueryDatabase(query);
|
|
if (!results.Success()) {
|
|
return false;
|
|
}
|
|
|
|
goal_lists_count = results.RowCount();
|
|
LogTasks("Loaded [{}] GoalLists", goal_lists_count);
|
|
|
|
task_goal_lists.reserve(goal_lists_count);
|
|
|
|
int list_index = 0;
|
|
for (auto row = results.begin(); row != results.end(); ++row) {
|
|
int list_id = atoi(row[0]);
|
|
int list_size = atoi(row[1]);
|
|
|
|
task_goal_lists.push_back({list_id, 0, 0});
|
|
|
|
task_goal_lists[list_index].GoalItemEntries.reserve(list_size);
|
|
|
|
list_index++;
|
|
}
|
|
|
|
auto goal_lists = GoallistsRepository::GetWhere(content_db, "TRUE ORDER BY listid, entry ASC");
|
|
for (list_index = 0; list_index < goal_lists_count; list_index++) {
|
|
|
|
int list_id = task_goal_lists[list_index].ListID;
|
|
|
|
for (auto &entry: goal_lists) {
|
|
if (entry.listid == list_id) {
|
|
if (entry.entry < task_goal_lists[list_index].Min) {
|
|
task_goal_lists[list_index].Min = entry.entry;
|
|
}
|
|
|
|
if (entry.entry > task_goal_lists[list_index].Max) {
|
|
task_goal_lists[list_index].Max = entry.entry;
|
|
}
|
|
|
|
task_goal_lists[list_index].GoalItemEntries.push_back(entry.entry);
|
|
|
|
LogTasksDetail(
|
|
"Goal list index [{}] loading list [{}] entry [{}]",
|
|
list_index,
|
|
list_id,
|
|
entry.entry
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
int TaskGoalListManager::GetListByID(int list_id)
|
|
{
|
|
|
|
// Find the list with the specified ListID and return the index
|
|
auto it = std::find_if(
|
|
task_goal_lists.begin(),
|
|
task_goal_lists.end(),
|
|
[list_id](const TaskGoalList_Struct &t) { return t.ListID == list_id; }
|
|
);
|
|
|
|
if (it == task_goal_lists.end()) {
|
|
return -1;
|
|
}
|
|
|
|
return std::distance(task_goal_lists.begin(), it);
|
|
}
|
|
|
|
int TaskGoalListManager::GetFirstEntry(int list_id)
|
|
{
|
|
int list_by_id = GetListByID(list_id);
|
|
|
|
if ((list_by_id < 0) || (list_by_id >= goal_lists_count)) {
|
|
return -1;
|
|
}
|
|
|
|
if (task_goal_lists[list_by_id].GoalItemEntries.empty()) {
|
|
return -1;
|
|
}
|
|
|
|
return task_goal_lists[list_by_id].GoalItemEntries[0];
|
|
}
|
|
|
|
std::vector<int> TaskGoalListManager::GetListContents(int list_index)
|
|
{
|
|
std::vector<int> list_contents;
|
|
int list_by_id = GetListByID(list_index);
|
|
|
|
if ((list_by_id < 0) || (list_by_id >= goal_lists_count)) {
|
|
return list_contents;
|
|
}
|
|
|
|
list_contents = task_goal_lists[list_by_id].GoalItemEntries;
|
|
|
|
return list_contents;
|
|
}
|
|
|
|
bool TaskGoalListManager::IsInList(int list_id, int entry)
|
|
{
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] TaskGoalListManager::IsInList(%i, %i)", list_id, entry);
|
|
|
|
int list_index = GetListByID(list_id);
|
|
|
|
if ((list_index < 0) || (list_index >= goal_lists_count)) {
|
|
return false;
|
|
}
|
|
|
|
if ((entry < task_goal_lists[list_index].Min) || (entry > task_goal_lists[list_index].Max)) {
|
|
return false;
|
|
}
|
|
|
|
int first_entry = 0;
|
|
auto &task = task_goal_lists[list_index];
|
|
auto it = std::find(task.GoalItemEntries.begin(), task.GoalItemEntries.end(), entry);
|
|
|
|
if (it == task.GoalItemEntries.end()) {
|
|
return false;
|
|
}
|
|
|
|
Log(Logs::General, Logs::Tasks, "[UPDATE] TaskGoalListManager::IsInList(%i, %i) returning true", list_index,
|
|
entry);
|
|
return true;
|
|
}
|
|
|
|
TaskProximityManager::TaskProximityManager()
|
|
{
|
|
|
|
|
|
}
|
|
|
|
TaskProximityManager::~TaskProximityManager()
|
|
{
|
|
|
|
|
|
}
|
|
|
|
bool TaskProximityManager::LoadProximities(int zone_id)
|
|
{
|
|
TaskProximity proximity{};
|
|
task_proximities.clear();
|
|
|
|
auto proximities = ProximitiesRepository::GetWhere(
|
|
content_db,
|
|
fmt::format("zoneid = {} ORDER BY `zoneid` ASC", zone_id)
|
|
);
|
|
|
|
for (auto &row: proximities) {
|
|
proximity.explore_id = row.exploreid;
|
|
proximity.min_x = row.minx;
|
|
proximity.max_x = row.maxx;
|
|
proximity.min_y = row.miny;
|
|
proximity.max_y = row.maxy;
|
|
proximity.min_z = row.minz;
|
|
proximity.max_z = row.maxz;
|
|
|
|
task_proximities.push_back(proximity);
|
|
}
|
|
|
|
LogTasks("Loaded [{}] Task Proximities", proximities.size());
|
|
|
|
return true;
|
|
}
|
|
|
|
int TaskProximityManager::CheckProximities(float x, float y, float z)
|
|
{
|
|
for (auto &task_proximity : task_proximities) {
|
|
|
|
TaskProximity *p_proximity = &task_proximity;
|
|
|
|
Log(
|
|
Logs::General,
|
|
Logs::Tasks,
|
|
"[PROXIMITY] Checking %8.3f, %8.3f, %8.3f against %8.3f, %8.3f, %8.3f, %8.3f, %8.3f, %8.3f",
|
|
x,
|
|
y,
|
|
z,
|
|
p_proximity->min_x,
|
|
p_proximity->max_x,
|
|
p_proximity->min_y,
|
|
p_proximity->max_y,
|
|
p_proximity->min_z,
|
|
p_proximity->max_z
|
|
);
|
|
|
|
if (x < p_proximity->min_x || x > p_proximity->max_x || y < p_proximity->min_y || y > p_proximity->max_y ||
|
|
z < p_proximity->min_z || z > p_proximity->max_z) {
|
|
continue;
|
|
}
|
|
|
|
return p_proximity->explore_id;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|