yaze 0.3.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
hex_commands.h
Go to the documentation of this file.
1#ifndef YAZE_SRC_CLI_HANDLERS_HEX_COMMANDS_H_
2#define YAZE_SRC_CLI_HANDLERS_HEX_COMMANDS_H_
3
5
6namespace yaze {
7namespace cli {
8namespace handlers {
9
14 public:
15 std::string GetName() const { return "hex-read"; }
16 std::string GetDescription() const {
17 return "Read hex data from ROM at specified address";
18 }
19 std::string GetUsage() const {
20 return "hex-read --address <address> [--length <length>] [--format "
21 "<format>]";
22 }
23
24 absl::Status ValidateArgs(const resources::ArgumentParser& parser) override {
25 return parser.RequireArgs({"address"});
26 }
27
28 absl::Status Execute(Rom* rom, const resources::ArgumentParser& parser,
29 resources::OutputFormatter& formatter) override;
30};
31
36 public:
37 std::string GetName() const { return "hex-write"; }
38 std::string GetDescription() const {
39 return "Write hex data to ROM at specified address";
40 }
41 std::string GetUsage() const {
42 return "hex-write --address <address> --data <data>";
43 }
44
45 absl::Status ValidateArgs(const resources::ArgumentParser& parser) override {
46 return parser.RequireArgs({"address", "data"});
47 }
48
49 absl::Status Execute(Rom* rom, const resources::ArgumentParser& parser,
50 resources::OutputFormatter& formatter) override;
51};
52
57 public:
58 std::string GetName() const { return "hex-search"; }
59 std::string GetDescription() const {
60 return "Search for hex patterns in ROM";
61 }
62 std::string GetUsage() const {
63 return "hex-search --pattern <pattern> [--start <start>] [--end <end>]";
64 }
65
66 absl::Status ValidateArgs(const resources::ArgumentParser& parser) override {
67 return parser.RequireArgs({"pattern"});
68 }
69
70 absl::Status Execute(Rom* rom, const resources::ArgumentParser& parser,
71 resources::OutputFormatter& formatter) override;
72};
73
74} // namespace handlers
75} // namespace cli
76} // namespace yaze
77
78#endif // YAZE_SRC_CLI_HANDLERS_HEX_COMMANDS_H_
The Rom class is used to load, save, and modify Rom data. This is a generic SNES ROM container and do...
Definition rom.h:24
Command handler for reading hex data from ROM.
std::string GetUsage() const
Get the command usage string.
absl::Status ValidateArgs(const resources::ArgumentParser &parser) override
Validate command arguments.
absl::Status Execute(Rom *rom, const resources::ArgumentParser &parser, resources::OutputFormatter &formatter) override
Execute the command business logic.
std::string GetName() const
Get the command name.
Command handler for searching hex patterns in ROM.
absl::Status Execute(Rom *rom, const resources::ArgumentParser &parser, resources::OutputFormatter &formatter) override
Execute the command business logic.
std::string GetName() const
Get the command name.
std::string GetUsage() const
Get the command usage string.
absl::Status ValidateArgs(const resources::ArgumentParser &parser) override
Validate command arguments.
Command handler for writing hex data to ROM.
std::string GetUsage() const
Get the command usage string.
absl::Status ValidateArgs(const resources::ArgumentParser &parser) override
Validate command arguments.
absl::Status Execute(Rom *rom, const resources::ArgumentParser &parser, resources::OutputFormatter &formatter) override
Execute the command business logic.
std::string GetName() const
Get the command name.
Utility for parsing common CLI argument patterns.
absl::Status RequireArgs(const std::vector< std::string > &required) const
Validate that required arguments are present.
Base class for CLI command handlers.
Utility for consistent output formatting across commands.