1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
//! A basic terminal emulator library.
//!
//! The terminal has several main responsibilities:
//! * Managing the scrollback buffer, a string of characters that should be printed to the screen.
//! * Determining which parts of that buffer should be displayed and using the window manager to do so.
//! * Handling the command line user input.
//! * Displaying the cursor at the right position
//! * Handling events delivered from the window manager.
#![no_std]
extern crate alloc;
#[macro_use] extern crate log;
extern crate dfqueue;
extern crate environment;
extern crate event_types;
extern crate displayable;
extern crate font;
extern crate framebuffer;
extern crate framebuffer_drawer;
extern crate framebuffer_printer;
extern crate time;
extern crate window_manager;
extern crate window;
extern crate text_display;
extern crate shapes;
extern crate color;
use core::ops::DerefMut;
use alloc::string::{String, ToString};
use alloc::vec::Vec;
use cursor::*;
use text_display::TextDisplay;
use displayable::Displayable;
use event_types::Event;
use font::{CHARACTER_HEIGHT, CHARACTER_WIDTH};
use framebuffer::{Framebuffer, Pixel};
use color::Color;
use shapes::{Coord, Rectangle};
use window::Window;
use time::Duration;
pub mod cursor;
pub const FONT_FOREGROUND_COLOR: Color = color::LIGHT_GREEN;
pub const FONT_BACKGROUND_COLOR: Color = color::BLACK;
const DEFAULT_CURSOR_FREQ: Duration = Duration::from_millis(530);
/// Error type for tracking different scroll errors that a terminal
/// application could encounter.
pub enum ScrollError {
/// Occurs when a index-calculation returns an index that is outside of the
/// bounds of the scroll buffer
OffEndBound
}
/// An instance of a graphical terminal emulator.
pub struct Terminal {
/// The terminal's own window.
pub window: Window,
/// The terminal's scrollback buffer which stores a string to be displayed by the text display
scrollback_buffer: String,
/// Indicates whether the text display is displaying the last part of the scrollback buffer slice
is_scroll_end: bool,
/// The starting index of the scrollback buffer string slice that is currently being displayed on the text display
scroll_start_idx: usize,
/// The text displayable which the terminal prints to.
text_display: TextDisplay,
/// The cursor of the terminal.
pub cursor: Cursor,
}
/// Private methods of `Terminal`.
impl Terminal {
/// Gets the width and height of the text displayable in number of characters.
pub fn get_text_dimensions(&self) -> (usize, usize) {
self.text_display.get_dimensions()
}
/// This function takes in the end index of some index in the scrollback buffer and calculates the starting index of the
/// scrollback buffer so that a slice containing the starting and ending index would perfectly fit inside the dimensions of
/// text display.
/// If the text display's first line will display a continuation of a syntactical line in the scrollback buffer, this function
/// calculates the starting index so that when displayed on the text display, it preserves that line so that it looks the same
/// as if the whole physical line is displayed on the buffer
///
/// Return: starting index of the string and the cursor position(with respect to position on the screen, not in the scrollback buffer) in that order
fn calc_start_idx(&self, end_idx: usize) -> (usize, usize) {
let (buffer_width, buffer_height) = self.get_text_dimensions();
let mut start_idx = end_idx;
// Grabs a max-size slice of the scrollback buffer (usually does not totally fit because of newlines)
let result = if end_idx > buffer_width * buffer_height {
self.scrollback_buffer.get(end_idx - buffer_width * buffer_height..end_idx)
} else {
self.scrollback_buffer.get(0..end_idx)
};
if let Some(slice) = result {
let mut total_lines = 0;
// Obtains a vector of indices of newlines in the slice in the REVERSE order that they occur
let new_line_indices: Vec<(usize, &str)> = slice.rmatch_indices('\n').collect();
// if there are no new lines in the slice
if new_line_indices.is_empty() {
if buffer_height * buffer_width > end_idx {
return (0, end_idx);
} else {
start_idx -= buffer_height * buffer_width; // text with no newlines will fill the entire buffer
return (start_idx, buffer_height * buffer_width -1);
}
}
let mut last_line_chars = 0;
// Case where the last newline does not occur at the end of the slice
if new_line_indices[0].0 != slice.len() - 1 {
start_idx -= slice.len() -1 - new_line_indices[0].0;
total_lines += (slice.len()-1 - new_line_indices[0].0)/buffer_width + 1;
last_line_chars = (slice.len() -1 - new_line_indices[0].0) % buffer_width; // fix: account for more than one line
}
else {
start_idx -= 1;
total_lines += 1;
}
// covers everything *up to* the characters between the beginning of the slice and the first new line character
for i in 0..new_line_indices.len()-1 {
if total_lines >= buffer_height {
break;
}
let num_chars = new_line_indices[i].0 - new_line_indices[i+1].0;
let num_lines = if (num_chars-1)%buffer_width != 0 || (num_chars -1) == 0 {
(num_chars-1) / buffer_width + 1
} else {
(num_chars-1)/buffer_width}; // using (num_chars -1) because that's the number of characters that actually show up on the screen
if num_chars > start_idx { // prevents subtraction overflow
return (0, total_lines * buffer_width + last_line_chars);
}
start_idx -= num_chars;
total_lines += num_lines;
}
// tracks the characters between the beginning of the slice and the first new line character
let first_chars = new_line_indices[new_line_indices.len() -1].0;
let first_chars_lines = first_chars/buffer_width + 1;
// covers the case where the text inside the new_lines_indices array overflow the text buffer
if total_lines > buffer_height {
start_idx += (total_lines - buffer_height) * buffer_width; // adds back the overcounted lines to the starting index
total_lines = buffer_height;
// covers the case where the text between the last newline and the end of the slice overflow the text buffer
} else if first_chars_lines + total_lines > buffer_height {
let diff = buffer_height - total_lines;
total_lines += diff;
start_idx -= diff * buffer_width;
// covers the case where the text between the last newline and the end of the slice exactly fits the text buffer
} else if first_chars_lines + total_lines == buffer_height {
total_lines += first_chars_lines;
start_idx -= first_chars;
// covers the case where the slice fits within the text buffer (i.e. there is not enough output to fill the screen)
} else {
return (0, total_lines * buffer_width + last_line_chars); // In the case that an end index argument corresponded to a string slice that underfits the text display
}
// If the previous loop overcounted, this cuts off the excess string from string. Happens when there are many charcters between newlines at the beginning of the slice
(start_idx, (total_lines - 1) * buffer_width + last_line_chars)
} else {
(0,0) /* WARNING: should change to Option<> rather than returning (0, 0) */
}
}
/// This function takes in the start index of some index in the scrollback buffer and calculates the end index of the
/// scrollback buffer so that a slice containing the starting and ending index would perfectly fit inside the dimensions of
/// text display.
fn calc_end_idx(&self, start_idx: usize) -> Result<usize, ScrollError> {
let (buffer_width, buffer_height) = self.get_text_dimensions();
let scrollback_buffer_len = self.scrollback_buffer.len();
let mut end_idx = start_idx;
// Grabs a max-size slice of the scrollback buffer (usually does not totally fit because of newlines)
let result = if start_idx + buffer_width * buffer_height > scrollback_buffer_len {
self.scrollback_buffer.get(start_idx..scrollback_buffer_len-1)
} else {
self.scrollback_buffer.get(start_idx..start_idx + buffer_width * buffer_height)
};
// calculate the starting index for the slice
if let Some(slice) = result {
let mut total_lines = 0;
// Obtains a vector of the indices of the slice where newlines occur in ascending order
let new_line_indices: Vec<(usize, &str)> = slice.match_indices('\n').collect();
// if there are no new lines in the slice
if new_line_indices.is_empty() {
// indicates that the text is just one continuous string with no newlines and will therefore fill the buffer completely
end_idx += buffer_height * buffer_width;
if end_idx < self.scrollback_buffer.len() {
return Ok(end_idx);
} else {
return Err(ScrollError::OffEndBound);
}
}
let mut counter = 0;
// Covers the case where the start idx argument corresponds to a string that does not start on a newline
if new_line_indices[0].0 != 0 {
end_idx += new_line_indices[0].0;
total_lines += new_line_indices[0].0/buffer_width + 1;
}
// the characters between the last newline and the end of the slice
let last_line_chars = slice.len() -1 - new_line_indices[new_line_indices.len() -1].0;
let num_last_lines = last_line_chars%buffer_width + 1; // +1 to account for the physical line that the last characters will take up
for i in 0..new_line_indices.len()-1 {
if total_lines >= buffer_height {
break;
}
let num_chars = new_line_indices[i+1].0 - new_line_indices[i].0;
let num_lines = num_chars/buffer_width + 1;
end_idx += num_chars;
total_lines += num_lines;
counter += 1;
}
// covers the case where the text inside the new_line_indices array overflows the text buffer capacity
if total_lines > buffer_height {
let num_chars = new_line_indices[counter].0 - new_line_indices[counter -1].0;
end_idx -= num_chars;
end_idx += buffer_width;
// covers the case where the characters between the last newline and the end of the slice overflow the text buffer capacity
} else if total_lines + num_last_lines >= total_lines {
let diff = buffer_height - total_lines;
end_idx += diff * buffer_width;
// covers the case where the entire slice exactly fits or is smaller than the text buffer capacity
} else {
end_idx += last_line_chars;
}
if end_idx < self.scrollback_buffer.len() {
Ok(end_idx)
} else {
Err(ScrollError::OffEndBound)
}
} else {
Ok(self.scrollback_buffer.len() - 1) /* WARNING: maybe should return Error? */
}
}
/// Scrolls the text display up one line
fn scroll_up_one_line(&mut self) {
let buffer_width = self.get_text_dimensions().0;
let mut start_idx = self.scroll_start_idx;
//indicates that the user has scrolled to the top of the page
if start_idx < 1 {
return;
} else {
start_idx -= 1;
}
let new_start_idx;
let result;
let slice_len;
if buffer_width < start_idx {
result = self.scrollback_buffer.as_str().get(start_idx - buffer_width .. start_idx);
slice_len = buffer_width;
} else {
result = self.scrollback_buffer.as_str().get(0 .. start_idx);
slice_len = start_idx;
}
// Searches this slice for a newline
if let Some(slice) = result {
let index = slice.rfind('\n');
new_start_idx = match index {
Some(index) => { start_idx - slice_len + index }, // Moves the starting index back to the position of the nearest newline back
None => { start_idx - slice_len}, // If no newline is found, moves the start index back by the buffer width value
}; // we're moving the cursor one position to the right relative to the end of the input string
} else {
return;
}
self.scroll_start_idx = new_start_idx;
// Recalculates the end index after the new starting index is found
self.is_scroll_end = false;
}
/// Scrolls the text display down one line
fn scroll_down_one_line(&mut self) {
let buffer_width = self.get_text_dimensions().0;
// Prevents the user from scrolling down if already at the bottom of the page
if self.is_scroll_end {
return;
}
let prev_start_idx = self.scroll_start_idx;
let result = self.calc_end_idx(prev_start_idx);
let mut end_idx = match result {
Ok(end_idx) => end_idx,
Err(ScrollError::OffEndBound) => self.scrollback_buffer.len() -1,
};
// If the newly calculated end index is the bottom of the scrollback buffer, recalculates the start index and returns
if end_idx == self.scrollback_buffer.len() -1 {
self.is_scroll_end = true;
let new_start = self.calc_start_idx(end_idx).0;
self.scroll_start_idx = new_start;
return;
}
end_idx += 1; // Advances to the next character for the calculation
let new_end_idx;
{
let result;
let slice_len; // specifies the length of the grabbed slice
// Grabs a slice (the size of the buffer width at most) of the scrollback buffer that is directly below the current slice being displayed on the text display
if self.scrollback_buffer.len() > end_idx + buffer_width {
slice_len = buffer_width;
result = self.scrollback_buffer.as_str().get(end_idx .. end_idx + buffer_width);
} else {
slice_len = self.scrollback_buffer.len() - end_idx -1;
result = self.scrollback_buffer.as_str().get(end_idx .. self.scrollback_buffer.len());
}
// Searches the grabbed slice for a newline
if let Some(slice) = result {
let index = slice.find('\n');
new_end_idx = match index {
Some(index) => { end_idx + index + 1}, // Moves end index forward to the next newline
None => { end_idx + slice_len}, // If no newline is found, moves the end index forward by the buffer width value
};
} else {
return;
}
}
// Recalculates new starting index
let start_idx = self.calc_start_idx(new_end_idx).0;
self.scroll_start_idx = start_idx;
}
/// Shifts the text display up by making the previous first line the last line displayed on the text display
fn page_up(&mut self) {
let new_end_idx = self.scroll_start_idx;
let new_start_idx = self.calc_start_idx(new_end_idx);
self.scroll_start_idx = new_start_idx.0;
}
/// Shifts the text display down by making the previous last line the first line displayed on the text display
fn page_down(&mut self) {
let start_idx = self.scroll_start_idx;
let result = self.calc_end_idx(start_idx);
let new_start_idx = match result {
Ok(idx) => idx+ 1,
Err(ScrollError::OffEndBound) => {
let scrollback_buffer_len = self.scrollback_buffer.len();
let new_start_idx = self.calc_start_idx(scrollback_buffer_len).0;
self.scroll_start_idx = new_start_idx;
self.is_scroll_end = true;
return;
},
};
let result = self.calc_end_idx(new_start_idx);
let new_end_idx = match result {
Ok(end_idx) => end_idx,
Err(ScrollError::OffEndBound) => {
let scrollback_buffer_len = self.scrollback_buffer.len();
let new_start_idx = self.calc_start_idx(scrollback_buffer_len).0;
self.scroll_start_idx = new_start_idx;
self.is_scroll_end = true;
return;
},
};
if new_end_idx == self.scrollback_buffer.len() -1 {
// if the user page downs near the bottom of the page so only gets a partial shift
self.is_scroll_end = true;
return;
}
self.scroll_start_idx = new_start_idx;
}
/// Updates the text display by taking a string index and displaying as much as it starting from the passed string index (i.e. starts from the top of the display and goes down)
fn update_display_forwards(&mut self, start_idx: usize) -> Result<(), &'static str> {
self.scroll_start_idx = start_idx;
let result = self.calc_end_idx(start_idx);
let end_idx = match result {
Ok(end_idx) => end_idx,
Err(ScrollError::OffEndBound) => {
let new_end_idx = self.scrollback_buffer.len() -1;
let new_start_idx = self.calc_start_idx(new_end_idx).0;
self.scroll_start_idx = new_start_idx;
new_end_idx
},
};
let result = self.scrollback_buffer.get(start_idx..=end_idx); // =end_idx includes the end index in the slice
if let Some(slice) = result {
self.text_display.set_text(slice);
self.display_text()?;
} else {
return Err("could not get slice of scrollback buffer string");
}
Ok(())
}
/// Display the text displayable in the window and render it to the screen
fn display_text(&mut self) -> Result<(), &'static str>{
let coord = self.window.area().top_left;
let area_to_render = self.text_display.display(coord, self.window.framebuffer_mut().deref_mut())?;
self.window.render(Some(area_to_render))
}
/// Updates the text display by taking a string index and displaying as much as it can going backwards from the passed string index (i.e. starts from the bottom of the display and goes up)
fn update_display_backwards(&mut self, end_idx: usize) -> Result<(), &'static str> {
let (start_idx, _cursor_pos) = self.calc_start_idx(end_idx);
self.scroll_start_idx = start_idx;
let result = self.scrollback_buffer.get(start_idx..end_idx);
if let Some(slice) = result {
self.text_display.set_text(slice);
self.display_text()?;
} else {
return Err("could not get slice of scrollback buffer string");
}
Ok(())
}
}
/// Public methods of `Terminal`.
impl Terminal {
/// Creates a new terminal and adds it to the window manager `wm_mutex`
pub fn new() -> Result<Terminal, &'static str> {
let wm_ref = window_manager::WINDOW_MANAGER.get().ok_or("The window manager is not initialized")?;
let (window_width, window_height) = {
let wm = wm_ref.lock();
wm.get_screen_size()
};
let window = window::Window::new(
Coord::new(0, 0),
window_width,
window_height,
FONT_BACKGROUND_COLOR,
)?;
let area = window.area();
let text_display = TextDisplay::new(area.width(), area.height(), FONT_FOREGROUND_COLOR, FONT_BACKGROUND_COLOR)?;
let mut terminal = Terminal {
window,
scrollback_buffer: String::new(),
scroll_start_idx: 0,
is_scroll_end: true,
text_display,
cursor: Cursor::default(),
};
terminal.display_text()?;
terminal.print_to_terminal("Theseus Terminal Emulator\nPress Ctrl+C to quit a task\n".to_string());
Ok(terminal)
}
/// Adds a string to be printed to the terminal to the terminal scrollback buffer.
/// Note that one needs to call `refresh_display` to get things actually printed.
pub fn print_to_terminal(&mut self, s: String) {
self.scrollback_buffer.push_str(&s);
}
/// Actually refresh the screen. Currently it's expensive.
pub fn refresh_display(&mut self) -> Result<(), &'static str> {
let start_idx = self.scroll_start_idx;
// handling display refreshing errors here so that we don't clog the main loop of the terminal
if self.is_scroll_end {
let buffer_len = self.scrollback_buffer.len();
self.update_display_backwards(buffer_len)?;
} else {
self.update_display_forwards(start_idx)?;
}
Ok(())
}
/// Insert a character to the terminal.
///
/// # Arguments
///
/// * `c`: the new character to insert.
/// * `offset_from_end`: the position to insert the character. It represents the distance relative to the end of the whole output in the terminal in number of characters.
///
/// # Examples
///
/// * `terminal.insert_char(char, 0)` will append `char` to the end of existing text.
/// * `terminal.insert_char(char, 5)` will insert `char` right before the last 5 characters.
///
/// After invoke this function, one must call `refresh_display` to get the updates actually showed on the screen.
pub fn insert_char(&mut self, c: char, offset_from_end: usize) -> Result<(), &'static str> {
let buflen = self.scrollback_buffer.len();
if buflen < offset_from_end { return Err("offset_from_end is larger than length of scrollback buffer"); }
let insert_idx = buflen - offset_from_end;
self.scrollback_buffer.insert_str(insert_idx, &c.to_string());
Ok(())
}
/// Remove a character from the terminal.
///
/// # Arguments
/// * `offset_from_end`: the position of the character to remove. It represents the distance relative to the end of the whole output in the terminal in number of characters. `offset_from_end == 0` is *invalid* here.
///
/// # Examples
/// * `terminal.remove_char(1)` will remove the last character in the screen.
///
/// After invoke this function, one must call `refresh_display` to get the updates actually showed on the screen.
pub fn remove_char(&mut self, offset_from_end: usize) -> Result<(), &'static str> {
let buflen = self.scrollback_buffer.len();
if buflen < offset_from_end { return Err("offset_from_end is larger than length of scrollback buffer"); }
if offset_from_end == 0 { return Err("cannot remove character at offset_from_end == 0"); }
let remove_idx = buflen - offset_from_end;
self.scrollback_buffer.remove(remove_idx);
Ok(())
}
/// Scroll the screen to the very beginning.
pub fn move_screen_to_begin(&mut self) -> Result<(), &'static str> {
// Home command only registers if the text display has the ability to scroll
if self.scroll_start_idx != 0 {
self.is_scroll_end = false;
self.scroll_start_idx = 0; // takes us up to the start of the page
self.cursor.disable();
self.display_cursor()?;
}
Ok(())
}
/// Scroll the screen to the very end.
pub fn move_screen_to_end(&mut self) -> Result<(), &'static str> {
if !self.is_scroll_end {
self.cursor.disable();
self.display_cursor()?;
self.is_scroll_end = true;
let buffer_len = self.scrollback_buffer.len();
self.scroll_start_idx = self.calc_start_idx(buffer_len).0;
self.cursor.enable();
}
Ok(())
}
/// Scroll the screen a line up.
pub fn move_screen_line_up(&mut self) -> Result<(), &'static str> {
if self.scroll_start_idx != 0 {
self.scroll_up_one_line();
self.cursor.disable();
self.display_cursor()?;
}
Ok(())
}
/// Scroll the screen a line down.
pub fn move_screen_line_down(&mut self) -> Result<(), &'static str> {
if !self.is_scroll_end {
self.cursor.disable();
self.display_cursor()?;
self.scroll_down_one_line();
self.cursor.enable();
}
Ok(())
}
/// Scroll the screen a page up.
pub fn move_screen_page_up(&mut self) -> Result<(), &'static str> {
if self.scroll_start_idx <= 1 {
return Ok(());
}
self.page_up();
self.is_scroll_end = false;
self.cursor.disable();
self.display_cursor()
}
/// Scroll the screen a page down.
pub fn move_screen_page_down(&mut self) -> Result<(), &'static str> {
if self.is_scroll_end {
return Ok(());
}
self.cursor.disable();
self.display_cursor()?;
self.page_down();
self.cursor.enable();
Ok(())
}
/// Clear the scrollback buffer and reset the scroll positions.
pub fn clear(&mut self) {
self.scrollback_buffer.clear();
self.scroll_start_idx = 0;
self.is_scroll_end = true;
}
/// Gets an event from the window's event queue.
///
/// Returns `None` if no events have been sent to this window.
pub fn get_event(&mut self) -> Option<Event> {
match self.window.handle_event() {
Ok(event) => event,
Err(_e) => {
error!("Terminal::get_event(): error in the window's event handler: {:?}.", _e);
Some(Event::ExitEvent)
}
}
}
/// Display the cursor of the terminal.
pub fn display_cursor(&mut self) -> Result<(), &'static str> {
// get info about the text displayable
let (col_num, line_num, text_next_pos) = {
let text_next_pos = self.text_display.get_next_index();
let (col_num, line_num) = self.get_text_dimensions();
(col_num, line_num, text_next_pos)
};
// return if the cursor is not in the screen
if text_next_pos >= col_num * line_num {
return Ok(())
}
// calculate the cursor position
let cursor_pos = text_next_pos - self.cursor.offset_from_end;
let cursor_line = cursor_pos / col_num;
let cursor_col = cursor_pos % col_num;
// Get the bounding box that contains the displayed cursor.
let bounding_box = {
let coord = self.window.area().top_left;
self.cursor.display(
coord,
cursor_col,
cursor_line,
self.window.framebuffer_mut().deref_mut(),
)?
};
self.window.render(Some(bounding_box))
}
/// Gets the position of the cursor relative to the end of text in number of characters.
pub fn get_cursor_offset_from_end(&self) -> usize {
self.cursor.offset_from_end
}
/// Updates the position of a cursor.
/// # Arguments
/// * `offset_from_end`: the position of the cursor relative to the end of text in number of characters.
/// * `underlying_char`: the ASCII code of the underlying character when the cursor is unseen.
pub fn update_cursor_pos(&mut self, offset_from_end: usize, underlying_char: u8) {
self.cursor.offset_from_end = offset_from_end;
self.cursor.underlying_char = underlying_char;
}
/// Resizes this terminal and its underlying text display and then refreshes the window.
/// This does not automatically redisplay the terminal cursor.
pub fn resize(&mut self, new_position: Rectangle) -> Result<(), &'static str> {
self.text_display.set_size(new_position.width(), new_position.height());
self.text_display.reset_cache();
self.refresh_display()?;
Ok(())
}
}