rnd-20030413-1-src
[rocksndiamonds.git] / src / libgame / system.h
1 /***********************************************************
2 * Artsoft Retro-Game Library                               *
3 *----------------------------------------------------------*
4 * (c) 1994-2002 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 /* default input keys */
52 #define DEFAULT_KEY_LEFT        KSYM_Left
53 #define DEFAULT_KEY_RIGHT       KSYM_Right
54 #define DEFAULT_KEY_UP          KSYM_Up
55 #define DEFAULT_KEY_DOWN        KSYM_Down
56 #if defined(PLATFORM_MACOSX)
57 #define DEFAULT_KEY_SNAP        KSYM_Control_L
58 #define DEFAULT_KEY_BOMB        KSYM_KP_Enter
59 #else
60 #define DEFAULT_KEY_SNAP        KSYM_Shift_L
61 #define DEFAULT_KEY_BOMB        KSYM_Shift_R
62 #endif
63 #define DEFAULT_KEY_OKAY        KSYM_Return
64 #define DEFAULT_KEY_CANCEL      KSYM_Escape
65
66 /* default shortcut keys */
67 #define DEFAULT_KEY_SAVE_GAME   KSYM_F1
68 #define DEFAULT_KEY_LOAD_GAME   KSYM_F2
69 #define DEFAULT_KEY_TOGGLE_PAUSE KSYM_space
70
71
72 /* values for move directions and special "button" keys */
73 #define MV_BIT_LEFT             0
74 #define MV_BIT_RIGHT            1
75 #define MV_BIT_UP               2
76 #define MV_BIT_DOWN             3
77 #define NUM_DIRECTIONS          4
78
79 #define MV_NO_MOVING            0
80 #define MV_LEFT                 (1 << MV_BIT_LEFT)
81 #define MV_RIGHT                (1 << MV_BIT_RIGHT)
82 #define MV_UP                   (1 << MV_BIT_UP)
83 #define MV_DOWN                 (1 << MV_BIT_DOWN)
84 #define KEY_BUTTON_1            (1 << 4)
85 #define KEY_BUTTON_2            (1 << 5)
86 #define KEY_MOTION              (MV_LEFT | MV_RIGHT | MV_UP | MV_DOWN)
87 #define KEY_BUTTON              (KEY_BUTTON_1 | KEY_BUTTON_2)
88 #define KEY_ACTION              (KEY_MOTION | KEY_BUTTON)
89
90 #define MV_DIR_BIT(x)           ((x) == MV_LEFT  ? MV_BIT_LEFT  :       \
91                                  (x) == MV_RIGHT ? MV_BIT_RIGHT :       \
92                                  (x) == MV_UP    ? MV_BIT_UP    : MV_BIT_DOWN)
93
94
95 /* values for button status */
96 #define MB_NOT_PRESSED          FALSE
97 #define MB_NOT_RELEASED         TRUE
98 #define MB_RELEASED             FALSE
99 #define MB_PRESSED              TRUE
100 #define MB_MENU_CHOICE          FALSE
101 #define MB_MENU_MARK            TRUE
102 #define MB_MENU_INITIALIZE      (-1)
103 #define MB_MENU_LEAVE           (-2)
104 #define MB_LEFTBUTTON           1
105 #define MB_MIDDLEBUTTON         2
106 #define MB_RIGHTBUTTON          3
107
108
109 /* values for animation mode (frame order and direction) */
110 #define ANIM_NONE               0
111 #define ANIM_LOOP               (1 << 0)
112 #define ANIM_LINEAR             (1 << 1)
113 #define ANIM_PINGPONG           (1 << 2)
114 #define ANIM_PINGPONG2          (1 << 3)
115 #define ANIM_RANDOM             (1 << 4)
116 #define ANIM_REVERSE            (1 << 5)
117
118
119 /* values for redraw_mask */
120 #define REDRAW_NONE             (0)
121 #define REDRAW_ALL              (1 << 0)
122 #define REDRAW_FIELD            (1 << 1)
123 #define REDRAW_TILES            (1 << 2)
124 #define REDRAW_DOOR_1           (1 << 3)
125 #define REDRAW_VIDEO_1          (1 << 4)
126 #define REDRAW_VIDEO_2          (1 << 5)
127 #define REDRAW_VIDEO_3          (1 << 6)
128 #define REDRAW_MICROLEVEL       (1 << 7)
129 #define REDRAW_MICROLABEL       (1 << 8)
130 #define REDRAW_FROM_BACKBUFFER  (1 << 9)
131 #define REDRAW_DOOR_2           (REDRAW_VIDEO_1 | \
132                                  REDRAW_VIDEO_2 | \
133                                  REDRAW_VIDEO_3)
134 #define REDRAW_DOOR_3           (1 << 10)
135 #define REDRAW_DOORS            (REDRAW_DOOR_1 | \
136                                  REDRAW_DOOR_2 | \
137                                  REDRAW_DOOR_3)
138 #define REDRAW_MAIN             (REDRAW_FIELD | \
139                                  REDRAW_TILES | \
140                                  REDRAW_MICROLEVEL)
141 #define REDRAW_FPS              (1 << 11)
142 #define REDRAWTILES_THRESHOLD   (SCR_FIELDX * SCR_FIELDY / 2)
143
144
145 /* values for mouse cursor */
146 #define CURSOR_DEFAULT          0
147 #define CURSOR_PLAYFIELD        1
148
149
150 /* maximum number of parallel players supported by libgame functions */
151 #define MAX_PLAYERS             4
152
153 /* maximum allowed length of player name */
154 #define MAX_PLAYER_NAME_LEN     10
155
156 /* default name for empty highscore entry */
157 #define EMPTY_PLAYER_NAME       "no name"
158
159 /* default name for unknown player names */
160 #define ANONYMOUS_NAME          "anonymous"
161
162 /* default name for new levels */
163 #define NAMELESS_LEVEL_NAME     "nameless level"
164
165 /* default text for non-existant artwork */
166 #define NOT_AVAILABLE           "(not available)"
167
168 /* default value for undefined filename */
169 #define UNDEFINED_FILENAME      "[NONE]"
170
171 /* default value for undefined parameter */
172 #define ARG_DEFAULT             "[DEFAULT]"
173
174 /* default values for undefined configuration file parameters */
175 #define ARG_UNDEFINED           "-1000000"
176 #define ARG_UNDEFINED_VALUE     (atoi(ARG_UNDEFINED))
177
178 /* definitions for game sub-directories */
179 #ifndef RO_GAME_DIR
180 #define RO_GAME_DIR             "."
181 #endif
182
183 #ifndef RW_GAME_DIR
184 #define RW_GAME_DIR             "."
185 #endif
186
187 #define RO_BASE_PATH            RO_GAME_DIR
188 #define RW_BASE_PATH            RW_GAME_DIR
189
190 #define GRAPHICS_DIRECTORY      "graphics"
191 #define SOUNDS_DIRECTORY        "sounds"
192 #define MUSIC_DIRECTORY         "music"
193 #define LEVELS_DIRECTORY        "levels"
194 #define TAPES_DIRECTORY         "tapes"
195 #define SCORES_DIRECTORY        "scores"
196 #define DOCS_DIRECTORY          "docs"
197
198 #if !defined(PLATFORM_MSDOS)
199 #define GRAPHICS_SUBDIR         "gfx_classic"
200 #define SOUNDS_SUBDIR           "snd_classic"
201 #define MUSIC_SUBDIR            "mus_classic"
202 #else
203 #define GRAPHICS_SUBDIR         "gfx_orig"
204 #define SOUNDS_SUBDIR           "snd_orig"
205 #define MUSIC_SUBDIR            "mus_orig"
206 #endif
207
208 /* areas in bitmap PIX_DOOR */
209 /* meaning in PIX_DB_DOOR: (3 PAGEs)
210    PAGEX1: 1. buffer for DOOR_1
211    PAGEX2: 2. buffer for DOOR_1
212    PAGEX3: buffer for animations
213 */
214
215 #define DOOR_GFX_PAGESIZE       (gfx.dxsize)
216 #define DOOR_GFX_PAGEX1         (0 * DOOR_GFX_PAGESIZE)
217 #define DOOR_GFX_PAGEX2         (1 * DOOR_GFX_PAGESIZE)
218 #define DOOR_GFX_PAGEX3         (2 * DOOR_GFX_PAGESIZE)
219 #define DOOR_GFX_PAGEX4         (3 * DOOR_GFX_PAGESIZE)
220 #define DOOR_GFX_PAGEX5         (4 * DOOR_GFX_PAGESIZE)
221 #define DOOR_GFX_PAGEX6         (5 * DOOR_GFX_PAGESIZE)
222 #define DOOR_GFX_PAGEX7         (6 * DOOR_GFX_PAGESIZE)
223 #define DOOR_GFX_PAGEX8         (7 * DOOR_GFX_PAGESIZE)
224 #define DOOR_GFX_PAGEY1         (0)
225 #define DOOR_GFX_PAGEY2         (gfx.dysize)
226
227 /* functions for version handling */
228 #define VERSION_IDENT(x,y,z)    ((x) * 10000 + (y) * 100 + (z))
229 #define VERSION_MAJOR(x)        ((x) / 10000)
230 #define VERSION_MINOR(x)        (((x) % 10000) / 100)
231 #define VERSION_PATCH(x)        ((x) % 100)
232
233 /* functions for parent/child process identification */
234 #if defined(PLATFORM_UNIX)
235 #define IS_PARENT_PROCESS()     (audio.mixer_pid != getpid())
236 #define IS_CHILD_PROCESS()      (audio.mixer_pid == getpid())
237 #else
238 #define IS_PARENT_PROCESS()     TRUE
239 #define IS_CHILD_PROCESS()      FALSE
240 #endif
241
242 /* type definitions */
243 typedef int (*EventFilter)(const Event *);
244
245
246 /* structure definitions */
247
248 struct ProgramInfo
249 {
250   char *command_basename;
251   char *userdata_directory;
252
253   char *program_title;
254   char *window_title;
255   char *icon_title;
256
257   char *x11_icon_filename;
258   char *x11_iconmask_filename;
259   char *msdos_cursor_filename;
260
261   char *cookie_prefix;
262   char *filename_prefix;        /* prefix to cut off from DOS filenames */
263
264   int version_major;
265   int version_minor;
266   int version_patch;
267
268   void (*exit_function)(int);
269 };
270
271 struct OptionInfo
272 {
273   char *display_name;
274   char *server_host;
275   int server_port;
276
277   char *ro_base_directory;
278   char *rw_base_directory;
279   char *level_directory;
280   char *graphics_directory;
281   char *sounds_directory;
282   char *music_directory;
283   char *docs_directory;
284   char *execute_command;
285
286   boolean serveronly;
287   boolean network;
288   boolean verbose;
289   boolean debug;
290 };
291
292 struct VideoSystemInfo
293 {
294   int default_depth;
295   int width, height, depth;
296   boolean fullscreen_available;
297   boolean fullscreen_enabled;
298 };
299
300 struct AudioSystemInfo
301 {
302   boolean sound_available;
303   boolean loops_available;
304   boolean music_available;
305
306   boolean sound_enabled;
307   boolean sound_deactivated;    /* for temporarily disabling sound */
308
309   int mixer_pipe[2];
310   int mixer_pid;
311   char *device_name;
312   int device_fd;
313
314   int num_channels;
315   int music_channel;
316   int first_sound_channel;
317 };
318
319 struct FontBitmapInfo
320 {
321   Bitmap *bitmap;
322   int src_x, src_y;             /* start position of animation frames */
323   int width, height;            /* width/height of each animation frame */
324   int draw_x, draw_y;           /* offset for drawing font characters */
325   int num_chars;
326   int num_chars_per_line;
327
328 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
329   Pixmap *clip_mask;            /* single-char-only clip mask array for X11 */
330   int last_num_chars;           /* to free last font clip masks */
331 #endif
332 };
333
334 struct GfxInfo
335 {
336   int sx, sy;
337   int sxsize, sysize;
338   int real_sx, real_sy;
339   int full_sxsize, full_sysize;
340   int scrollbuffer_width, scrollbuffer_height;
341
342   int dx, dy;
343   int dxsize, dysize;
344
345   int vx, vy;
346   int vxsize, vysize;
347
348   int draw_deactivation_mask;
349   int draw_background_mask;
350
351   Bitmap *field_save_buffer;
352
353   Bitmap *background_bitmap;
354   int background_bitmap_mask;
355
356   int num_fonts;
357   struct FontBitmapInfo *font_bitmap_info;
358   int (*select_font_function)(int);
359
360   int anim_random_frame;
361 };
362
363 struct JoystickInfo
364 {
365   int status;
366   int fd[MAX_PLAYERS];          /* file descriptor of player's joystick */
367 };
368
369 struct SetupJoystickInfo
370 {
371   char *device_name;            /* device name of player's joystick */
372
373   int xleft, xmiddle, xright;
374   int yupper, ymiddle, ylower;
375   int snap;
376   int bomb;
377 };
378
379 struct SetupKeyboardInfo
380 {
381   Key left;
382   Key right;
383   Key up;
384   Key down;
385   Key snap;
386   Key bomb;
387 };
388
389 struct SetupInputInfo
390 {
391   boolean use_joystick;
392   struct SetupJoystickInfo joy;
393   struct SetupKeyboardInfo key;
394 };
395
396 struct SetupEditorInfo
397 {
398   boolean el_boulderdash;
399   boolean el_emerald_mine;
400   boolean el_more;
401   boolean el_sokoban;
402   boolean el_supaplex;
403   boolean el_diamond_caves;
404   boolean el_dx_boulderdash;
405   boolean el_chars;
406   boolean el_custom;
407 };
408
409 struct SetupShortcutInfo
410 {
411   Key save_game;
412   Key load_game;
413   Key toggle_pause;
414 };
415
416 struct SetupSystemInfo
417 {
418   char *sdl_audiodriver;
419   int audio_fragment_size;
420 };
421
422 struct SetupInfo
423 {
424   char *player_name;
425
426   boolean sound;
427   boolean sound_loops;
428   boolean sound_music;
429   boolean sound_simple;
430   boolean toons;
431   boolean double_buffering;
432   boolean direct_draw;          /* !double_buffering (redundant!) */
433   boolean scroll_delay;
434   boolean soft_scrolling;
435   boolean fading;
436   boolean autorecord;
437   boolean quick_doors;
438   boolean team_mode;
439   boolean handicap;
440   boolean time_limit;
441   boolean fullscreen;
442   boolean ask_on_escape;
443
444   char *graphics_set;
445   char *sounds_set;
446   char *music_set;
447   boolean override_level_graphics;
448   boolean override_level_sounds;
449   boolean override_level_music;
450
451   struct SetupEditorInfo editor;
452   struct SetupShortcutInfo shortcut;
453   struct SetupInputInfo input[MAX_PLAYERS];
454   struct SetupSystemInfo system;
455   struct OptionInfo options;
456 };
457
458 #define TREE_TYPE_GENERIC               0
459 #define TREE_TYPE_GRAPHICS_DIR          1
460 #define TREE_TYPE_SOUNDS_DIR            2
461 #define TREE_TYPE_MUSIC_DIR             3
462 #define TREE_TYPE_LEVEL_DIR             4
463
464 #define ARTWORK_TYPE_GRAPHICS           TREE_TYPE_GRAPHICS_DIR
465 #define ARTWORK_TYPE_SOUNDS             TREE_TYPE_SOUNDS_DIR
466 #define ARTWORK_TYPE_MUSIC              TREE_TYPE_MUSIC_DIR
467
468 struct TreeInfo
469 {
470   struct TreeInfo **node_top;           /* topmost node in tree */
471   struct TreeInfo *node_parent;         /* parent level directory info */
472   struct TreeInfo *node_group;          /* level group sub-directory info */
473   struct TreeInfo *next;                /* next level series structure node */
474
475   int cl_first;         /* internal control field for setup screen */
476   int cl_cursor;        /* internal control field for setup screen */
477
478   int type;             /* type of tree content */
479
480   /* fields for "type == TREE_TYPE_LEVEL_DIR" */
481
482   char *filename;       /* tree info sub-directory basename (may be ".") */
483   char *fullpath;       /* complete path relative to tree base directory */
484   char *basepath;       /* absolute base path of tree base directory */
485   char *identifier;     /* identifier string for configuration files */
486   char *name;           /* tree info name, as displayed in selection menues */
487   char *name_sorting;   /* optional sorting name for correct name sorting */
488   char *author;         /* level or artwork author name */
489   char *imported_from;  /* optional comment for imported levels or artwork */
490
491   char *graphics_set;   /* optional custom graphics set (level tree only) */
492   char *sounds_set;     /* optional custom sounds set (level tree only) */
493   char *music_set;      /* optional custom music set (level tree only) */
494   char *graphics_path;  /* path to optional custom graphics set (level only) */
495   char *sounds_path;    /* path to optional custom sounds set (level only) */
496   char *music_path;     /* path to optional custom music set (level only) */
497
498   int levels;           /* number of levels in level series */
499   int first_level;      /* first level number (to allow start with 0 or 1) */
500   int last_level;       /* last level number (automatically calculated) */
501   int sort_priority;    /* sort levels by 'sort_priority' and then by name */
502
503   boolean level_group;  /* directory contains more level series directories */
504   boolean parent_link;  /* entry links back to parent directory */
505   boolean user_defined; /* user defined levels are stored in home directory */
506   boolean readonly;     /* readonly levels can not be changed with editor */
507
508   int color;            /* color to use on selection screen for this level */
509   char *class_desc;     /* description of level series class */
510   int handicap_level;   /* number of the lowest unsolved level */
511 };
512
513 typedef struct TreeInfo TreeInfo;
514 typedef struct TreeInfo LevelDirTree;
515 typedef struct TreeInfo ArtworkDirTree;
516 typedef struct TreeInfo GraphicsDirTree;
517 typedef struct TreeInfo SoundsDirTree;
518 typedef struct TreeInfo MusicDirTree;
519
520 struct ArtworkInfo
521 {
522   GraphicsDirTree *gfx_first;
523   GraphicsDirTree *gfx_current;
524   SoundsDirTree *snd_first;
525   SoundsDirTree *snd_current;
526   MusicDirTree *mus_first;
527   MusicDirTree *mus_current;
528
529   char *gfx_current_identifier;
530   char *snd_current_identifier;
531   char *mus_current_identifier;
532 };
533
534 struct ValueTextInfo
535 {
536   int value;
537   char *text;
538 };
539
540 struct ConfigInfo
541 {
542   char *token;
543   char *value;
544   int type;
545 };
546
547 struct FileInfo
548 {
549   char *token;
550
551   char *default_filename;
552   char *filename;
553
554   char **default_parameter;                     /* array of file parameters */
555   char **parameter;                             /* array of file parameters */
556
557   boolean redefined;
558 };
559
560 struct SetupFileList
561 {
562   char *token;
563   char *value;
564
565   struct SetupFileList *next;
566 };
567
568 struct ListNodeInfo
569 {
570   char *source_filename;                        /* primary key for node list */
571   int num_references;
572 };
573
574 struct PropertyMapping
575 {
576   int base_index;
577   int ext1_index;
578   int ext2_index;
579   int ext3_index;
580
581   int artwork_index;
582 };
583
584 struct ArtworkListInfo
585 {
586   int type;                                     /* type of artwork */
587
588   int num_file_list_entries;
589   int num_dynamic_file_list_entries;
590   struct FileInfo *file_list;                   /* static artwork file array */
591   struct FileInfo *dynamic_file_list;           /* dynamic artwrk file array */
592
593   int num_suffix_list_entries;
594   struct ConfigInfo *suffix_list;               /* parameter suffixes array */
595
596   int num_base_prefixes;
597   int num_ext1_suffixes;
598   int num_ext2_suffixes;
599   int num_ext3_suffixes;
600   char **base_prefixes;                         /* base token prefixes array */
601   char **ext1_suffixes;                         /* property suffixes array 1 */
602   char **ext2_suffixes;                         /* property suffixes array 2 */
603   char **ext3_suffixes;                         /* property suffixes array 3 */
604
605   int num_ignore_tokens;
606   char **ignore_tokens;                         /* file tokens to be ignored */
607
608   int num_property_mapping_entries;
609   struct PropertyMapping *property_mapping;     /* mapping token -> artwork */
610
611   int sizeof_artwork_list_entry;
612
613   struct ListNodeInfo **artwork_list;           /* static artwork node array */
614   struct ListNodeInfo **dynamic_artwork_list;   /* dynamic artwrk node array */
615   struct ListNode *content_list;                /* dynamic artwork node list */
616
617   void *(*load_artwork)(char *);                /* constructor function */
618   void (*free_artwork)(void *);                 /* destructor function */
619 };
620
621
622 /* ========================================================================= */
623 /* exported variables                                                        */
624 /* ========================================================================= */
625
626 extern struct ProgramInfo       program;
627 extern struct OptionInfo        options;
628 extern struct VideoSystemInfo   video;
629 extern struct AudioSystemInfo   audio;
630 extern struct GfxInfo           gfx;
631 extern struct AnimInfo          anim;
632 extern struct ArtworkInfo       artwork;
633 extern struct JoystickInfo      joystick;
634 extern struct SetupInfo         setup;
635
636 extern LevelDirTree            *leveldir_first;
637 extern LevelDirTree            *leveldir_current;
638 extern int                      level_nr;
639
640 extern Display                 *display;
641 extern Visual                  *visual;
642 extern int                      screen;
643 extern Colormap                 cmap;
644
645 extern DrawWindow              *window;
646 extern DrawBuffer              *backbuffer;
647 extern DrawBuffer              *drawto;
648
649 extern int                      button_status;
650 extern boolean                  motion_status;
651
652 extern int                      redraw_mask;
653 extern int                      redraw_tiles;
654
655 extern int                      FrameCounter;
656
657
658 /* function definitions */
659
660 void InitProgramInfo(char *, char *, char *, char *, char *, char *, char *,
661                      char *, char *, char *, int);
662
663 void InitExitFunction(void (*exit_function)(int));
664 void InitPlatformDependantStuff(void);
665 void ClosePlatformDependantStuff(void);
666
667 void InitGfxFieldInfo(int, int, int, int, int, int, int, int, Bitmap *);
668 void InitGfxDoor1Info(int, int, int, int);
669 void InitGfxDoor2Info(int, int, int, int);
670 void InitGfxScrollbufferInfo(int, int);
671 void SetDrawDeactivationMask(int);
672 void SetDrawBackgroundMask(int);
673 void SetMainBackgroundBitmap(Bitmap *);
674 void SetDoorBackgroundBitmap(Bitmap *);
675
676 inline void InitVideoDisplay(void);
677 inline void CloseVideoDisplay(void);
678 inline void InitVideoBuffer(DrawBuffer **,DrawWindow **, int,int,int, boolean);
679 inline Bitmap *CreateBitmapStruct(void);
680 inline Bitmap *CreateBitmap(int, int, int);
681 inline void FreeBitmap(Bitmap *);
682 inline void BlitBitmap(Bitmap *, Bitmap *, int, int, int, int, int, int);
683 inline void FillRectangle(Bitmap *, int, int, int, int, Pixel);
684 inline void ClearRectangle(Bitmap *, int, int, int, int);
685 inline void ClearRectangleOnBackground(Bitmap *, int, int, int, int);
686 inline void SetClipMask(Bitmap *, GC, Pixmap);
687 inline void SetClipOrigin(Bitmap *, GC, int, int);
688 inline void BlitBitmapMasked(Bitmap *, Bitmap *, int, int, int, int, int, int);
689 inline boolean DrawingOnBackground(int, int);
690 inline void BlitBitmapOnBackground(Bitmap *, Bitmap *, int, int, int, int, int,
691                                    int);
692 inline void DrawSimpleWhiteLine(Bitmap *, int, int, int, int);
693 inline void DrawLines(Bitmap *, struct XY *, int, Pixel);
694 inline Pixel GetPixel(Bitmap *, int, int);
695 inline Pixel GetPixelFromRGB(Bitmap *, unsigned int,unsigned int,unsigned int);
696 inline Pixel GetPixelFromRGBcompact(Bitmap *, unsigned int);
697
698 inline void FlushDisplay(void);
699 inline void SyncDisplay(void);
700 inline void KeyboardAutoRepeatOn(void);
701 inline void KeyboardAutoRepeatOff(void);
702 inline boolean PointerInWindow(DrawWindow *);
703 inline boolean SetVideoMode(boolean);
704 inline boolean ChangeVideoModeIfNeeded(boolean);
705
706 Bitmap *LoadImage(char *);
707 Bitmap *LoadCustomImage(char *);
708 void ReloadCustomImage(Bitmap *, char *);
709
710 Bitmap *ZoomBitmap(Bitmap *, int, int);
711 void CreateBitmapWithSmallBitmaps(Bitmap *);
712
713 void SetMouseCursor(int);
714
715 inline void OpenAudio(void);
716 inline void CloseAudio(void);
717 inline void SetAudioMode(boolean);
718
719 inline void InitEventFilter(EventFilter);
720 inline boolean PendingEvent(void);
721 inline void NextEvent(Event *event);
722 inline Key GetEventKey(KeyEvent *, boolean);
723 inline boolean CheckCloseWindowEvent(ClientMessageEvent *);
724
725 inline void InitJoysticks();
726 inline boolean ReadJoystick(int, int *, int *, boolean *, boolean *);
727
728 #endif /* SYSTEM_H */