aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-11 11:48:38 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-11 11:48:38 -0500
commit346c7404ecc51556f86efd3222c86148101c89a0 (patch)
treed8c015228f7e08eef31a6edfb60857eb54d76d56 /src/screen.rs
parentede7fdaf5ce7868b42d19d5f5916935a46d13dd6 (diff)
downloadvt100-rust-346c7404ecc51556f86efd3222c86148101c89a0.tar.gz
vt100-rust-346c7404ecc51556f86efd3222c86148101c89a0.zip
preserve all text attributes on cleared cells
some terminals require it (alacritty wants to render underline and inverse state of cleared cells, for instance, so we have to be sure that the diff algorithm will properly reset the cursor attributes before clearing cells)
Diffstat (limited to 'src/screen.rs')
-rw-r--r--src/screen.rs28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/screen.rs b/src/screen.rs
index ce86312..41546fc 100644
--- a/src/screen.rs
+++ b/src/screen.rs
@@ -464,7 +464,7 @@ impl Screen {
fn text(&mut self, c: char) {
let pos = self.grid().pos();
if pos.col > 0 {
- let bgcolor = self.attrs.bgcolor;
+ let attrs = self.attrs;
let prev_cell = self
.drawing_cell_mut(crate::grid::Pos {
row: pos.row,
@@ -472,7 +472,7 @@ impl Screen {
})
.unwrap();
if prev_cell.is_wide() {
- prev_cell.clear(bgcolor);
+ prev_cell.clear(attrs);
}
}
@@ -512,9 +512,9 @@ impl Screen {
cell.set(c, attrs);
self.grid_mut().col_inc(1);
if width > 1 {
- let bgcolor = self.attrs.bgcolor;
+ let attrs = self.attrs;
let next_cell = self.current_cell_mut();
- next_cell.clear(bgcolor);
+ next_cell.clear(attrs);
self.grid_mut().col_inc(1);
}
}
@@ -638,11 +638,11 @@ impl Screen {
// CSI J
fn ed(&mut self, mode: u16) {
- let bgcolor = self.attrs.bgcolor;
+ let attrs = self.attrs;
match mode {
- 0 => self.grid_mut().erase_all_forward(bgcolor),
- 1 => self.grid_mut().erase_all_backward(bgcolor),
- 2 => self.grid_mut().erase_all(bgcolor),
+ 0 => self.grid_mut().erase_all_forward(attrs),
+ 1 => self.grid_mut().erase_all_backward(attrs),
+ 2 => self.grid_mut().erase_all(attrs),
_ => {}
}
}
@@ -654,11 +654,11 @@ impl Screen {
// CSI K
fn el(&mut self, mode: u16) {
- let bgcolor = self.attrs.bgcolor;
+ let attrs = self.attrs;
match mode {
- 0 => self.grid_mut().erase_row_forward(bgcolor),
- 1 => self.grid_mut().erase_row_backward(bgcolor),
- 2 => self.grid_mut().erase_row(bgcolor),
+ 0 => self.grid_mut().erase_row_forward(attrs),
+ 1 => self.grid_mut().erase_row_backward(attrs),
+ 2 => self.grid_mut().erase_row(attrs),
_ => {}
}
}
@@ -695,8 +695,8 @@ impl Screen {
// CSI X
fn ech(&mut self, count: u16) {
- let bgcolor = self.attrs.bgcolor;
- self.grid_mut().erase_cells(count, bgcolor);
+ let attrs = self.attrs;
+ self.grid_mut().erase_cells(count, attrs);
}
// CSI d