2001-10-09 14:30:12 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2001 Ludvig Strigeus
|
2006-01-18 17:39:49 +00:00
|
|
|
* Copyright (C) 2001-2006 The ScummVM project
|
2001-10-09 14:30:12 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2001-10-09 14:30:12 +00:00
|
|
|
*
|
2001-11-06 20:00:47 +00:00
|
|
|
* $Header$
|
2001-10-09 14:30:12 +00:00
|
|
|
*
|
|
|
|
*/
|
2005-06-23 14:15:49 +00:00
|
|
|
#ifndef COMMON_SCUMMSYS_H
|
|
|
|
#define COMMON_SCUMMSYS_H
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2005-03-31 05:35:04 +00:00
|
|
|
#if !defined(_STDAFX_H) && !defined(__PLAYSTATION2__)
|
2003-12-21 16:45:16 +00:00
|
|
|
#error Included scummsys.h without including stdafx.h first!
|
|
|
|
#endif
|
|
|
|
|
2002-05-14 23:32:34 +00:00
|
|
|
#include <stdlib.h>
|
2003-05-20 12:25:11 +00:00
|
|
|
#include <stdio.h>
|
2002-05-14 23:32:34 +00:00
|
|
|
|
2003-09-18 02:07:18 +00:00
|
|
|
// Use config.h, generated by configure
|
2003-05-18 13:39:02 +00:00
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2002-10-23 14:02:46 +00:00
|
|
|
|
2003-10-03 07:45:41 +00:00
|
|
|
#ifndef PI
|
|
|
|
#define PI 3.14159265358979323846
|
|
|
|
#endif
|
|
|
|
|
2005-06-21 22:08:21 +00:00
|
|
|
// make sure we really are compiling for WIN32
|
|
|
|
#ifndef WIN32
|
|
|
|
#undef _MSC_VER
|
|
|
|
#endif
|
|
|
|
|
2005-12-02 18:37:20 +00:00
|
|
|
#if defined(_MSC_VER) && !defined(__SYMBIAN32__)
|
2003-03-06 16:27:06 +00:00
|
|
|
|
|
|
|
#define scumm_stricmp stricmp
|
2005-02-19 15:35:05 +00:00
|
|
|
#define scumm_strnicmp _strnicmp
|
2003-03-06 16:27:06 +00:00
|
|
|
#define snprintf _snprintf
|
|
|
|
|
|
|
|
#if defined(CHECK_HEAP)
|
|
|
|
#undef CHECK_HEAP
|
|
|
|
#define CHECK_HEAP checkHeap();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define SCUMM_LITTLE_ENDIAN
|
|
|
|
|
|
|
|
#define FORCEINLINE __forceinline
|
|
|
|
#define NORETURN _declspec(noreturn)
|
2005-06-05 12:55:33 +00:00
|
|
|
#define PLUGIN_EXPORT __declspec(dllexport)
|
2003-03-06 16:27:06 +00:00
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned long uint32;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed long int32;
|
2005-09-03 16:15:39 +00:00
|
|
|
|
2003-03-06 16:27:06 +00:00
|
|
|
#define START_PACK_STRUCTS pack(push, 1)
|
|
|
|
#define END_PACK_STRUCTS pack(pop)
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-11-19 08:05:48 +00:00
|
|
|
#if defined(_WIN32_WCE) && _WIN32_WCE < 300
|
|
|
|
|
2003-03-06 16:27:06 +00:00
|
|
|
#define CDECL __cdecl
|
2005-07-05 20:22:56 +00:00
|
|
|
#define SMALL_SCREEN_DEVICE
|
2002-11-19 08:05:48 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2002-02-16 00:28:37 +00:00
|
|
|
#elif defined(__MINGW32__)
|
2003-03-06 16:27:06 +00:00
|
|
|
|
|
|
|
#define scumm_stricmp stricmp
|
2003-07-24 14:47:48 +00:00
|
|
|
#define scumm_strnicmp strnicmp
|
2003-03-06 16:27:06 +00:00
|
|
|
#define SCUMM_LITTLE_ENDIAN
|
|
|
|
|
2005-10-13 12:44:26 +00:00
|
|
|
#ifndef _HEAPOK
|
|
|
|
#define _HEAPOK (-2)
|
|
|
|
#endif
|
|
|
|
|
2003-03-06 16:27:06 +00:00
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned int uint32;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed int int32;
|
|
|
|
|
|
|
|
#define START_PACK_STRUCTS pack (push, 1)
|
|
|
|
#define END_PACK_STRUCTS pack(pop)
|
|
|
|
|
2005-06-05 12:55:33 +00:00
|
|
|
#define PLUGIN_EXPORT __declspec(dllexport)
|
|
|
|
|
2002-11-14 15:00:52 +00:00
|
|
|
#elif defined(UNIX)
|
2003-03-06 16:27:06 +00:00
|
|
|
|
|
|
|
#define scumm_stricmp strcasecmp
|
2003-07-24 14:47:48 +00:00
|
|
|
#define scumm_strnicmp strncasecmp
|
2003-03-06 16:27:06 +00:00
|
|
|
|
2004-03-07 03:28:01 +00:00
|
|
|
#ifndef CONFIG_H
|
|
|
|
#ifdef X11_BACKEND
|
2005-09-03 16:15:39 +00:00
|
|
|
|
2004-03-07 03:28:01 +00:00
|
|
|
// You need to set this manually if necessary
|
|
|
|
// #define SCUMM_LITTLE_ENDIAN
|
2005-09-03 16:15:39 +00:00
|
|
|
|
2004-03-07 03:28:01 +00:00
|
|
|
#else
|
|
|
|
/* need this for the SDL_BYTEORDER define */
|
|
|
|
#include <SDL_byteorder.h>
|
2005-09-03 16:15:39 +00:00
|
|
|
|
2004-03-07 03:28:01 +00:00
|
|
|
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
|
|
|
|
#define SCUMM_LITTLE_ENDIAN
|
|
|
|
#elif SDL_BYTEORDER == SDL_BIG_ENDIAN
|
|
|
|
#define SCUMM_BIG_ENDIAN
|
|
|
|
#else
|
2004-03-09 21:49:21 +00:00
|
|
|
#error Neither SDL_BIG_ENDIAN nor SDL_LIL_ENDIAN is set.
|
2004-03-07 03:28:01 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
2003-03-06 16:27:06 +00:00
|
|
|
#endif
|
|
|
|
|
2003-04-06 18:01:36 +00:00
|
|
|
// You need to set this manually if necessary
|
|
|
|
// #define SCUMM_NEED_ALIGNMENT
|
|
|
|
|
2003-05-18 13:39:02 +00:00
|
|
|
#ifndef HAVE_CONFIG_H
|
2003-03-06 16:27:06 +00:00
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned int uint32;
|
2005-10-14 10:20:42 +00:00
|
|
|
typedef unsigned int uint;
|
2003-03-06 16:27:06 +00:00
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed int int32;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__DECCXX) // Assume alpha architecture
|
|
|
|
#define INVERSE_MKID
|
|
|
|
#define SCUMM_NEED_ALIGNMENT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
#else
|
|
|
|
#define START_PACK_STRUCTS pack (1)
|
|
|
|
#define END_PACK_STRUCTS pack ()
|
|
|
|
#endif
|
|
|
|
|
2005-09-03 16:15:39 +00:00
|
|
|
#elif defined(__PALMOS_TRAPS__) || defined (__PALMOS_ARMLET__) // PALMOS
|
|
|
|
#include "palmversion.h"
|
2004-05-25 14:44:02 +00:00
|
|
|
#include "globals.h"
|
2003-04-30 13:40:20 +00:00
|
|
|
#include "extend.h"
|
2005-09-03 16:15:39 +00:00
|
|
|
|
2004-11-09 10:26:33 +00:00
|
|
|
#define STRINGBUFLEN 256
|
|
|
|
|
2003-07-24 15:01:01 +00:00
|
|
|
#define scumm_stricmp stricmp
|
|
|
|
#define scumm_strnicmp strnicmp
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-09-03 16:15:39 +00:00
|
|
|
#ifdef PALMOS_68K
|
2003-04-30 13:40:20 +00:00
|
|
|
#define SCUMM_BIG_ENDIAN
|
2005-09-03 16:15:39 +00:00
|
|
|
#else
|
|
|
|
#define SCUMM_LITTLE_ENDIAN
|
|
|
|
#endif
|
2003-04-30 13:40:20 +00:00
|
|
|
#define SCUMM_NEED_ALIGNMENT
|
2003-11-08 22:43:46 +00:00
|
|
|
|
2003-04-30 13:40:20 +00:00
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned long uint32;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed long int32;
|
2005-09-03 16:15:39 +00:00
|
|
|
|
2003-04-30 13:40:20 +00:00
|
|
|
#define START_PACK_STRUCTS pack (1)
|
|
|
|
#define END_PACK_STRUCTS pack ()
|
|
|
|
|
2006-02-02 20:39:12 +00:00
|
|
|
#if !defined(COMPILE_ZODIAC) && !defined(COMPILE_OS5)
|
2003-04-30 13:40:20 +00:00
|
|
|
#define NEWGUI_256
|
2005-11-05 18:28:30 +00:00
|
|
|
#else
|
|
|
|
#undef UNUSED
|
2005-09-03 16:15:39 +00:00
|
|
|
#endif
|
2003-04-30 12:43:56 +00:00
|
|
|
|
2002-03-16 18:58:51 +00:00
|
|
|
#elif defined(__MORPHOS__)
|
2003-03-06 16:27:06 +00:00
|
|
|
#define scumm_stricmp stricmp
|
2003-07-24 14:47:48 +00:00
|
|
|
#define scumm_strnicmp strnicmp
|
2003-03-06 16:27:06 +00:00
|
|
|
|
|
|
|
#define SCUMM_BIG_ENDIAN
|
|
|
|
#define SCUMM_NEED_ALIGNMENT
|
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned long uint32;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed long int32;
|
|
|
|
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
#else
|
|
|
|
#define START_PACK_STRUCTS pack (1)
|
|
|
|
#define END_PACK_STRUCTS pack ()
|
|
|
|
#endif
|
|
|
|
#define main morphos_main
|
2002-03-16 18:58:51 +00:00
|
|
|
|
2002-02-02 14:00:43 +00:00
|
|
|
#elif defined(__DC__)
|
|
|
|
|
2003-03-06 16:27:06 +00:00
|
|
|
#define scumm_stricmp strcasecmp
|
2003-07-24 14:47:48 +00:00
|
|
|
#define scumm_strnicmp strncasecmp
|
2003-03-06 16:27:06 +00:00
|
|
|
#define SCUMM_LITTLE_ENDIAN
|
|
|
|
#define SCUMM_NEED_ALIGNMENT
|
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned long uint32;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed long int32;
|
|
|
|
|
|
|
|
#define START_PACK_STRUCTS pack (push, 1)
|
|
|
|
#define END_PACK_STRUCTS pack(pop)
|
|
|
|
|
2002-11-30 16:03:46 +00:00
|
|
|
#elif defined __GP32__ //ph0x
|
|
|
|
#define SCUMM_NEED_ALIGNMENT
|
2005-09-03 16:15:39 +00:00
|
|
|
#define SCUMM_LITTLE_ENDIAN
|
2003-03-06 16:27:06 +00:00
|
|
|
|
|
|
|
#define scumm_stricmp stricmp
|
2003-07-24 14:47:48 +00:00
|
|
|
#define scumm_strnicmp strnicmp
|
2003-03-06 16:27:06 +00:00
|
|
|
|
|
|
|
#define _HEAPOK 0
|
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned long uint32;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed long int32;
|
|
|
|
|
|
|
|
#define START_PACK_STRUCTS pack (push, 1)
|
|
|
|
#define END_PACK_STRUCTS pack(pop)
|
2005-03-31 05:35:04 +00:00
|
|
|
#elif defined __PLAYSTATION2__
|
|
|
|
#define SCUMM_NEED_ALIGNMENT
|
2005-09-03 16:15:39 +00:00
|
|
|
#define SCUMM_LITTLE_ENDIAN
|
2005-03-31 05:35:04 +00:00
|
|
|
|
|
|
|
#define scumm_stricmp strcasecmp
|
|
|
|
#define scumm_strnicmp strncasecmp
|
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned int uint32;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed int int32;
|
2005-10-14 10:20:42 +00:00
|
|
|
|
|
|
|
typedef unsigned long uint64;
|
2005-03-31 05:35:04 +00:00
|
|
|
typedef signed long int64;
|
|
|
|
|
|
|
|
#define START_PACK_STRUCTS pack (push, 1)
|
|
|
|
#define END_PACK_STRUCTS pack(pop)
|
|
|
|
|
|
|
|
#include "backends/ps2/fileio.h"
|
|
|
|
|
|
|
|
#define fopen(a, b) ps2_fopen(a, b)
|
|
|
|
#define fclose(a) ps2_fclose(a)
|
|
|
|
#define fflush(a) ps2_fflush(a)
|
|
|
|
#define fseek(a, b, c) ps2_fseek(a, b, c)
|
|
|
|
#define ftell(a) ps2_ftell(a)
|
|
|
|
#define feof(a) ps2_feof(a)
|
|
|
|
#define fread(a, b, c, d) ps2_fread(a, b, c, d)
|
|
|
|
#define fwrite(a, b, c, d) ps2_fwrite(a, b, c, d)
|
|
|
|
#define fgetc(a) ps2_fgetc(a)
|
|
|
|
#define fgets(a, b, c) ps2_fgets(a, b, c)
|
|
|
|
#define fputc(a, b) ps2_fputc(a, b)
|
|
|
|
#define fputs(a, b) ps2_fputs(a, b)
|
|
|
|
#define fprintf ps2_fprintf
|
|
|
|
#define fsize(a) ps2_fsize(a)
|
|
|
|
|
|
|
|
extern void ps2_disableHandleCaching(void);
|
2005-08-16 17:15:37 +00:00
|
|
|
#elif defined (__PSP__)
|
|
|
|
#define SCUMM_NEED_ALIGNMENT
|
|
|
|
#define SCUMM_LITTLE_ENDIAN
|
|
|
|
|
|
|
|
#define scumm_stricmp strcasecmp
|
|
|
|
#define scumm_strnicmp strncasecmp
|
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned int uint32;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed int int32;
|
|
|
|
|
2005-10-14 10:20:42 +00:00
|
|
|
typedef unsigned long uint64;
|
|
|
|
|
2005-08-16 17:15:37 +00:00
|
|
|
#define START_PACK_STRUCTS pack (push, 1)
|
|
|
|
#define END_PACK_STRUCTS pack(pop)
|
2005-05-09 21:21:21 +00:00
|
|
|
|
|
|
|
#elif defined (__amigaos4__)
|
|
|
|
#include <exec/types.h>
|
|
|
|
|
|
|
|
#define scumm_stricmp strcasecmp
|
|
|
|
#define scumm_strnicmp strncasecmp
|
|
|
|
|
|
|
|
#define SCUMM_BIG_ENDIAN
|
|
|
|
|
|
|
|
// You need to set this manually if necessary
|
|
|
|
#define SCUMM_NEED_ALIGNMENT
|
|
|
|
|
|
|
|
#ifndef HAVE_CONFIG_H
|
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
#endif
|
2005-06-21 22:08:21 +00:00
|
|
|
#elif defined __SYMBIAN32__ // AnotherGuest / Sprawl / SumthinWicked
|
|
|
|
|
|
|
|
#define scumm_stricmp strcasecmp
|
|
|
|
#define scumm_strnicmp strncasecmp
|
|
|
|
|
2005-09-03 16:15:39 +00:00
|
|
|
#define CDECL
|
2005-06-21 22:08:21 +00:00
|
|
|
#define SCUMM_NEED_ALIGNMENT
|
2005-09-03 16:15:39 +00:00
|
|
|
#define SCUMM_LITTLE_ENDIAN
|
2005-06-21 22:08:21 +00:00
|
|
|
#define CHECK_HEAP
|
2005-07-05 20:22:56 +00:00
|
|
|
#define SMALL_SCREEN_DEVICE
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-06-21 22:08:21 +00:00
|
|
|
#define FORCEINLINE inline
|
|
|
|
#define _HEAPOK 0
|
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short int uint16;
|
|
|
|
typedef unsigned long int uint32;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int int16;
|
|
|
|
typedef signed long int int32;
|
2005-09-03 16:15:39 +00:00
|
|
|
|
2005-06-21 22:08:21 +00:00
|
|
|
#define START_PACK_STRUCTS pack (push,1)
|
|
|
|
#define END_PACK_STRUCTS pack(pop)
|
2001-10-09 14:30:12 +00:00
|
|
|
#else
|
2003-03-06 16:27:06 +00:00
|
|
|
#error No system type defined
|
2001-10-09 14:30:12 +00:00
|
|
|
#endif
|
|
|
|
|
2005-05-14 15:53:37 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// GCC specific stuff
|
|
|
|
//
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
#define GCC_PACK __attribute__((packed))
|
2005-09-03 16:15:39 +00:00
|
|
|
#define NORETURN __attribute__((__noreturn__))
|
2005-05-14 15:53:37 +00:00
|
|
|
#else
|
|
|
|
#define GCC_PACK
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Fallbacks / default values for various special macros
|
|
|
|
//
|
|
|
|
#ifndef START_PACK_STRUCTS
|
|
|
|
#define START_PACK_STRUCTS
|
|
|
|
#define END_PACK_STRUCTS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FORCEINLINE
|
|
|
|
#define FORCEINLINE inline
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CHECK_HEAP
|
|
|
|
#define CHECK_HEAP
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CDECL
|
|
|
|
#define CDECL
|
|
|
|
#endif
|
|
|
|
|
2005-06-05 12:55:33 +00:00
|
|
|
#ifndef PLUGIN_EXPORT
|
|
|
|
#define PLUGIN_EXPORT
|
|
|
|
#endif
|
|
|
|
|
2005-05-14 15:53:37 +00:00
|
|
|
#ifndef NORETURN
|
|
|
|
#define NORETURN
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef STRINGBUFLEN
|
|
|
|
#define STRINGBUFLEN 1024
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Overlay color type (FIXME: shouldn't be declared here)
|
|
|
|
//
|
|
|
|
#if defined(NEWGUI_256)
|
|
|
|
// 256 color only on PalmOS
|
|
|
|
typedef byte OverlayColor;
|
|
|
|
#else
|
|
|
|
// 15/16 bit color mode everywhere else...
|
|
|
|
typedef int16 OverlayColor;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2005-06-23 14:15:49 +00:00
|
|
|
#include "common/endian.h"
|
2003-03-06 16:27:06 +00:00
|
|
|
|
2003-07-24 16:18:41 +00:00
|
|
|
#endif
|