2002-04-12 21:26:59 +00:00
|
|
|
/* Interface to what's below ScummVM */
|
|
|
|
|
|
|
|
class OSystem {
|
|
|
|
public:
|
|
|
|
typedef int ThreadProc(void *param);
|
2002-04-14 18:13:08 +00:00
|
|
|
typedef void SoundProc(void *param, byte *buf, int len);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
struct Event {
|
|
|
|
int event_code;
|
|
|
|
struct {
|
|
|
|
uint16 ascii;
|
|
|
|
byte flags;
|
|
|
|
int keycode;
|
|
|
|
} kbd;
|
|
|
|
struct {
|
|
|
|
int x,y;
|
|
|
|
} mouse;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
EVENT_KEYDOWN = 1,
|
|
|
|
// EVENT_KEYUP = 2,
|
|
|
|
EVENT_MOUSEMOVE = 3,
|
|
|
|
EVENT_LBUTTONDOWN = 4,
|
|
|
|
EVENT_LBUTTONUP = 5,
|
|
|
|
EVENT_RBUTTONDOWN = 6,
|
|
|
|
EVENT_RBUTTONUP = 7,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
KBD_CTRL = 1,
|
|
|
|
KBD_ALT = 2,
|
|
|
|
KBD_SHIFT = 4,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
2002-04-14 18:13:08 +00:00
|
|
|
PROP_TOGGLE_FULLSCREEN = 1,
|
|
|
|
PROP_SET_WINDOW_CAPTION = 2,
|
|
|
|
PROP_OPEN_CD = 3,
|
|
|
|
PROP_SET_GFX_MODE = 4,
|
|
|
|
PROP_SHOW_DEFAULT_CURSOR = 5,
|
|
|
|
PROP_GET_SAMPLE_RATE = 6,
|
2002-04-12 21:26:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
2002-04-14 18:13:08 +00:00
|
|
|
SOUND_8BIT = 0,
|
|
|
|
SOUND_16BIT = 1,
|
2002-04-12 21:26:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Set colors of the palette
|
|
|
|
virtual void set_palette(const byte *colors, uint start, uint num) = 0;
|
|
|
|
|
|
|
|
// Set the size of the video bitmap.
|
|
|
|
// Typically, 320x200
|
2002-04-14 18:13:08 +00:00
|
|
|
virtual void init_size(uint w, uint h) = 0;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
// Draw a bitmap to screen.
|
|
|
|
// The screen will not be updated to reflect the new bitmap
|
|
|
|
virtual void copy_rect(const byte *buf, int pitch, int x, int y, int w, int h) = 0;
|
|
|
|
|
|
|
|
// Update the dirty areas of the screen
|
|
|
|
virtual void update_screen() = 0;
|
|
|
|
|
|
|
|
// Either show or hide the mouse cursor
|
|
|
|
virtual bool show_mouse(bool visible) = 0;
|
|
|
|
|
|
|
|
// Set the position of the mouse cursor
|
|
|
|
virtual void set_mouse_pos(int x, int y) = 0;
|
|
|
|
|
|
|
|
// Set the bitmap that's used when drawing the cursor.
|
|
|
|
virtual void set_mouse_cursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y) = 0;
|
|
|
|
|
|
|
|
// Shaking is used in SCUMM. Set current shake position.
|
|
|
|
virtual void set_shake_pos(int shake_pos) = 0;
|
|
|
|
|
|
|
|
// Get the number of milliseconds since the program was started.
|
|
|
|
virtual uint32 get_msecs() = 0;
|
|
|
|
|
|
|
|
// Delay for a specified amount of milliseconds
|
|
|
|
virtual void delay_msecs(uint msecs) = 0;
|
|
|
|
|
|
|
|
// Create a thread
|
|
|
|
virtual void *create_thread(ThreadProc *proc, void *param) = 0;
|
|
|
|
|
|
|
|
// Get the next event.
|
|
|
|
// Returns true if an event was retrieved.
|
|
|
|
virtual bool poll_event(Event *event) = 0;
|
|
|
|
|
|
|
|
// Set the function to be invoked whenever samples need to be generated
|
2002-04-14 18:13:08 +00:00
|
|
|
// Format is the sample type format.
|
|
|
|
// Only 16-bit signed mode is needed for simon & scumm
|
2002-04-16 12:07:19 +00:00
|
|
|
virtual bool set_sound_proc(void *param, SoundProc *proc, byte format) = 0;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2002-04-14 18:13:08 +00:00
|
|
|
// Get or set a property
|
|
|
|
virtual uint32 property(int param, uint32 value) = 0;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2002-04-16 12:18:50 +00:00
|
|
|
// Poll cdrom status
|
|
|
|
// Returns true if cd audio is playing
|
2002-04-16 16:11:08 +00:00
|
|
|
virtual bool poll_cdrom() = 0;
|
2002-04-16 12:18:50 +00:00
|
|
|
|
|
|
|
// Play cdrom audio track
|
2002-04-16 16:11:08 +00:00
|
|
|
virtual void play_cdrom(int track, int num_loops, int start_frame, int end_frame) = 0;
|
2002-04-16 12:18:50 +00:00
|
|
|
|
|
|
|
// Stop cdrom audio track
|
2002-04-16 16:11:08 +00:00
|
|
|
virtual void stop_cdrom() = 0;
|
2002-04-16 12:18:50 +00:00
|
|
|
|
|
|
|
// Update cdrom audio status
|
2002-04-16 16:11:08 +00:00
|
|
|
virtual void update_cdrom() = 0;
|
2002-04-16 12:18:50 +00:00
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
// Quit
|
|
|
|
virtual void quit() = 0;
|
2002-03-21 01:03:27 +00:00
|
|
|
};
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Factory functions. This means we don't have to include the
|
|
|
|
* OSystem_SDL header file. (which in turn would require the SDL headers)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* OSystem_SDL */
|
|
|
|
OSystem *OSystem_SDL_create(int gfx_driver, bool full_screen);
|
2002-04-13 21:06:48 +00:00
|
|
|
OSystem *OSystem_NULL_create();
|
2002-04-14 19:43:12 +00:00
|
|
|
OSystem *OSystem_MorphOS_create(int game_id, int gfx_driver, bool full_screen);
|
2002-04-16 23:24:59 +00:00
|
|
|
OSystem *OSystem_Dreamcast_create();
|
2002-04-19 06:23:49 +00:00
|
|
|
OSystem *OSystem_WINCE3_create();
|
2002-04-20 17:41:42 +00:00
|
|
|
OSystem *OSystem_X11_create();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
GFX_NORMAL = 0,
|
|
|
|
GFX_DOUBLESIZE = 1,
|
|
|
|
GFX_TRIPLESIZE = 2,
|
|
|
|
GFX_2XSAI = 3,
|
|
|
|
GFX_SUPER2XSAI = 4,
|
|
|
|
GFX_SUPEREAGLE = 5,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-04-13 18:34:11 +00:00
|
|
|
/* Graphics drivers */
|
|
|
|
enum {
|
2002-04-20 17:41:42 +00:00
|
|
|
GD_NULL = 0,
|
|
|
|
GD_SDL,
|
|
|
|
GD_X,
|
|
|
|
GD_MORPHOS,
|
|
|
|
GD_WINCE,
|
|
|
|
GD_DC
|
2002-04-13 18:34:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|