mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 12:41:30 +00:00
* [Zone] Zone State Automated Testing and Improvements * Spawn condition * Update zone.cpp * Remove redundant logic * Update zone_state.cpp * TestZLocationDrift * Protect NPC resumed NPC's from being able to die
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
#include "zone_cli.h"
|
|
#include "../common/cli/eqemu_command_handler.h"
|
|
#include <string.h>
|
|
|
|
bool ZoneCLI::RanConsoleCommand(int argc, char **argv)
|
|
{
|
|
return argc > 1 && (strstr(argv[1], ":") != nullptr || strstr(argv[1], "--") != nullptr);
|
|
}
|
|
|
|
bool ZoneCLI::RanSidecarCommand(int argc, char **argv)
|
|
{
|
|
return argc > 1 && (strstr(argv[1], "sidecar:") != nullptr);
|
|
}
|
|
|
|
bool ZoneCLI::RanTestCommand(int argc, char **argv)
|
|
{
|
|
return argc > 1 && (strstr(argv[1], "tests:") != nullptr);
|
|
}
|
|
|
|
void ZoneCLI::CommandHandler(int argc, char **argv)
|
|
{
|
|
if (argc == 1) { return; }
|
|
|
|
argh::parser cmd;
|
|
cmd.parse(argc, argv, argh::parser::PREFER_PARAM_FOR_UNREG_OPTION);
|
|
EQEmuCommand::DisplayDebug(cmd);
|
|
|
|
// Declare command mapping
|
|
auto function_map = EQEmuCommand::function_map;
|
|
|
|
// Register commands
|
|
function_map["benchmark:databuckets"] = &ZoneCLI::BenchmarkDatabuckets;
|
|
function_map["sidecar:serve-http"] = &ZoneCLI::SidecarServeHttp;
|
|
function_map["tests:databuckets"] = &ZoneCLI::TestDataBuckets;
|
|
function_map["tests:npc-handins"] = &ZoneCLI::TestNpcHandins;
|
|
function_map["tests:npc-handins-multiquest"] = &ZoneCLI::TestNpcHandinsMultiQuest;
|
|
function_map["tests:zone-state"] = &ZoneCLI::TestZoneState;
|
|
|
|
EQEmuCommand::HandleMenu(function_map, cmd, argc, argv);
|
|
}
|
|
|
|
// cli
|
|
#include "cli/benchmark_databuckets.cpp"
|
|
#include "cli/sidecar_serve_http.cpp"
|
|
|
|
// tests
|
|
#include "cli/tests/_test_util.cpp"
|
|
#include "cli/tests/databuckets.cpp"
|
|
#include "cli/tests/npc_handins.cpp"
|
|
#include "cli/tests/npc_handins_multiquest.cpp"
|
|
#include "cli/tests/zone_state.cpp"
|