mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
* [Commands] Add Instance Support to #zoneshutdown * Update zoneserver.cpp * Update zoneshutdown.cpp
84 lines
2.0 KiB
C++
Executable File
84 lines
2.0 KiB
C++
Executable File
#include "../client.h"
|
|
#include "../worldserver.h"
|
|
|
|
extern WorldServer worldserver;
|
|
|
|
void command_zoneshutdown(Client *c, const Seperator *sep)
|
|
{
|
|
const int arguments = sep->argnum;
|
|
if (arguments < 2) {
|
|
c->Message(Chat::White, "Usage: #zoneshutdown instance [Instance ID]");
|
|
c->Message(Chat::White, "Usage: #zoneshutdown zone [Zone ID|Zone Short Name]");
|
|
return;
|
|
}
|
|
|
|
bool is_instance = !strcasecmp(sep->arg[1], "instance");
|
|
bool is_zone = !strcasecmp(sep->arg[1], "zone");
|
|
|
|
if (!is_instance && !is_zone) {
|
|
c->Message(Chat::White, "Usage: #zoneshutdown instance [Instance ID]");
|
|
c->Message(Chat::White, "Usage: #zoneshutdown zone [Zone ID|Zone Short Name]");
|
|
return;
|
|
}
|
|
|
|
if (!worldserver.Connected()) {
|
|
c->Message(Chat::White, "World server disconnected.");
|
|
return;
|
|
}
|
|
|
|
uint32 zone_id = 0;
|
|
uint16 instance_id = 0;
|
|
std::string message = "";
|
|
|
|
if (is_instance) {
|
|
instance_id = sep->IsNumber(2) ? Strings::ToUnsignedInt(sep->arg[2]) : 0;
|
|
|
|
if (!database.CheckInstanceExists(instance_id)) {
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Instance ID '{}' does not exist.",
|
|
instance_id
|
|
).c_str()
|
|
);
|
|
return;
|
|
}
|
|
|
|
message = fmt::format("Instance ID {}", instance_id);
|
|
} else if (is_zone) {
|
|
zone_id = sep->IsNumber(2) ? Strings::ToUnsignedInt(sep->arg[2]) : ZoneID(sep->arg[2]);
|
|
|
|
if (!zone_id) {
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Zone '{}' does not exist.",
|
|
sep->arg[1]
|
|
).c_str()
|
|
);
|
|
return;
|
|
}
|
|
|
|
message = fmt::format("{} (ID {})", ZoneLongName(zone_id), zone_id);
|
|
}
|
|
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Attempting to shut down {}.",
|
|
message
|
|
).c_str()
|
|
);
|
|
|
|
auto pack = new ServerPacket(ServerOP_ZoneShutdown, sizeof(ServerZoneStateChange_Struct));
|
|
auto *s = (ServerZoneStateChange_Struct *) pack->pBuffer;
|
|
|
|
s->zone_id = zone_id;
|
|
s->instance_id = instance_id;
|
|
|
|
strn0cpy(s->admin_name, c->GetName(), sizeof(s->admin_name));
|
|
|
|
worldserver.SendPacket(pack);
|
|
safe_delete(pack);
|
|
}
|