Рабочий зум

This commit is contained in:
2025-12-19 21:57:51 +03:00
parent 183726aed4
commit e22051c1c1
4 changed files with 73 additions and 48 deletions

5
.vscode/tasks.json vendored
View File

@@ -10,11 +10,6 @@
"isDefault": true "isDefault": true
}, },
"problemMatcher": ["$gcc"], "problemMatcher": ["$gcc"],
"presentation": {
"reveal": "always",
"panel": "shared",
"showReuseMessage": true
}
} }
] ]
} }

View File

@@ -1,19 +1,22 @@
const std = @import("std"); const std = @import("std");
const dvui = @import("dvui"); const dvui = @import("dvui");
const Size = dvui.Size;
const Color = dvui.Color; const Color = dvui.Color;
const Canvas = @This(); const Canvas = @This();
allocator: std.mem.Allocator, allocator: std.mem.Allocator,
texture: ?dvui.Texture = null, texture: ?dvui.Texture = null,
width: u32 = 400, size: Size = .{ .w = 800, .h = 600 },
height: u32 = 300,
pos: dvui.Point = dvui.Point{ .x = 0, .y = 0 }, pos: dvui.Point = dvui.Point{ .x = 0, .y = 0 },
scroll: dvui.ScrollInfo = .{ scroll: dvui.ScrollInfo = .{
.vertical = .given, .vertical = .auto,
.horizontal = .given, .horizontal = .auto,
.virtual_size = .{ .w = 2000, .h = 2000 }, // .virtual_size = .{ .w = 2000, .h = 2000 },
}, },
zoom: f32 = 1,
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 { pub fn init(allocator: std.mem.Allocator) Canvas {
return .{ .allocator = allocator }; return .{ .allocator = allocator };
@@ -27,26 +30,24 @@ pub fn deinit(self: *Canvas) void {
} }
/// Заполнить canvas градиентом /// Заполнить canvas градиентом
pub fn fillRandomColor(self: *Canvas) !void { pub fn redrawGradient(self: *Canvas) !void {
std.debug.print("Zoom: {any}\n", .{self.zoom});
const width: u32 = @intFromFloat(self.size.w * self.zoom);
const height: u32 = @intFromFloat(self.size.h * self.zoom);
// Выделить буфер пиксельных данных // Выделить буфер пиксельных данных
const pixels = try self.allocator.alloc(Color.PMA, @as(usize, self.width) * self.height); const pixels = try self.allocator.alloc(Color.PMA, @as(usize, width) * height);
defer self.allocator.free(pixels); defer self.allocator.free(pixels);
// Сгенерировать случайные цвета градиента
var prng = std.Random.DefaultPrng.init(@intCast(std.time.microTimestamp()));
const random = prng.random();
const start_color = Color.PMA{ .r = random.int(u8), .g = random.int(u8), .b = random.int(u8), .a = 255 };
const end_color = Color.PMA{ .r = random.int(u8), .g = random.int(u8), .b = random.int(u8), .a = 255 };
var y: u32 = 0; var y: u32 = 0;
while (y < self.height) : (y += 1) { while (y < height) : (y += 1) {
var x: u32 = 0; var x: u32 = 0;
while (x < self.width) : (x += 1) { while (x < width) : (x += 1) {
const factor = @as(f32, @floatFromInt(x)) / @as(f32, @floatFromInt(self.width - 1)); const factor = (@as(f32, @floatFromInt(x)) / @as(f32, @floatFromInt(width - 1)) + @as(f32, @floatFromInt(y)) / @as(f32, @floatFromInt(height - 1))) / 2;
const r = @as(u8, @intFromFloat(@as(f32, @floatFromInt(start_color.r)) + factor * (@as(f32, @floatFromInt(end_color.r)) - @as(f32, @floatFromInt(start_color.r))))); const r = @as(u8, @intFromFloat(@as(f32, @floatFromInt(self.gradient_start.r)) + factor * (@as(f32, @floatFromInt(self.gradient_end.r)) - @as(f32, @floatFromInt(self.gradient_start.r)))));
const g = @as(u8, @intFromFloat(@as(f32, @floatFromInt(start_color.g)) + factor * (@as(f32, @floatFromInt(end_color.g)) - @as(f32, @floatFromInt(start_color.g))))); const g = @as(u8, @intFromFloat(@as(f32, @floatFromInt(self.gradient_start.g)) + factor * (@as(f32, @floatFromInt(self.gradient_end.g)) - @as(f32, @floatFromInt(self.gradient_start.g)))));
const b = @as(u8, @intFromFloat(@as(f32, @floatFromInt(start_color.b)) + factor * (@as(f32, @floatFromInt(end_color.b)) - @as(f32, @floatFromInt(start_color.b))))); const b = @as(u8, @intFromFloat(@as(f32, @floatFromInt(self.gradient_start.b)) + factor * (@as(f32, @floatFromInt(self.gradient_end.b)) - @as(f32, @floatFromInt(self.gradient_start.b)))));
pixels[y * self.width + x] = .{ .r = r, .g = g, .b = b, .a = 255 }; pixels[y * width + x] = .{ .r = r, .g = g, .b = b, .a = 255 };
} }
} }
@@ -56,13 +57,23 @@ pub fn fillRandomColor(self: *Canvas) !void {
} }
// Создать новую текстуру из пиксельных данных // Создать новую текстуру из пиксельных данных
self.texture = try dvui.textureCreate(pixels, self.width, self.height, .linear); self.texture = try dvui.textureCreate(pixels, width, height, .nearest);
}
// Дать скроллам ощутимый диапазон сразу (минимум 2000x2000) /// Заполнить canvas случайным градиентом
self.scroll.virtual_size = .{ pub fn fillRandomGradient(self: *Canvas) !void {
.w = @max(2000, @as(f32, @floatFromInt(self.width))), // Сгенерировать случайные цвета градиента
.h = @max(2000, @as(f32, @floatFromInt(self.height))), 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);
} }
/// Отобразить canvas в UI /// Отобразить canvas в UI

