aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorathrxx2012-02-19 16:26:09 +0100
committerathrxx2012-02-21 21:48:35 +0100
commitd9c05f7121f6d3cdd800f295c2ec33783babdee2 (patch)
treeaf93a7035900cb7c39d4bdd064dcc1cd008a9173 /common
parent9f19bace4491753235051bc2f4f4037b79b5c9ac (diff)
downloadscummvm-rg350-d9c05f7121f6d3cdd800f295c2ec33783babdee2.tar.gz
scummvm-rg350-d9c05f7121f6d3cdd800f295c2ec33783babdee2.tar.bz2
scummvm-rg350-d9c05f7121f6d3cdd800f295c2ec33783babdee2.zip
COMMON: add gui options for rendering modes
The purpose is the same as for the sound gui options: users shouldn't be offered modes that the engine doesn't support.
Diffstat (limited to 'common')
-rw-r--r--common/util.cpp12
-rw-r--r--common/util.h23
2 files changed, 30 insertions, 5 deletions
diff --git a/common/util.cpp b/common/util.cpp
index 3f97308d8e..05d29fac94 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -286,7 +286,10 @@ const RenderModeDescription g_renderModes[] = {
{ "hercAmber", _s("Hercules Amber"), kRenderHercA },
{ "cga", "CGA", kRenderCGA },
{ "ega", "EGA", kRenderEGA },
+ { "vga", "VGA", kRenderVGA },
{ "amiga", "Amiga", kRenderAmiga },
+ { "fmtowns", "FM-Towns", kRenderFMTowns },
+ { "pc98", "PC-98", kRenderPC98 },
{0, 0, kRenderDefault}
};
@@ -351,6 +354,15 @@ const struct GameOpt {
{ GUIO_NOASPECT, "noAspect" },
{ GUIO_EGAUNDITHER, "egaUndither" },
+ { GUIO_RENDERHERCGREEN, "hercGreen" },
+ { GUIO_RENDERHERCAMBER, "hercAmber" },
+ { GUIO_RENDERCGA, "cga" },
+ { GUIO_RENDEREGA, "ega" },
+ { GUIO_RENDERVGA, "vga" },
+ { GUIO_RENDERAMIGA, "amiga" },
+ { GUIO_RENDERFMTOWNS, "fmtowns" },
+ { GUIO_RENDERPC98, "pc98" },
+
{ GUIO_NONE, 0 }
};
diff --git a/common/util.h b/common/util.h
index 617bc3dcfa..b6f63702d4 100644
--- a/common/util.h
+++ b/common/util.h
@@ -101,12 +101,22 @@ template<typename T> inline void SWAP(T &a, T &b) { T tmp = a; a = b; b = tmp; }
#define GUIO_NOASPECT "\022"
#define GUIO_EGAUNDITHER "\023"
+#define GUIO_RENDERHERCGREEN "\030"
+#define GUIO_RENDERHERCAMBER "\031"
+#define GUIO_RENDERCGA "\032"
+#define GUIO_RENDEREGA "\033"
+#define GUIO_RENDERVGA "\034"
+#define GUIO_RENDERAMIGA "\035"
+#define GUIO_RENDERFMTOWNS "\036"
+#define GUIO_RENDERPC98 "\037"
+
#define GUIO0() (GUIO_NONE)
#define GUIO1(a) (a)
#define GUIO2(a,b) (a b)
#define GUIO3(a,b,c) (a b c)
#define GUIO4(a,b,c,d) (a b c d)
#define GUIO5(a,b,c,d,e) (a b c d e)
+#define GUIO6(a,b,c,d,e,f) (a b c d e f)
namespace Common {
@@ -299,11 +309,14 @@ extern const char *getPlatformDescription(Platform id);
*/
enum RenderMode {
kRenderDefault = 0,
- kRenderEGA = 1,
- kRenderCGA = 2,
- kRenderHercG = 3,
- kRenderHercA = 4,
- kRenderAmiga = 5
+ kRenderVGA = 1,
+ kRenderEGA = 2,
+ kRenderCGA = 3,
+ kRenderHercG = 4,
+ kRenderHercA = 5,
+ kRenderAmiga = 6,
+ kRenderFMTowns = 7,
+ kRenderPC98 = 8
};
struct RenderModeDescription {