rnd-20041121-1-src
[rocksndiamonds.git] / src / tools.h
1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
3 *----------------------------------------------------------*
4 * (c) 1995-2002 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * tools.h                                                  *
12 ***********************************************************/
13
14 #ifndef TOOLS_H
15 #define TOOLS_H
16
17 #include "main.h"
18
19 /* for SetDrawtoField */
20 #define DRAW_DIRECT             0
21 #define DRAW_BUFFERED           1
22 #define DRAW_BACKBUFFER         2
23
24 /* for DrawElementShifted */
25 #define NO_CUTTING              0
26 #define CUT_ABOVE               (1 << 0)
27 #define CUT_BELOW               (1 << 1)
28 #define CUT_LEFT                (1 << 2)
29 #define CUT_RIGHT               (1 << 3)
30
31 /* for masking functions */
32 #define NO_MASKING              0
33 #define USE_MASKING             1
34  
35 /* for MoveDoor */
36 #define DOOR_OPEN_1             (1 << 0)
37 #define DOOR_OPEN_2             (1 << 1)
38 #define DOOR_CLOSE_1            (1 << 2)
39 #define DOOR_CLOSE_2            (1 << 3)
40 #define DOOR_OPEN_ALL           (DOOR_OPEN_1 | DOOR_OPEN_2)
41 #define DOOR_CLOSE_ALL          (DOOR_CLOSE_1 | DOOR_CLOSE_2)
42 #define DOOR_ACTION_1           (DOOR_OPEN_1 | DOOR_CLOSE_1)
43 #define DOOR_ACTION_2           (DOOR_OPEN_2 | DOOR_CLOSE_2)
44 #define DOOR_ACTION             (DOOR_ACTION_1 | DOOR_ACTION_2)
45 #define DOOR_COPY_BACK          (1 << 4)
46 #define DOOR_NO_COPY_BACK       (1 << 5)
47 #define DOOR_NO_DELAY           (1 << 6)
48 #define DOOR_GET_STATE          (1 << 7)
49 #define DOOR_SET_STATE          (1 << 8)
50
51 /* for Request */
52 #define REQ_ASK                 (1 << 0)
53 #define REQ_CONFIRM             (1 << 1)
54 #define REQ_PLAYER              (1 << 2)
55 #define REQ_STAY_OPEN           (1 << 3)
56 #define REQ_STAY_CLOSED         (1 << 4)
57 #define REQ_REOPEN              (1 << 5)
58
59 #define REQUEST_WAIT_FOR_INPUT  (REQ_ASK | REQ_CONFIRM | REQ_PLAYER)
60
61 void DumpTile(int, int);
62
63 void SetDrawtoField(int);
64 void RedrawPlayfield(boolean, int, int, int, int);
65 void BackToFront();
66 void FadeToFront();
67 void ClearWindow();
68 void SetMainBackgroundImage(int);
69 void SetDoorBackgroundImage(int);
70 void DrawBackground(int, int, int, int);
71
72 void MarkTileDirty(int, int);
73 void SetBorderElement();
74
75 void SetRandomAnimationValue(int, int);
76 int getGraphicAnimationFrame(int, int);
77 void DrawGraphicAnimationExt(DrawBuffer *, int, int, int, int, int);
78 void DrawGraphicAnimation(int, int, int);
79 void DrawLevelGraphicAnimation(int, int, int);
80 void DrawLevelElementAnimation(int, int, int);
81 void DrawLevelGraphicAnimationIfNeeded(int, int, int);
82 void DrawLevelElementAnimationIfNeeded(int, int, int);
83
84 void DrawAllPlayers(void);
85 void DrawPlayerField(int, int);
86 void DrawPlayer(struct PlayerInfo *);
87
88 void getGraphicSourceExt(int, int, Bitmap **, int *, int *, boolean);
89 void getGraphicSource(int, int, Bitmap **, int *, int *);
90 void DrawGraphic(int, int, int, int);
91 void DrawGraphicExt(DrawBuffer *, int, int, int, int);
92 void DrawGraphicThruMask(int, int, int, int);
93 void DrawGraphicThruMaskExt(DrawBuffer *, int, int, int, int);
94
95 void DrawMiniGraphic(int, int, int);
96 void getMiniGraphicSource(int, Bitmap **, int *, int *);
97 void DrawMiniGraphicExt(DrawBuffer *, int, int, int);
98
99 void DrawGraphicShifted(int, int, int, int, int, int, int, int);
100 void DrawGraphicShiftedThruMask(int, int, int, int, int, int, int);
101 void DrawScreenElementExt(int, int, int, int, int, int, int);
102 void DrawLevelElementExt(int, int, int, int, int, int, int);
103 void DrawScreenElementShifted(int, int, int, int, int, int);
104 void DrawLevelElementShifted(int, int, int, int, int, int);
105 void DrawScreenElementThruMask(int, int, int);
106 void DrawLevelElementThruMask(int, int, int);
107 void DrawLevelFieldThruMask(int, int);
108 void DrawLevelFieldCrumbledSand(int, int);
109 void DrawLevelFieldCrumbledSandDigging(int, int, int, int);
110 void DrawLevelFieldCrumbledSandNeighbours(int, int);
111 void DrawScreenElement(int, int, int);
112 void DrawLevelElement(int, int, int);
113 void DrawScreenField(int, int);
114 void DrawLevelField(int, int);
115
116 void DrawMiniElement(int, int, int);
117 void DrawMiniElementOrWall(int, int, int, int);
118
119 void ShowEnvelope();
120
121 void getMicroGraphicSource(int, Bitmap **, int *, int *);
122 void DrawMicroElement(int, int, int);
123 void DrawLevel(void);
124 void DrawMiniLevel(int, int, int, int);
125 void DrawMicroLevel(int, int, boolean);
126
127 void WaitForEventToContinue();
128 boolean Request(char *, unsigned int);
129 unsigned int OpenDoor(unsigned int);
130 unsigned int CloseDoor(unsigned int);
131 unsigned int GetDoorState(void);
132 unsigned int SetDoorState(unsigned int);
133 unsigned int MoveDoor(unsigned int);
134
135 void DrawSpecialEditorDoor();
136 void UndrawSpecialEditorDoor();
137
138 void CreateToolButtons();
139 void FreeToolButtons();
140
141 int map_element_RND_to_EM(int);
142 int map_element_EM_to_RND(int);
143
144 int get_next_element(int);
145 int el_act_dir2img(int, int, int);
146 int el_act2img(int, int);
147 int el_dir2img(int, int);
148 int el2baseimg(int);
149 int el2img(int);
150 int el2edimg(int);
151 int el2preimg(int);
152
153 unsigned int InitRND(long);
154
155 #endif  /* TOOLS_H */