21 if (theme.enable_glow_effects) {
22 const float dot_spacing = 32.0f;
27 draw_list->AddCircleFilled(ImVec2(x, y), 1.0f, dot_color);
35 0.0f, 0, theme.window_border_size > 0 ? theme.window_border_size : 1.0f);
62 const ImVector<ImVec2>& points,
63 const ImVector<ImVec2>& selected_points) {
82 const ImVector<ImVector<std::string>>& labels,
83 int current_labels,
int tile_id_offset) {
105 draw_list->PopClipRect();
116 draw_list->AddImage((ImTextureID)(intptr_t)bitmap.
texture(),
127 float scale,
int alpha) {
135 ImVec2 rendered_size(bitmap.
width() * scale, bitmap.
height() * scale);
141 (ImTextureID)(intptr_t)bitmap.
texture(),
148 ImVec2(0, 0), ImVec2(1, 1), IM_COL32(255, 255, 255, alpha));
153 ImVec2 dest_size, ImVec2 src_pos, ImVec2 src_size) {
160 (ImTextureID)(intptr_t)bitmap.
texture(),
161 ImVec2(geometry.
canvas_p0.x + dest_pos.x,
163 ImVec2(geometry.
canvas_p0.x + dest_pos.x + dest_size.x,
164 geometry.
canvas_p0.y + dest_pos.y + dest_size.y),
165 ImVec2(src_pos.x / bitmap.
width(), src_pos.y / bitmap.
height()),
166 ImVec2((src_pos.x + src_size.x) / bitmap.
width(),
167 (src_pos.y + src_size.y) / bitmap.
height()));
172 int tile_size,
float scale,
int local_map_size,
173 ImVec2 total_map_size) {
183 bool use_optimized_rendering = group.size() > 128;
186 const float tile_scale = tile_size * scale;
194 for (
const auto tile_id : group) {
196 int tiles_per_row = 32;
197 int x = i % tiles_per_row;
198 int y = i / tiles_per_row;
200 int tile_pos_x = x * tile_size * scale;
201 int tile_pos_y = y * tile_size * scale;
205 if (tile_id >= 0 && tile_id < tilemap_size) {
207 atlas_tiles_per_row > 0) {
209 (tile_id % atlas_tiles_per_row) * tilemap.
tile_size.
x;
211 (tile_id / atlas_tiles_per_row) * tilemap.
tile_size.
y;
214 if (atlas_tile_x >= 0 && atlas_tile_x < tilemap.
atlas.
width() &&
215 atlas_tile_y >= 0 && atlas_tile_y < tilemap.
atlas.
height()) {
217 const float atlas_width =
static_cast<float>(tilemap.
atlas.
width());
218 const float atlas_height =
static_cast<float>(tilemap.
atlas.
height());
220 ImVec2(atlas_tile_x / atlas_width, atlas_tile_y / atlas_height);
222 ImVec2((atlas_tile_x + tilemap.
tile_size.
x) / atlas_width,
223 (atlas_tile_y + tilemap.
tile_size.
y) / atlas_height);
234 uint32_t alpha_color = use_optimized_rendering
235 ? IM_COL32(255, 255, 255, 200)
236 : IM_COL32(255, 255, 255, 150);
239 draw_list->AddImage((ImTextureID)(intptr_t)tilemap.
atlas.
texture(),
240 ImVec2(screen_x, screen_y),
241 ImVec2(screen_x + screen_w, screen_y + screen_h),
242 uv0, uv1, alpha_color);
Represents a bitmap image optimized for SNES ROM hacking.
TextureHandle texture() const
const Theme & GetCurrentTheme() const
static ThemeManager & Get()
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)
ImVec4 ConvertColorToImVec4(const Color &color)
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.