49 const ImVector<ImVec2>& points,
50 const ImVector<ImVec2>& selected_points) {
69 const ImVector<ImVector<std::string>>& labels,
70 int current_labels,
int tile_id_offset) {
92 draw_list->PopClipRect();
103 draw_list->AddImage((ImTextureID)(intptr_t)bitmap.
texture(),
114 float scale,
int alpha) {
122 ImVec2 rendered_size(bitmap.
width() * scale, bitmap.
height() * scale);
128 (ImTextureID)(intptr_t)bitmap.
texture(),
135 ImVec2(0, 0), ImVec2(1, 1), IM_COL32(255, 255, 255, alpha));
140 ImVec2 dest_size, ImVec2 src_pos, ImVec2 src_size) {
147 (ImTextureID)(intptr_t)bitmap.
texture(),
148 ImVec2(geometry.
canvas_p0.x + dest_pos.x,
150 ImVec2(geometry.
canvas_p0.x + dest_pos.x + dest_size.x,
151 geometry.
canvas_p0.y + dest_pos.y + dest_size.y),
152 ImVec2(src_pos.x / bitmap.
width(), src_pos.y / bitmap.
height()),
153 ImVec2((src_pos.x + src_size.x) / bitmap.
width(),
154 (src_pos.y + src_size.y) / bitmap.
height()));
159 int tile_size,
float scale,
int local_map_size,
160 ImVec2 total_map_size) {
170 bool use_optimized_rendering = group.size() > 128;
173 const float tile_scale = tile_size * scale;
181 for (
const auto tile_id : group) {
183 int tiles_per_row = 32;
184 int x = i % tiles_per_row;
185 int y = i / tiles_per_row;
187 int tile_pos_x = x * tile_size * scale;
188 int tile_pos_y = y * tile_size * scale;
192 if (tile_id >= 0 && tile_id < tilemap_size) {
194 atlas_tiles_per_row > 0) {
196 (tile_id % atlas_tiles_per_row) * tilemap.
tile_size.
x;
198 (tile_id / atlas_tiles_per_row) * tilemap.
tile_size.
y;
201 if (atlas_tile_x >= 0 && atlas_tile_x < tilemap.
atlas.
width() &&
202 atlas_tile_y >= 0 && atlas_tile_y < tilemap.
atlas.
height()) {
204 const float atlas_width =
static_cast<float>(tilemap.
atlas.
width());
205 const float atlas_height =
static_cast<float>(tilemap.
atlas.
height());
207 ImVec2(atlas_tile_x / atlas_width, atlas_tile_y / atlas_height);
209 ImVec2((atlas_tile_x + tilemap.
tile_size.
x) / atlas_width,
210 (atlas_tile_y + tilemap.
tile_size.
y) / atlas_height);
221 uint32_t alpha_color = use_optimized_rendering
222 ? IM_COL32(255, 255, 255, 200)
223 : IM_COL32(255, 255, 255, 150);
226 draw_list->AddImage((ImTextureID)(intptr_t)tilemap.
atlas.
texture(),
227 ImVec2(screen_x, screen_y),
228 ImVec2(screen_x + screen_w, screen_y + screen_h),
229 uv0, uv1, alpha_color);
Represents a bitmap image optimized for SNES ROM hacking.
TextureHandle texture() const
void DrawCanvasLabels(const CanvasRenderContext &ctx, const ImVector< ImVector< std::string > > &labels, int current_labels, int tile_id_offset)
void DrawCanvasOverlay(const CanvasRenderContext &ctx, const ImVector< ImVec2 > &points, const ImVector< ImVec2 > &selected_points)
void DrawCanvasGrid(const CanvasRenderContext &ctx, int highlight_tile_id)
constexpr uint32_t kWhiteColor
constexpr uint32_t kRectangleColor
void RenderBitmapGroup(ImDrawList *draw_list, const CanvasGeometry &geometry, std::vector< int > &group, gfx::Tilemap &tilemap, int tile_size, float scale, int local_map_size, ImVec2 total_map_size)
Render group of bitmaps from tilemap.
void RenderCanvasLabels(ImDrawList *draw_list, const CanvasGeometry &geometry, const CanvasConfig &config, const ImVector< ImVector< std::string > > &labels, int current_labels, int tile_id_offset)
Render canvas labels on grid.
void RenderCanvasBackground(ImDrawList *draw_list, const CanvasGeometry &geometry)
Render canvas background and border.
void RenderCanvasGrid(ImDrawList *draw_list, const CanvasGeometry &geometry, const CanvasConfig &config, int highlight_tile_id)
Render canvas grid with optional highlighting.
void RenderBitmapOnCanvas(ImDrawList *draw_list, const CanvasGeometry &geometry, gfx::Bitmap &bitmap, int, float scale)
Render bitmap on canvas (border offset variant)
void RenderCanvasOverlay(ImDrawList *draw_list, const CanvasGeometry &geometry, const CanvasConfig &config, const ImVector< ImVec2 > &points, const ImVector< ImVec2 > &selected_points)
Render canvas overlay (hover and selection points)
int y
Y coordinate or height.
int x
X coordinate or width.
Tilemap structure for SNES tile-based graphics management.
Pair tile_size
Size of individual tiles (8x8 or 16x16)
Pair map_size
Size of tilemap in tiles.
Bitmap atlas
Master bitmap containing all tiles.
Unified configuration for canvas display and interaction.
bool enable_custom_labels
Canvas geometry calculated per-frame.