rnd-20070425-1-src
[rocksndiamonds.git] / src / libgame / system.h
1 /***********************************************************
2 * Artsoft Retro-Game Library                               *
3 *----------------------------------------------------------*
4 * (c) 1994-2006 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * system.h                                                 *
12 ***********************************************************/
13
14 #ifndef SYSTEM_H
15 #define SYSTEM_H
16
17 #include "platform.h"
18 #include "types.h"
19
20
21 #if defined(PLATFORM_MACOSX)
22 #include "macosx.h"
23 #elif defined(PLATFORM_WIN32)
24 #include "windows.h"
25 #elif defined(PLATFORM_MSDOS)
26 #include "msdos.h"
27 #endif
28
29 #if defined(TARGET_SDL)
30 #include "sdl.h"
31 #elif defined(TARGET_X11)
32 #include "x11.h"
33 #endif
34
35
36 /* the additional 'b' is needed for Win32 to open files in binary mode */
37 #define MODE_READ                       "rb"
38 #define MODE_WRITE                      "wb"
39 #define MODE_APPEND                     "ab"
40
41 #define DEFAULT_DEPTH                   0
42
43 #define BLIT_OPAQUE                     0
44 #define BLIT_MASKED                     1
45 #define BLIT_INVERSE                    2
46 #define BLIT_ON_BACKGROUND              3
47
48 #define FULLSCREEN_NOT_AVAILABLE        FALSE
49 #define FULLSCREEN_AVAILABLE            TRUE
50
51 #define CREATE_SPECIAL_EDITION          TRUE
52 #define CREATE_SPECIAL_EDITION_RND_JUE  TRUE
53
54 /* default input keys */
55 #define DEFAULT_KEY_LEFT                KSYM_Left
56 #define DEFAULT_KEY_RIGHT               KSYM_Right
57 #define DEFAULT_KEY_UP                  KSYM_Up
58 #define DEFAULT_KEY_DOWN                KSYM_Down
59 #if defined(PLATFORM_MACOSX)
60 #define DEFAULT_KEY_SNAP                KSYM_Control_L
61 #define DEFAULT_KEY_DROP                KSYM_KP_Enter
62 #else
63 #define DEFAULT_KEY_SNAP                KSYM_Control_L
64 #define DEFAULT_KEY_DROP                KSYM_Control_R
65 #endif
66 #define DEFAULT_KEY_OKAY                KSYM_Return
67 #define DEFAULT_KEY_CANCEL              KSYM_Escape
68
69 /* default shortcut keys */
70 #define DEFAULT_KEY_SAVE_GAME           KSYM_F1
71 #define DEFAULT_KEY_LOAD_GAME           KSYM_F2
72 #define DEFAULT_KEY_TOGGLE_PAUSE        KSYM_space
73 #define DEFAULT_KEY_FOCUS_PLAYER_1      KSYM_F5
74 #define DEFAULT_KEY_FOCUS_PLAYER_2      KSYM_F6
75 #define DEFAULT_KEY_FOCUS_PLAYER_3      KSYM_F7
76 #define DEFAULT_KEY_FOCUS_PLAYER_4      KSYM_F8
77 #define DEFAULT_KEY_FOCUS_PLAYER_ALL    KSYM_F9
78
79 /* values for key_status */
80 #define KEY_NOT_PRESSED                 FALSE
81 #define KEY_RELEASED                    FALSE
82 #define KEY_PRESSED                     TRUE
83
84 /* values for button status */
85 #define MB_NOT_PRESSED                  FALSE
86 #define MB_NOT_RELEASED                 TRUE
87 #define MB_RELEASED                     FALSE
88 #define MB_PRESSED                      TRUE
89 #define MB_MENU_CHOICE                  FALSE
90 #define MB_MENU_MARK                    TRUE
91 #define MB_MENU_INITIALIZE              (-1)
92 #define MB_MENU_LEAVE                   (-2)
93 #define MB_LEFTBUTTON                   1
94 #define MB_MIDDLEBUTTON                 2
95 #define MB_RIGHTBUTTON                  3
96 #define MB_WHEEL_UP                     4
97 #define MB_WHEEL_DOWN                   5
98 #define MB_WHEEL_LEFT                   6
99 #define MB_WHEEL_RIGHT                  7
100 #define IS_WHEEL_BUTTON_VERTICAL(b)     ((b) >= MB_WHEEL_UP &&          \
101                                          (b) <= MB_WHEEL_DOWN)
102 #define IS_WHEEL_BUTTON_HORIZONTAL(b)   ((b) >= MB_WHEEL_LEFT &&        \
103                                          (b) <= MB_WHEEL_RIGHT)
104 #define IS_WHEEL_BUTTON(b)              ((b) >= MB_WHEEL_UP &&          \
105                                          (b) <= MB_WHEEL_DOWN)
106 #define DEFAULT_WHEEL_STEPS             3
107
108 /* values for move directions */
109 #define MV_BIT_LEFT                     0
110 #define MV_BIT_RIGHT                    1
111 #define MV_BIT_UP                       2
112 #define MV_BIT_DOWN                     3
113
114 #define NUM_DIRECTIONS                  4
115
116 /* diagonal movement directions are used in a different contect than buttons */
117 #define MV_BIT_UPLEFT                   4
118 #define MV_BIT_UPRIGHT                  5
119 #define MV_BIT_DOWNLEFT                 6
120 #define MV_BIT_DOWNRIGHT                7
121
122 #define NUM_DIRECTIONS_FULL             8
123
124 /* values for special "button" bitmasks */
125 #define BUTTON_1                        4
126 #define BUTTON_2                        5
127
128 /* values for special "focus player" bitmasks */
129 #define BIT_SET_FOCUS                   6
130
131 /* values for move directions and special "button" key bitmasks */
132 #define MV_NONE                 0
133 #define MV_LEFT                 (1 << MV_BIT_LEFT)
134 #define MV_RIGHT                (1 << MV_BIT_RIGHT)
135 #define MV_UP                   (1 << MV_BIT_UP)
136 #define MV_DOWN                 (1 << MV_BIT_DOWN)
137
138 #define MV_UPLEFT               (MV_UP   | MV_LEFT)
139 #define MV_UPRIGHT              (MV_UP   | MV_RIGHT)
140 #define MV_DOWNLEFT             (MV_DOWN | MV_LEFT)
141 #define MV_DOWNRIGHT            (MV_DOWN | MV_RIGHT)
142
143 #define MV_HORIZONTAL           (MV_LEFT | MV_RIGHT)
144 #define MV_VERTICAL             (MV_UP   | MV_DOWN)
145 #define MV_ALL_DIRECTIONS       (MV_LEFT | MV_RIGHT | MV_UP | MV_DOWN)
146 #define MV_ANY_DIRECTION        (MV_ALL_DIRECTIONS)
147 #define MV_NO_DIRECTION         (MV_NONE)
148
149 #define KEY_BUTTON_1            (1 << BUTTON_1)
150 #define KEY_BUTTON_2            (1 << BUTTON_2)
151 #define KEY_MOTION              (MV_LEFT | MV_RIGHT | MV_UP | MV_DOWN)
152 #define KEY_BUTTON              (KEY_BUTTON_1 | KEY_BUTTON_2)
153 #define KEY_ACTION              (KEY_MOTION | KEY_BUTTON)
154
155 #define KEY_SET_FOCUS           (1 << BIT_SET_FOCUS)
156
157 #define MV_DIR_FROM_BIT(x)      ((x) < NUM_DIRECTIONS ? 1 << (x) :        \
158                                  (x) == MV_BIT_UPLEFT    ? MV_UPLEFT    : \
159                                  (x) == MV_BIT_UPRIGHT   ? MV_UPRIGHT   : \
160                                  (x) == MV_BIT_DOWNLEFT  ? MV_DOWNLEFT  : \
161                                  (x) == MV_BIT_DOWNRIGHT ? MV_DOWNRIGHT : \
162                                  MV_NONE)
163
164 #define MV_DIR_TO_BIT(x)        ((x) == MV_LEFT      ? MV_BIT_LEFT      : \
165                                  (x) == MV_RIGHT     ? MV_BIT_RIGHT     : \
166                                  (x) == MV_UP        ? MV_BIT_UP        : \
167                                  (x) == MV_DOWN      ? MV_BIT_DOWN      : \
168                                  (x) == MV_UPLEFT    ? MV_BIT_UPLEFT    : \
169                                  (x) == MV_UPRIGHT   ? MV_BIT_UPRIGHT   : \
170                                  (x) == MV_DOWNLEFT  ? MV_BIT_DOWNLEFT  : \
171                                  (x) == MV_DOWNRIGHT ? MV_BIT_DOWNRIGHT : \
172                                  MV_BIT_DOWN)
173
174 #define MV_DIR_OPPOSITE(x)      ((x) == MV_LEFT      ? MV_RIGHT     : \
175                                  (x) == MV_RIGHT     ? MV_LEFT      : \
176                                  (x) == MV_UP        ? MV_DOWN      : \
177                                  (x) == MV_DOWN      ? MV_UP        : \
178                                  (x) == MV_UPLEFT    ? MV_DOWNRIGHT : \
179                                  (x) == MV_UPRIGHT   ? MV_DOWNLEFT  : \
180                                  (x) == MV_DOWNLEFT  ? MV_UPRIGHT   : \
181                                  (x) == MV_DOWNRIGHT ? MV_UPLEFT    : \
182                                  MV_NONE)
183
184 /* values for animation mode (frame order and direction) */
185 #define ANIM_NONE               0
186 #define ANIM_LOOP               (1 << 0)
187 #define ANIM_LINEAR             (1 << 1)
188 #define ANIM_PINGPONG           (1 << 2)
189 #define ANIM_PINGPONG2          (1 << 3)
190 #define ANIM_RANDOM             (1 << 4)
191 #define ANIM_CE_VALUE           (1 << 5)
192 #define ANIM_CE_SCORE           (1 << 6)
193 #define ANIM_CE_DELAY           (1 << 7)
194 #define ANIM_REVERSE            (1 << 8)
195 #define ANIM_OPAQUE_PLAYER      (1 << 9)
196
197 /* values for special (non game element) animation modes */
198 #define ANIM_HORIZONTAL         (1 << 10)
199 #define ANIM_VERTICAL           (1 << 11)
200 #define ANIM_CENTERED           (1 << 12)
201 #define ANIM_STATIC_PANEL       (1 << 13)
202
203 #define ANIM_DEFAULT            ANIM_LOOP
204
205 /* values for fade mode */
206 #define FADE_TYPE_NONE          0
207 #define FADE_TYPE_FADE_IN       (1 << 0)
208 #define FADE_TYPE_FADE_OUT      (1 << 1)
209 #define FADE_TYPE_TRANSFORM     (1 << 2)
210 #define FADE_TYPE_CROSSFADE     (1 << 3)
211 #define FADE_TYPE_MELT          (1 << 4)
212 #define FADE_TYPE_SKIP          (1 << 5)
213
214 #define FADE_MODE_NONE          (FADE_TYPE_NONE)
215 #define FADE_MODE_FADE_IN       (FADE_TYPE_FADE_IN)
216 #define FADE_MODE_FADE_OUT      (FADE_TYPE_FADE_OUT)
217 #define FADE_MODE_FADE          (FADE_TYPE_FADE_IN | FADE_TYPE_FADE_OUT)
218 #define FADE_MODE_TRANSFORM     (FADE_TYPE_TRANSFORM | FADE_TYPE_FADE_IN)
219 #define FADE_MODE_CROSSFADE     (FADE_MODE_TRANSFORM | FADE_TYPE_CROSSFADE)
220 #define FADE_MODE_MELT          (FADE_MODE_TRANSFORM | FADE_TYPE_MELT)
221 #define FADE_MODE_SKIP_FADE_IN  (FADE_TYPE_SKIP | FADE_TYPE_FADE_IN)
222 #define FADE_MODE_SKIP_FADE_OUT (FADE_TYPE_SKIP | FADE_TYPE_FADE_OUT)
223
224 #define FADE_MODE_DEFAULT       FADE_MODE_FADE
225
226 /* values for text alignment */
227 #define ALIGN_LEFT              (1 << 0)
228 #define ALIGN_RIGHT             (1 << 1)
229 #define ALIGN_CENTER            (1 << 2)
230 #define ALIGN_DEFAULT           ALIGN_LEFT
231
232 #define VALIGN_TOP              (1 << 0)
233 #define VALIGN_BOTTOM           (1 << 1)
234 #define VALIGN_MIDDLE           (1 << 2)
235 #define VALIGN_DEFAULT          VALIGN_TOP
236
237 #define ALIGNED_XPOS(x,w,a)     ((a) == ALIGN_CENTER  ? (x) - (w) / 2 : \
238                                  (a) == ALIGN_RIGHT   ? (x) - (w) : (x))
239 #define ALIGNED_YPOS(y,h,v)     ((v) == VALIGN_MIDDLE ? (y) - (h) / 2 : \
240                                  (v) == VALIGN_BOTTOM ? (y) - (h) : (y))
241 #define ALIGNED_TEXT_XPOS(p)    ALIGNED_XPOS((p)->x, (p)->width,  (p)->align)
242 #define ALIGNED_TEXT_YPOS(p)    ALIGNED_YPOS((p)->y, (p)->height, (p)->valign)
243
244 /* values for redraw_mask */
245 #define REDRAW_NONE             (0)
246 #define REDRAW_ALL              (1 << 0)
247 #define REDRAW_FIELD            (1 << 1)
248 #define REDRAW_TILES            (1 << 2)
249 #define REDRAW_DOOR_1           (1 << 3)
250 #define REDRAW_VIDEO_1          (1 << 4)
251 #define REDRAW_VIDEO_2          (1 << 5)
252 #define REDRAW_VIDEO_3          (1 << 6)
253 #define REDRAW_MICROLEVEL       (1 << 7)
254 #define REDRAW_MICROLABEL       (1 << 8)
255 #define REDRAW_FROM_BACKBUFFER  (1 << 9)
256 #define REDRAW_DOOR_2           (REDRAW_VIDEO_1 | \
257                                  REDRAW_VIDEO_2 | \
258                                  REDRAW_VIDEO_3)
259 #define REDRAW_DOOR_3           (1 << 10)
260 #define REDRAW_DOORS            (REDRAW_DOOR_1 | \
261                                  REDRAW_DOOR_2 | \
262                                  REDRAW_DOOR_3)
263 #define REDRAW_MAIN             (REDRAW_FIELD | \
264                                  REDRAW_TILES | \
265                                  REDRAW_MICROLEVEL)
266 #define REDRAW_FPS              (1 << 11)
267 #define REDRAWTILES_THRESHOLD   (SCR_FIELDX * SCR_FIELDY / 2)
268
269 #define IN_GFX_SCREEN(x, y)     (x >= gfx.sx && x < gfx.sx + gfx.sxsize && \
270                                  y >= gfx.sy && y < gfx.sy + gfx.sysize)
271 #define IN_GFX_DOOR(x, y)       (x >= gfx.dx && x < gfx.dx + gfx.dxsize && \
272                                  y >= gfx.dy && y < gfx.dy + gfx.dysize)
273 #define IN_GFX_VIDEO(x, y)      (x >= gfx.vx && x < gfx.vx + gfx.vxsize && \
274                                  y >= gfx.vy && y < gfx.vy + gfx.vysize)
275
276 /* values for mouse cursor */
277 #define CURSOR_DEFAULT          0
278 #define CURSOR_NONE             1
279 #define CURSOR_PLAYFIELD        2
280
281 /* fundamental game speed values */
282 #define ONE_SECOND_DELAY        1000    /* delay value for one second */
283 #define GAME_FRAME_DELAY        20      /* frame delay in milliseconds */
284 #define FFWD_FRAME_DELAY        10      /* 200% speed for fast forward */
285 #define FRAMES_PER_SECOND       (ONE_SECOND_DELAY / GAME_FRAME_DELAY)
286
287 /* maximum playfield size supported by libgame functions */
288 #define MAX_PLAYFIELD_WIDTH     128
289 #define MAX_PLAYFIELD_HEIGHT    128
290
291 /* maximum number of parallel players supported by libgame functions */
292 #define MAX_PLAYERS             4
293
294 /* maximum allowed length of player name */
295 #define MAX_PLAYER_NAME_LEN     10
296
297 /* default name for empty highscore entry */
298 #define EMPTY_PLAYER_NAME       "no name"
299
300 /* default name for unknown player names */
301 #define ANONYMOUS_NAME          "anonymous"
302
303 /* default for other unknown names */
304 #define UNKNOWN_NAME            "unknown"
305
306 /* default name for new levels */
307 #define NAMELESS_LEVEL_NAME     "nameless level"
308
309 /* default text for non-existant artwork */
310 #define NOT_AVAILABLE           "(not available)"
311
312 /* default value for undefined filename */
313 #define UNDEFINED_FILENAME      "[NONE]"
314
315 /* default value for undefined parameter */
316 #define ARG_DEFAULT             "[DEFAULT]"
317
318 /* default values for undefined configuration file parameters */
319 #define ARG_UNDEFINED           "-1000000"
320 #define ARG_UNDEFINED_VALUE     (atoi(ARG_UNDEFINED))
321
322 /* definitions for game sub-directories */
323 #ifndef RO_GAME_DIR
324 #define RO_GAME_DIR             "."
325 #endif
326
327 #ifndef RW_GAME_DIR
328 #define RW_GAME_DIR             "."
329 #endif
330
331 #define RO_BASE_PATH            RO_GAME_DIR
332 #define RW_BASE_PATH            RW_GAME_DIR
333
334 /* directory names */
335 #define GRAPHICS_DIRECTORY      "graphics"
336 #define SOUNDS_DIRECTORY        "sounds"
337 #define MUSIC_DIRECTORY         "music"
338 #define LEVELS_DIRECTORY        "levels"
339 #define TAPES_DIRECTORY         "tapes"
340 #define SCORES_DIRECTORY        "scores"
341 #define DOCS_DIRECTORY          "docs"
342 #define CACHE_DIRECTORY         "cache"
343
344 #if !defined(PLATFORM_MSDOS)
345 #if CREATE_SPECIAL_EDITION_RND_JUE
346 #define GFX_CLASSIC_SUBDIR      "jue0"
347 #define SND_CLASSIC_SUBDIR      "jue0"
348 #define MUS_CLASSIC_SUBDIR      "jue0"
349 #else
350 #define GFX_CLASSIC_SUBDIR      "gfx_classic"
351 #define SND_CLASSIC_SUBDIR      "snd_classic"
352 #define MUS_CLASSIC_SUBDIR      "mus_classic"
353 #endif
354 #else
355 #define GFX_CLASSIC_SUBDIR      "gfx_orig"
356 #define SND_CLASSIC_SUBDIR      "snd_orig"
357 #define MUS_CLASSIC_SUBDIR      "mus_orig"
358 #endif
359
360 #if CREATE_SPECIAL_EDITION
361 #define GFX_FALLBACK_FILENAME   "fallback.pcx"
362 #define SND_FALLBACK_FILENAME   "fallback.wav"
363 #define MUS_FALLBACK_FILENAME   "fallback.wav"
364 #endif
365
366 /* file names and filename extensions */
367 #if !defined(PLATFORM_MSDOS)
368 #define LEVELSETUP_DIRECTORY    "levelsetup"
369 #define SETUP_FILENAME          "setup.conf"
370 #define LEVELSETUP_FILENAME     "levelsetup.conf"
371 #define EDITORSETUP_FILENAME    "editorsetup.conf"
372 #define EDITORCASCADE_FILENAME  "editorcascade.conf"
373 #define HELPANIM_FILENAME       "helpanim.conf"
374 #define HELPTEXT_FILENAME       "helptext.conf"
375 #define LEVELINFO_FILENAME      "levelinfo.conf"
376 #define GRAPHICSINFO_FILENAME   "graphicsinfo.conf"
377 #define SOUNDSINFO_FILENAME     "soundsinfo.conf"
378 #define MUSICINFO_FILENAME      "musicinfo.conf"
379 #define ARTWORKINFO_CACHE_FILE  "artworkinfo.cache"
380 #define LEVELFILE_EXTENSION     "level"
381 #define TAPEFILE_EXTENSION      "tape"
382 #define SCOREFILE_EXTENSION     "score"
383 #else
384 #define LEVELSETUP_DIRECTORY    "lvlsetup"
385 #define SETUP_FILENAME          "setup.cnf"
386 #define LEVELSETUP_FILENAME     "lvlsetup.cnf"
387 #define EDITORSETUP_FILENAME    "edsetup.cnf"
388 #define EDITORCASCADE_FILENAME  "edcascad.conf"
389 #define HELPANIM_FILENAME       "helpanim.cnf"
390 #define HELPTEXT_FILENAME       "helptext.cnf"
391 #define LEVELINFO_FILENAME      "lvlinfo.cnf"
392 #define GRAPHICSINFO_FILENAME   "gfxinfo.cnf"
393 #define SOUNDSINFO_FILENAME     "sndinfo.cnf"
394 #define MUSICINFO_FILENAME      "musinfo.cnf"
395 #define ARTWORKINFO_CACHE_FILE  "artinfo.cac"
396 #define LEVELFILE_EXTENSION     "lvl"
397 #define TAPEFILE_EXTENSION      "tap"
398 #define SCOREFILE_EXTENSION     "sco"
399 #endif
400
401 #define ERROR_BASENAME          "stderr.txt"
402
403 #define CHAR_PATH_SEPARATOR_UNIX        '/'
404 #define CHAR_PATH_SEPARATOR_DOS         '\\'
405
406 #define STRING_PATH_SEPARATOR_UNIX      "/"
407 #define STRING_PATH_SEPARATOR_DOS       "\\"
408
409 #define STRING_NEWLINE_UNIX             "\n"
410 #define STRING_NEWLINE_DOS              "\r\n"
411
412 #if defined(PLATFORM_WIN32) || defined(PLATFORM_MSDOS)
413 #define CHAR_PATH_SEPARATOR     CHAR_PATH_SEPARATOR_DOS
414 #define STRING_PATH_SEPARATOR   STRING_PATH_SEPARATOR_DOS
415 #define STRING_NEWLINE          STRING_NEWLINE_DOS
416 #else
417 #define CHAR_PATH_SEPARATOR     CHAR_PATH_SEPARATOR_UNIX
418 #define STRING_PATH_SEPARATOR   STRING_PATH_SEPARATOR_UNIX
419 #define STRING_NEWLINE          STRING_NEWLINE_UNIX
420 #endif
421
422
423 /* areas in bitmap PIX_DOOR */
424 /* meaning in PIX_DB_DOOR: (3 PAGEs)
425    PAGEX1: 1. buffer for DOOR_1
426    PAGEX2: 2. buffer for DOOR_1
427    PAGEX3: buffer for animations
428 */
429
430 /* these values are hard-coded to be able to use them in initialization */
431 #define DOOR_GFX_PAGE_WIDTH     100     /* should be set to "gfx.dxsize" */
432 #define DOOR_GFX_PAGE_HEIGHT    280     /* should be set to "gfx.dysize" */
433
434 #define DOOR_GFX_PAGESIZE       (DOOR_GFX_PAGE_WIDTH)
435 #define DOOR_GFX_PAGEX1         (0 * DOOR_GFX_PAGESIZE)
436 #define DOOR_GFX_PAGEX2         (1 * DOOR_GFX_PAGESIZE)
437 #define DOOR_GFX_PAGEX3         (2 * DOOR_GFX_PAGESIZE)
438 #define DOOR_GFX_PAGEX4         (3 * DOOR_GFX_PAGESIZE)
439 #define DOOR_GFX_PAGEX5         (4 * DOOR_GFX_PAGESIZE)
440 #define DOOR_GFX_PAGEX6         (5 * DOOR_GFX_PAGESIZE)
441 #define DOOR_GFX_PAGEX7         (6 * DOOR_GFX_PAGESIZE)
442 #define DOOR_GFX_PAGEX8         (7 * DOOR_GFX_PAGESIZE)
443 #define DOOR_GFX_PAGEY1         (0)
444 #define DOOR_GFX_PAGEY2         (DOOR_GFX_PAGE_HEIGHT)
445
446
447 /* macros for version handling */
448 #define VERSION_MAJOR(x)        ((x) / 1000000)
449 #define VERSION_MINOR(x)        (((x) % 1000000) / 10000)
450 #define VERSION_PATCH(x)        (((x) % 10000) / 100)
451 #define VERSION_BUILD(x)        ((x) % 100)
452 #define VERSION_IDENT(a,b,c,d)  ((a) * 1000000 + (b) * 10000 + (c) * 100 + (d))
453
454
455 /* macros for parent/child process identification */
456 #if defined(PLATFORM_UNIX)
457 #define IS_PARENT_PROCESS()     (audio.mixer_pid != getpid())
458 #define IS_CHILD_PROCESS()      (audio.mixer_pid == getpid())
459 #define HAS_CHILD_PROCESS()     (audio.mixer_pid > 0)
460 #else
461 #define IS_PARENT_PROCESS()     TRUE
462 #define IS_CHILD_PROCESS()      FALSE
463 #define HAS_CHILD_PROCESS()     FALSE
464 #endif
465
466
467 /* values for artwork type */
468 #define ARTWORK_TYPE_GRAPHICS   0
469 #define ARTWORK_TYPE_SOUNDS     1
470 #define ARTWORK_TYPE_MUSIC      2
471
472 #define NUM_ARTWORK_TYPES       3
473
474
475 /* values for tree type (chosen to match artwork type) */
476 #define TREE_TYPE_UNDEFINED     -1
477 #define TREE_TYPE_GRAPHICS_DIR  ARTWORK_TYPE_GRAPHICS
478 #define TREE_TYPE_SOUNDS_DIR    ARTWORK_TYPE_SOUNDS
479 #define TREE_TYPE_MUSIC_DIR     ARTWORK_TYPE_MUSIC
480 #define TREE_TYPE_LEVEL_DIR     3
481
482 #define NUM_TREE_TYPES          4
483
484 #define INFOTEXT_UNDEFINED      ""
485 #define INFOTEXT_GRAPHICS_DIR   "Custom Graphics"
486 #define INFOTEXT_SOUNDS_DIR     "Custom Sounds"
487 #define INFOTEXT_MUSIC_DIR      "Custom Music"
488 #define INFOTEXT_LEVEL_DIR      "Level Sets"
489
490 #define TREE_INFOTEXT(t)        ((t) == TREE_TYPE_LEVEL_DIR ?           \
491                                  INFOTEXT_LEVEL_DIR :                   \
492                                  (t) == TREE_TYPE_GRAPHICS_DIR ?        \
493                                  INFOTEXT_GRAPHICS_DIR :                \
494                                  (t) == TREE_TYPE_SOUNDS_DIR ?          \
495                                  INFOTEXT_SOUNDS_DIR :                  \
496                                  (t) == TREE_TYPE_MUSIC_DIR ?           \
497                                  INFOTEXT_MUSIC_DIR :                   \
498                                  INFOTEXT_UNDEFINED)
499
500 /* values for artwork handling */
501 #define LEVELDIR_ARTWORK_SET_PTR(leveldir, type)                        \
502                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
503                                  &(leveldir)->graphics_set :            \
504                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
505                                  &(leveldir)->sounds_set :              \
506                                  &(leveldir)->music_set)
507
508 #define LEVELDIR_ARTWORK_SET(leveldir, type)                            \
509                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
510                                  (leveldir)->graphics_set :             \
511                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
512                                  (leveldir)->sounds_set :               \
513                                  (leveldir)->music_set)
514
515 #define LEVELDIR_ARTWORK_PATH_PTR(leveldir, type)                       \
516                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
517                                  &(leveldir)->graphics_path :           \
518                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
519                                  &(leveldir)->sounds_path :             \
520                                  &(leveldir)->music_path)
521
522 #define LEVELDIR_ARTWORK_PATH(leveldir, type)                           \
523                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
524                                  (leveldir)->graphics_path :            \
525                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
526                                  (leveldir)->sounds_path :              \
527                                  (leveldir)->music_path)
528
529 #define SETUP_ARTWORK_SET(setup, type)                                  \
530                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
531                                  (setup).graphics_set :                 \
532                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
533                                  (setup).sounds_set :                   \
534                                  (setup).music_set)
535
536 #define SETUP_OVERRIDE_ARTWORK(setup, type)                             \
537                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
538                                  (setup).override_level_graphics :      \
539                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
540                                  (setup).override_level_sounds :        \
541                                  (setup).override_level_music)
542
543 #define ARTWORK_FIRST_NODE(artwork, type)                               \
544                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
545                                  (artwork).gfx_first :                  \
546                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
547                                  (artwork).snd_first :                  \
548                                  (artwork).mus_first)
549
550 #define ARTWORK_CURRENT_IDENTIFIER_PTR(artwork, type)                   \
551                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
552                                  &(artwork).gfx_current_identifier :    \
553                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
554                                  &(artwork).snd_current_identifier :    \
555                                  &(artwork).mus_current_identifier)
556
557 #define ARTWORK_CURRENT_IDENTIFIER(artwork, type)                       \
558                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
559                                  (artwork).gfx_current_identifier :     \
560                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
561                                  (artwork).snd_current_identifier :     \
562                                  (artwork).mus_current_identifier)
563
564 #define ARTWORKINFO_FILENAME(type)                                      \
565                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
566                                  GRAPHICSINFO_FILENAME :                \
567                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
568                                  SOUNDSINFO_FILENAME :                  \
569                                  (type) == ARTWORK_TYPE_MUSIC ?         \
570                                  MUSICINFO_FILENAME : "")
571
572 #define ARTWORK_DIRECTORY(type)                                         \
573                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
574                                  GRAPHICS_DIRECTORY :                   \
575                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
576                                  SOUNDS_DIRECTORY :                     \
577                                  (type) == ARTWORK_TYPE_MUSIC ?         \
578                                  MUSIC_DIRECTORY : "")
579
580 #define OPTIONS_ARTWORK_DIRECTORY(type)                                 \
581                                 ((type) == ARTWORK_TYPE_GRAPHICS ?      \
582                                  options.graphics_directory :           \
583                                  (type) == ARTWORK_TYPE_SOUNDS ?        \
584                                  options.sounds_directory :             \
585                                  (type) == ARTWORK_TYPE_MUSIC ?         \
586                                  options.music_directory : "")
587
588
589 /* type definitions */
590 typedef int (*EventFilter)(const Event *);
591
592
593 /* structure definitions */
594
595 struct ProgramInfo
596 {
597   char *command_basepath;       /* directory that contains the program */
598   char *command_basename;       /* base filename of the program binary */
599
600   char *userdata_subdir;        /* personal user game data directory */
601   char *userdata_subdir_unix;   /* personal user game data directory (Unix) */
602   char *userdata_path;          /* resulting full path to game data directory */
603
604   char *program_title;
605   char *window_title;
606   char *icon_title;
607
608   char *x11_icon_filename;
609   char *x11_iconmask_filename;
610   char *sdl_icon_filename;
611   char *msdos_cursor_filename;
612
613   char *cookie_prefix;
614   char *filename_prefix;        /* prefix to cut off from DOS filenames */
615
616   char *error_filename;         /* filename where to write error messages to */
617   FILE *error_file;             /* (used instead of 'stderr' on some systems) */
618
619   int version_major;
620   int version_minor;
621   int version_patch;
622
623   void (*exit_function)(int);
624 };
625
626 struct OptionInfo
627 {
628   char *display_name;
629   char *server_host;
630   int server_port;
631
632   char *ro_base_directory;
633   char *rw_base_directory;
634   char *level_directory;
635   char *graphics_directory;
636   char *sounds_directory;
637   char *music_directory;
638   char *docs_directory;
639   char *execute_command;
640
641   boolean serveronly;
642   boolean network;
643   boolean verbose;
644   boolean debug;
645 };
646
647 struct ScreenModeInfo
648 {
649   int width, height;
650 };
651
652 struct VideoSystemInfo
653 {
654   int default_depth;
655   int width, height, depth;
656
657   boolean fullscreen_available;
658   boolean fullscreen_enabled;
659   struct ScreenModeInfo *fullscreen_modes;
660   char *fullscreen_mode_current;
661 };
662
663 struct AudioSystemInfo
664 {
665   boolean sound_available;
666   boolean loops_available;
667   boolean music_available;
668
669   boolean sound_enabled;
670   boolean sound_deactivated;    /* for temporarily disabling sound */
671
672   int mixer_pipe[2];
673   int mixer_pid;
674   char *device_name;
675   int device_fd;
676
677   int num_channels;
678   int music_channel;
679   int first_sound_channel;
680 };
681
682 struct FontBitmapInfo
683 {
684   Bitmap *bitmap;
685
686   int src_x, src_y;             /* start position of animation frames */
687   int width, height;            /* width/height of each animation frame */
688
689   int draw_xoffset;             /* offset for drawing font characters */
690   int draw_yoffset;             /* offset for drawing font characters */
691
692   int num_chars;
693   int num_chars_per_line;
694
695 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
696   Pixmap *clip_mask;            /* single-char-only clip mask array for X11 */
697 #endif
698 };
699
700 struct GfxInfo
701 {
702   int sx, sy;
703   int sxsize, sysize;
704   int real_sx, real_sy;
705   int full_sxsize, full_sysize;
706   int scrollbuffer_width, scrollbuffer_height;
707
708   int dx, dy;
709   int dxsize, dysize;
710
711   int vx, vy;
712   int vxsize, vysize;
713
714   int draw_deactivation_mask;
715   int draw_background_mask;
716
717   Bitmap *field_save_buffer;
718
719   Bitmap *background_bitmap;
720   int background_bitmap_mask;
721
722   int num_fonts;
723   struct FontBitmapInfo *font_bitmap_info;
724   int (*select_font_function)(int);
725   int (*get_font_from_token_function)(char *);
726
727   int anim_random_frame;
728 };
729
730 struct JoystickInfo
731 {
732   int status;
733   int fd[MAX_PLAYERS];          /* file descriptor of player's joystick */
734 };
735
736 struct SetupJoystickInfo
737 {
738   char *device_name;            /* device name of player's joystick */
739
740   int xleft, xmiddle, xright;
741   int yupper, ymiddle, ylower;
742   int snap, drop;
743 };
744
745 struct SetupKeyboardInfo
746 {
747   Key left, right, up, down;
748   Key snap, drop;
749 };
750
751 struct SetupInputInfo
752 {
753   boolean use_joystick;
754   struct SetupJoystickInfo joy;
755   struct SetupKeyboardInfo key;
756 };
757
758 struct SetupEditorInfo
759 {
760   boolean el_boulderdash;
761   boolean el_emerald_mine;
762   boolean el_emerald_mine_club;
763   boolean el_more;
764   boolean el_sokoban;
765   boolean el_supaplex;
766   boolean el_diamond_caves;
767   boolean el_dx_boulderdash;
768   boolean el_chars;
769   boolean el_steel_chars;
770   boolean el_custom;
771   boolean el_user_defined;
772   boolean el_dynamic;
773
774   boolean el_headlines;
775
776   boolean el_by_game;
777   boolean el_by_type;
778
779   boolean show_element_token;
780 };
781
782 struct SetupEditorCascadeInfo
783 {
784   boolean el_bd;
785   boolean el_em;
786   boolean el_emc;
787   boolean el_rnd;
788   boolean el_sb;
789   boolean el_sp;
790   boolean el_dc;
791   boolean el_dx;
792   boolean el_chars;
793   boolean el_steel_chars;
794   boolean el_ce;
795   boolean el_ge;
796   boolean el_ref;
797   boolean el_user;
798   boolean el_dynamic;
799 };
800
801 struct SetupShortcutInfo
802 {
803   Key save_game;
804   Key load_game;
805   Key toggle_pause;
806
807   Key focus_player[MAX_PLAYERS];
808   Key focus_player_all;
809 };
810
811 struct SetupSystemInfo
812 {
813   char *sdl_videodriver;
814   char *sdl_audiodriver;
815   int audio_fragment_size;
816 };
817
818 struct SetupInfo
819 {
820   char *player_name;
821
822   boolean sound;
823   boolean sound_loops;
824   boolean sound_music;
825   boolean sound_simple;
826   boolean toons;
827   boolean double_buffering;
828   boolean direct_draw;          /* !double_buffering (redundant!) */
829   boolean scroll_delay;
830   boolean scroll_delay_value;
831   boolean soft_scrolling;
832   boolean fade_screens;
833   boolean autorecord;
834   boolean show_titlescreen;
835   boolean quick_doors;
836   boolean team_mode;
837   boolean handicap;
838   boolean skip_levels;
839   boolean time_limit;
840   boolean fullscreen;
841   char *fullscreen_mode;
842   boolean ask_on_escape;
843   boolean ask_on_escape_editor;
844   boolean quick_switch;
845   boolean input_on_focus;
846   boolean prefer_aga_graphics;
847   int game_frame_delay;
848
849   char *graphics_set;
850   char *sounds_set;
851   char *music_set;
852   boolean override_level_graphics;
853   boolean override_level_sounds;
854   boolean override_level_music;
855
856   struct SetupEditorInfo editor;
857   struct SetupEditorCascadeInfo editor_cascade;
858   struct SetupShortcutInfo shortcut;
859   struct SetupInputInfo input[MAX_PLAYERS];
860   struct SetupSystemInfo system;
861   struct OptionInfo options;
862 };
863
864 struct TreeInfo
865 {
866   struct TreeInfo **node_top;           /* topmost node in tree */
867   struct TreeInfo *node_parent;         /* parent level directory info */
868   struct TreeInfo *node_group;          /* level group sub-directory info */
869   struct TreeInfo *next;                /* next level series structure node */
870
871   int cl_first;         /* internal control field for setup screen */
872   int cl_cursor;        /* internal control field for setup screen */
873
874   int type;             /* type of tree content */
875
876   /* fields for "type == TREE_TYPE_LEVEL_DIR" */
877
878   char *subdir;         /* tree info sub-directory basename (may be ".") */
879   char *fullpath;       /* complete path relative to tree base directory */
880   char *basepath;       /* absolute base path of tree base directory */
881   char *identifier;     /* identifier string for configuration files */
882   char *name;           /* tree info name, as displayed in selection menues */
883   char *name_sorting;   /* optional sorting name for correct name sorting */
884   char *author;         /* level or artwork author name */
885   char *year;           /* optional year of creation for levels or artwork */
886   char *imported_from;  /* optional comment for imported levels or artwork */
887   char *imported_by;    /* optional comment for imported levels or artwork */
888   char *tested_by;      /* optional comment to name people who tested a set */
889
890   char *graphics_set_ecs; /* special EMC custom graphics set (ECS graphics) */
891   char *graphics_set_aga; /* special EMC custom graphics set (AGA graphics) */
892   char *graphics_set;   /* optional custom graphics set (level tree only) */
893   char *sounds_set;     /* optional custom sounds set (level tree only) */
894   char *music_set;      /* optional custom music set (level tree only) */
895   char *graphics_path;  /* path to optional custom graphics set (level only) */
896   char *sounds_path;    /* path to optional custom sounds set (level only) */
897   char *music_path;     /* path to optional custom music set (level only) */
898
899   char *level_filename; /* filename of level file (for packed level file) */
900   char *level_filetype; /* type of levels in level directory or level file */
901
902   int levels;           /* number of levels in level series */
903   int first_level;      /* first level number (to allow start with 0 or 1) */
904   int last_level;       /* last level number (automatically calculated) */
905   int sort_priority;    /* sort levels by 'sort_priority' and then by name */
906
907   boolean latest_engine;/* force level set to use the latest game engine */
908
909   boolean level_group;  /* directory contains more level series directories */
910   boolean parent_link;  /* entry links back to parent directory */
911   boolean in_user_dir;  /* user defined levels are stored in home directory */
912   boolean user_defined; /* levels in user directory and marked as "private" */
913   boolean readonly;     /* readonly levels can not be changed with editor */
914   boolean handicap;     /* level set has no handicap when set to "false" */
915   boolean skip_levels;  /* levels can be skipped when set to "true" */
916
917   int color;            /* color to use on selection screen for this level */
918   char *class_desc;     /* description of level series class */
919   int handicap_level;   /* number of the lowest unsolved level */
920
921   char *infotext;       /* optional text to describe the tree type (headline) */
922 };
923
924 typedef struct TreeInfo TreeInfo;
925 typedef struct TreeInfo LevelDirTree;
926 typedef struct TreeInfo ArtworkDirTree;
927 typedef struct TreeInfo GraphicsDirTree;
928 typedef struct TreeInfo SoundsDirTree;
929 typedef struct TreeInfo MusicDirTree;
930
931 struct ArtworkInfo
932 {
933   GraphicsDirTree *gfx_first;
934   GraphicsDirTree *gfx_current;
935   SoundsDirTree *snd_first;
936   SoundsDirTree *snd_current;
937   MusicDirTree *mus_first;
938   MusicDirTree *mus_current;
939
940   char *gfx_current_identifier;
941   char *snd_current_identifier;
942   char *mus_current_identifier;
943 };
944
945 struct ValueTextInfo
946 {
947   int value;
948   char *text;
949 };
950
951 struct ConfigInfo
952 {
953   char *token;
954   char *value;
955 };
956
957 struct ConfigTypeInfo
958 {
959   char *token;
960   char *value;
961   int type;
962 };
963
964 struct TokenIntPtrInfo
965 {
966   char *token;
967   int *value;
968 };
969
970 struct FileInfo
971 {
972   char *token;
973
974   char *default_filename;
975   char *filename;
976
977   char **default_parameter;                     /* array of file parameters */
978   char **parameter;                             /* array of file parameters */
979
980   boolean redefined;
981   boolean fallback_to_default;
982 };
983
984 struct SetupFileList
985 {
986   char *token;
987   char *value;
988
989   struct SetupFileList *next;
990 };
991
992 struct ListNodeInfo
993 {
994   char *source_filename;                        /* primary key for node list */
995   int num_references;
996 };
997
998 struct PropertyMapping
999 {
1000   int base_index;
1001   int ext1_index;
1002   int ext2_index;
1003   int ext3_index;
1004
1005   int artwork_index;
1006 };
1007
1008 struct ArtworkListInfo
1009 {
1010   int type;                                     /* type of artwork */
1011
1012   int num_file_list_entries;
1013   int num_dynamic_file_list_entries;
1014   struct FileInfo *file_list;                   /* static artwork file array */
1015   struct FileInfo *dynamic_file_list;           /* dynamic artwrk file array */
1016
1017   int num_suffix_list_entries;
1018   struct ConfigTypeInfo *suffix_list;           /* parameter suffixes array */
1019
1020   int num_base_prefixes;
1021   int num_ext1_suffixes;
1022   int num_ext2_suffixes;
1023   int num_ext3_suffixes;
1024   char **base_prefixes;                         /* base token prefixes array */
1025   char **ext1_suffixes;                         /* property suffixes array 1 */
1026   char **ext2_suffixes;                         /* property suffixes array 2 */
1027   char **ext3_suffixes;                         /* property suffixes array 3 */
1028
1029   int num_ignore_tokens;
1030   char **ignore_tokens;                         /* file tokens to be ignored */
1031
1032   int num_property_mapping_entries;
1033   struct PropertyMapping *property_mapping;     /* mapping token -> artwork */
1034
1035   int sizeof_artwork_list_entry;
1036
1037   struct ListNodeInfo **artwork_list;           /* static artwork node array */
1038   struct ListNodeInfo **dynamic_artwork_list;   /* dynamic artwrk node array */
1039   struct ListNode *content_list;                /* dynamic artwork node list */
1040
1041   void *(*load_artwork)(char *);                /* constructor function */
1042   void (*free_artwork)(void *);                 /* destructor function */
1043 };
1044
1045 struct XY
1046 {
1047   int x, y;
1048 };
1049
1050 struct Rect
1051 {
1052   int x, y;
1053   int width, height;
1054 };
1055
1056 struct MenuPosInfo
1057 {
1058   int x, y;
1059   int width, height;
1060   int align, valign;
1061 };
1062
1063 struct TextPosInfo
1064 {
1065   int x, y;
1066   int width, height;
1067   int align, valign;
1068   int size;
1069   int font, font_alt;
1070   boolean draw_masked;
1071   int sort_priority;
1072   int id;
1073 };
1074
1075
1076 /* ========================================================================= */
1077 /* exported variables                                                        */
1078 /* ========================================================================= */
1079
1080 extern struct ProgramInfo       program;
1081 extern struct OptionInfo        options;
1082 extern struct VideoSystemInfo   video;
1083 extern struct AudioSystemInfo   audio;
1084 extern struct GfxInfo           gfx;
1085 extern struct AnimInfo          anim;
1086 extern struct ArtworkInfo       artwork;
1087 extern struct JoystickInfo      joystick;
1088 extern struct SetupInfo         setup;
1089
1090 extern LevelDirTree            *leveldir_first_all;
1091 extern LevelDirTree            *leveldir_first;
1092 extern LevelDirTree            *leveldir_current;
1093 extern int                      level_nr;
1094
1095 extern Display                 *display;
1096 extern Visual                  *visual;
1097 extern int                      screen;
1098 extern Colormap                 cmap;
1099
1100 extern DrawWindow              *window;
1101 extern DrawBuffer              *backbuffer;
1102 extern DrawBuffer              *drawto;
1103
1104 extern int                      button_status;
1105 extern boolean                  motion_status;
1106
1107 extern int                      redraw_mask;
1108 extern int                      redraw_tiles;
1109
1110 extern int                      FrameCounter;
1111
1112
1113 /* function definitions */
1114
1115 void InitProgramInfo(char *, char *, char *, char *, char *, char *, char *,
1116                      char *, char *, char *, char *, char *, int);
1117
1118 void InitExitFunction(void (*exit_function)(int));
1119 void InitPlatformDependentStuff(void);
1120 void ClosePlatformDependentStuff(void);
1121
1122 void InitGfxFieldInfo(int, int, int, int, int, int, int, int, Bitmap *);
1123 void InitGfxDoor1Info(int, int, int, int);
1124 void InitGfxDoor2Info(int, int, int, int);
1125 void InitGfxScrollbufferInfo(int, int);
1126 void SetDrawDeactivationMask(int);
1127 void SetDrawBackgroundMask(int);
1128 void SetWindowBackgroundBitmap(Bitmap *);
1129 void SetMainBackgroundBitmap(Bitmap *);
1130 void SetDoorBackgroundBitmap(Bitmap *);
1131
1132 void InitVideoDisplay(void);
1133 void CloseVideoDisplay(void);
1134 void InitVideoBuffer(int, int, int, boolean);
1135 Bitmap *CreateBitmapStruct(void);
1136 Bitmap *CreateBitmap(int, int, int);
1137 void FreeBitmap(Bitmap *);
1138 void BlitBitmap(Bitmap *, Bitmap *, int, int, int, int, int, int);
1139 void FadeRectangle(Bitmap *bitmap, int, int, int, int, int, int, int,
1140                    void (*draw_border_function)(void));
1141 void FillRectangle(Bitmap *, int, int, int, int, Pixel);
1142 void ClearRectangle(Bitmap *, int, int, int, int);
1143 void ClearRectangleOnBackground(Bitmap *, int, int, int, int);
1144 void SetClipMask(Bitmap *, GC, Pixmap);
1145 void SetClipOrigin(Bitmap *, GC, int, int);
1146 void BlitBitmapMasked(Bitmap *, Bitmap *, int, int, int, int, int, int);
1147 boolean DrawingOnBackground(int, int);
1148 void BlitBitmapOnBackground(Bitmap *, Bitmap *, int, int, int, int, int, int);
1149 void DrawSimpleBlackLine(Bitmap *, int, int, int, int);
1150 void DrawSimpleWhiteLine(Bitmap *, int, int, int, int);
1151 void DrawLines(Bitmap *, struct XY *, int, Pixel);
1152 Pixel GetPixel(Bitmap *, int, int);
1153 Pixel GetPixelFromRGB(Bitmap *, unsigned int,unsigned int,unsigned int);
1154 Pixel GetPixelFromRGBcompact(Bitmap *, unsigned int);
1155
1156 void FlushDisplay(void);
1157 void SyncDisplay(void);
1158 void KeyboardAutoRepeatOn(void);
1159 void KeyboardAutoRepeatOff(void);
1160 boolean PointerInWindow(DrawWindow *);
1161 boolean SetVideoMode(boolean);
1162 boolean ChangeVideoModeIfNeeded(boolean);
1163
1164 Bitmap *LoadImage(char *);
1165 Bitmap *LoadCustomImage(char *);
1166 void ReloadCustomImage(Bitmap *, char *);
1167
1168 Bitmap *ZoomBitmap(Bitmap *, int, int);
1169 void CreateBitmapWithSmallBitmaps(Bitmap *, int);
1170 void ScaleBitmap(Bitmap *, int);
1171
1172 void SetMouseCursor(int);
1173
1174 void OpenAudio(void);
1175 void CloseAudio(void);
1176 void SetAudioMode(boolean);
1177
1178 void InitEventFilter(EventFilter);
1179 boolean PendingEvent(void);
1180 void NextEvent(Event *event);
1181 void PeekEvent(Event *event);
1182 Key GetEventKey(KeyEvent *, boolean);
1183 KeyMod HandleKeyModState(Key, int);
1184 KeyMod GetKeyModState();
1185 KeyMod GetKeyModStateFromEvents();
1186 boolean CheckCloseWindowEvent(ClientMessageEvent *);
1187
1188 void InitJoysticks();
1189 boolean ReadJoystick(int, int *, int *, boolean *, boolean *);
1190
1191 #endif /* SYSTEM_H */