2020-11-16 22:53:07 +00:00
|
|
|
//! Example 'direct-cursor'
|
|
|
|
//!
|
|
|
|
//! Explore cursor functions in direct mode
|
|
|
|
//!
|
|
|
|
|
|
|
|
use libnotcurses_sys::*;
|
2020-08-20 16:02:00 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unsafe {
|
2020-11-16 22:53:07 +00:00
|
|
|
let ncd = NcDirect::new();
|
2020-08-20 16:02:00 +00:00
|
|
|
|
2020-11-16 22:53:07 +00:00
|
|
|
let cols = ncdirect_dim_x(ncd);
|
|
|
|
let rows = ncdirect_dim_y(ncd);
|
2020-09-21 18:03:18 +00:00
|
|
|
println!("terminal size (rows, cols): {}, {}", rows, cols);
|
|
|
|
|
2020-11-18 01:43:29 +00:00
|
|
|
ncdirect_putstr(ncd, 0, cstring![format!("The current coordinates are")]);
|
2020-11-16 22:53:07 +00:00
|
|
|
ncdirect_flush(ncd);
|
2020-08-20 16:02:00 +00:00
|
|
|
|
2020-11-18 01:43:29 +00:00
|
|
|
for _n in 0..20 {
|
|
|
|
ncdirect_putstr(ncd, 0, cstring!("."));
|
|
|
|
ncdirect_flush(ncd);
|
|
|
|
sleep![50];
|
|
|
|
}
|
2020-09-21 18:03:18 +00:00
|
|
|
|
2020-11-18 01:43:29 +00:00
|
|
|
let (mut cy, mut cx) = (0, 0);
|
|
|
|
ncdirect_cursor_yx(ncd, &mut cy, &mut cx);
|
|
|
|
ncdirect_putstr(ncd, 0, cstring![format!(" ({},{})\n", cy, cx)]);
|
|
|
|
sleep![1000];
|
|
|
|
|
|
|
|
let sentence = vec!["And", "now", "I", "will", "clear", "the", "screen", ".", ".", "."];
|
|
|
|
for word in sentence {
|
|
|
|
ncdirect_putstr(ncd, 0, cstring!(format!["{} ", word]));
|
|
|
|
ncdirect_flush(ncd);
|
|
|
|
sleep![200];
|
|
|
|
}
|
|
|
|
sleep![300];
|
|
|
|
ncdirect_putstr(ncd, 0, cstring!("\nbye!\n\n"));
|
2020-11-16 22:53:07 +00:00
|
|
|
ncdirect_flush(ncd);
|
2020-11-18 01:43:29 +00:00
|
|
|
sleep![600];
|
2020-09-21 18:03:18 +00:00
|
|
|
|
2020-11-18 01:43:29 +00:00
|
|
|
ncdirect_clear(ncd);
|
|
|
|
sleep![1000];
|
2020-08-20 16:02:00 +00:00
|
|
|
|
2020-11-16 22:53:07 +00:00
|
|
|
ncdirect_stop(ncd);
|
2020-08-20 16:02:00 +00:00
|
|
|
}
|
|
|
|
}
|