aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2012-09-11 18:39:22 +0200
committerWillem Jan Palenstijn2012-09-11 19:16:51 +0200
commit08d641a0be33412e8e7b23baf8ff1d595ed5227a (patch)
tree71f3c1c6e48d3ad7a5932a339f7b74b0742122cf
parent7da5c9df2826b6dc63555339a71fba992ed0c297 (diff)
downloadscummvm-rg350-08d641a0be33412e8e7b23baf8ff1d595ed5227a.tar.gz
scummvm-rg350-08d641a0be33412e8e7b23baf8ff1d595ed5227a.tar.bz2
scummvm-rg350-08d641a0be33412e8e7b23baf8ff1d595ed5227a.zip
CONFIGURE: Add base engine descriptions to more engines
Only SCUMM and SAGA had such a description previously.
-rwxr-xr-xconfigure47
-rw-r--r--engines/configure.engines2
2 files changed, 48 insertions, 1 deletions
diff --git a/configure b/configure
index 8dadd688da..4281cbcf3d 100755
--- a/configure
+++ b/configure
@@ -750,6 +750,7 @@ get_subengines_build_string() {
}
# Engine specific build strings
+# TODO: Clean this up (and specify these base strings in configure.engines?)
get_scumm_build_string() {
if test `get_engine_build $1` != no ; then
if test $2 != no -a "$3" != wip ; then
@@ -768,6 +769,52 @@ get_saga_build_string() {
fi
}
+get_agos_build_string() {
+ if test `get_engine_build $1` != no ; then
+ if test $2 != no -a "$3" != wip; then
+ base="[AGOS 1 games]"
+ fi
+ get_subengines_build_string $1 $2 "$base" $3
+ fi
+}
+
+get_groovie_build_string() {
+ if test `get_engine_build $1` != no ; then
+ if test $2 != no -a "$3" != wip; then
+ base="[7th Guest]"
+ fi
+ get_subengines_build_string $1 $2 "$base" $3
+ fi
+}
+
+get_kyra_build_string() {
+ if test `get_engine_build $1` != no ; then
+ if test $2 != no -a "$3" != wip; then
+ base="[Legend of Kyrandia 1-3]"
+ fi
+ get_subengines_build_string $1 $2 "$base" $3
+ fi
+}
+
+get_sci_build_string() {
+ if test `get_engine_build $1` != no ; then
+ if test $2 != no -a "$3" != wip; then
+ base="[SCI 0-1.1 games]"
+ fi
+ get_subengines_build_string $1 $2 "$base" $3
+ fi
+}
+
+get_mohawk_build_string() {
+ if test `get_engine_build $1` != no ; then
+ if test $2 != no -a "$3" != wip; then
+ base="[Living Books]"
+ fi
+ get_subengines_build_string $1 $2 "$base" $3
+ fi
+}
+
+
#
# Greet user
#
diff --git a/engines/configure.engines b/engines/configure.engines
index 81cf1766f3..f2feb55080 100644
--- a/engines/configure.engines
+++ b/engines/configure.engines
@@ -16,7 +16,7 @@ add_engine gob "Gobli*ns" yes
add_engine groovie "Groovie" yes "groovie2"
add_engine groovie2 "Groovie 2 games" no
add_engine hugo "Hugo Trilogy" yes
-add_engine kyra "Legend of Kyrandia" yes "lol eob"
+add_engine kyra "Kyra" yes "lol eob"
add_engine lol "Lands of Lore" yes
add_engine eob "Eye of the Beholder" no
add_engine lastexpress "The Last Express" no