blob: c8da4501c6e410ea811066edaec7f529c08a02c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
private with
FLTK.Images.RGB.PNG,
Ada.Command_Line,
Ada.Directories;
package Things is
type Thing is tagged private;
Nothing : constant Thing;
Man : constant Thing;
Treasure : constant Thing;
procedure Draw
(This : in Thing;
X, Y : in Integer);
function "="
(A, B : in Thing)
return Boolean;
private
type Thing is tagged record
Self_Image : access FLTK.Images.RGB.PNG.PNG_Image;
end record;
Origin : String := Ada.Directories.Containing_Directory
(Ada.Directories.Full_Name (Ada.Command_Line.Command_Name));
Image_Dir : String := Origin & "/../share/sokoban/img";
Man_Image : aliased FLTK.Images.RGB.PNG.PNG_Image :=
FLTK.Images.RGB.PNG.Create (Image_Dir & "/man.png");
Treasure_Image : aliased FLTK.Images.RGB.PNG.PNG_Image :=
FLTK.Images.RGB.PNG.Create (Image_Dir & "/treasure.png");
Nothing : constant Thing :=
(Self_Image => null);
Man : constant Thing :=
(Self_Image => Man_Image'Access);
Treasure : constant Thing :=
(Self_Image => Treasure_Image'Access);
end Things;
|