From 54c6831e9dd19489ce3275eb68e5781c5899c26b Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 13 Jan 2025 09:36:52 -0500 Subject: wip scroll support --- src/video.adb | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'src/video.adb') diff --git a/src/video.adb b/src/video.adb index f4ddb6b..657d285 100644 --- a/src/video.adb +++ b/src/video.adb @@ -16,6 +16,44 @@ package body Video is end loop; end Clear_Screen; + procedure Scroll_Right is + use Sf.Graphics.Color; + + SS : constant sfUint32 := 4; + Tmp : array (0 .. SS - 1) of sfColor; + begin + for J in 0 .. Height - 1 loop + for I in 0 .. SS - 1 loop + Tmp (I) := Image.getPixel (Pixels, Width - SS + I, J); + end loop; + for I in 0 .. Width - 5 loop + Image.setPixel (Pixels, I + SS, J, Image.getPixel (Pixels, I, J)); + end loop; + for I in 0 .. SS - 1 loop + Image.setPixel (Pixels, I, J, Tmp (I)); + end loop; + end loop; + end Scroll_Right; + + procedure Scroll_Left is + use Sf.Graphics.Color; + + SS : constant sfUint32 := 4; + Tmp : array (0 .. SS - 1) of sfColor; + begin + for J in 0 .. Height - 1 loop + for I in 0 .. SS - 1 loop + Tmp (I) := Image.getPixel (Pixels, I, J); + end loop; + for I in SS .. Width - 1 loop + Image.setPixel (Pixels, I - SS, J, Image.getPixel (Pixels, I, J)); + end loop; + for I in 0 .. SS - 1 loop + Image.setPixel (Pixels, Width - SS + I, J, Tmp (I)); + end loop; + end loop; + end Scroll_Left; + procedure Low_Res is begin Video.Width := 64; -- cgit v1.2.3