2024-01-18 04:52:33 +01:00
|
|
|
const std = @import("std");
|
|
|
|
const Tty = @import("tty/Tty.zig");
|
|
|
|
|
|
|
|
pub fn main() !void {
|
|
|
|
// Prints to stderr (it's a shortcut based on `std.io.getStdErr()`)
|
|
|
|
std.debug.print("All your {s} are belong to us.\n", .{"codebase"});
|
|
|
|
|
|
|
|
// stdout is for the actual output of your application, for example if you
|
|
|
|
// are implementing gzip, then only the compressed bytes should be sent to
|
|
|
|
// stdout, not any debugging messages.
|
|
|
|
const stdout_file = std.io.getStdOut().writer();
|
|
|
|
var bw = std.io.bufferedWriter(stdout_file);
|
|
|
|
const stdout = bw.writer();
|
|
|
|
|
|
|
|
var tty = try Tty.init();
|
|
|
|
defer tty.deinit();
|
|
|
|
|
2024-01-18 05:34:40 +01:00
|
|
|
// run our tty read loop in it's own thread
|
2024-01-18 23:16:21 +01:00
|
|
|
const read_thread = try std.Thread.spawn(.{}, Tty.run, .{ &tty, Event, eventCallback });
|
2024-01-18 05:34:40 +01:00
|
|
|
try read_thread.setName("tty");
|
|
|
|
|
2024-01-18 23:16:21 +01:00
|
|
|
std.time.sleep(100_000_000_00);
|
|
|
|
tty.stop();
|
2024-01-18 05:34:40 +01:00
|
|
|
read_thread.join();
|
2024-01-18 04:52:33 +01:00
|
|
|
|
|
|
|
try stdout.print("Run `zig build test` to run the tests.\n", .{});
|
|
|
|
|
|
|
|
try bw.flush(); // don't forget to flush!
|
|
|
|
}
|
|
|
|
|
2024-01-18 23:16:21 +01:00
|
|
|
const Event = union(enum) {
|
|
|
|
key: u8,
|
|
|
|
mouse: u8,
|
|
|
|
};
|
|
|
|
|
|
|
|
fn eventCallback(_: Event) void {}
|
|
|
|
|
2024-01-18 04:52:33 +01:00
|
|
|
test "simple test" {
|
2024-01-18 23:16:21 +01:00
|
|
|
_ = @import("odditui.zig");
|
|
|
|
_ = @import("queue.zig");
|
2024-01-18 04:52:33 +01:00
|
|
|
}
|