From 8e2c703baba570b18aec9d871fdc8ee7efe49e57 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 29 Sep 2006 08:14:27 +0000 Subject: First pahse of renaming simon engine to agos. Internal renames. Compilation is broken svn-id: r24008 --- backends/platform/PalmOS/Src/modules.cpp | 2 +- backends/platform/PalmOS/Src/prefixes/68k_simon.h | 2 +- backends/platform/PalmOS/Src/prefixes/compile.h | 2 +- .../platform/PalmOS/Src/prefixes/native_simon.h | 2 +- backends/platform/PalmOS/Src/scumm_globals.cpp | 16 ++++----- backends/platform/PalmOS/Src/scumm_globals.h | 10 +++--- backends/platform/ds/arm9/makefile | 6 ++-- backends/platform/gp32/Makefile | 2 +- backends/platform/maemo/Makefile | 2 +- backends/platform/symbian/AdaptAllMMPs.pl | 4 +-- .../symbian/BuildPackageUpload_LocalSettings.pl | 38 +++++++++++----------- backends/platform/symbian/mmp/scummvm_base.mmp.in | 2 +- backends/platform/symbian/mmp/scummvm_simon.mmp.in | 8 ++--- backends/platform/symbian/src/main_features.inl | 4 +-- 14 files changed, 50 insertions(+), 50 deletions(-) (limited to 'backends') diff --git a/backends/platform/PalmOS/Src/modules.cpp b/backends/platform/PalmOS/Src/modules.cpp index 80efa28ba9..6433c3e159 100644 --- a/backends/platform/PalmOS/Src/modules.cpp +++ b/backends/platform/PalmOS/Src/modules.cpp @@ -175,7 +175,7 @@ static UInt32 ModulesPalmMain(UInt16 cmd, MemPtr cmdPBP, UInt16 launchFlags) result = GET_MODEARM; #else # if !defined(DISABLE_SCUMM) || \ - !defined(DISABLE_SIMON) || \ + !defined(DISABLE_AGOS) || \ !defined(DISABLE_SWORD1) result = GET_DATACOMMON|GET_DATAENGINE|GET_MODE68K; # else diff --git a/backends/platform/PalmOS/Src/prefixes/68k_simon.h b/backends/platform/PalmOS/Src/prefixes/68k_simon.h index 54a57c0e93..92ed72b9d6 100644 --- a/backends/platform/PalmOS/Src/prefixes/68k_simon.h +++ b/backends/platform/PalmOS/Src/prefixes/68k_simon.h @@ -2,7 +2,7 @@ #define PREFIX_H #include "compile.h" -#undef DISABLE_SIMON +#undef DISABLE_AGOS #define PALMOS_68K diff --git a/backends/platform/PalmOS/Src/prefixes/compile.h b/backends/platform/PalmOS/Src/prefixes/compile.h index eaa7a60682..c9b764b333 100644 --- a/backends/platform/PalmOS/Src/prefixes/compile.h +++ b/backends/platform/PalmOS/Src/prefixes/compile.h @@ -29,7 +29,7 @@ #define DISABLE_SCUMM_7_8 #define DISABLE_HE -#define DISABLE_SIMON +#define DISABLE_AGOS #define DISABLE_SKY #define DISABLE_SWORD1 #define DISABLE_SWORD2 diff --git a/backends/platform/PalmOS/Src/prefixes/native_simon.h b/backends/platform/PalmOS/Src/prefixes/native_simon.h index b3c6710141..f3b3476262 100644 --- a/backends/platform/PalmOS/Src/prefixes/native_simon.h +++ b/backends/platform/PalmOS/Src/prefixes/native_simon.h @@ -2,6 +2,6 @@ #define PREFIX_H #include "native_common.h" -#undef DISABLE_SIMON +#undef DISABLE_AGOS #endif diff --git a/backends/platform/PalmOS/Src/scumm_globals.cpp b/backends/platform/PalmOS/Src/scumm_globals.cpp index a8fc5c67a6..b394fb0e86 100644 --- a/backends/platform/PalmOS/Src/scumm_globals.cpp +++ b/backends/platform/PalmOS/Src/scumm_globals.cpp @@ -47,10 +47,10 @@ static void GlbInitAll() { CALL_INIT(PlayerV2) CALL_INIT(Scumm_md5table) #endif -#ifndef DISABLE_SIMON - CALL_INIT(Simon_Simon) - CALL_INIT(Simon_Cursor) - CALL_INIT(Simon_Charset) +#ifndef DISABLE_AGOS + CALL_INIT(AGOS_AGOS) + CALL_INIT(AGOS_Cursor) + CALL_INIT(AGOS_Charset) #endif #ifndef DISABLE_SKY CALL_INIT(Sky_Hufftext) @@ -88,10 +88,10 @@ static void GlbReleaseAll() { CALL_RELEASE(PlayerV2) CALL_RELEASE(Scumm_md5table) #endif -#ifndef DISABLE_SIMON - CALL_RELEASE(Simon_Simon) - CALL_RELEASE(Simon_Cursor) - CALL_RELEASE(Simon_Charset) +#ifndef DISABLE_AGOS + CALL_RELEASE(AGOS_AGOS) + CALL_RELEASE(AGOS_AGOS) + CALL_RELEASE(AGOS_AGOS) #endif #ifndef DISABLE_SKY CALL_RELEASE(Sky_Hufftext) diff --git a/backends/platform/PalmOS/Src/scumm_globals.h b/backends/platform/PalmOS/Src/scumm_globals.h index 3308c54a73..0051e4dddf 100644 --- a/backends/platform/PalmOS/Src/scumm_globals.h +++ b/backends/platform/PalmOS/Src/scumm_globals.h @@ -63,11 +63,11 @@ PROTO_GLOBALS(Costume) PROTO_GLOBALS(PlayerV2) PROTO_GLOBALS(Scumm_md5table) #endif -// Simon stuffs -#ifndef DISABLE_SIMON -PROTO_GLOBALS(Simon_Simon) -PROTO_GLOBALS(Simon_Cursor) -PROTO_GLOBALS(Simon_Charset) +// AGOS stuffs +#ifndef DISABLE_AGOS +PROTO_GLOBALS(AGOS_AGOS) +PROTO_GLOBALS(AGOS_Cursor) +PROTO_GLOBALS(AGOS_Charset) #endif // Sky stuffs #ifndef DISABLE_SKY diff --git a/backends/platform/ds/arm9/makefile b/backends/platform/ds/arm9/makefile index 1e7768fd36..07ada936ed 100644 --- a/backends/platform/ds/arm9/makefile +++ b/backends/platform/ds/arm9/makefile @@ -21,7 +21,7 @@ ifdef DS_BUILD_A DISABLE_HE = 1 #DISABLE_SCUMM = 1 DISABLE_SCUMM_7_8 = 1 - DISABLE_SIMON = 1 + DISABLE_AGOS = 1 DISABLE_SKY = 1 DISABLE_SWORD1 = 1 DISABLE_SWORD2 = 1 @@ -40,7 +40,7 @@ ifdef DS_BUILD_B DISABLE_HE = 1 DISABLE_SCUMM = 1 DISABLE_SCUMM_7_8 = 1 - #DISABLE_SIMON = 1 + #DISABLE_AGOS = 1 DISABLE_SKY = 1 DISABLE_SWORD1 = 1 DISABLE_SWORD2 = 1 @@ -59,7 +59,7 @@ ifdef DS_BUILD_C DISABLE_HE = 1 DISABLE_SCUMM = 1 DISABLE_SCUMM_7_8 = 1 - DISABLE_SIMON = 1 + DISABLE_AGOS = 1 DISABLE_SKY = 1 DISABLE_SWORD1 = 1 DISABLE_SWORD2 = 1 diff --git a/backends/platform/gp32/Makefile b/backends/platform/gp32/Makefile index e91a27f33f..d3ae963ca2 100644 --- a/backends/platform/gp32/Makefile +++ b/backends/platform/gp32/Makefile @@ -159,7 +159,7 @@ DISABLE_HQ_SCALERS = 1 DISABLE_SCUMM_7_8 = 1 DISABLE_HE = 1 -#DISABLE_SIMON = 1 +#DISABLE_AGOS = 1 #DISABLE_SKY = 1 #DISABLE_QUEEN = 1 #DISABLE_GOB = 1 diff --git a/backends/platform/maemo/Makefile b/backends/platform/maemo/Makefile index 876248ccf9..4ef251e356 100644 --- a/backends/platform/maemo/Makefile +++ b/backends/platform/maemo/Makefile @@ -7,7 +7,7 @@ DISABLE_HQ_SCALERS = true #DISABLE_SCUMM = 1 #DISABLE_HE = 1 -DISABLE_SIMON = 1 +DISABLE_AGOS = 1 DISABLE_SKY = 1 DISABLE_SWORD1 = 1 DISABLE_SWORD2 = 1 diff --git a/backends/platform/symbian/AdaptAllMMPs.pl b/backends/platform/symbian/AdaptAllMMPs.pl index 3688bca578..fd896d005a 100644 --- a/backends/platform/symbian/AdaptAllMMPs.pl +++ b/backends/platform/symbian/AdaptAllMMPs.pl @@ -8,7 +8,7 @@ chdir("../../../"); @mmp_files = ( "mmp/scummvm_scumm.mmp", "mmp/scummvm_queen.mmp", - "mmp/scummvm_simon.mmp", + "mmp/scummvm_agos.mmp", "mmp/scummvm_sky.mmp", "mmp/scummvm_gob.mmp", "mmp/scummvm_saga.mmp", @@ -74,7 +74,7 @@ ParseModule("_base", "sound", \@section_empty, \@excludes_snd); chdir("engines/"); ParseModule("_scumm", "scumm", \@sections_scumm); ParseModule("_queen", "queen", \@section_empty); -ParseModule("_simon", "simon", \@section_empty); +ParseModule("_agos", "agos", \@section_empty); ParseModule("_sky", "sky", \@section_empty); ParseModule("_gob", "gob", \@section_empty); ParseModule("_saga", "saga", \@section_empty); diff --git a/backends/platform/symbian/BuildPackageUpload_LocalSettings.pl b/backends/platform/symbian/BuildPackageUpload_LocalSettings.pl index a357b836db..2f749170f4 100644 --- a/backends/platform/symbian/BuildPackageUpload_LocalSettings.pl +++ b/backends/platform/symbian/BuildPackageUpload_LocalSettings.pl @@ -87,8 +87,8 @@ # $SDK_Variations{'UIQ2'}{''} would produce: # scummvm-051101-SymbianUIQ2.sis - # $SDK_Variations{'S60v2'}{'simon'} would produce: - # scummvm-051101-SymbianS60v2_simon.sis + # $SDK_Variations{'S60v2'}{'agos'} would produce: + # scummvm-051101-SymbianS60v2_agos.sis # $SDK_Variations{'ALL'}{'queen'} with all $SDK_RootDirs defined would produce: # scummvm-051101-SymbianUIQ2_queen.sis @@ -102,7 +102,7 @@ $SDK_Variations{'UIQ2'}{'test'} = "$DefaultTopMacro MACRO USE_TREMOR // LIB:libtremor.lib //MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - //MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + //MACRO DISABLE_AGOS // LIB:scummvm_agos.lib //MACRO DISABLE_SKY // LIB:scummvm_sky.lib //MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib //MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -117,7 +117,7 @@ if (0) # all regular combo's $SDK_Variations{'ALL'}{'all'} = "$DefaultTopMacros //MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - //MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + //MACRO DISABLE_AGOS // LIB:scummvm_agos.lib //MACRO DISABLE_SKY // LIB:scummvm_sky.lib //MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib //MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -129,7 +129,7 @@ if (0) # all regular combo's $SDK_Variations{'ALL'}{'scumm'} = "$DefaultTopMacros //MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + MACRO DISABLE_AGOS // LIB:scummvm_agos.lib MACRO DISABLE_SKY // LIB:scummvm_sky.lib MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -137,9 +137,9 @@ if (0) # all regular combo's MACRO DISABLE_KYRA // LIB:scummvm_kyra.lib $DefaultBottomMacros"; - $SDK_Variations{'ALL'}{'simon'} = "$DefaultTopMacros + $SDK_Variations{'ALL'}{'agos'} = "$DefaultTopMacros MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - //MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + //MACRO DISABLE_AGOS // LIB:scummvm_agos.lib MACRO DISABLE_SKY // LIB:scummvm_sky.lib MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -149,7 +149,7 @@ if (0) # all regular combo's $SDK_Variations{'ALL'}{'sky'} = "$DefaultTopMacros MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + MACRO DISABLE_AGOS // LIB:scummvm_agos.lib //MACRO DISABLE_SKY // LIB:scummvm_sky.lib MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -159,7 +159,7 @@ if (0) # all regular combo's $SDK_Variations{'ALL'}{'queen'} = "$DefaultTopMacros MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + MACRO DISABLE_AGOS // LIB:scummvm_agos.lib MACRO DISABLE_SKY // LIB:scummvm_sky.lib //MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -169,7 +169,7 @@ if (0) # all regular combo's $SDK_Variations{'ALL'}{'gob'} = "$DefaultTopMacros MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + MACRO DISABLE_AGOS // LIB:scummvm_agos.lib MACRO DISABLE_SKY // LIB:scummvm_sky.lib MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib //MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -179,7 +179,7 @@ if (0) # all regular combo's $SDK_Variations{'ALL'}{'saga'} = "$DefaultTopMacros MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + MACRO DISABLE_AGOS // LIB:scummvm_agos.lib MACRO DISABLE_SKY // LIB:scummvm_sky.lib MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -189,7 +189,7 @@ if (0) # all regular combo's $SDK_Variations{'ALL'}{'kyra'} = "$DefaultTopMacros MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + MACRO DISABLE_AGOS // LIB:scummvm_agos.lib MACRO DISABLE_SKY // LIB:scummvm_sky.lib MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -201,7 +201,7 @@ if (0) # all regular combo's $SDK_Variations{'ALL'}{'test_lure'} = "$DefaultTopMacros MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + MACRO DISABLE_AGOS // LIB:scummvm_agos.lib MACRO DISABLE_SKY // LIB:scummvm_sky.lib MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -218,7 +218,7 @@ if (0) # all regular combo's //MACRO USE_MAD // LIB:libmad.lib //MACRO USE_TREMOR // LIB:libtremor.lib MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + MACRO DISABLE_AGOS // LIB:scummvm_agos.lib MACRO DISABLE_SKY // LIB:scummvm_sky.lib MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -232,7 +232,7 @@ if (0) # all regular combo's MACRO USE_MAD // LIB:libmad.lib //MACRO USE_TREMOR // LIB:libtremor.lib //MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + MACRO DISABLE_AGOS // LIB:scummvm_agos.lib MACRO DISABLE_SKY // LIB:scummvm_sky.lib MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -248,7 +248,7 @@ if (0) # all regular combo's # MACRO USE_MAD // LIB:libmad.lib # MACRO USE_TREMOR // LIB:libtremor.lib # //MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib -# //MACRO DISABLE_SIMON // LIB:scummvm_simon.lib +# //MACRO DISABLE_AGOS // LIB:scummvm_agos.lib # //MACRO DISABLE_SKY // LIB:scummvm_sky.lib # //MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib # //MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -261,7 +261,7 @@ if (0) # all regular combo's # MACRO USE_MPEG2 // LIB:libmpeg2.lib # MACRO USE_TREMOR // LIB:libtremor.lib # MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib -# MACRO DISABLE_SIMON // LIB:scummvm_simon.lib +# MACRO DISABLE_AGOS // LIB:scummvm_agos.lib # MACRO DISABLE_SKY // LIB:scummvm_sky.lib # MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib # MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -280,7 +280,7 @@ if (0) # all regular combo's # //MACRO USE_TREMOR // LIB:libtremor.lib # MACRO USE_UIQ_SE_VIBRA // LIB:vibration.lib # MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib -# MACRO DISABLE_SIMON // LIB:scummvm_simon.lib +# MACRO DISABLE_AGOS // LIB:scummvm_agos.lib # MACRO DISABLE_SKY // LIB:scummvm_sky.lib # //MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib # MACRO DISABLE_GOB // LIB:scummvm_gob.lib @@ -289,4 +289,4 @@ if (0) # all regular combo's ################################################################################################################## -1; \ No newline at end of file +1; diff --git a/backends/platform/symbian/mmp/scummvm_base.mmp.in b/backends/platform/symbian/mmp/scummvm_base.mmp.in index de0b8f2c53..7e1f05d982 100644 --- a/backends/platform/symbian/mmp/scummvm_base.mmp.in +++ b/backends/platform/symbian/mmp/scummvm_base.mmp.in @@ -44,7 +44,7 @@ OPTION GCC -Wno-multichar -Wno-reorder // don't optimize for ARM, platform way //MACRO DISABLE_SCUMM_7_8 //MACRO DISABLE_SCUMM_HE //MACRO DISABLE_SCUMM // LIB:scummvm_scumm.lib - //MACRO DISABLE_SIMON // LIB:scummvm_simon.lib + //MACRO DISABLE_AGOS // LIB:scummvm_agos.lib //MACRO DISABLE_SKY // LIB:scummvm_sky.lib //MACRO DISABLE_QUEEN // LIB:scummvm_queen.lib //MACRO DISABLE_GOB // LIB:scummvm_gob.lib diff --git a/backends/platform/symbian/mmp/scummvm_simon.mmp.in b/backends/platform/symbian/mmp/scummvm_simon.mmp.in index af0def9867..05ec375b51 100644 --- a/backends/platform/symbian/mmp/scummvm_simon.mmp.in +++ b/backends/platform/symbian/mmp/scummvm_simon.mmp.in @@ -26,7 +26,7 @@ // *** Definitions -TARGET scummvm_simon.lib +TARGET scummvm_agos.lib TARGETTYPE lib OPTION MSVC /QIfist /Ob1 /Oy /GF // /QIfist disables use of __ftol2 to avoid linker probs with MS libc: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/vcrefQIfistSuppress_ftol.asp OPTION GCC -Wno-multichar -Wno-reorder // don't optimize for ARM, platform way too sensitive for that :( just turn off some common warnings @@ -39,13 +39,13 @@ OPTION GCC -Wno-multichar -Wno-reorder // don't optimize for ARM, platform way // *** SOURCE files -SOURCEPATH ..\..\..\..\engines\simon +SOURCEPATH ..\..\..\..\engines\agos -//START_AUTO_OBJECTS_SIMON_// +//START_AUTO_OBJECTS_AGOS_// // empty base file, will be updated by Perl build scripts -//STOP_AUTO_OBJECTS_SIMON_// +//STOP_AUTO_OBJECTS_AGOS_// // *** Include paths diff --git a/backends/platform/symbian/src/main_features.inl b/backends/platform/symbian/src/main_features.inl index 2e0b008e68..6c6a7a19d8 100644 --- a/backends/platform/symbian/src/main_features.inl +++ b/backends/platform/symbian/src/main_features.inl @@ -30,8 +30,8 @@ #ifndef DISABLE_SCUMM "SCUMM " #endif -#ifndef DISABLE_SIMON - "Simon " +#ifndef DISABLE_AGOS + "AGOS " #endif #ifndef DISABLE_SKY "Sky " -- cgit v1.2.3