221 lines
6.1 KiB
C++
221 lines
6.1 KiB
C++
/**
|
|
* MaNGOS is a full featured server for World of Warcraft, supporting
|
|
* the following clients: 1.12.x, 2.4.3, 3.3.5a, 4.3.4a and 5.4.8
|
|
*
|
|
* Copyright (C) 2005-2022 MaNGOS <https://getmangos.eu>
|
|
*
|
|
* 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; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; 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
|
|
*
|
|
* World of Warcraft, and all World of Warcraft or Warcraft art, images,
|
|
* and lore are copyrighted by Blizzard Entertainment, Inc.
|
|
*/
|
|
|
|
#include "Chat.h"
|
|
#include "Language.h"
|
|
#include "GameEventMgr.h"
|
|
#include "GameEventMgr.h"
|
|
|
|
/**********************************************************************
|
|
CommandTable : eventCommandTable
|
|
/***********************************************************************/
|
|
|
|
bool ChatHandler::HandleEventListCommand(char* args)
|
|
{
|
|
uint32 counter = 0;
|
|
bool all = false;
|
|
std::string arg = args;
|
|
if (arg == "all")
|
|
{
|
|
all = true;
|
|
}
|
|
|
|
GameEventMgr::GameEventDataMap const& events = sGameEventMgr.GetEventMap();
|
|
|
|
char const* active = GetMangosString(LANG_ACTIVE);
|
|
char const* inactive = GetMangosString(LANG_FACTION_INACTIVE);
|
|
char const* state = "";
|
|
|
|
for (uint32 event_id = 0; event_id < events.size(); ++event_id)
|
|
{
|
|
if (!sGameEventMgr.IsValidEvent(event_id))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (!sGameEventMgr.IsActiveEvent(event_id))
|
|
{
|
|
if (!all)
|
|
{
|
|
continue;
|
|
}
|
|
state = inactive;
|
|
}
|
|
else
|
|
{
|
|
state = active;
|
|
}
|
|
|
|
GameEventData const& eventData = events[event_id];
|
|
|
|
if (m_session)
|
|
{
|
|
PSendSysMessage(LANG_EVENT_ENTRY_LIST_CHAT, event_id, event_id, eventData.description.c_str(), state);
|
|
}
|
|
else
|
|
{
|
|
PSendSysMessage(LANG_EVENT_ENTRY_LIST_CONSOLE, event_id, eventData.description.c_str(), state);
|
|
}
|
|
|
|
++counter;
|
|
}
|
|
|
|
if (counter == 0)
|
|
{
|
|
SendSysMessage(LANG_NOEVENTFOUND);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool ChatHandler::HandleEventInfoCommand(char* args)
|
|
{
|
|
if (!*args)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// id or [name] Shift-click form |color|Hgameevent:id|h[name]|h|r
|
|
uint32 event_id;
|
|
if (!ExtractUint32KeyFromLink(&args, "Hgameevent", event_id))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
GameEventMgr::GameEventDataMap const& events = sGameEventMgr.GetEventMap();
|
|
|
|
if (!sGameEventMgr.IsValidEvent(event_id))
|
|
{
|
|
SendSysMessage(LANG_EVENT_NOT_EXIST);
|
|
SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
GameEventData const& eventData = events[event_id];
|
|
|
|
char const* activeStr = sGameEventMgr.IsActiveEvent(event_id) ? GetMangosString(LANG_ACTIVE) : "";
|
|
|
|
std::string startTimeStr = TimeToTimestampStr(eventData.start);
|
|
std::string endTimeStr = TimeToTimestampStr(eventData.end);
|
|
|
|
uint32 delay = sGameEventMgr.NextCheck(event_id);
|
|
time_t nextTime = time(NULL) + delay;
|
|
std::string nextStr = nextTime >= eventData.start && nextTime < eventData.end ? TimeToTimestampStr(time(NULL) + delay) : "-";
|
|
|
|
std::string occurenceStr = secsToTimeString(eventData.occurence * MINUTE);
|
|
std::string lengthStr = secsToTimeString(eventData.length * MINUTE);
|
|
|
|
PSendSysMessage(LANG_EVENT_INFO, event_id, eventData.description.c_str(), activeStr,
|
|
startTimeStr.c_str(), endTimeStr.c_str(), occurenceStr.c_str(), lengthStr.c_str(),
|
|
nextStr.c_str());
|
|
return true;
|
|
}
|
|
|
|
bool ChatHandler::HandleEventStartCommand(char* args)
|
|
{
|
|
if (!*args)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// id or [name] Shift-click form |color|Hgameevent:id|h[name]|h|r
|
|
uint32 event_id;
|
|
if (!ExtractUint32KeyFromLink(&args, "Hgameevent", event_id))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
GameEventMgr::GameEventDataMap const& events = sGameEventMgr.GetEventMap();
|
|
|
|
if (!sGameEventMgr.IsValidEvent(event_id))
|
|
{
|
|
SendSysMessage(LANG_EVENT_NOT_EXIST);
|
|
SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
GameEventData const& eventData = events[event_id];
|
|
if (!eventData.isValid())
|
|
{
|
|
SendSysMessage(LANG_EVENT_NOT_EXIST);
|
|
SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
if (sGameEventMgr.IsActiveEvent(event_id))
|
|
{
|
|
PSendSysMessage(LANG_EVENT_ALREADY_ACTIVE, event_id);
|
|
SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
PSendSysMessage(LANG_EVENT_STARTED, event_id, eventData.description.c_str());
|
|
sGameEventMgr.StartEvent(event_id, true);
|
|
return true;
|
|
}
|
|
|
|
bool ChatHandler::HandleEventStopCommand(char* args)
|
|
{
|
|
if (!*args)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// id or [name] Shift-click form |color|Hgameevent:id|h[name]|h|r
|
|
uint32 event_id;
|
|
if (!ExtractUint32KeyFromLink(&args, "Hgameevent", event_id))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
GameEventMgr::GameEventDataMap const& events = sGameEventMgr.GetEventMap();
|
|
|
|
if (!sGameEventMgr.IsValidEvent(event_id))
|
|
{
|
|
SendSysMessage(LANG_EVENT_NOT_EXIST);
|
|
SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
GameEventData const& eventData = events[event_id];
|
|
if (!eventData.isValid())
|
|
{
|
|
SendSysMessage(LANG_EVENT_NOT_EXIST);
|
|
SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
if (!sGameEventMgr.IsActiveEvent(event_id))
|
|
{
|
|
PSendSysMessage(LANG_EVENT_NOT_ACTIVE, event_id);
|
|
SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
PSendSysMessage(LANG_EVENT_STOPPED, event_id, eventData.description.c_str());
|
|
sGameEventMgr.StopEvent(event_id, true);
|
|
return true;
|
|
}
|
|
|