2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2002-07-12 16:24:11 +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.
|
2002-07-12 16:24:11 +00:00
|
|
|
*
|
2006-02-11 09:53:53 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2002-07-12 16:24:11 +00:00
|
|
|
*/
|
|
|
|
|
2002-09-08 01:08:12 +00:00
|
|
|
#ifndef COMMON_UTIL_H
|
|
|
|
#define COMMON_UTIL_H
|
2002-07-12 16:24:11 +00:00
|
|
|
|
2003-08-01 12:21:04 +00:00
|
|
|
#include "common/scummsys.h"
|
2009-11-26 10:59:46 +00:00
|
|
|
#include "common/textconsole.h"
|
2006-02-14 23:31:25 +00:00
|
|
|
#include "common/str.h"
|
2002-07-12 16:24:11 +00:00
|
|
|
|
2009-03-19 21:43:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether a given pointer is aligned correctly.
|
|
|
|
* Note that 'alignment' must be a power of two!
|
|
|
|
*/
|
|
|
|
#define IS_ALIGNED(value, alignment) \
|
|
|
|
((((size_t)value) & ((alignment) - 1)) == 0)
|
|
|
|
|
|
|
|
|
2006-04-08 12:41:02 +00:00
|
|
|
#ifdef MIN
|
2005-10-11 11:27:18 +00:00
|
|
|
#undef MIN
|
2006-04-08 12:41:02 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MAX
|
2005-10-11 11:27:18 +00:00
|
|
|
#undef MAX
|
|
|
|
#endif
|
|
|
|
|
2003-06-05 03:28:35 +00:00
|
|
|
template<typename T> inline T ABS (T x) { return (x>=0) ? x : -x; }
|
|
|
|
template<typename T> inline T MIN (T a, T b) { return (a<b) ? a : b; }
|
|
|
|
template<typename T> inline T MAX (T a, T b) { return (a>b) ? a : b; }
|
2006-12-19 01:06:45 +00:00
|
|
|
template<typename T> inline T CLIP (T v, T amin, T amax)
|
2006-04-22 02:49:27 +00:00
|
|
|
{ if (v < amin) return amin; else if (v > amax) return amax; else return v; }
|
2002-08-25 10:50:18 +00:00
|
|
|
|
2003-05-29 11:40:48 +00:00
|
|
|
/**
|
|
|
|
* Template method which swaps the vaulues of its two parameters.
|
|
|
|
*/
|
2003-06-14 18:15:14 +00:00
|
|
|
template<typename T> inline void SWAP(T &a, T &b) { T tmp = a; a = b; b = tmp; }
|
2003-05-15 21:40:36 +00:00
|
|
|
|
2009-03-19 21:43:27 +00:00
|
|
|
/**
|
|
|
|
* Macro which determines the number of entries in a fixed size array.
|
|
|
|
*/
|
2003-05-17 23:36:47 +00:00
|
|
|
#define ARRAYSIZE(x) ((int)(sizeof(x) / sizeof(x[0])))
|
2002-09-08 01:08:12 +00:00
|
|
|
|
2009-01-30 01:17:12 +00:00
|
|
|
|
2003-10-04 11:50:21 +00:00
|
|
|
namespace Common {
|
2002-07-12 16:24:11 +00:00
|
|
|
|
2003-05-29 11:40:48 +00:00
|
|
|
/**
|
2003-10-04 11:50:21 +00:00
|
|
|
* Print a hexdump of the data passed in. The number of bytes per line is
|
|
|
|
* customizable.
|
2003-05-29 11:40:48 +00:00
|
|
|
* @param data the data to be dumped
|
|
|
|
* @param len the lenght of that data
|
2003-11-01 20:44:53 +00:00
|
|
|
* @param bytesPerLine number of bytes to print per line (default: 16)
|
2009-05-12 07:07:17 +00:00
|
|
|
* @param startOffset shift the shown offsets by the starting offset (default: 0)
|
2002-07-25 16:29:07 +00:00
|
|
|
*/
|
2009-05-12 07:07:17 +00:00
|
|
|
extern void hexdump(const byte * data, int len, int bytesPerLine = 16, int startOffset = 0);
|
2002-07-25 16:29:07 +00:00
|
|
|
|
2009-01-30 01:17:12 +00:00
|
|
|
|
2010-04-06 09:27:13 +00:00
|
|
|
/**
|
|
|
|
* Parse a string for a boolean value.
|
|
|
|
* The strings "true", "yes", and "1" are interpreted as true.
|
|
|
|
* The strings "false", "no", and "0" are interpreted as false.
|
|
|
|
* This function ignores case.
|
|
|
|
*
|
|
|
|
* @param[in] val the string to parse
|
|
|
|
* @param[out] valAsBool the parsing result
|
|
|
|
* @return true if the string parsed correctly, false if an error occurred.
|
|
|
|
*/
|
|
|
|
bool parseBool(const Common::String &val, bool &valAsBool);
|
|
|
|
|
2003-10-17 15:35:46 +00:00
|
|
|
/**
|
2006-04-11 22:31:47 +00:00
|
|
|
* List of game language.
|
2003-10-17 15:35:46 +00:00
|
|
|
*/
|
|
|
|
enum Language {
|
2009-12-31 18:52:42 +00:00
|
|
|
ZH_CNA,
|
2007-04-24 06:31:04 +00:00
|
|
|
ZH_TWN,
|
|
|
|
CZ_CZE,
|
|
|
|
NL_NLD,
|
2006-04-11 22:31:47 +00:00
|
|
|
EN_ANY, // Generic English (when only one game version exist)
|
|
|
|
EN_GRB,
|
2007-04-24 06:31:04 +00:00
|
|
|
EN_USA,
|
2006-04-11 22:31:47 +00:00
|
|
|
FR_FRA,
|
2007-04-24 06:31:04 +00:00
|
|
|
DE_DEU,
|
2007-11-01 17:02:28 +00:00
|
|
|
GR_GRE,
|
2010-04-12 21:21:06 +00:00
|
|
|
HE_ISR,
|
2010-01-03 16:33:03 +00:00
|
|
|
HU_HUN,
|
2006-04-11 22:31:47 +00:00
|
|
|
IT_ITA,
|
|
|
|
JA_JPN,
|
|
|
|
KO_KOR,
|
|
|
|
NB_NOR,
|
|
|
|
PL_POL,
|
2007-04-24 06:31:04 +00:00
|
|
|
PT_BRA,
|
|
|
|
RU_RUS,
|
|
|
|
ES_ESP,
|
|
|
|
SE_SWE,
|
2006-04-11 22:31:47 +00:00
|
|
|
|
|
|
|
UNK_LANG = -1 // Use default language (i.e. none specified)
|
2003-10-17 15:35:46 +00:00
|
|
|
};
|
|
|
|
|
2003-11-05 00:58:02 +00:00
|
|
|
struct LanguageDescription {
|
2003-12-30 19:07:55 +00:00
|
|
|
const char *code;
|
2003-11-05 00:58:02 +00:00
|
|
|
const char *description;
|
|
|
|
Common::Language id;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const LanguageDescription g_languages[];
|
|
|
|
|
|
|
|
|
2003-10-17 15:35:46 +00:00
|
|
|
/** Convert a string containing a language name into a Language enum value. */
|
|
|
|
extern Language parseLanguage(const String &str);
|
2003-12-30 19:07:55 +00:00
|
|
|
extern const char *getLanguageCode(Language id);
|
|
|
|
extern const char *getLanguageDescription(Language id);
|
2003-10-17 15:35:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* List of game platforms. Specifying a platform for a target can be used to
|
|
|
|
* give the game engines a hint for which platform the game data file are.
|
|
|
|
* This may be optional or required, depending on the game engine and the
|
|
|
|
* game in question.
|
|
|
|
*/
|
|
|
|
enum Platform {
|
2006-04-11 22:31:47 +00:00
|
|
|
kPlatformPC,
|
|
|
|
kPlatformAmiga,
|
|
|
|
kPlatformAtariST,
|
|
|
|
kPlatformMacintosh,
|
|
|
|
kPlatformFMTowns,
|
|
|
|
kPlatformWindows,
|
|
|
|
kPlatformNES,
|
|
|
|
kPlatformC64,
|
2009-06-06 18:22:43 +00:00
|
|
|
kPlatformCoCo3,
|
2006-04-11 22:31:47 +00:00
|
|
|
kPlatformLinux,
|
|
|
|
kPlatformAcorn,
|
|
|
|
kPlatformSegaCD,
|
|
|
|
kPlatform3DO,
|
2007-03-03 12:59:48 +00:00
|
|
|
kPlatformPCEngine,
|
2006-12-19 01:06:45 +00:00
|
|
|
kPlatformApple2GS,
|
2007-09-15 14:53:21 +00:00
|
|
|
kPlatformPC98,
|
2008-09-03 01:47:01 +00:00
|
|
|
kPlatformWii,
|
2009-02-28 10:46:33 +00:00
|
|
|
kPlatformPSX,
|
2009-10-15 22:05:52 +00:00
|
|
|
kPlatformCDi,
|
2006-12-19 01:06:45 +00:00
|
|
|
|
2006-04-11 22:31:47 +00:00
|
|
|
kPlatformUnknown = -1
|
2003-10-17 15:35:46 +00:00
|
|
|
};
|
|
|
|
|
2004-02-07 17:10:48 +00:00
|
|
|
struct PlatformDescription {
|
|
|
|
const char *code;
|
|
|
|
const char *code2;
|
2007-01-29 23:25:51 +00:00
|
|
|
const char *abbrev;
|
2004-02-07 17:10:48 +00:00
|
|
|
const char *description;
|
|
|
|
Common::Platform id;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const PlatformDescription g_platforms[];
|
|
|
|
|
2003-10-17 15:35:46 +00:00
|
|
|
/** Convert a string containing a platform name into a Platform enum value. */
|
|
|
|
extern Platform parsePlatform(const String &str);
|
2003-12-30 19:07:55 +00:00
|
|
|
extern const char *getPlatformCode(Platform id);
|
2007-01-29 23:25:51 +00:00
|
|
|
extern const char *getPlatformAbbrev(Platform id);
|
2003-12-30 19:07:55 +00:00
|
|
|
extern const char *getPlatformDescription(Platform id);
|
2003-10-17 15:35:46 +00:00
|
|
|
|
2005-07-30 21:11:48 +00:00
|
|
|
/**
|
2005-02-20 00:17:22 +00:00
|
|
|
* List of render modes. It specifies which original graphics mode
|
|
|
|
* to use. Some targets used postprocessing dithering routines for
|
|
|
|
* reducing color depth of final image which let it to be rendered on
|
|
|
|
* such low-level adapters as CGA or Hercules.
|
|
|
|
*/
|
|
|
|
enum RenderMode {
|
2005-03-02 21:46:51 +00:00
|
|
|
kRenderDefault = 0,
|
2005-02-20 00:17:22 +00:00
|
|
|
kRenderEGA = 1,
|
|
|
|
kRenderCGA = 2,
|
2005-03-02 21:46:51 +00:00
|
|
|
kRenderHercG = 3,
|
2005-03-07 00:39:48 +00:00
|
|
|
kRenderHercA = 4,
|
|
|
|
kRenderAmiga = 5
|
2005-02-20 00:17:22 +00:00
|
|
|
};
|
|
|
|
|
2007-01-27 23:50:09 +00:00
|
|
|
enum HerculesDimensions {
|
2005-02-20 00:17:22 +00:00
|
|
|
kHercW = 720,
|
|
|
|
kHercH = 350
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RenderModeDescription {
|
|
|
|
const char *code;
|
|
|
|
const char *description;
|
|
|
|
Common::RenderMode id;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const RenderModeDescription g_renderModes[];
|
|
|
|
|
|
|
|
/** Convert a string containing a render mode name into a RenderingMode enum value. */
|
|
|
|
extern RenderMode parseRenderMode(const String &str);
|
|
|
|
extern const char *getRenderModeCode(RenderMode id);
|
|
|
|
extern const char *getRenderModeDescription(RenderMode id);
|
|
|
|
|
2009-06-06 17:56:41 +00:00
|
|
|
enum GameGUIOption {
|
2009-06-08 14:55:11 +00:00
|
|
|
GUIO_NONE = 0,
|
2009-06-06 17:56:41 +00:00
|
|
|
GUIO_NOSUBTITLES = (1 << 0),
|
|
|
|
GUIO_NOMUSIC = (1 << 1),
|
|
|
|
GUIO_NOSPEECH = (1 << 2),
|
2010-06-15 10:56:12 +00:00
|
|
|
GUIO_NOSFX = (1 << 3),
|
|
|
|
GUIO_NOMIDI = (1 << 4),
|
|
|
|
GUIO_NOLAUNCHLOAD = (1 << 5),
|
|
|
|
|
|
|
|
GUIO_MIDIPCSPK = (1 << 6),
|
|
|
|
GUIO_MIDICMS = (1 << 7),
|
|
|
|
GUIO_MIDIPCJR = (1 << 8),
|
|
|
|
GUIO_MIDIADLIB = (1 << 9),
|
2010-06-21 21:36:36 +00:00
|
|
|
GUIO_MIDITOWNS = (1 << 10),
|
2010-06-25 18:47:52 +00:00
|
|
|
GUIO_MIDIPC98 = (1 << 11),
|
|
|
|
GUIO_MIDIMT32 = (1 << 12),
|
|
|
|
GUIO_MIDIGM = (1 << 13)
|
2009-06-06 17:56:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool checkGameGUIOption(GameGUIOption option, const String &str);
|
2010-06-15 10:57:28 +00:00
|
|
|
bool checkGameGUIOptionLanguage(Language lang, const String &str);
|
2009-06-06 17:56:41 +00:00
|
|
|
uint32 parseGameGUIOptions(const String &str);
|
2010-06-15 10:57:28 +00:00
|
|
|
const String getGameGUIOptionsDescription(uint32 options);
|
|
|
|
const String getGameGUIOptionsDescriptionLanguage(Language lang);
|
2006-02-14 23:31:25 +00:00
|
|
|
|
2009-07-13 18:47:32 +00:00
|
|
|
/**
|
|
|
|
* Updates the GUI options of the current config manager
|
|
|
|
* domain, when they differ to the ones passed as
|
|
|
|
* parameter.
|
|
|
|
*/
|
|
|
|
void updateGameGUIOptions(const uint32 options);
|
|
|
|
|
2003-10-04 11:50:21 +00:00
|
|
|
} // End of namespace Common
|
|
|
|
|
2002-07-12 16:24:11 +00:00
|
|
|
#endif
|