From cc06ec11a6824151ae07418956f3897ab19080ef Mon Sep 17 00:00:00 2001 From: Romain Porte Date: Sun, 23 Feb 2020 10:30:17 +0100 Subject: add goto functions --- src/codes.rs | 2 ++ src/lib.rs | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/src/codes.rs b/src/codes.rs index 2111df7..e397df8 100644 --- a/src/codes.rs +++ b/src/codes.rs @@ -46,6 +46,7 @@ pub enum SpecialCode { GotoXY(Option, Option), } +/// Write a X or Y goto symbol, as required fn write_goto_xy_sym(writer: &mut T, sym: char, value: Option) -> Result { let mut total = 0; if let Some(value) = value { @@ -55,6 +56,7 @@ fn write_goto_xy_sym(writer: &mut T, sym: char, value: Option) -> Ok(total) } +/// Write both X and/or Y goto symbol, as required fn write_goto_xy(writer: &mut T, x: Option, y: Option) -> Result { let mut total = 0; total += write_goto_xy_sym(writer, 'x', x)?; diff --git a/src/lib.rs b/src/lib.rs index 5679f60..b573b1a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -287,6 +287,18 @@ where pub fn large_font(&mut self) -> std::io::Result<()> { write_simple_code!(self, SpecialCode::LargeFont) } + + pub fn gotoxy(&mut self, x: u32, y: u32) -> std::io::Result<()> { + write_simple_code!(self, SpecialCode::GotoXY(Some(x), Some(y))) + } + + pub fn gotox(&mut self, x: u32) -> std::io::Result<()> { + write_simple_code!(self, SpecialCode::GotoXY(Some(x), None)) + } + + pub fn gotoy(&mut self, y: u32) -> std::io::Result<()> { + write_simple_code!(self, SpecialCode::GotoXY(None, Some(y))) + } } // Reimplement Write trait for Screen, so that user can call the write and -- cgit v1.2.3