#终端 #tui #vt100 #应用程序 #屏幕 #解析器

mprocs-vt100

vt100 的 mprocs 分支

3 个不稳定版本

0.7.0 2024年6月26日
0.1.1 2022年10月2日
0.1.0 2022年8月9日

#279命令行界面

Download history 212/week @ 2024-04-25 209/week @ 2024-05-02 281/week @ 2024-05-09 277/week @ 2024-05-16 164/week @ 2024-05-23 172/week @ 2024-05-30 175/week @ 2024-06-06 167/week @ 2024-06-13 306/week @ 2024-06-20 299/week @ 2024-06-27 105/week @ 2024-07-04 83/week @ 2024-07-11 63/week @ 2024-07-18 131/week @ 2024-07-25 68/week @ 2024-08-01 59/week @ 2024-08-08

333 每月下载量
3 crates 中使用

MIT 许可证

155KB
4K SLoC

vt100

此 crate 解析终端字节流并提供渲染内容的内存表示。

概述

这实际上是图形终端模拟器的终端解析器组件,提取到一个独立的 crate 中。虽然可以使用此 crate 来构建图形终端模拟器,但它还包含实现希望运行其他终端应用程序的终端应用程序所需的功能 - 例如,像 screentmux 这样的程序。

概要

let mut parser = vt100::Parser::new(24, 80, 0);

let screen = parser.screen().clone();
parser.process(b"this text is \x1b[31mRED\x1b[m");
assert_eq!(
    parser.screen().cell(0, 13).unwrap().fgcolor(),
    vt100::Color::Idx(1),
);

let screen = parser.screen().clone();
parser.process(b"\x1b[3D\x1b[32mGREEN");
assert_eq!(
    parser.screen().contents_formatted(),
    &b"\x1b[?25h\x1b[m\x1b[H\x1b[Jthis text is \x1b[32mGREEN"[..],
);
assert_eq!(
    parser.screen().contents_diff(&screen),
    &b"\x1b[1;14H\x1b[32mGREEN"[..],
);

依赖项

~24–36MB
~633K SLoC