yaze 0.2.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
compress.cc
Go to the documentation of this file.
1#include "cli/z3ed.h"
2
3namespace yaze {
4namespace cli {
5
6absl::Status Compress::Run(const std::vector<std::string>& arg_vec) {
7 std::cout << "Compress selected with argument: " << arg_vec[0] << std::endl;
8 return absl::OkStatus();
9}
10
11absl::Status Decompress::Run(const std::vector<std::string>& arg_vec) {
12 std::cout << "Please specify the tilesheets you want to export\n";
13 std::cout << "You can input an individual sheet, a range X-Y, or comma "
14 "separate values.\n\n";
15 std::cout << "Tilesheets\n";
16 std::cout << "0-112 -> compressed 3bpp bgr \n";
17 std::cout << "113-114 -> compressed 2bpp\n";
18 std::cout << "115-126 -> uncompressed 3bpp sprites\n";
19 std::cout << "127-217 -> compressed 3bpp sprites\n";
20 std::cout << "218-222 -> compressed 2bpp\n";
21
22 std::cout << "Enter tilesheets: ";
23 std::string sheet_input;
24 std::cin >> sheet_input;
25
26 std::cout << "Decompress selected with argument: " << arg_vec[0] << std::endl;
27 return absl::UnimplementedError("Decompress not implemented");
28}
29
30} // namespace cli
31} // namespace yaze
absl::Status Run(const std::vector< std::string > &arg_vec) override
Definition compress.cc:6
absl::Status Run(const std::vector< std::string > &arg_vec) override
Definition compress.cc:11
Namespace for the command line interface.
Definition compress.cc:4
Main namespace for the application.
Definition controller.cc:18