rename submodules to reprTree & editTree

This commit is contained in:
Michael Sippel 2023-11-27 04:18:46 +01:00
parent b1c17da75f
commit f3ad5c78d7
Signed by: senvas
GPG key ID: F96CF119C34B64A6
27 changed files with 61 additions and 87 deletions
examples/tty-01-hello/src

View file

@ -1,35 +1,24 @@
extern crate r3vi;
extern crate cgmath;
extern crate nested;
extern crate nested_tty;
extern crate r3vi;
extern crate termion;
extern crate cgmath;
use {
r3vi::view::{
ViewPort,
port::UpdateTask
},
nested::{
tree::{NestedNode},
type_system::{Context, ReprTree}
},
nested_tty::{
Terminal, TerminalView, TerminalEvent,
TerminalStyle,
TerminalCompositor
},
cgmath::Vector2,
nested::reprTree::Context,
nested_tty::{Terminal, TerminalCompositor, TerminalEvent, TerminalStyle, TerminalView},
r3vi::view::{port::UpdateTask, ViewPort},
std::sync::{Arc, RwLock},
termion::event::{Event, Key},
std::sync::{Arc, RwLock}
};
/* this task handles all terminal events (e.g. key press, resize)
*/
pub async fn event_loop(
mut term: Terminal,
term_port: ViewPort<dyn TerminalView>,
portmutex: Arc<RwLock<()>>
portmutex: Arc<RwLock<()>>,
) {
loop {
let ev = term.next_event().await;
@ -46,10 +35,7 @@ pub async fn event_loop(
* all notifications which are influencing
* the view in `term_port`
*/
pub async fn update_loop(
term_port: ViewPort<dyn TerminalView>,
portmutex: Arc<RwLock<()>>
) {
pub async fn update_loop(term_port: ViewPort<dyn TerminalView>, portmutex: Arc<RwLock<()>>) {
loop {
{
let _l = portmutex.write().unwrap();
@ -64,7 +50,7 @@ async fn main() {
/* initialize our terminal
*/
let term_port = ViewPort::new();
let mut term = Terminal::new(term_port.outer());
let term_writer = term.get_writer();
@ -72,30 +58,28 @@ async fn main() {
/* spawn event-handling & updating tasks
*/
async_std::task::spawn(
update_loop(term_port.clone(), portmutex.clone()));
async_std::task::spawn(update_loop(term_port.clone(), portmutex.clone()));
async_std::task::spawn(
event_loop(term, term_port.clone(), portmutex.clone()));
async_std::task::spawn(event_loop(term, term_port.clone(), portmutex.clone()));
/* populate the view in `term_port`
*/
let compositor = TerminalCompositor::new(term_port.inner());
compositor.write().unwrap().push(
nested_tty::make_label("test")
.offset(Vector2::new(7,2)));
compositor
.write()
.unwrap()
.push(nested_tty::make_label("test").offset(Vector2::new(7, 2)));
compositor.write().unwrap().push(
nested_tty::make_label("Hello World")
.map_item(|p,a|
a.add_style_back(
TerminalStyle::fg_color(( (25*p.x%255) as u8, 200, 0 )) ))
.offset(Vector2::new(5, 3)));
.map_item(|p, a| {
a.add_style_back(TerminalStyle::fg_color(((25 * p.x % 255) as u8, 200, 0)))
})
.offset(Vector2::new(5, 3)),
);
/* write the changes in the view of `term_port` to the terminal
*/
term_writer.show().await.expect("output error!");
}