yaze 0.3.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"
14#include "app/rom.h"
16#include "imgui/imgui.h"
17#include "imgui_memory_editor.h"
18
19namespace yaze {
20namespace editor {
21
22// "99973","A3D80",
23
24const std::string kSuperDonkeyTiles[] = {
25 "97C05", "98219", "9871E", "98C00", "99084", "995AF", "99DE0", "9A27E",
26 "9A741", "9AC31", "9B07E", "9B55C", "9B963", "9BB99", "9C009", "9C4B4",
27 "9C92B", "9CDD6", "9D2C2", "9E037", "9E527", "9EA56", "9EF65", "9FCD1",
28 "A0193", "A059E", "A0B17", "A0FB6", "A14A5", "A1988", "A1E66", "A232B",
29 "A27F0", "A2B6E", "A302C", "A3453", "A38CA", "A42BB", "A470C", "A4BA9",
30 "A5089", "A5385", "A5742", "A5BCC", "A6017", "A6361", "A66F8"};
31
32const std::string kSuperDonkeySprites[] = {
33 "A8E5D", "A9435", "A9934", "A9D83", "AA2F1", "AA6D4", "AABE4", "AB127",
34 "AB65A", "ABBDD", "AC38D", "AC797", "ACCC8", "AD0AE", "AD245", "AD554",
35 "ADAAC", "ADECC", "AE453", "AE9D2", "AEF40", "AF3C9", "AF92E", "AFE9D",
36 "B03D2", "B09AC", "B0F0C", "B1430", "B1859", "B1E01", "B229A", "B2854",
37 "B2D27", "B31D7", "B3B58", "B40B5", "B45A5", "B4D64", "B5031", "B555F",
38 "B5F30", "B6858", "B70DD", "B7526", "B79EC", "B7C83", "B80F7", "B85CC",
39 "B8A3F", "B8F97", "B94F2", "B9A20", "B9E9A", "BA3A2", "BA8F6", "BACDC",
40 "BB1F9", "BB781", "BBCCA", "BC26D", "BC7D4", "BCBB0", "BD082", "BD5FC",
41 "BE115", "BE5C2", "BEB63", "BF0CB", "BF607", "BFA55", "BFD71", "C017D",
42 "C0567", "C0981", "C0BA7", "C116D", "C166A", "C1FE0", "C24CE", "C2B19"};
43
58class GraphicsEditor : public Editor {
59 public:
60 explicit GraphicsEditor(Rom* rom = nullptr) : rom_(rom) {
62 }
63
64 void Initialize() override;
65 absl::Status Load() override;
66 absl::Status Save() override { return absl::UnimplementedError("Save"); }
67 absl::Status Update() override;
68 absl::Status Cut() override { return absl::UnimplementedError("Cut"); }
69 absl::Status Copy() override { return absl::UnimplementedError("Copy"); }
70 absl::Status Paste() override { return absl::UnimplementedError("Paste"); }
71 absl::Status Undo() override { return absl::UnimplementedError("Undo"); }
72 absl::Status Redo() override { return absl::UnimplementedError("Redo"); }
73 absl::Status Find() override { return absl::UnimplementedError("Find"); }
74
75 // Set the ROM pointer
76 void set_rom(Rom* rom) { rom_ = rom; }
77
78 // Get the ROM pointer
79 Rom* rom() const { return rom_; }
80
81 private:
82 enum class GfxEditMode {
83 kSelect,
84 kPencil,
85 kFill,
86 };
87
88 // Graphics Editor Tab
89 absl::Status UpdateGfxEdit();
90 absl::Status UpdateGfxSheetList();
91 absl::Status UpdateGfxTabView();
92 absl::Status UpdatePaletteColumn();
93 void DrawGfxEditToolset();
94
95 // Link Graphics Edit Tab
96 absl::Status UpdateLinkGfxView();
97
98 // Prototype Graphics Viewer
99 absl::Status UpdateScadView();
100
101 // Import Functions
102 absl::Status DrawCgxImport();
103 absl::Status DrawScrImport();
104 absl::Status DrawFileImport();
105 absl::Status DrawObjImport();
106 absl::Status DrawTilemapImport();
107
108 // Other Functions
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
118 // Card visibility managed by EditorCardManager
119
121 uint16_t current_sheet_ = 0;
122 uint8_t tile_size_ = 0x01;
123 std::set<uint16_t> open_sheets_;
124 std::set<uint16_t> child_window_sheets_;
125 std::stack<uint16_t> release_queue_;
130 float sheet_scale_ = 2.0f;
131 float current_scale_ = 4.0f;
132
133 // Prototype Graphics Viewer
135 uint64_t current_offset_ = 0;
136 uint64_t current_size_ = 0;
140
142 uint64_t bin_size_ = 0;
143 uint64_t clipboard_offset_ = 0;
144 uint64_t clipboard_size_ = 0;
145
146 bool refresh_graphics_ = false;
148 bool gfx_loaded_ = false;
149 bool is_open_ = false;
150 bool super_donkey_ = false;
151 bool col_file_ = false;
152 bool cgx_loaded_ = false;
153 bool scr_loaded_ = false;
154 bool obj_loaded_ = false;
155 bool tilemap_loaded_ = false;
156
157 std::string file_path_ = "";
158 std::string col_file_path_ = "";
159 std::string col_file_name_ = "";
160 std::string cgx_file_path_ = "";
161 std::string cgx_file_name_ = "";
162 std::string scr_file_path_ = "";
163 std::string scr_file_name_ = "";
164 std::string obj_file_path_ = "";
165 std::string tilemap_file_path_ = "";
166 std::string tilemap_file_name_ = "";
167
169
171
175 MemoryEditor cgx_memory_editor_;
176 MemoryEditor col_memory_editor_;
178 std::vector<uint8_t> import_data_;
179 std::vector<uint8_t> graphics_buffer_;
180 std::vector<uint8_t> decoded_cgx_;
181 std::vector<uint8_t> cgx_data_;
182 std::vector<uint8_t> extra_cgx_data_;
183 std::vector<SDL_Color> decoded_col_;
184 std::vector<uint8_t> scr_data_;
185 std::vector<uint8_t> decoded_scr_data_;
190 std::array<gfx::Bitmap, kNumGfxSheets> gfx_sheets_;
191 std::array<gfx::Bitmap, kNumLinkSheets> link_sheets_;
192
201 gui::Canvas current_sheet_canvas_{"CurrentSheetCanvas", ImVec2(0x80, 0x20),
207 absl::Status status_;
208
210};
211
212} // namespace editor
213} // namespace yaze
214
215#endif // YAZE_APP_EDITOR_GRAPHICS_EDITOR_H
The Rom class is used to load, save, and modify Rom data.
Definition rom.h:74
Interface for editor classes.
Definition editor.h:122
EditorType type_
Definition editor.h:164
Allows the user to edit graphics sheets from the game or view prototype graphics.
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
void DrawGfxEditToolset()
Draw the graphics editing toolset with enhanced ROM hacking features.
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 optimized for SNES ROM hacking.
Definition bitmap.h:66
Represents a palette of colors for the Super Nintendo Entertainment System (SNES).
Modern, robust canvas for drawing and manipulating graphics.
Definition canvas.h:59
Represents the full Overworld data, light and dark world.
Definition overworld.h:128
const std::string kSuperDonkeySprites[]
const std::string kSuperDonkeyTiles[]
constexpr int kTilesheetHeight
Definition snes_tile.h:17
constexpr int kTilesheetWidth
Definition snes_tile.h:16
Main namespace for the application.
Definition controller.cc:20
Represents a group of palettes.