[Scummvm-cvs-logs] CVS: scummvm/scumm intern.h,2.276,2.277 script_v90he.cpp,2.63,2.64 scumm.cpp,1.240,1.241

Eugene Sandulenko sev at users.sourceforge.net
Fri Oct 1 16:29:58 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27519

Modified Files:
	intern.h script_v90he.cpp scumm.cpp 
Log Message:
Add couple other HE games and make Blue's birthday demo show intro. It dies
on opcode 2d, though.


Index: intern.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/intern.h,v
retrieving revision 2.276
retrieving revision 2.277
diff -u -d -r2.276 -r2.277
--- intern.h	30 Sep 2004 09:54:45 -0000	2.276
+++ intern.h	1 Oct 2004 23:15:48 -0000	2.277
@@ -897,6 +897,7 @@
 	void o90_unknown94();
 	void o90_unknown9E();
 	void o90_getActorAnimProgress();
+	void o90_unknownCF();
 };
 
 class ScummEngine_v7 : public ScummEngine_v6 {

Index: script_v90he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v90he.cpp,v
retrieving revision 2.63
retrieving revision 2.64
diff -u -d -r2.63 -r2.64
--- script_v90he.cpp	1 Oct 2004 11:14:01 -0000	2.63
+++ script_v90he.cpp	1 Oct 2004 23:15:48 -0000	2.64
@@ -303,7 +303,7 @@
 		OPCODE(o6_pickOneOfDefault),
 		OPCODE(o6_stampObject),
 		OPCODE(o72_drawWizImage),
-		OPCODE(o6_invalid),
+		OPCODE(o90_unknownCF),
 		/* D0 */
 		OPCODE(o6_getDateTime),
 		OPCODE(o6_stopTalking),
@@ -1168,4 +1168,11 @@
 	push(a->getAnimProgress());
 }
 
+void ScummEngine_v90he::o90_unknownCF() {
+	byte name[256];
+
+	copyScriptString(name);
+	push(readVar(0));
+}
+
 } // End of namespace Scumm

Index: scumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scumm.cpp,v
retrieving revision 1.240
retrieving revision 1.241
diff -u -d -r1.240 -r1.241
--- scumm.cpp	1 Oct 2004 11:22:59 -0000	1.240
+++ scumm.cpp	1 Oct 2004 23:15:48 -0000	1.241
@@ -311,8 +311,12 @@
 	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES, 0, 0},
 	{"puttrace", "Putt-Putt Enters the Race", GID_HEGAME, 6, 98, MDT_NONE,
 	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES, 0, 0},
+	{"BluesABCTime", "Blue's ABC Time", GID_HEGAME, 6, 98, MDT_NONE,
+	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES, 0, 0},
 	{"BluesABCTimeDemo", "Blue's ABC Time (Demo)", GID_HEGAME, 6, 98, MDT_NONE,
 	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES, 0, 0},
+	{"BluesBirthdayDemo", "Blue's Birthday Adventure (Demo)", GID_HEGAME, 6, 98, MDT_NONE,
+	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES, 0, 0},
 
 	// Global scripts increased to 2048
 	{"freddi4", "Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch", GID_FREDDI4, 6, 98, MDT_NONE,





More information about the Scummvm-git-logs mailing list