rnd-20030417-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 #define HAS_CHILD_PROCESS()     (audio.mixer_pid > 0)
238 #else
239 #define IS_PARENT_PROCESS()     TRUE
240 #define IS_CHILD_PROCESS()      FALSE
241 #define HAS_CHILD_PROCESS()     FALSE
242 #endif
243
244 /* type definitions */
245 typedef int (*EventFilter)(const Event *);
246
247
248 /* structure definitions */
249
250 struct ProgramInfo
251 {
252   char *command_basename;
253   char *userdata_directory;
254
255   char *program_title;
256   char *window_title;
257   char *icon_title;
258
259   char *x11_icon_filename;
260   char *x11_iconmask_filename;
261   char *msdos_cursor_filename;
262
263   char *cookie_prefix;
264   char *filename_prefix;        /* prefix to cut off from DOS filenames */
265
266   int version_major;
267   int version_minor;
268   int version_patch;
269
270   void (*exit_function)(int);
271 };
272
273 struct OptionInfo
274 {
275   char *display_name;
276   char *server_host;
277   int server_port;
278
279   char *ro_base_directory;
280   char *rw_base_directory;
281   char *level_directory;
282   char *graphics_directory;
283   char *sounds_directory;
284   char *music_directory;
285   char *docs_directory;
286   char *execute_command;
287
288   boolean serveronly;
289   boolean network;
290   boolean verbose;
291   boolean debug;
292 };
293
294 struct VideoSystemInfo
295 {
296   int default_depth;
297   int width, height, depth;
298   boolean fullscreen_available;
299   boolean fullscreen_enabled;
300 };
301
302 struct AudioSystemInfo
303 {
304   boolean sound_available;
305   boolean loops_available;
306   boolean music_available;
307
308   boolean sound_enabled;
309   boolean sound_deactivated;    /* for temporarily disabling sound */
310
311   int mixer_pipe[2];
312   int mixer_pid;
313   char *device_name;
314   int device_fd;
315
316   int num_channels;
317   int music_channel;
318   int first_sound_channel;
319 };
320
321 struct FontBitmapInfo
322 {
323   Bitmap *bitmap;
324   int src_x, src_y;             /* start position of animation frames */
325   int width, height;            /* width/height of each animation frame */
326   int draw_x, draw_y;           /* offset for drawing font characters */
327   int num_chars;
328   int num_chars_per_line;
329
330 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
331   Pixmap *clip_mask;            /* single-char-only clip mask array for X11 */
332 #endif
333 };
334
335 struct GfxInfo
336 {
337   int sx, sy;
338   int sxsize, sysize;
339   int real_sx, real_sy;
340   int full_sxsize, full_sysize;
341   int scrollbuffer_width, scrollbuffer_height;
342
343   int dx, dy;
344   int dxsize, dysize;
345
346   int vx, vy;
347   int vxsize, vysize;
348
349   int draw_deactivation_mask;
350   int draw_background_mask;
351
352   Bitmap *field_save_buffer;
353
354   Bitmap *background_bitmap;
355   int background_bitmap_mask;
356
357   int num_fonts;
358   struct FontBitmapInfo *font_bitmap_info;
359   int (*select_font_function)(int);
360
361   int anim_random_frame;
362 };
363
364 struct JoystickInfo
365 {
366   int status;
367   int fd[MAX_PLAYERS];          /* file descriptor of player's joystick */
368 };
369
370 struct SetupJoystickInfo
371 {
372   char *device_name;            /* device name of player's joystick */
373
374   int xleft, xmiddle, xright;
375   int yupper, ymiddle, ylower;
376   int snap;
377   int bomb;
378 };
379
380 struct SetupKeyboardInfo
381 {
382   Key left;
383   Key right;
384   Key up;
385   Key down;
386   Key snap;
387   Key bomb;
388 };
389
390 struct SetupInputInfo
391 {
392   boolean use_joystick;
393   struct SetupJoystickInfo joy;
394   struct SetupKeyboardInfo key;
395 };
396
397 struct SetupEditorInfo
398 {
399   boolean el_boulderdash;
400   boolean el_emerald_mine;
401   boolean el_more;
402   boolean el_sokoban;
403   boolean el_supaplex;
404   boolean el_diamond_caves;
405   boolean el_dx_boulderdash;
406   boolean el_chars;
407   boolean el_custom;
408 };
409
410 struct SetupShortcutInfo
411 {
412   Key save_game;
413   Key load_game;
414   Key toggle_pause;
415 };
416
417 struct SetupSystemInfo
418 {
419   char *sdl_audiodriver;
420   int audio_fragment_size;
421 };
422
423 struct SetupInfo
424 {
425   char *player_name;
426
427   boolean sound;
428   boolean sound_loops;
429   boolean sound_music;
430   boolean sound_simple;
431   boolean toons;
432   boolean double_buffering;
433   boolean direct_draw;          /* !double_buffering (redundant!) */
434   boolean scroll_delay;
435   boolean soft_scrolling;
436   boolean fading;
437   boolean autorecord;
438   boolean quick_doors;
439   boolean team_mode;
440   boolean handicap;
441   boolean time_limit;
442   boolean fullscreen;
443   boolean ask_on_escape;
444
445   char *graphics_set;
446   char *sounds_set;
447   char *music_set;
448   boolean override_level_graphics;
449   boolean override_level_sounds;
450   boolean override_level_music;
451
452   struct SetupEditorInfo editor;
453   struct SetupShortcutInfo shortcut;
454   struct SetupInputInfo input[MAX_PLAYERS];
455   struct SetupSystemInfo system;
456   struct OptionInfo options;
457 };
458
459 #define TREE_TYPE_GENERIC               0
460 #define TREE_TYPE_GRAPHICS_DIR          1
461 #define TREE_TYPE_SOUNDS_DIR            2
462 #define TREE_TYPE_MUSIC_DIR             3
463 #define TREE_TYPE_LEVEL_DIR             4
464
465 #define ARTWORK_TYPE_GRAPHICS           TREE_TYPE_GRAPHICS_DIR
466 #define ARTWORK_TYPE_SOUNDS             TREE_TYPE_SOUNDS_DIR
467 #define ARTWORK_TYPE_MUSIC              TREE_TYPE_MUSIC_DIR
468
469 struct TreeInfo
470 {
471   struct TreeInfo **node_top;           /* topmost node in tree */
472   struct TreeInfo *node_parent;         /* parent level directory info */
473   struct TreeInfo *node_group;          /* level group sub-directory info */
474   struct TreeInfo *next;                /* next level series structure node */
475
476   int cl_first;         /* internal control field for setup screen */
477   int cl_cursor;        /* internal control field for setup screen */
478
479   int type;             /* type of tree content */
480
481   /* fields for "type == TREE_TYPE_LEVEL_DIR" */
482
483   char *filename;       /* tree info sub-directory basename (may be ".") */
484   char *fullpath;       /* complete path relative to tree base directory */
485   char *basepath;       /* absolute base path of tree base directory */
486   char *identifier;     /* identifier string for configuration files */
487   char *name;           /* tree info name, as displayed in selection menues */
488   char *name_sorting;   /* optional sorting name for correct name sorting */
489   char *author;         /* level or artwork author name */
490   char *imported_from;  /* optional comment for imported levels or artwork */
491
492   char *graphics_set;   /* optional custom graphics set (level tree only) */
493   char *sounds_set;     /* optional custom sounds set (level tree only) */
494   char *music_set;      /* optional custom music set (level tree only) */
495   char *graphics_path;  /* path to optional custom graphics set (level only) */
496   char *sounds_path;    /* path to optional custom sounds set (level only) */
497   char *music_path;     /* path to optional custom music set (level only) */
498
499   int levels;           /* number of levels in level series */
500   int first_level;      /* first level number (to allow start with 0 or 1) */
501   int last_level;       /* last level number (automatically calculated) */
502   int sort_priority;    /* sort levels by 'sort_priority' and then by name */
503
504   boolean level_group;  /* directory contains more level series directories */
505   boolean parent_link;  /* entry links back to parent directory */
506   boolean user_defined; /* user defined levels are stored in home directory */
507   boolean readonly;     /* readonly levels can not be changed with editor */
508
509   int color;            /* color to use on selection screen for this level */
510   char *class_desc;     /* description of level series class */
511   int handicap_level;   /* number of the lowest unsolved level */
512 };
513
514 typedef struct TreeInfo TreeInfo;
515 typedef struct TreeInfo LevelDirTree;
516 typedef struct TreeInfo ArtworkDirTree;
517 typedef struct TreeInfo GraphicsDirTree;
518 typedef struct TreeInfo SoundsDirTree;
519 typedef struct TreeInfo MusicDirTree;
520
521 struct ArtworkInfo
522 {
523   GraphicsDirTree *gfx_first;
524   GraphicsDirTree *gfx_current;
525   SoundsDirTree *snd_first;
526   SoundsDirTree *snd_current;
527   MusicDirTree *mus_first;
528   MusicDirTree *mus_current;
529
530   char *gfx_current_identifier;
531   char *snd_current_identifier;
532   char *mus_current_identifier;
533 };
534
535 struct ValueTextInfo
536 {
537   int value;
538   char *text;
539 };
540
541 struct ConfigInfo
542 {
543   char *token;
544   char *value;
545   int type;
546 };
547
548 struct FileInfo
549 {
550   char *token;
551
552   char *default_filename;
553   char *filename;
554
555   char **default_parameter;                     /* array of file parameters */
556   char **parameter;                             /* array of file parameters */
557
558   boolean redefined;
559 };
560
561 struct SetupFileList
562 {
563   char *token;
564   char *value;
565
566   struct SetupFileList *next;
567 };
568
569 struct ListNodeInfo
570 {
571   char *source_filename;                        /* primary key for node list */
572   int num_references;
573 };
574
575 struct PropertyMapping
576 {
577   int base_index;
578   int ext1_index;
579   int ext2_index;
580   int ext3_index;
581
582   int artwork_index;
583 };
584
585 struct ArtworkListInfo
586 {
587   int type;                                     /* type of artwork */
588
589   int num_file_list_entries;
590   int num_dynamic_file_list_entries;
591   struct FileInfo *file_list;                   /* static artwork file array */
592   struct FileInfo *dynamic_file_list;           /* dynamic artwrk file array */
593
594   int num_suffix_list_entries;
595   struct ConfigInfo *suffix_list;               /* parameter suffixes array */
596
597   int num_base_prefixes;
598   int num_ext1_suffixes;
599   int num_ext2_suffixes;
600   int num_ext3_suffixes;
601   char **base_prefixes;                         /* base token prefixes array */
602   char **ext1_suffixes;                         /* property suffixes array 1 */
603   char **ext2_suffixes;                         /* property suffixes array 2 */
604   char **ext3_suffixes;                         /* property suffixes array 3 */
605
606   int num_ignore_tokens;
607   char **ignore_tokens;                         /* file tokens to be ignored */
608
609   int num_property_mapping_entries;
610   struct PropertyMapping *property_mapping;     /* mapping token -> artwork */
611
612   int sizeof_artwork_list_entry;
613
614   struct ListNodeInfo **artwork_list;           /* static artwork node array */
615   struct ListNodeInfo **dynamic_artwork_list;   /* dynamic artwrk node array */
616   struct ListNode *content_list;                /* dynamic artwork node list */
617
618   void *(*load_artwork)(char *);                /* constructor function */
619   void (*free_artwork)(void *);                 /* destructor function */
620 };
621
622
623 /* ========================================================================= */
624 /* exported variables                                                        */
625 /* ========================================================================= */
626
627 extern struct ProgramInfo       program;
628 extern struct OptionInfo        options;
629 extern struct VideoSystemInfo   video;
630 extern struct AudioSystemInfo   audio;
631 extern struct GfxInfo           gfx;
632 extern struct AnimInfo          anim;
633 extern struct ArtworkInfo       artwork;
634 extern struct JoystickInfo      joystick;
635 extern struct SetupInfo         setup;
636
637 extern LevelDirTree            *leveldir_first;
638 extern LevelDirTree            *leveldir_current;
639 extern int                      level_nr;
640
641 extern Display                 *display;
642 extern Visual                  *visual;
643 extern int                      screen;
644 extern Colormap                 cmap;
645
646 extern DrawWindow              *window;
647 extern DrawBuffer              *backbuffer;
648 extern DrawBuffer              *drawto;
649
650 extern int                      button_status;
651 extern boolean                  motion_status;
652
653 extern int                      redraw_mask;
654 extern int                      redraw_tiles;
655
656 extern int                      FrameCounter;
657
658
659 /* function definitions */
660
661 void InitProgramInfo(char *, char *, char *, char *, char *, char *, char *,
662                      char *, char *, char *, int);
663
664 void InitExitFunction(void (*exit_function)(int));
665 void InitPlatformDependantStuff(void);
666 void ClosePlatformDependantStuff(void);
667
668 void InitGfxFieldInfo(int, int, int, int, int, int, int, int, Bitmap *);
669 void InitGfxDoor1Info(int, int, int, int);
670 void InitGfxDoor2Info(int, int, int, int);
671 void InitGfxScrollbufferInfo(int, int);
672 void SetDrawDeactivationMask(int);
673 void SetDrawBackgroundMask(int);
674 void SetMainBackgroundBitmap(Bitmap *);
675 void SetDoorBackgroundBitmap(Bitmap *);
676
677 inline void InitVideoDisplay(void);
678 inline void CloseVideoDisplay(void);
679 inline void InitVideoBuffer(DrawBuffer **,DrawWindow **, int,int,int, boolean);
680 inline Bitmap *CreateBitmapStruct(void);
681 inline Bitmap *CreateBitmap(int, int, int);
682 inline void FreeBitmap(Bitmap *);
683 inline void BlitBitmap(Bitmap *, Bitmap *, int, int, int, int, int, int);
684 inline void FillRectangle(Bitmap *, int, int, int, int, Pixel);
685 inline void ClearRectangle(Bitmap *, int, int, int, int);
686 inline void ClearRectangleOnBackground(Bitmap *, int, int, int, int);
687 inline void SetClipMask(Bitmap *, GC, Pixmap);
688 inline void SetClipOrigin(Bitmap *, GC, int, int);
689 inline void BlitBitmapMasked(Bitmap *, Bitmap *, int, int, int, int, int, int);
690 inline boolean DrawingOnBackground(int, int);
691 inline void BlitBitmapOnBackground(Bitmap *, Bitmap *, int, int, int, int, int,
692                                    int);
693 inline void DrawSimpleWhiteLine(Bitmap *, int, int, int, int);
694 inline void DrawLines(Bitmap *, struct XY *, int, Pixel);
695 inline Pixel GetPixel(Bitmap *, int, int);
696 inline Pixel GetPixelFromRGB(Bitmap *, unsigned int,unsigned int,unsigned int);
697 inline Pixel GetPixelFromRGBcompact(Bitmap *, unsigned int);
698
699 inline void FlushDisplay(void);
700 inline void SyncDisplay(void);
701 inline void KeyboardAutoRepeatOn(void);
702 inline void KeyboardAutoRepeatOff(void);
703 inline boolean PointerInWindow(DrawWindow *);
704 inline boolean SetVideoMode(boolean);
705 inline boolean ChangeVideoModeIfNeeded(boolean);
706
707 Bitmap *LoadImage(char *);
708 Bitmap *LoadCustomImage(char *);
709 void ReloadCustomImage(Bitmap *, char *);
710
711 Bitmap *ZoomBitmap(Bitmap *, int, int);
712 void CreateBitmapWithSmallBitmaps(Bitmap *);
713
714 void SetMouseCursor(int);
715
716 inline void OpenAudio(void);
717 inline void CloseAudio(void);
718 inline void SetAudioMode(boolean);
719
720 inline void InitEventFilter(EventFilter);
721 inline boolean PendingEvent(void);
722 inline void NextEvent(Event *event);
723 inline Key GetEventKey(KeyEvent *, boolean);
724 inline boolean CheckCloseWindowEvent(ClientMessageEvent *);
725
726 inline void InitJoysticks();
727 inline boolean ReadJoystick(int, int *, int *, boolean *, boolean *);
728
729 #endif /* SYSTEM_H */