libvaxis/examples/main.zig

49 lines
1.1 KiB
Zig
Raw Normal View History

const std = @import("std");
const vaxis = @import("vaxis");
const log = std.log.scoped(.main);
pub fn main() !void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
defer {
const deinit_status = gpa.deinit();
//fail test; can't try in defer as defer is executed after we return
if (deinit_status == .leak) {
log.err("memory leak", .{});
}
}
const alloc = gpa.allocator();
var vx = try vaxis.init(Event, .{});
defer vx.deinit(alloc);
try vx.start();
defer vx.stop();
try vx.enterAltScreen();
outer: while (true) {
const event = vx.nextEvent();
log.debug("event: {}\r\n", .{event});
switch (event) {
.key_press => |key| {
if (key.codepoint == 'c' and key.mods.ctrl) {
break :outer;
}
},
.winsize => |ws| {
try vx.resize(alloc, ws.rows, ws.cols);
},
else => {},
}
const win = vx.window();
_ = win;
}
}
const Event = union(enum) {
key_press: vaxis.Key,
winsize: vaxis.Winsize,
mouse: u8,
};