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
use std::mem::swap;
use crossterm::{
cursor,
style::{self, Attribute, ContentStyle, StyledContent},
terminal, QueueableCommand,
};
use unicode_segmentation::UnicodeSegmentation;
use crate::{pos, Cell, Color, Device, Position, Result, State, Style, Vector};
pub struct Interface<'a> {
device: &'a mut dyn Device,
size: Vector,
current: State,
alternate: Option<State>,
}
impl Interface<'_> {
pub fn new<'a>(device: &'a mut dyn Device) -> Result<Interface<'a>> {
let size = device.get_terminal_size()?;
let mut interface = Interface {
device,
size,
current: State::new(),
alternate: None,
};
let device = &mut interface.device;
device.enable_raw_mode()?;
device.queue(terminal::Clear(terminal::ClearType::All))?;
device.queue(cursor::MoveTo(0, 0))?;
Ok(interface)
}
pub fn exit(self) -> Result<()> {
self.device.disable_raw_mode()?;
println!();
Ok(())
}
pub fn set(&mut self, position: Position, text: &str) {
self.stage_text(position, text, None)
}
pub fn set_styled(&mut self, position: Position, text: &str, style: Style) {
self.stage_text(position, text, Some(style))
}
fn stage_text(&mut self, position: Position, text: &str, style: Option<Style>) {
let alternate = self.alternate.get_or_insert_with(|| self.current.clone());
let mut line = position.y().into();
let mut column = position.x().into();
for grapheme in text.graphemes(true) {
if column > self.size.x().into() {
column = 0;
line += 1;
}
let cell_position = pos!(column, line);
match style {
Some(style) => alternate.set_styled_text(cell_position, grapheme, style),
None => alternate.set_text(cell_position, grapheme),
}
column += 1;
}
}
pub fn apply(&mut self) -> Result<()> {
if self.alternate.is_none() {
return Ok(());
}
let mut alternate = self.alternate.take().unwrap();
swap(&mut self.current, &mut alternate);
let dirty_cells: Vec<(Position, Cell)> = self.current.dirty_iter().collect();
for (position, cell) in dirty_cells {
self.device
.queue(cursor::MoveTo(position.x(), position.y()))?;
let mut content_style = ContentStyle::default();
if let Some(style) = cell.style() {
content_style = get_content_style(*style);
}
let styled_content = StyledContent::new(content_style, cell.grapheme());
self.device
.queue(style::PrintStyledContent(styled_content))?;
}
self.device.flush()?;
self.current.clear_dirty();
Ok(())
}
}
fn get_content_style(style: Style) -> ContentStyle {
let mut content_style = ContentStyle::default();
if let Some(color) = style.foreground() {
match color {
Color::Black => content_style.foreground_color = Some(style::Color::Black),
Color::Red => content_style.foreground_color = Some(style::Color::Red),
Color::Green => content_style.foreground_color = Some(style::Color::Green),
Color::Yellow => content_style.foreground_color = Some(style::Color::Yellow),
Color::Blue => content_style.foreground_color = Some(style::Color::Blue),
Color::Magenta => content_style.foreground_color = Some(style::Color::Magenta),
Color::Cyan => content_style.foreground_color = Some(style::Color::Cyan),
Color::White => content_style.foreground_color = Some(style::Color::White),
Color::Grey => content_style.foreground_color = Some(style::Color::Grey),
Color::Reset => content_style.foreground_color = Some(style::Color::Reset),
};
}
if style.is_bold() {
content_style.attributes.set(Attribute::Bold);
}
if style.is_italic() {
content_style.attributes.set(Attribute::Italic);
}
if style.is_underlined() {
content_style.attributes.set(Attribute::Underlined);
}
content_style
}