Kinglykrab 7d1d385418
[Commands] Cleanup #gmzone Command. (#1836)
- Cleanup messages and logic.
- Add support for Zone ID.
2021-11-27 18:19:03 -05:00

159 lines
3.0 KiB
C++
Executable File

#include "../client.h"
#include "../data_bucket.h"
void command_gmzone(Client *c, const Seperator *sep)
{
int arguments = sep->argnum;
if (!arguments) {
c->Message(Chat::White, "Usage: #gmzone [Zone ID|Zone Short Name] [Version] [Instance Identifier]");
return;
}
std::string zone_short_name = str_tolower(
sep->IsNumber(1) ?
ZoneName(std::stoul(sep->arg[1]), true) :
sep->arg[1]
);
bool is_unknown_zone = zone_short_name.find("unknown") != std::string::npos;
if (is_unknown_zone) {
c->Message(
Chat::White,
fmt::format(
"Zone {} could not be found.",
zone_short_name
).c_str()
);
}
auto zone_id = ZoneID(zone_short_name);
if (!zone_id) {
c->Message(
Chat::White,
fmt::format(
"Zone ID {} could not be found.",
zone_id
).c_str()
);
return;
}
std::string zone_long_name = ZoneLongName(zone_id);
auto zone_version = (
sep->IsNumber(2) ?
std::stoul(sep->arg[2]) :
0
);
std::string instance_identifier = (
sep->arg[3] ?
sep->arg[3] :
"gmzone"
);
auto bucket_key = fmt::format(
"{}-{}-{}-instance",
zone_short_name,
instance_identifier,
zone_version
);
auto existing_zone_instance = DataBucket::GetData(bucket_key);
uint16 instance_id = 0;
uint32 duration = 100000000;
if (!existing_zone_instance.empty()) {
instance_id = std::stoi(existing_zone_instance);
c->Message(
Chat::White,
fmt::format(
"You already have an Instance ID of {} for Version {} of {} ({}).",
instance_id,
zone_version,
zone_long_name,
zone_short_name
).c_str()
);
}
if (!instance_id) {
if (!database.GetUnusedInstanceID(instance_id)) {
c->Message(Chat::White, "Failed to find an unused Instance ID.");
return;
}
if (!database.CreateInstance(instance_id, zone_id, zone_version, duration)) {
c->Message(Chat::White, "Failed to create an Instance.");
return;
}
c->Message(
Chat::White,
fmt::format(
"New GM Instance ID {} for Version {} of {} ({}) was created.",
instance_id,
zone_version,
zone_long_name,
zone_short_name
).c_str()
);
DataBucket::SetData(
bucket_key,
std::to_string(instance_id)
);
}
if (instance_id) {
float target_x = -1, target_y = -1, target_z = -1, target_heading = -1;
int16 min_status = AccountStatus::Player;
uint8 min_level = 0;
if (
!content_db.GetSafePoints(
zone_short_name.c_str(),
zone_version,
&target_x,
&target_y,
&target_z,
&target_heading,
&min_status,
&min_level
)
) {
c->Message(
Chat::White,
fmt::format(
"Failed to find the safe coordinates for Version {} of {} ({}).",
zone_version,
zone_long_name,
zone_short_name
).c_str()
);
}
c->Message(
Chat::White,
fmt::format(
"Zoning to GM Instance ID {} for Version {} of {} ({}).",
instance_id,
zone_version,
zone_long_name,
zone_short_name
).c_str()
);
c->AssignToInstance(instance_id);
c->MovePC(
zone_id,
instance_id,
target_x,
target_y,
target_z,
target_heading,
1
);
}
}