yaze 0.2.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
graphics_editor.h
Go to the documentation of this file.
1#ifndef YAZE_APP_EDITOR_GRAPHICS_EDITOR_H
2#define YAZE_APP_EDITOR_GRAPHICS_EDITOR_H
3
4#include <stack>
5
6#include "absl/status/status.h"
7#include "app/editor/editor.h"
9#include "app/gfx/bitmap.h"
10#include "app/gfx/snes_tile.h"
11#include "app/gui/canvas.h"
13#include "app/rom.h"
15#include "imgui/imgui.h"
16#include "imgui_memory_editor.h"
17
18namespace yaze {
19namespace editor {
20
21// "99973","A3D80",
22
23const std::string kSuperDonkeyTiles[] = {
24 "97C05", "98219", "9871E", "98C00", "99084", "995AF", "99DE0", "9A27E",
25 "9A741", "9AC31", "9B07E", "9B55C", "9B963", "9BB99", "9C009", "9C4B4",
26 "9C92B", "9CDD6", "9D2C2", "9E037", "9E527", "9EA56", "9EF65", "9FCD1",
27 "A0193", "A059E", "A0B17", "A0FB6", "A14A5", "A1988", "A1E66", "A232B",
28 "A27F0", "A2B6E", "A302C", "A3453", "A38CA", "A42BB", "A470C", "A4BA9",
29 "A5089", "A5385", "A5742", "A5BCC", "A6017", "A6361", "A66F8"};
30
31const std::string kSuperDonkeySprites[] = {
32 "A8E5D", "A9435", "A9934", "A9D83", "AA2F1", "AA6D4", "AABE4", "AB127",
33 "AB65A", "ABBDD", "AC38D", "AC797", "ACCC8", "AD0AE", "AD245", "AD554",
34 "ADAAC", "ADECC", "AE453", "AE9D2", "AEF40", "AF3C9", "AF92E", "AFE9D",
35 "B03D2", "B09AC", "B0F0C", "B1430", "B1859", "B1E01", "B229A", "B2854",
36 "B2D27", "B31D7", "B3B58", "B40B5", "B45A5", "B4D64", "B5031", "B555F",
37 "B5F30", "B6858", "B70DD", "B7526", "B79EC", "B7C83", "B80F7", "B85CC",
38 "B8A3F", "B8F97", "B94F2", "B9A20", "B9E9A", "BA3A2", "BA8F6", "BACDC",
39 "BB1F9", "BB781", "BBCCA", "BC26D", "BC7D4", "BCBB0", "BD082", "BD5FC",
40 "BE115", "BE5C2", "BEB63", "BF0CB", "BF607", "BFA55", "BFD71", "C017D",
41 "C0567", "C0981", "C0BA7", "C116D", "C166A", "C1FE0", "C24CE", "C2B19"};
42
57class GraphicsEditor : public Editor {
58 public:
59 explicit GraphicsEditor(Rom* rom = nullptr) : rom_(rom) {
61 }
62
63 void Initialize() override;
64 absl::Status Load() override;
65 absl::Status Save() override { return absl::UnimplementedError("Save"); }
66 absl::Status Update() override;
67 absl::Status Cut() override { return absl::UnimplementedError("Cut"); }
68 absl::Status Copy() override { return absl::UnimplementedError("Copy"); }
69 absl::Status Paste() override { return absl::UnimplementedError("Paste"); }
70 absl::Status Undo() override { return absl::UnimplementedError("Undo"); }
71 absl::Status Redo() override { return absl::UnimplementedError("Redo"); }
72 absl::Status Find() override { return absl::UnimplementedError("Find"); }
73
74 // Set the ROM pointer
75 void set_rom(Rom* rom) { rom_ = rom; }
76
77 // Get the ROM pointer
78 Rom* rom() const { return rom_; }
79
80 private:
86
87 // Graphics Editor Tab
88 absl::Status UpdateGfxEdit();
89 absl::Status UpdateGfxSheetList();
90 absl::Status UpdateGfxTabView();
91 absl::Status UpdatePaletteColumn();
92 void DrawGfxEditToolset();
93
94 // Link Graphics Edit Tab
95 absl::Status UpdateLinkGfxView();
96
97 // Prototype Graphics Viewer
98 absl::Status UpdateScadView();
99
100 // Import Functions
101 absl::Status DrawCgxImport();
102 absl::Status DrawScrImport();
103 absl::Status DrawFileImport();
104 absl::Status DrawObjImport();
105 absl::Status DrawTilemapImport();
106
107 // Other Functions
108 absl::Status DrawToolset();
109 absl::Status DrawPaletteControls();
110 absl::Status DrawClipboardImport();
111 absl::Status DrawExperimentalFeatures();
112 absl::Status DrawMemoryEditor();
113
114 absl::Status DecompressImportData(int size);
115 absl::Status DecompressSuperDonkey();
116
117 // Member Variables
119 uint16_t current_sheet_ = 0;
120 uint8_t tile_size_ = 0x01;
121 std::set<uint16_t> open_sheets_;
122 std::set<uint16_t> child_window_sheets_;
123 std::stack<uint16_t> release_queue_;
128 float sheet_scale_ = 2.0f;
129 float current_scale_ = 4.0f;
130
131 // Prototype Graphics Viewer
133 uint64_t current_offset_ = 0;
134 uint64_t current_size_ = 0;
138
140 uint64_t bin_size_ = 0;
141 uint64_t clipboard_offset_ = 0;
142 uint64_t clipboard_size_ = 0;
143
144 bool refresh_graphics_ = false;
146 bool gfx_loaded_ = false;
147 bool is_open_ = false;
148 bool super_donkey_ = false;
149 bool col_file_ = false;
150 bool cgx_loaded_ = false;
151 bool scr_loaded_ = false;
152 bool obj_loaded_ = false;
153 bool tilemap_loaded_ = false;
154
155 std::string file_path_ = "";
156 std::string col_file_path_ = "";
157 std::string col_file_name_ = "";
158 std::string cgx_file_path_ = "";
159 std::string cgx_file_name_ = "";
160 std::string scr_file_path_ = "";
161 std::string scr_file_name_ = "";
162 std::string obj_file_path_ = "";
163 std::string tilemap_file_path_ = "";
164 std::string tilemap_file_name_ = "";
165
167
169
173 MemoryEditor cgx_memory_editor_;
174 MemoryEditor col_memory_editor_;
176 std::vector<uint8_t> import_data_;
177 std::vector<uint8_t> graphics_buffer_;
178 std::vector<uint8_t> decoded_cgx_;
179 std::vector<uint8_t> cgx_data_;
180 std::vector<uint8_t> extra_cgx_data_;
181 std::vector<SDL_Color> decoded_col_;
182 std::vector<uint8_t> scr_data_;
183 std::vector<uint8_t> decoded_scr_data_;
188 std::array<gfx::Bitmap, kNumGfxSheets> gfx_sheets_;
189 std::array<gfx::Bitmap, kNumLinkSheets> link_sheets_;
190
199 gui::Canvas current_sheet_canvas_{"CurrentSheetCanvas", ImVec2(0x80, 0x20),
205 absl::Status status_;
206
208};
209
210} // namespace editor
211} // namespace yaze
212
213#endif // YAZE_APP_EDITOR_GRAPHICS_EDITOR_H
The Rom class is used to load, save, and modify Rom data.
Definition rom.h:59
EditorType type_
Definition editor.h:92
std::vector< uint8_t > scr_data_
absl::Status Save() override
std::array< gfx::Bitmap, kNumLinkSheets > link_sheets_
GraphicsEditor(Rom *rom=nullptr)
gfx::PaletteGroup col_file_palette_group_
absl::Status Load() override
std::vector< uint8_t > decoded_cgx_
std::set< uint16_t > child_window_sheets_
absl::Status Copy() override
std::vector< uint8_t > graphics_buffer_
std::array< gfx::Bitmap, kNumGfxSheets > gfx_sheets_
std::vector< uint8_t > cgx_data_
absl::Status Redo() override
absl::Status Cut() override
std::vector< uint8_t > import_data_
absl::Status Paste() override
std::vector< SDL_Color > decoded_col_
absl::Status Undo() override
std::set< uint16_t > open_sheets_
absl::Status Update() override
absl::Status Find() override
std::vector< uint8_t > extra_cgx_data_
std::vector< uint8_t > decoded_scr_data_
std::stack< uint16_t > release_queue_
gui::GfxSheetAssetBrowser asset_browser_
absl::Status DecompressImportData(int size)
Allows the user to view and edit in game palettes.
Represents a bitmap image.
Definition bitmap.h:66
Represents a palette of colors for the Super Nintendo Entertainment System (SNES).
Represents a canvas for drawing and manipulating graphics.
Definition canvas.h:36
Represents the full Overworld data, light and dark world.
Definition overworld.h:112
Editors are the view controllers for the application.
const std::string kSuperDonkeySprites[]
const std::string kSuperDonkeyTiles[]
constexpr int kTilesheetHeight
Definition snes_tile.h:16
constexpr int kTilesheetWidth
Definition snes_tile.h:15
Main namespace for the application.
Definition controller.cc:18
Represents a group of palettes.