Minor cosmetic changes
This commit is contained in:
parent
0fde52e3f9
commit
491facd4e7
|
@ -31,16 +31,26 @@ pub trait TermControl {
|
||||||
/// Go to a given position.
|
/// Go to a given position.
|
||||||
fn goto(&mut self, x: u16, y: u16) -> IoResult<usize> {
|
fn goto(&mut self, x: u16, y: u16) -> IoResult<usize> {
|
||||||
self.csi(&[
|
self.csi(&[
|
||||||
(x / 10000) as u8 + b'0', (x / 1000) as u8 % 10 + b'0', (x / 100) as u8 % 10 + b'0', (x / 10) as u8 % 10 + b'0', x as u8 % 10 + b'0',
|
b'0' + (x / 10000) as u8,
|
||||||
|
b'0' + (x / 1000) as u8 % 10,
|
||||||
|
b'0' + (x / 100) as u8 % 10,
|
||||||
|
b'0' + (x / 10) as u8 % 10,
|
||||||
|
b'0' + x as u8 % 10,
|
||||||
b';',
|
b';',
|
||||||
(y / 10000) as u8 + b'0', (y / 1000) as u8 % 10 + b'0', (y / 100) as u8 % 10 + b'0', (y / 10) as u8 % 10 + b'0', y as u8 % 10 + b'0',
|
b'0' + (y / 10000) as u8,
|
||||||
|
b'0' + (y / 1000) as u8 % 10,
|
||||||
|
b'0' + (y / 100) as u8 % 10,
|
||||||
|
b'0' + (y / 10) as u8 % 10,
|
||||||
|
b'0' + y as u8 % 10,
|
||||||
b'H',
|
b'H',
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
/// Set graphic rendition.
|
/// Set graphic rendition.
|
||||||
fn rendition(&mut self, r: u8) -> IoResult<usize> {
|
fn rendition(&mut self, r: u8) -> IoResult<usize> {
|
||||||
self.csi(&[
|
self.csi(&[
|
||||||
r / 100 + b'0', r / 10 % 10 + b'0', r % 10 + b'0',
|
b'0' + r / 100,
|
||||||
|
b'0' + r / 10 % 10,
|
||||||
|
b'0' + r % 10,
|
||||||
b'm',
|
b'm',
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue