1#ifndef YAZE_CLI_HANDLERS_TOOLS_DUNGEON_DOCTOR_COMMANDS_H
2#define YAZE_CLI_HANDLERS_TOOLS_DUNGEON_DOCTOR_COMMANDS_H
22 std::string
GetName()
const override {
return "dungeon-doctor"; }
25 return "Diagnose dungeon room data integrity and validate limits";
29 return "dungeon-doctor --rom <path> [--room <id>] [--all] "
30 "[--format json|text] [--verbose]";
40 desc.
summary =
"Diagnose dungeon room data including object counts, "
41 "sprite limits, chest conflicts, and bounds checking.";
48 return absl::OkStatus();
The Rom class is used to load, save, and modify Rom data. This is a generic SNES ROM container and do...
Dungeon doctor command for room data integrity.
std::string GetDescription() const
std::string GetOutputTitle() const override
Get the output title for formatting.
std::string GetName() const override
Get the command name.
absl::Status ValidateArgs(const resources::ArgumentParser &parser) override
Validate command arguments.
Descriptor Describe() const override
Provide metadata for TUI/help summaries.
absl::Status Execute(Rom *rom, const resources::ArgumentParser &parser, resources::OutputFormatter &formatter) override
Execute the command business logic.
std::string GetDefaultFormat() const override
Get the default output format ("json" or "text")
std::string GetUsage() const override
Get the command usage string.
Utility for parsing common CLI argument patterns.
Base class for CLI command handlers.
Namespace for the command line interface.
std::string todo_reference