summaryrefslogtreecommitdiff
path: root/src/things.ads
blob: 72570294276ad93b346c9db726da01d6669b1a88 (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


private with

    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;


    Image_Dir : String := Misc.Origin & "/../share/sokoban/img";


    Man_Image : aliased FLTK.Images.RGB.PNG.PNG_Image :=
        FLTK.Images.RGB.PNG.Forge.Create (Image_Dir & "/man.png");
    Treasure_Image : aliased FLTK.Images.RGB.PNG.PNG_Image :=
        FLTK.Images.RGB.PNG.Forge.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;