aboutsummaryrefslogtreecommitdiffstats
path: root/src/video.ads
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2025-01-11 13:41:08 -0500
committerClyne Sullivan <clyne@bitgloo.com>2025-01-11 13:41:08 -0500
commit7c0bbdecaf4a39e1e88a2d3e389629af694811a0 (patch)
treeae37d5faa2d4d8b61f1b3200f56df24fbc741c72 /src/video.ads
parent5c625ca6f53839488639c2b6b0e66cc89745c9c4 (diff)
add input support
Diffstat (limited to 'src/video.ads')
-rw-r--r--src/video.ads11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/video.ads b/src/video.ads
index 09ff6e8..b6be6c8 100644
--- a/src/video.ads
+++ b/src/video.ads
@@ -9,6 +9,9 @@ package Video is
use Sf;
use Sf.Graphics;
+ type Key is range 0 .. 15;
+ type Key_Map is array (Key'Range) of Boolean;
+
Width : constant := 64;
Height : constant := 32;
Scale : constant := 10;
@@ -16,12 +19,16 @@ package Video is
procedure Clear_Screen;
procedure Initialize;
- function Is_Running return Boolean;
procedure Display;
- function Toggle_Pixel (X, Y : sfUint32) return Boolean;
procedure Finish;
+ function Key_Down (K : Key) return Boolean;
+ function Key_Up (K : Key) return Boolean;
+ function Is_Running return Boolean;
+ function Toggle_Pixel (X, Y : sfUint32) return Boolean;
+
private
+ Keys : Key_Map;
Pixels : constant sfImage_Ptr := Image.create (Width, Height);
Pixels_Sprite : constant sfSprite_Ptr := Sprite.create;
Pixels_Texture : constant sfTexture_Ptr :=