View File

@@ -14,15 +14,6 @@ pub fn init(allocator: std.mem.Allocator) WindowContext {
}; };
} }
pub fn fillRandomColor(self: *WindowContext) !void {
try self.canvas.fillRandomColor();
}
/// Отобразить canvas в UI
pub fn render(self: WindowContext, rect: dvui.Rect.Physical) !void {
try self.canvas.render(rect);
}
pub fn deinit(self: *WindowContext) void { pub fn deinit(self: *WindowContext) void {
self.canvas.deinit(); self.canvas.deinit();
} }

View File

@@ -70,6 +70,9 @@ pub fn main() !void {
} }
fn gui_frame(ctx: *WindowContext) bool { fn gui_frame(ctx: *WindowContext) bool {
const canvas = &ctx.canvas;
const ctrl: bool = dvui.currentWindow().modifiers.control();
for (dvui.events()) |*e| { for (dvui.events()) |*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;
if (e.evt == .app and e.evt.app.action == .quit) return false; if (e.evt == .app and e.evt.app.action == .quit) return false;
@@ -87,10 +90,10 @@ fn gui_frame(ctx: *WindowContext) bool {
{ {
dvui.label(@src(), "Tools", .{}, .{}); dvui.label(@src(), "Tools", .{}, .{});
if (dvui.button(@src(), "Fill Random Color", .{}, .{})) { if (dvui.button(@src(), "Fill Random Color", .{}, .{})) {
ctx.fillRandomColor() catch |err| { canvas.fillRandomGradient() catch |err| {
std.debug.print("Error filling canvas: {}\n", .{err}); std.debug.print("Error filling canvas: {}\n", .{err});
}; };
ctx.canvas.pos = .{ .x = 400, .y = 400 }; canvas.pos = .{ .x = 400, .y = 400 };
} }
} }
left_panel.deinit(); left_panel.deinit();
@@ -128,27 +131,52 @@ fn gui_frame(ctx: *WindowContext) bool {
var scroll = dvui.scrollArea( var scroll = dvui.scrollArea(
@src(), @src(),
.{ .{
.scroll_info = &ctx.canvas.scroll, .scroll_info = &canvas.scroll,
.vertical_bar = .auto, .vertical_bar = .auto,
.horizontal_bar = .auto, .horizontal_bar = .auto,
}, },
.{ .expand = .both, .background = false }, .{
.expand = .both,
.background = false,
},
); );
{ {
// Отобразить canvas внутри scroll area. // Отобразить canvas внутри scroll area.
// ScrollArea сам двигает дочерние виджеты, поэтому margin не нужен. // ScrollArea сам двигает дочерние виджеты, поэтому margin не нужен.
if (ctx.canvas.texture) |texture| { if (canvas.texture) |texture| {
_ = dvui.image(@src(), .{ _ = dvui.image(@src(), .{
.source = .{ .texture = texture }, .source = .{ .texture = texture },
}, .{ }, .{
.margin = .{ .x = ctx.canvas.pos.x, .y = ctx.canvas.pos.y }, .margin = .{ .x = canvas.pos.x, .y = canvas.pos.y },
.min_size_content = .{ .min_size_content = .{
.w = @floatFromInt(ctx.canvas.width), .w = @floatFromInt(texture.width),
.h = @floatFromInt(ctx.canvas.height), .h = @floatFromInt(texture.height),
}, },
}); });
} }
} }
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(); scroll.deinit();
} }
canvas_box.deinit(); canvas_box.deinit();