d7a050de496b25c792629392462a3431ab8a0a54
[rocksndiamonds.git] / src / game_mm / mm_tools.h
1 /***********************************************************
2 * Mirror Magic -- McDuffin's Revenge                       *
3 *----------------------------------------------------------*
4 * (c) 1994-2001 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 MM_TOOLS_H
15 #define MM_TOOLS_H
16
17 #include "main_mm.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_DELAY           (1 << 5)
47 #define DOOR_GET_STATE          (1 << 6)
48
49 /* for Request */
50 #define REQ_ASK                 (1 << 0)
51 #define REQ_OPEN                (1 << 1)
52 #define REQ_CLOSE               (1 << 2)
53 #define REQ_CONFIRM             (1 << 3)
54 #define REQ_STAY_CLOSED         (1 << 4)
55 #define REQ_STAY_OPEN           (1 << 5)
56
57 #define REQUEST_WAIT_FOR        (REQ_ASK | REQ_CONFIRM)
58
59 /* font types */
60 #define FS_SMALL                0
61 #define FS_BIG                  1
62 #define FS_MEDIUM               2
63
64
65 void SetDrawtoField_MM(int);
66 void BackToFront();
67 void FadeToFront();
68 void ClearWindow();
69
70 void MarkTileDirty(int, int);
71
72 void DrawAllPlayers_MM(void);
73 void DrawPlayerField_MM(int, int);
74 void DrawPlayer_MM(struct PlayerInfo *);
75 void DrawGraphicAnimation_MM(int, int, int, int);
76
77 void DrawGraphic_MM(int, int, int);
78 void DrawGraphicExt_MM(DrawBuffer *, int, int, int);
79 void DrawGraphicThruMask_MM(int, int, int);
80 void DrawGraphicThruMaskExt_MM(DrawBuffer *, int, int, int);
81 void DrawMiniGraphic_MM(int, int, int);
82 void getMiniGraphicSource(int, Bitmap **, int *, int *);
83 void DrawMiniGraphicExt_MM(DrawBuffer *, int, int, int);
84 void DrawGraphicShifted_MM(int, int, int, int, int, int, int);
85 void DrawGraphicShiftedThruMask_MM(int, int, int, int, int, int);
86 void DrawScreenElementExt_MM(int, int, int, int, int, int, int);
87 void DrawLevelElementExt_MM(int, int, int, int, int, int, int);
88 void DrawScreenElementShifted_MM(int, int, int, int, int, int);
89 void DrawLevelElementShifted_MM(int, int, int, int, int, int);
90 void DrawScreenElementThruMask_MM(int, int, int);
91 void DrawLevelElementThruMask_MM(int, int, int);
92 void DrawLevelFieldThruMask_MM(int, int);
93 void ErdreichAnbroeckeln(int, int);
94 void DrawScreenElement_MM(int, int, int);
95 void DrawLevelElement_MM(int, int, int);
96 void DrawScreenField_MM(int, int);
97 void DrawLevelField_MM(int, int);
98 void DrawMiniElement_MM(int, int, int);
99 void DrawMiniElementOrWall_MM(int, int, int, int);
100
101 void DrawField_MM(int, int);
102 void DrawLevel_MM(void);
103 void DrawLaser_MM(void);
104 void DrawElement_MM(int, int, int);
105 void DrawWallsExt_MM(int, int, int, int);
106 void DrawWalls_MM(int, int, int);
107 void DrawWallsAnimation_MM(int, int, int, int, int);
108 void DrawMiniLevel_MM(int, int, int, int);
109 void DrawMicroLevel_MM(int, int, boolean);
110
111 boolean Request(char *, unsigned int);
112 unsigned int OpenDoor(unsigned int);
113 unsigned int CloseDoor(unsigned int);
114 unsigned int GetDoorState(void);
115 unsigned int MoveDoor(unsigned int);
116 void DrawSpecialEditorDoor_MM();
117 void UndrawSpecialEditorDoor();
118 Pixel ReadPixel(DrawBuffer *, int, int);
119 void SetRGB(unsigned int, unsigned short, unsigned short, unsigned short);
120
121 void CreateToolButtons();
122
123 int get_base_element(int);
124 int get_element_phase(int);
125 int get_num_elements(int);
126 int get_rotated_element(int, int);
127
128 int el2gfx(int);
129
130 #endif