Compare commits
12 Commits
sdl-multiw
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 8f462cc93b | |||
| 643aaee926 | |||
| b49ee3e46c | |||
| b5d60d67dd | |||
| e22051c1c1 | |||
| 183726aed4 | |||
| 4f0fb09185 | |||
| bb825d0225 | |||
| b852384322 | |||
| d4a2f41a51 | |||
| bca66e3815 | |||
| 7a5f9d62a8 |
7
.vscode/launch.json
vendored
7
.vscode/launch.json
vendored
@@ -10,5 +10,12 @@
|
|||||||
"cwd": "${workspaceFolder}",
|
"cwd": "${workspaceFolder}",
|
||||||
"preLaunchTask": "zig: build"
|
"preLaunchTask": "zig: build"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Zig: Debug (gdb)",
|
||||||
|
"type": "gdb",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/zig-out/bin/Zivro",
|
||||||
|
"preLaunchTask": "zig: build"
|
||||||
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
5
.vscode/tasks.json
vendored
5
.vscode/tasks.json
vendored
@@ -10,11 +10,6 @@
|
|||||||
"isDefault": true
|
"isDefault": true
|
||||||
},
|
},
|
||||||
"problemMatcher": ["$gcc"],
|
"problemMatcher": ["$gcc"],
|
||||||
"presentation": {
|
|
||||||
"reveal": "always",
|
|
||||||
"panel": "shared",
|
|
||||||
"showReuseMessage": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
202
src/Canvas.zig
Normal file
202
src/Canvas.zig
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
const std = @import("std");
|
||||||
|
const builtin = @import("builtin");
|
||||||
|
const dvui = @import("dvui");
|
||||||
|
const Size = dvui.Size;
|
||||||
|
const Color = dvui.Color;
|
||||||
|
|
||||||
|
const Canvas = @This();
|
||||||
|
|
||||||
|
pub const ImageRect = struct {
|
||||||
|
x: u32,
|
||||||
|
y: u32,
|
||||||
|
w: u32,
|
||||||
|
h: u32,
|
||||||
|
};
|
||||||
|
|
||||||
|
allocator: std.mem.Allocator,
|
||||||
|
texture: ?dvui.Texture = null,
|
||||||
|
visible_rect: ?ImageRect = null,
|
||||||
|
size: Size = .{ .w = 800, .h = 600 },
|
||||||
|
pos: dvui.Point = dvui.Point{ .x = 0, .y = 0 },
|
||||||
|
scroll: dvui.ScrollInfo = .{
|
||||||
|
.vertical = .auto,
|
||||||
|
.horizontal = .auto,
|
||||||
|
},
|
||||||
|
zoom: f32 = 1,
|
||||||
|
native_scaling: bool = false,
|
||||||
|
gradient_start: Color.PMA = .{ .r = 0, .g = 0, .b = 0, .a = 255 },
|
||||||
|
gradient_end: Color.PMA = .{ .r = 255, .g = 255, .b = 255, .a = 255 },
|
||||||
|
|
||||||
|
pub fn init(allocator: std.mem.Allocator) Canvas {
|
||||||
|
return .{ .allocator = allocator };
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn deinit(self: *Canvas) void {
|
||||||
|
if (self.texture) |texture| {
|
||||||
|
dvui.Texture.destroyLater(texture);
|
||||||
|
self.texture = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Заполнить canvas градиентом
|
||||||
|
pub fn redrawGradient(self: *Canvas) !void {
|
||||||
|
const full = self.getScaledImageSize();
|
||||||
|
const full_w: u32 = full.w;
|
||||||
|
const full_h: u32 = full.h;
|
||||||
|
|
||||||
|
const vis: ImageRect = self.visible_rect orelse ImageRect{ .x = 0, .y = 0, .w = 0, .h = 0 };
|
||||||
|
|
||||||
|
if (vis.w == 0 or vis.h == 0) {
|
||||||
|
if (self.texture) |tex| {
|
||||||
|
dvui.Texture.destroyLater(tex);
|
||||||
|
self.texture = null;
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const width: u32 = vis.w;
|
||||||
|
const height: u32 = vis.h;
|
||||||
|
|
||||||
|
// Выделить буфер пиксельных данных
|
||||||
|
const pixels = try self.allocator.alloc(Color.PMA, @as(usize, width) * height);
|
||||||
|
defer self.allocator.free(pixels);
|
||||||
|
|
||||||
|
var y: u32 = 0;
|
||||||
|
while (y < height) : (y += 1) {
|
||||||
|
var x: u32 = 0;
|
||||||
|
while (x < width) : (x += 1) {
|
||||||
|
const gx: u32 = vis.x + x;
|
||||||
|
const gy: u32 = vis.y + y;
|
||||||
|
|
||||||
|
const denom_x: f32 = if (full_w > 1) @as(f32, @floatFromInt(full_w - 1)) else 1;
|
||||||
|
const denom_y: f32 = if (full_h > 1) @as(f32, @floatFromInt(full_h - 1)) else 1;
|
||||||
|
const fx: f32 = @as(f32, @floatFromInt(gx)) / denom_x;
|
||||||
|
const fy: f32 = @as(f32, @floatFromInt(gy)) / denom_y;
|
||||||
|
const factor: f32 = std.math.clamp((fx + fy) / 2, 0, 1);
|
||||||
|
|
||||||
|
const r_f: f32 = @as(f32, @floatFromInt(self.gradient_start.r)) + factor * (@as(f32, @floatFromInt(self.gradient_end.r)) - @as(f32, @floatFromInt(self.gradient_start.r)));
|
||||||
|
const g_f: f32 = @as(f32, @floatFromInt(self.gradient_start.g)) + factor * (@as(f32, @floatFromInt(self.gradient_end.g)) - @as(f32, @floatFromInt(self.gradient_start.g)));
|
||||||
|
const b_f: f32 = @as(f32, @floatFromInt(self.gradient_start.b)) + factor * (@as(f32, @floatFromInt(self.gradient_end.b)) - @as(f32, @floatFromInt(self.gradient_start.b)));
|
||||||
|
|
||||||
|
const r: u8 = @intFromFloat(std.math.clamp(r_f, 0, 255));
|
||||||
|
const g: u8 = @intFromFloat(std.math.clamp(g_f, 0, 255));
|
||||||
|
const b: u8 = @intFromFloat(std.math.clamp(b_f, 0, 255));
|
||||||
|
pixels[y * width + x] = .{ .r = r, .g = g, .b = b, .a = 255 };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Удалить старую текстуру
|
||||||
|
if (self.texture) |tex| {
|
||||||
|
dvui.Texture.destroyLater(tex);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Создать новую текстуру из пиксельных данных
|
||||||
|
self.texture = try dvui.textureCreate(pixels, width, height, .nearest);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Заполнить canvas случайным градиентом
|
||||||
|
pub fn fillRandomGradient(self: *Canvas) !void {
|
||||||
|
// Сгенерировать случайные цвета градиента
|
||||||
|
var prng = std.Random.DefaultPrng.init(@intCast(std.time.microTimestamp()));
|
||||||
|
const random = prng.random();
|
||||||
|
self.gradient_start = Color.PMA{ .r = random.int(u8), .g = random.int(u8), .b = random.int(u8), .a = 255 };
|
||||||
|
self.gradient_end = Color.PMA{ .r = random.int(u8), .g = random.int(u8), .b = random.int(u8), .a = 255 };
|
||||||
|
|
||||||
|
try self.redrawGradient();
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn addZoom(self: *Canvas, value: f32) void {
|
||||||
|
self.zoom += value;
|
||||||
|
self.zoom = @max(self.zoom, 0.01);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn getScaledImageSize(self: Canvas) ImageRect {
|
||||||
|
return .{
|
||||||
|
.x = @intFromFloat(self.pos.x),
|
||||||
|
.y = @intFromFloat(self.pos.y),
|
||||||
|
.w = @intFromFloat(self.size.w * self.zoom),
|
||||||
|
.h = @intFromFloat(self.size.h * self.zoom),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Обновить видимую часть изображения (в пикселях холста) и сохранить в `visible_rect`.
|
||||||
|
///
|
||||||
|
/// `viewport` и `scroll_offset` ожидаются в *physical* пикселях (т.е. уже умноженные на windowNaturalScale).
|
||||||
|
///
|
||||||
|
/// После обновления (или если текстуры ещё нет) перерисовывает текстуру, чтобы она содержала только видимую часть.
|
||||||
|
pub fn updateVisibleImageRect(self: *Canvas, viewport: dvui.Rect, scroll_offset: dvui.Point) !void {
|
||||||
|
const next = computeVisibleImageRect(self.*, viewport, scroll_offset);
|
||||||
|
var changed = false;
|
||||||
|
if (self.visible_rect) |vis| {
|
||||||
|
changed |= next.x != vis.x or next.y != vis.y or next.w != vis.w or next.h != vis.h;
|
||||||
|
}
|
||||||
|
self.visible_rect = next;
|
||||||
|
if (changed or self.texture == null) {
|
||||||
|
try self.redrawGradient();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn computeVisibleImageRect(self: Canvas, viewport: dvui.Rect, scroll_offset: dvui.Point) ImageRect {
|
||||||
|
const image_rect = self.getScaledImageSize();
|
||||||
|
|
||||||
|
const img_w_f: f32 = @floatFromInt(image_rect.w);
|
||||||
|
const img_h_f: f32 = @floatFromInt(image_rect.h);
|
||||||
|
|
||||||
|
const view_left: f32 = scroll_offset.x;
|
||||||
|
const view_top: f32 = scroll_offset.y;
|
||||||
|
const view_right: f32 = scroll_offset.x + viewport.w;
|
||||||
|
const view_bottom: f32 = scroll_offset.y + viewport.h;
|
||||||
|
|
||||||
|
const img_left: f32 = @floatFromInt(image_rect.x);
|
||||||
|
const img_top: f32 = @floatFromInt(image_rect.y);
|
||||||
|
const img_right: f32 = img_left + img_w_f;
|
||||||
|
const img_bottom: f32 = img_top + img_h_f;
|
||||||
|
|
||||||
|
const inter_left: f32 = @max(view_left, img_left);
|
||||||
|
const inter_top: f32 = @max(view_top, img_top);
|
||||||
|
const inter_right: f32 = @min(view_right, img_right);
|
||||||
|
const inter_bottom: f32 = @min(view_bottom, img_bottom);
|
||||||
|
|
||||||
|
if (inter_right <= inter_left or inter_bottom <= inter_top) {
|
||||||
|
if (builtin.mode == .Debug) {
|
||||||
|
std.debug.print(" -> no intersection, return empty\n", .{});
|
||||||
|
}
|
||||||
|
return .{ .x = 0, .y = 0, .w = 0, .h = 0 };
|
||||||
|
}
|
||||||
|
|
||||||
|
// Переводим из координат контента в локальные координаты картинки
|
||||||
|
const local_x0: f32 = inter_left - img_left;
|
||||||
|
const local_y0: f32 = inter_top - img_top;
|
||||||
|
const local_x1: f32 = inter_right - img_left;
|
||||||
|
const local_y1: f32 = inter_bottom - img_top;
|
||||||
|
|
||||||
|
// Консервативно округляем до пикселей: начало вниз (floor), конец вверх (ceil)
|
||||||
|
const x0_u32: u32 = floatToClampedU32(@floor(local_x0), image_rect.w);
|
||||||
|
const y0_u32: u32 = floatToClampedU32(@floor(local_y0), image_rect.h);
|
||||||
|
const x1_u32: u32 = floatToClampedU32(@ceil(local_x1), image_rect.w);
|
||||||
|
const y1_u32: u32 = floatToClampedU32(@ceil(local_y1), image_rect.h);
|
||||||
|
|
||||||
|
const out: ImageRect = .{
|
||||||
|
.x = x0_u32,
|
||||||
|
.y = y0_u32,
|
||||||
|
.w = if (x1_u32 > x0_u32) x1_u32 - x0_u32 else 0,
|
||||||
|
.h = if (y1_u32 > y0_u32) y1_u32 - y0_u32 else 0,
|
||||||
|
};
|
||||||
|
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
|
fn floatToClampedU32(value: f32, max_inclusive: u32) u32 {
|
||||||
|
if (max_inclusive == 0) return 0;
|
||||||
|
if (value <= 0) return 0;
|
||||||
|
const max_f: f32 = @floatFromInt(max_inclusive);
|
||||||
|
if (value >= max_f) return max_inclusive;
|
||||||
|
return @intFromFloat(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Отобразить canvas в UI
|
||||||
|
pub fn render(self: Canvas, rect: dvui.RectScale) !void {
|
||||||
|
if (self.texture) |texture| {
|
||||||
|
try dvui.renderTexture(texture, rect, .{});
|
||||||
|
}
|
||||||
|
}
|
||||||
1
src/Document.zig
Normal file
1
src/Document.zig
Normal file
@@ -0,0 +1 @@
|
|||||||
|
// Файл векторного документа
|
||||||
19
src/WindowContext.zig
Normal file
19
src/WindowContext.zig
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
const std = @import("std");
|
||||||
|
const dvui = @import("dvui");
|
||||||
|
const Canvas = @import("Canvas.zig");
|
||||||
|
|
||||||
|
const WindowContext = @This();
|
||||||
|
|
||||||
|
allocator: std.mem.Allocator,
|
||||||
|
canvas: Canvas,
|
||||||
|
|
||||||
|
pub fn init(allocator: std.mem.Allocator) WindowContext {
|
||||||
|
return .{
|
||||||
|
.allocator = allocator,
|
||||||
|
.canvas = Canvas.init(allocator),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn deinit(self: *WindowContext) void {
|
||||||
|
self.canvas.deinit();
|
||||||
|
}
|
||||||
371
src/main.zig
371
src/main.zig
@@ -1,215 +1,226 @@
|
|||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const dvui = @import("dvui");
|
const dvui = @import("dvui");
|
||||||
|
const dvui_ext = @import("./ui/dvui_ext.zig");
|
||||||
const SDLBackend = @import("sdl-backend");
|
const SDLBackend = @import("sdl-backend");
|
||||||
|
const Document = @import("Document.zig");
|
||||||
const WindowContext = struct {
|
const WindowContext = @import("WindowContext.zig");
|
||||||
backend: SDLBackend,
|
const sdl_c = SDLBackend.c;
|
||||||
window: dvui.Window,
|
const Allocator = std.mem.Allocator;
|
||||||
title: [:0]u8,
|
const Color = dvui.Color;
|
||||||
id: usize,
|
|
||||||
|
|
||||||
fn deinit(self: *WindowContext, allocator: std.mem.Allocator, last_backend: bool) void {
|
|
||||||
self.window.deinit();
|
|
||||||
|
|
||||||
if (last_backend) {
|
|
||||||
self.backend.deinit();
|
|
||||||
} else {
|
|
||||||
destroyBackendKeepingSDL(&self.backend);
|
|
||||||
}
|
|
||||||
|
|
||||||
allocator.free(self.title);
|
|
||||||
self.* = undefined;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
pub fn main() !void {
|
pub fn main() !void {
|
||||||
if (@import("builtin").os.tag == .windows) {
|
|
||||||
// on windows graphical apps have no console, so output goes to nowhere - attach it manually. related: https://github.com/ziglang/zig/issues/4196
|
|
||||||
dvui.Backend.Common.windowsAttachConsole() catch {};
|
|
||||||
}
|
|
||||||
SDLBackend.enableSDLLogging();
|
|
||||||
std.log.info("SDL version: {f}", .{SDLBackend.getSDLVersion()});
|
|
||||||
|
|
||||||
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
||||||
defer _ = gpa.deinit();
|
|
||||||
const allocator = gpa.allocator();
|
const allocator = gpa.allocator();
|
||||||
|
|
||||||
var windows = try std.ArrayList(*WindowContext).initCapacity(allocator, 0);
|
var backend = try SDLBackend.initWindow(.{
|
||||||
defer {
|
.allocator = allocator,
|
||||||
for (windows.items, 0..) |ctx, i| {
|
.size = .{ .w = 800.0, .h = 600.0 },
|
||||||
const last = i + 1 == windows.items.len;
|
.title = "My DVUI App",
|
||||||
ctx.deinit(allocator, last);
|
.vsync = true,
|
||||||
allocator.destroy(ctx);
|
});
|
||||||
}
|
defer backend.deinit();
|
||||||
windows.deinit(allocator);
|
|
||||||
}
|
|
||||||
|
|
||||||
var next_window_id: usize = 1;
|
var win = try dvui.Window.init(@src(), allocator, backend.backend(), .{
|
||||||
const first_ctx = try createWindow(allocator, next_window_id);
|
.theme = switch (backend.preferredColorScheme() orelse .light) {
|
||||||
next_window_id += 1;
|
.light => dvui.Theme.builtin.adwaita_light,
|
||||||
try windows.append(allocator, first_ctx);
|
.dark => dvui.Theme.builtin.adwaita_dark,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
defer win.deinit();
|
||||||
|
|
||||||
|
var ctx = WindowContext.init(allocator);
|
||||||
|
defer ctx.deinit();
|
||||||
|
|
||||||
var interrupted = false;
|
var interrupted = false;
|
||||||
|
|
||||||
main_loop: while (true) {
|
main_loop: while (true) {
|
||||||
if (windows.items.len == 0) break :main_loop;
|
// beginWait coordinates with waitTime below to run frames only when needed
|
||||||
|
const nstime = win.beginWait(interrupted);
|
||||||
|
|
||||||
const saw_events = try pumpEvents(&windows);
|
// marks the beginning of a frame for dvui, can call dvui functions after this
|
||||||
|
try win.begin(nstime);
|
||||||
|
|
||||||
var min_wait_event_micros: u32 = std.math.maxInt(u32);
|
// send all SDL events to dvui for processing
|
||||||
var idx: usize = 0;
|
try backend.addAllEvents(&win);
|
||||||
while (idx < windows.items.len) {
|
|
||||||
const ctx = windows.items[idx];
|
|
||||||
|
|
||||||
// beginWait coordinates with waitTime below to run frames only when needed
|
// if dvui widgets might not cover the whole window, then need to clear
|
||||||
const nstime = ctx.window.beginWait(interrupted);
|
// the previous frame's render
|
||||||
// marks the beginning of a frame for dvui, can call dvui functions after this
|
_ = SDLBackend.c.SDL_SetRenderDrawColor(backend.renderer, 0, 0, 0, 255);
|
||||||
try ctx.window.begin(nstime);
|
_ = SDLBackend.c.SDL_RenderClear(backend.renderer);
|
||||||
|
|
||||||
// if dvui widgets might not cover the whole window, then need to clear
|
const keep_running = gui_frame(&ctx);
|
||||||
// the previous frame's render
|
if (!keep_running) break :main_loop;
|
||||||
_ = SDLBackend.c.SDL_SetRenderDrawColor(ctx.backend.renderer, 0, 0, 0, 255);
|
|
||||||
_ = SDLBackend.c.SDL_RenderClear(ctx.backend.renderer);
|
|
||||||
|
|
||||||
const keep_open = try gui_frame(ctx, allocator, &windows, &next_window_id);
|
// marks end of dvui frame, don't call dvui functions after this
|
||||||
if (!keep_open) {
|
// - sends all dvui stuff to backend for rendering, must be called before renderPresent()
|
||||||
closeWindow(&windows, allocator, idx);
|
const end_micros = try win.end(.{});
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// marks end of dvui frame, don't call dvui functions after this
|
// cursor management
|
||||||
// - sends all dvui stuff to backend for rendering, must be called before renderPresent()
|
try backend.setCursor(win.cursorRequested());
|
||||||
const end_micros = try ctx.window.end(.{});
|
try backend.textInputRect(win.textInputRequested());
|
||||||
|
|
||||||
// cursor management
|
// render frame to OS
|
||||||
try ctx.backend.setCursor(ctx.window.cursorRequested());
|
try backend.renderPresent();
|
||||||
try ctx.backend.textInputRect(ctx.window.textInputRequested());
|
|
||||||
|
|
||||||
// render frame to OS
|
// waitTime and beginWait combine to achieve variable framerates
|
||||||
try ctx.backend.renderPresent();
|
const wait_event_micros = win.waitTime(end_micros);
|
||||||
|
interrupted = try backend.waitEventTimeout(wait_event_micros);
|
||||||
// waitTime and beginWait combine to achieve variable framerates
|
|
||||||
const wait_event_micros = ctx.window.waitTime(end_micros);
|
|
||||||
min_wait_event_micros = @min(min_wait_event_micros, wait_event_micros);
|
|
||||||
|
|
||||||
idx += 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (windows.items.len == 0) break :main_loop;
|
|
||||||
|
|
||||||
interrupted = saw_events or try windows.items[0].backend.waitEventTimeout(min_wait_event_micros);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn createWindow(allocator: std.mem.Allocator, id: usize) !*WindowContext {
|
fn gui_frame(ctx: *WindowContext) bool {
|
||||||
var ctx = try allocator.create(WindowContext);
|
const canvas = &ctx.canvas;
|
||||||
errdefer allocator.destroy(ctx);
|
const ctrl: bool = dvui.currentWindow().modifiers.control();
|
||||||
|
|
||||||
ctx.id = id;
|
for (dvui.events()) |*e| {
|
||||||
|
|
||||||
const title_bytes = try std.fmt.allocPrint(allocator, "My DVUI App #{d}", .{id});
|
|
||||||
defer allocator.free(title_bytes);
|
|
||||||
|
|
||||||
ctx.title = try allocator.allocSentinel(u8, title_bytes.len, 0);
|
|
||||||
@memcpy(ctx.title[0..title_bytes.len], title_bytes);
|
|
||||||
|
|
||||||
ctx.backend = try SDLBackend.initWindow(.{
|
|
||||||
.allocator = allocator,
|
|
||||||
.size = .{ .w = 800.0, .h = 600.0 },
|
|
||||||
.title = ctx.title,
|
|
||||||
.vsync = true,
|
|
||||||
});
|
|
||||||
errdefer destroyBackendKeepingSDL(&ctx.backend);
|
|
||||||
|
|
||||||
const theme = switch (ctx.backend.preferredColorScheme() orelse .light) {
|
|
||||||
.light => dvui.Theme.builtin.adwaita_light,
|
|
||||||
.dark => dvui.Theme.builtin.adwaita_dark,
|
|
||||||
};
|
|
||||||
|
|
||||||
ctx.window = try dvui.Window.init(@src(), allocator, ctx.backend.backend(), .{ .theme = theme });
|
|
||||||
errdefer ctx.window.deinit();
|
|
||||||
|
|
||||||
return ctx;
|
|
||||||
}
|
|
||||||
|
|
||||||
fn closeWindow(windows: *std.ArrayList(*WindowContext), allocator: std.mem.Allocator, idx: usize) void {
|
|
||||||
const last = windows.items.len == 1;
|
|
||||||
const ctx = windows.swapRemove(idx);
|
|
||||||
ctx.deinit(allocator, last);
|
|
||||||
allocator.destroy(ctx);
|
|
||||||
}
|
|
||||||
|
|
||||||
fn destroyBackendKeepingSDL(backend: *SDLBackend) void {
|
|
||||||
SDLBackend.c.SDL_DestroyRenderer(backend.renderer);
|
|
||||||
SDLBackend.c.SDL_DestroyWindow(backend.window);
|
|
||||||
backend.we_own_window = false;
|
|
||||||
backend.deinit();
|
|
||||||
}
|
|
||||||
|
|
||||||
fn windowId(ctx: *WindowContext) u32 {
|
|
||||||
return @intCast(SDLBackend.c.SDL_GetWindowID(ctx.backend.window));
|
|
||||||
}
|
|
||||||
|
|
||||||
fn eventWindowId(event: SDLBackend.c.SDL_Event) ?u32 {
|
|
||||||
return switch (event.type) {
|
|
||||||
if (SDLBackend.sdl3) SDLBackend.c.SDL_EVENT_KEY_DOWN else SDLBackend.c.SDL_KEYDOWN => @intCast(event.key.windowID),
|
|
||||||
if (SDLBackend.sdl3) SDLBackend.c.SDL_EVENT_KEY_UP else SDLBackend.c.SDL_KEYUP => @intCast(event.key.windowID),
|
|
||||||
if (SDLBackend.sdl3) SDLBackend.c.SDL_EVENT_TEXT_INPUT else SDLBackend.c.SDL_TEXTINPUT => @intCast(event.text.windowID),
|
|
||||||
if (SDLBackend.sdl3) SDLBackend.c.SDL_EVENT_TEXT_EDITING else SDLBackend.c.SDL_TEXTEDITING => @intCast(event.edit.windowID),
|
|
||||||
if (SDLBackend.sdl3) SDLBackend.c.SDL_EVENT_MOUSE_MOTION else SDLBackend.c.SDL_MOUSEMOTION => @intCast(event.motion.windowID),
|
|
||||||
if (SDLBackend.sdl3) SDLBackend.c.SDL_EVENT_MOUSE_BUTTON_DOWN else SDLBackend.c.SDL_MOUSEBUTTONDOWN => @intCast(event.button.windowID),
|
|
||||||
if (SDLBackend.sdl3) SDLBackend.c.SDL_EVENT_MOUSE_BUTTON_UP else SDLBackend.c.SDL_MOUSEBUTTONUP => @intCast(event.button.windowID),
|
|
||||||
if (SDLBackend.sdl3) SDLBackend.c.SDL_EVENT_MOUSE_WHEEL else SDLBackend.c.SDL_MOUSEWHEEL => @intCast(event.wheel.windowID),
|
|
||||||
if (SDLBackend.sdl3) SDLBackend.c.SDL_EVENT_WINDOW_CLOSE_REQUESTED else SDLBackend.c.SDL_WINDOWEVENT => @intCast(event.window.windowID),
|
|
||||||
else => null,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
fn pumpEvents(windows: *std.ArrayList(*WindowContext)) !bool {
|
|
||||||
var event: SDLBackend.c.SDL_Event = undefined;
|
|
||||||
const poll_got_event = if (SDLBackend.sdl3) true else 1;
|
|
||||||
var saw_event = false;
|
|
||||||
|
|
||||||
while (SDLBackend.c.SDL_PollEvent(&event) == poll_got_event) {
|
|
||||||
saw_event = true;
|
|
||||||
|
|
||||||
if (eventWindowId(event)) |wid| {
|
|
||||||
for (windows.items) |ctx| {
|
|
||||||
if (windowId(ctx) == wid) {
|
|
||||||
_ = try ctx.backend.addEvent(&ctx.window, event);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// broadcast events without a window target (like SDL_QUIT)
|
|
||||||
for (windows.items) |ctx| {
|
|
||||||
_ = try ctx.backend.addEvent(&ctx.window, event);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return saw_event;
|
|
||||||
}
|
|
||||||
|
|
||||||
fn gui_frame(ctx: *WindowContext, allocator: std.mem.Allocator, windows: *std.ArrayList(*WindowContext), next_window_id: *usize) !bool {
|
|
||||||
for (ctx.window.events.items) |*e| {
|
|
||||||
if (e.evt == .window and e.evt.window.action == .close) return false;
|
if (e.evt == .window and e.evt.window.action == .close) return false;
|
||||||
// Treat SDL_QUIT as a global request; ignore here so other windows keep running.
|
if (e.evt == .app and e.evt.app.action == .quit) return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
var root = dvui.box(@src(), .{ .dir = .vertical }, .{ .expand = .both, .padding = dvui.Rect.all(12), .background = true, .style = .window });
|
const root = dvui.box(
|
||||||
|
@src(),
|
||||||
|
.{ .dir = .horizontal },
|
||||||
|
.{ .expand = .both, .background = true, .style = .window },
|
||||||
|
);
|
||||||
defer root.deinit();
|
defer root.deinit();
|
||||||
|
|
||||||
dvui.label(@src(), "Window #{d}", .{ctx.id}, .{ .font_style = .title_2 });
|
// Левая панель с фиксированной шириной
|
||||||
dvui.label(@src(), "Open windows: {d}", .{windows.items.len}, .{});
|
var left_panel = dvui.box(@src(), .{ .dir = .vertical }, .{ .expand = .vertical, .min_size_content = .{ .w = 200 }, .background = true });
|
||||||
|
{
|
||||||
if (dvui.button(@src(), "New window", .{}, .{})) {
|
dvui.label(@src(), "Tools", .{}, .{});
|
||||||
const id = next_window_id.*;
|
if (dvui.button(@src(), "Fill Random Color", .{}, .{})) {
|
||||||
next_window_id.* += 1;
|
canvas.fillRandomGradient() catch |err| {
|
||||||
const new_ctx = try createWindow(allocator, id);
|
std.debug.print("Error filling canvas: {}\n", .{err});
|
||||||
try windows.append(allocator, new_ctx);
|
};
|
||||||
|
canvas.pos = .{ .x = 400, .y = 400 };
|
||||||
|
canvas.zoom = dvui.windowNaturalScale();
|
||||||
|
}
|
||||||
|
if (dvui.checkbox(@src(), &canvas.native_scaling, "Scaling", .{})) {}
|
||||||
}
|
}
|
||||||
|
left_panel.deinit();
|
||||||
|
|
||||||
|
// Правая панель - занимает оставшееся пространство
|
||||||
|
const back = dvui.box(
|
||||||
|
@src(),
|
||||||
|
.{ .dir = .horizontal },
|
||||||
|
.{ .expand = .both, .padding = dvui.Rect.all(12), .background = true },
|
||||||
|
);
|
||||||
|
{
|
||||||
|
const fill_color = Color.black.opacity(0.25);
|
||||||
|
var right_panel = dvui.box(
|
||||||
|
@src(),
|
||||||
|
.{ .dir = .vertical },
|
||||||
|
.{
|
||||||
|
.expand = .both,
|
||||||
|
.background = true,
|
||||||
|
.padding = dvui.Rect.all(5),
|
||||||
|
.corner_radius = dvui.Rect.all(24),
|
||||||
|
.color_fill = fill_color,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
{
|
||||||
|
var textured = dvui_ext.texturedBox(right_panel.data().contentRectScale(), dvui.Rect.all(20));
|
||||||
|
{
|
||||||
|
var overlay = dvui.overlay(
|
||||||
|
@src(),
|
||||||
|
.{ .expand = .both },
|
||||||
|
);
|
||||||
|
{
|
||||||
|
var scroll = dvui.scrollArea(
|
||||||
|
@src(),
|
||||||
|
.{
|
||||||
|
.scroll_info = &canvas.scroll,
|
||||||
|
.vertical_bar = .auto,
|
||||||
|
.horizontal_bar = .auto,
|
||||||
|
},
|
||||||
|
.{
|
||||||
|
.expand = .both,
|
||||||
|
.background = false,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
{
|
||||||
|
const natural_scale = if (canvas.native_scaling) 1 else dvui.windowNaturalScale();
|
||||||
|
const img_size = canvas.getScaledImageSize();
|
||||||
|
|
||||||
|
// Получить viewport и scroll offset
|
||||||
|
const viewport_rect = scroll.data().contentRect();
|
||||||
|
const scroll_current = dvui.Point{ .x = canvas.scroll.viewport.x, .y = canvas.scroll.viewport.y };
|
||||||
|
|
||||||
|
// viewport_rect/scroll_current — в natural единицах.
|
||||||
|
// Для расчёта видимой области в пикселях изображения переводим в physical.
|
||||||
|
const viewport_px = dvui.Rect{
|
||||||
|
.x = viewport_rect.x * natural_scale,
|
||||||
|
.y = viewport_rect.y * natural_scale,
|
||||||
|
.w = viewport_rect.w * natural_scale,
|
||||||
|
.h = viewport_rect.h * natural_scale,
|
||||||
|
};
|
||||||
|
const scroll_px = dvui.Point{
|
||||||
|
.x = scroll_current.x * natural_scale,
|
||||||
|
.y = scroll_current.y * natural_scale,
|
||||||
|
};
|
||||||
|
|
||||||
|
canvas.updateVisibleImageRect(viewport_px, scroll_px) catch |err| {
|
||||||
|
std.debug.print("updateVisibleImageRect error: {}\n", .{err});
|
||||||
|
};
|
||||||
|
|
||||||
|
if (canvas.texture) |tex| {
|
||||||
|
_ = dvui.image(
|
||||||
|
@src(),
|
||||||
|
.{ .source = .{ .texture = tex } },
|
||||||
|
.{
|
||||||
|
.background = false,
|
||||||
|
.margin = .{
|
||||||
|
.x = @as(f32, @floatFromInt(img_size.x)) / natural_scale,
|
||||||
|
.y = @as(f32, @floatFromInt(img_size.y)) / natural_scale,
|
||||||
|
.w = @as(f32, @floatFromInt(img_size.x)) / natural_scale,
|
||||||
|
.h = @as(f32, @floatFromInt(img_size.y)) / natural_scale,
|
||||||
|
},
|
||||||
|
.min_size_content = .{
|
||||||
|
.w = @as(f32, @floatFromInt(img_size.w)) / natural_scale,
|
||||||
|
.h = @as(f32, @floatFromInt(img_size.h)) / natural_scale,
|
||||||
|
},
|
||||||
|
.max_size_content = .{
|
||||||
|
.w = @as(f32, @floatFromInt(img_size.w)) / natural_scale,
|
||||||
|
.h = @as(f32, @floatFromInt(img_size.h)) / natural_scale,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Заблокировать события скролла, если нажат ctrl
|
||||||
|
if (ctrl) {
|
||||||
|
for (dvui.events()) |*e| {
|
||||||
|
switch (e.evt) {
|
||||||
|
.mouse => |mouse| {
|
||||||
|
const action = mouse.action;
|
||||||
|
if (dvui.eventMatchSimple(e, scroll.data()) and (action == .wheel_x or action == .wheel_y)) {
|
||||||
|
switch (action) {
|
||||||
|
.wheel_y => |y| {
|
||||||
|
canvas.addZoom(y / 1000);
|
||||||
|
canvas.redrawGradient() catch {};
|
||||||
|
},
|
||||||
|
else => {},
|
||||||
|
}
|
||||||
|
e.handled = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
else => {},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
scroll.deinit();
|
||||||
|
|
||||||
|
dvui.label(@src(), "Canvas", .{}, .{ .gravity_x = 0.5, .gravity_y = 0.0 });
|
||||||
|
}
|
||||||
|
overlay.deinit();
|
||||||
|
}
|
||||||
|
textured.deinit();
|
||||||
|
}
|
||||||
|
right_panel.deinit();
|
||||||
|
}
|
||||||
|
back.deinit();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
1
src/render/IRenderEngine.zig
Normal file
1
src/render/IRenderEngine.zig
Normal file
@@ -0,0 +1 @@
|
|||||||
|
// Интерфейс для рендеринга документа
|
||||||
8
src/ui/dvui_ext.zig
Normal file
8
src/ui/dvui_ext.zig
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
// Расширения для dvui
|
||||||
|
const std = @import("std");
|
||||||
|
const dvui = @import("dvui");
|
||||||
|
const TexturedBox = @import("./types/TexturedBox.zig");
|
||||||
|
|
||||||
|
pub fn texturedBox(rs: dvui.RectScale, corner_radius: dvui.Rect) TexturedBox {
|
||||||
|
return TexturedBox.init(rs, corner_radius);
|
||||||
|
}
|
||||||
38
src/ui/types/TexturedBox.zig
Normal file
38
src/ui/types/TexturedBox.zig
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
// Отрисовка дочернего контента как текстуры с параметрами скругления
|
||||||
|
const std = @import("std");
|
||||||
|
const dvui = @import("dvui");
|
||||||
|
const TexturedBox = @This();
|
||||||
|
|
||||||
|
parent: dvui.Widget,
|
||||||
|
rs: dvui.RectScale,
|
||||||
|
pic: ?dvui.Picture,
|
||||||
|
corner_radius: dvui.Rect,
|
||||||
|
|
||||||
|
pub fn init(rs: dvui.RectScale, corner_radius: dvui.Rect) TexturedBox {
|
||||||
|
const parent = dvui.parentGet();
|
||||||
|
const pic = dvui.Picture.start(rs.r);
|
||||||
|
return .{
|
||||||
|
.parent = parent,
|
||||||
|
.corner_radius = corner_radius,
|
||||||
|
.rs = rs,
|
||||||
|
.pic = pic,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn deinit(self: *TexturedBox) void {
|
||||||
|
if (self.pic) |*picture| {
|
||||||
|
picture.stop();
|
||||||
|
|
||||||
|
const tex = dvui.textureFromTarget(picture.texture) catch null;
|
||||||
|
if (tex) |t| {
|
||||||
|
dvui.Texture.destroyLater(t);
|
||||||
|
// self.rs.r.y -= 2;
|
||||||
|
// self.rs.r.x -= 2;
|
||||||
|
// self.rs.r.h += 2;
|
||||||
|
// self.rs.r.w += 2;
|
||||||
|
dvui.renderTexture(t, self.rs, .{
|
||||||
|
.corner_radius = self.corner_radius,
|
||||||
|
}) catch {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user