aboutsummaryrefslogtreecommitdiffstats
path: root/src/video.ads
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2025-01-12 15:50:21 -0500
committerClyne Sullivan <clyne@bitgloo.com>2025-01-12 15:50:21 -0500
commit3465042dc2a80f4090d6cf6b65ddc33ee4e48b55 (patch)
tree6635abbabe7418b84355d0ae7cb355ab6e84e6e8 /src/video.ads
parent2eecfdaeca7daedd7e4ae3baaa94113b43cb8b68 (diff)
initial schip implementation; add command line arguments
Diffstat (limited to 'src/video.ads')
-rw-r--r--src/video.ads26
1 files changed, 12 insertions, 14 deletions
diff --git a/src/video.ads b/src/video.ads
index 32f7683..ec9b212 100644
--- a/src/video.ads
+++ b/src/video.ads
@@ -1,24 +1,25 @@
with Sf;
with Sf.Graphics;
-with Sf.Graphics.Image;
-with Sf.Graphics.RenderWindow;
with Sf.Graphics.Sprite;
-with Sf.Graphics.Texture;
package Video is
use Sf;
use Sf.Graphics;
+ type Model is (Chip_8, Super_Chip_10);
type Key is range 0 .. 15;
type Key_Map is array (Key'Range) of Boolean;
- Width : constant := 64;
- Height : constant := 32;
- Scale : constant := 10;
Title : constant String := "Ada-Chip";
+ Width : sfUint32;
+ Height : sfUint32;
+ Scale : sfUint32;
+
procedure Clear_Screen;
- procedure Initialize;
+ procedure Low_Res;
+ procedure High_Res;
+ procedure Initialize (M : Model);
procedure Display;
procedure Finish;
procedure Poll_Events;
@@ -31,11 +32,8 @@ package Video is
private
Keys : Key_Map;
- Pixels : constant sfImage_Ptr := Image.create (Width, Height);
- Pixels_Sprite : constant sfSprite_Ptr := Sprite.create;
- Pixels_Texture : constant sfTexture_Ptr :=
- Texture.createFromImage (Pixels);
-
- app : constant sfRenderWindow_Ptr := RenderWindow.create
- ((Width * Scale, Height * Scale, 32), Title);
+ app : sfRenderWindow_Ptr;
+ Pixels : sfImage_Ptr;
+ Pixels_Texture : sfTexture_Ptr;
+ Pixels_Sprite : constant sfSprite_Ptr := Sprite.create;
end Video;