blob: ddd4bb40b24bfc1758e5f56330e6d9ead45358cf (
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
|
private with
Ada.Directories,
FLTK.Images.RGB.PNG,
Misc;
package Things is
type Thing is tagged private;
Nothing : constant Thing;
Man : constant Thing;
Treasure : constant Thing;
function "="
(A, B : in Thing)
return Boolean;
procedure Draw
(This : in Thing;
X, Y : in Integer);
private
type Thing is tagged record
Self_Image : access FLTK.Images.RGB.PNG.PNG_Image;
end record;
Man_Image : aliased FLTK.Images.RGB.PNG.PNG_Image := FLTK.Images.RGB.PNG.Forge.Create
(Ada.Directories.Compose (Misc.Image_Path, "man.png"));
Treasure_Image : aliased FLTK.Images.RGB.PNG.PNG_Image := FLTK.Images.RGB.PNG.Forge.Create
(Ada.Directories.Compose (Misc.Image_Path, "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;
|