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