1#ifndef YAZE_SRC_CLI_HANDLERS_GAME_DUNGEON_RENDER_COMMANDS_H_
2#define YAZE_SRC_CLI_HANDLERS_GAME_DUNGEON_RENDER_COMMANDS_H_
21 std::string
GetName()
const override {
return "dungeon-render"; }
23 return "dungeon-render --room=<id> --output=<path.png> "
24 "[--overlays=collision,track,sprites,objects,grid,camera,all] "
The Rom class is used to load, save, and modify Rom data. This is a generic SNES ROM container and do...
absl::Status Execute(Rom *rom, const resources::ArgumentParser &parser, resources::OutputFormatter &formatter) override
Execute the command business logic.
std::string GetName() const override
Get the command name.
std::string GetUsage() const override
Get the command usage string.
absl::Status ValidateArgs(const resources::ArgumentParser &parser) override
Validate command arguments.
std::string GetOutputTitle() const override
Get the output title for formatting.
std::string GetDefaultFormat() const override
Get the default output format ("json" or "text")
Utility for parsing common CLI argument patterns.
Base class for CLI command handlers.