2024-01-24 17:28:41 +01:00
|
|
|
# libvaxis
|
|
|
|
|
|
|
|
```
|
|
|
|
It begins with them, but ends with me. Their son, Vaxis
|
|
|
|
```
|
|
|
|
|
2024-06-02 14:19:28 +02:00
|
|
|
![vaxis demo gif](vaxis.gif)
|
2024-01-24 17:28:41 +01:00
|
|
|
|
2024-06-02 14:19:28 +02:00
|
|
|
Libvaxis _does not use terminfo_. Support for vt features is detected through
|
|
|
|
terminal queries.
|
2024-01-24 17:28:41 +01:00
|
|
|
|
|
|
|
Contributions are welcome.
|
|
|
|
|
2024-05-01 00:20:35 +02:00
|
|
|
Vaxis uses zig `0.12.0`.
|
2024-03-22 01:29:26 +01:00
|
|
|
|
2024-05-29 20:13:54 +02:00
|
|
|
## Features
|
|
|
|
|
|
|
|
| Feature | libvaxis |
|
|
|
|
| ------------------------------ | :------: |
|
|
|
|
| RGB | ✅ |
|
|
|
|
| Hyperlinks | ✅ |
|
|
|
|
| Bracketed Paste | ✅ |
|
|
|
|
| Kitty Keyboard | ✅ |
|
|
|
|
| Styled Underlines | ✅ |
|
|
|
|
| Mouse Shapes (OSC 22) | ✅ |
|
|
|
|
| System Clipboard (OSC 52) | ✅ |
|
|
|
|
| System Notifications (OSC 9) | ✅ |
|
|
|
|
| System Notifications (OSC 777) | ✅ |
|
|
|
|
| Synchronized Output (DEC 2026) | ✅ |
|
|
|
|
| Unicode Core (DEC 2027) | ✅ |
|
|
|
|
| Color Mode Updates (DEC 2031) | ✅ |
|
|
|
|
| Images (kitty) | ✅ |
|
2024-01-24 17:28:41 +01:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2024-03-29 15:37:07 +01:00
|
|
|
[Documentation](https://rockorager.github.io/libvaxis/#vaxis.Vaxis)
|
|
|
|
|
2024-05-29 20:13:54 +02:00
|
|
|
Vaxis requires three basic primitives to operate:
|
|
|
|
|
|
|
|
1. A TTY instance
|
|
|
|
2. An instance of Vaxis
|
|
|
|
3. An event loop
|
|
|
|
|
|
|
|
The library provides a general purpose posix TTY implementation, as well as a
|
|
|
|
multi-threaded event loop implementation. Users of the library are encouraged to
|
|
|
|
use the event loop of their choice. The event loop is responsible for reading
|
|
|
|
the TTY, passing the read bytes to the vaxis parser, and handling events.
|
|
|
|
|
|
|
|
A core feature of Vaxis is it's ability to detect features via terminal queries
|
|
|
|
instead of relying on a terminfo database. This requires that the event loop
|
|
|
|
also handle these query responses and update the Vaxis.caps struct accordingly.
|
|
|
|
See the `Loop` implementation to see how this is done if writing your own event
|
|
|
|
loop.
|
|
|
|
|
|
|
|
## Example
|
2024-01-24 17:28:41 +01:00
|
|
|
|
|
|
|
```zig
|
|
|
|
const std = @import("std");
|
|
|
|
const vaxis = @import("vaxis");
|
|
|
|
const Cell = vaxis.Cell;
|
|
|
|
const TextInput = vaxis.widgets.TextInput;
|
|
|
|
const border = vaxis.widgets.border;
|
|
|
|
|
2024-02-11 19:59:33 +01:00
|
|
|
// This can contain internal events as well as Vaxis events.
|
2024-01-24 17:28:41 +01:00
|
|
|
// Internal events can be posted into the same queue as vaxis events to allow
|
|
|
|
// for a single event loop with exhaustive switching. Booya
|
|
|
|
const Event = union(enum) {
|
|
|
|
key_press: vaxis.Key,
|
|
|
|
winsize: vaxis.Winsize,
|
|
|
|
focus_in,
|
|
|
|
foo: u8,
|
|
|
|
};
|
|
|
|
|
|
|
|
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) {
|
2024-04-16 15:44:57 +02:00
|
|
|
std.log.err("memory leak", .{});
|
2024-01-24 17:28:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
const alloc = gpa.allocator();
|
|
|
|
|
2024-05-29 20:13:54 +02:00
|
|
|
// Initialize a tty
|
|
|
|
var tty = try vaxis.Tty.init();
|
|
|
|
defer tty.deinit();
|
|
|
|
|
2024-04-30 23:00:23 +02:00
|
|
|
// Initialize Vaxis
|
|
|
|
var vx = try vaxis.init(alloc, .{});
|
2024-01-24 17:28:41 +01:00
|
|
|
// deinit takes an optional allocator. If your program is exiting, you can
|
|
|
|
// choose to pass a null allocator to save some exit time.
|
2024-05-29 20:13:54 +02:00
|
|
|
defer vx.deinit(alloc, tty.anyWriter());
|
|
|
|
|
2024-01-24 17:28:41 +01:00
|
|
|
|
2024-05-29 20:13:54 +02:00
|
|
|
// The event loop requires an intrusive init. We create an instance with
|
|
|
|
// stable points to Vaxis and our TTY, then init the instance. Doing so
|
|
|
|
// installs a signal handler for SIGWINCH on posix TTYs
|
|
|
|
//
|
|
|
|
// This event loop is thread safe. It reads the tty in a separate thread
|
|
|
|
var loop: vaxis.Loop(Event) = .{
|
|
|
|
.tty = &tty,
|
|
|
|
.vaxis = &vaxis,
|
|
|
|
};
|
|
|
|
try loop.init();
|
2024-04-30 23:00:23 +02:00
|
|
|
|
2024-01-24 17:28:41 +01:00
|
|
|
// Start the read loop. This puts the terminal in raw mode and begins
|
|
|
|
// reading user input
|
2024-05-29 20:13:54 +02:00
|
|
|
try loop.start();
|
2024-04-30 23:00:23 +02:00
|
|
|
defer loop.stop();
|
2024-01-24 17:28:41 +01:00
|
|
|
|
|
|
|
// Optionally enter the alternate screen
|
2024-05-29 20:13:54 +02:00
|
|
|
try vx.enterAltScreen(tty.anyWriter());
|
2024-01-24 17:28:41 +01:00
|
|
|
|
|
|
|
// We'll adjust the color index every keypress for the border
|
|
|
|
var color_idx: u8 = 0;
|
|
|
|
|
|
|
|
// init our text input widget. The text input widget needs an allocator to
|
|
|
|
// store the contents of the input
|
|
|
|
var text_input = TextInput.init(alloc);
|
|
|
|
defer text_input.deinit();
|
|
|
|
|
2024-05-29 20:13:54 +02:00
|
|
|
// Sends queries to terminal to detect certain features. This should always
|
|
|
|
// be called after entering the alt screen, if you are using the alt screen
|
|
|
|
try vx.queryTerminal(tty.anyWriter(), 1 * std.time.ns_per_s);
|
2024-01-24 17:28:41 +01:00
|
|
|
|
2024-02-11 19:59:33 +01:00
|
|
|
while (true) {
|
2024-01-24 17:28:41 +01:00
|
|
|
// nextEvent blocks until an event is in the queue
|
2024-04-30 23:00:23 +02:00
|
|
|
const event = loop.nextEvent();
|
2024-04-16 15:44:57 +02:00
|
|
|
std.log.debug("event: {}", .{event});
|
2024-02-11 19:59:33 +01:00
|
|
|
// exhaustive switching ftw. Vaxis will send events if your Event enum
|
|
|
|
// has the fields for those events (ie "key_press", "winsize")
|
2024-01-24 17:28:41 +01:00
|
|
|
switch (event) {
|
|
|
|
.key_press => |key| {
|
|
|
|
color_idx = switch (color_idx) {
|
|
|
|
255 => 0,
|
|
|
|
else => color_idx + 1,
|
|
|
|
};
|
|
|
|
if (key.matches('c', .{ .ctrl = true })) {
|
2024-02-11 19:59:33 +01:00
|
|
|
break;
|
2024-01-24 17:28:41 +01:00
|
|
|
} else if (key.matches('l', .{ .ctrl = true })) {
|
|
|
|
vx.queueRefresh();
|
|
|
|
} else {
|
|
|
|
try text_input.update(.{ .key_press = key });
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// winsize events are sent to the application to ensure that all
|
|
|
|
// resizes occur in the main thread. This lets us avoid expensive
|
|
|
|
// locks on the screen. All applications must handle this event
|
|
|
|
// unless they aren't using a screen (IE only detecting features)
|
|
|
|
//
|
2024-04-30 23:00:23 +02:00
|
|
|
// The allocations are because we keep a copy of each cell to
|
2024-01-24 17:28:41 +01:00
|
|
|
// optimize renders. When resize is called, we allocated two slices:
|
|
|
|
// one for the screen, and one for our buffered screen. Each cell in
|
|
|
|
// the buffered screen contains an ArrayList(u8) to be able to store
|
2024-04-30 23:00:23 +02:00
|
|
|
// the grapheme for that cell. Each cell is initialized with a size
|
2024-01-24 17:28:41 +01:00
|
|
|
// of 1, which is sufficient for all of ASCII. Anything requiring
|
|
|
|
// more than one byte will incur an allocation on the first render
|
|
|
|
// after it is drawn. Thereafter, it will not allocate unless the
|
|
|
|
// screen is resized
|
2024-05-29 20:13:54 +02:00
|
|
|
.winsize => |ws| try vx.resize(alloc, tty.anyWriter(), ws),
|
2024-01-24 17:28:41 +01:00
|
|
|
else => {},
|
|
|
|
}
|
|
|
|
|
|
|
|
// vx.window() returns the root window. This window is the size of the
|
|
|
|
// terminal and can spawn child windows as logical areas. Child windows
|
|
|
|
// cannot draw outside of their bounds
|
|
|
|
const win = vx.window();
|
|
|
|
|
|
|
|
// Clear the entire space because we are drawing in immediate mode.
|
|
|
|
// vaxis double buffers the screen. This new frame will be compared to
|
|
|
|
// the old and only updated cells will be drawn
|
|
|
|
win.clear();
|
2024-03-22 01:29:26 +01:00
|
|
|
|
2024-04-16 15:44:57 +02:00
|
|
|
// Create a style
|
2024-01-24 17:28:41 +01:00
|
|
|
const style: vaxis.Style = .{
|
|
|
|
.fg = .{ .index = color_idx },
|
|
|
|
};
|
2024-03-22 01:29:26 +01:00
|
|
|
|
2024-04-16 15:44:57 +02:00
|
|
|
// Create a bordered child window
|
|
|
|
const child = win.child(.{
|
|
|
|
.x_off = win.width / 2 - 20,
|
|
|
|
.y_off = win.height / 2 - 3,
|
|
|
|
.width = .{ .limit = 40 },
|
|
|
|
.height = .{ .limit = 3 },
|
|
|
|
.border = .{
|
|
|
|
.where = .all,
|
|
|
|
.style = style,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// Draw the text_input in the child window
|
2024-03-22 01:29:26 +01:00
|
|
|
text_input.draw(child);
|
2024-01-24 17:28:41 +01:00
|
|
|
|
2024-05-29 20:13:54 +02:00
|
|
|
// Render the screen. Using a buffered writer will offer much better
|
|
|
|
// performance, but is not required
|
|
|
|
try vx.render(tty.anyWriter());
|
2024-01-24 17:28:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|