[Scummvm-cvs-logs] SF.net SVN: scummvm:[55508] scummvm/trunk/engines/gob

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Tue Jan 25 01:50:26 CET 2011


Revision: 55508
          http://scummvm.svn.sourceforge.net/scummvm/?rev=55508&view=rev
Author:   drmccoy
Date:     2011-01-25 00:50:26 +0000 (Tue, 25 Jan 2011)

Log Message:
-----------
GOB: Adding stubs for Addy

Modified Paths:
--------------
    scummvm/trunk/engines/gob/gob.cpp
    scummvm/trunk/engines/gob/inter.h
    scummvm/trunk/engines/gob/inter_playtoons.cpp
    scummvm/trunk/engines/gob/inter_v1.cpp
    scummvm/trunk/engines/gob/inter_v5.cpp
    scummvm/trunk/engines/gob/module.mk

Added Paths:
-----------
    scummvm/trunk/engines/gob/inter_v7.cpp

Modified: scummvm/trunk/engines/gob/gob.cpp
===================================================================
--- scummvm/trunk/engines/gob/gob.cpp	2011-01-25 00:32:48 UTC (rev 55507)
+++ scummvm/trunk/engines/gob/gob.cpp	2011-01-25 00:50:26 UTC (rev 55508)
@@ -546,7 +546,7 @@
 	case kGameTypeAdi2:
 		_init     = new Init_v2(this);
 		_video    = new Video_v6(this);
-		_inter    = new Inter_Playtoons(this);
+		_inter    = new Inter_v7(this);
 		_mult     = new Mult_v2(this);
 		_draw     = new Draw_v2(this);
 		_map      = new Map_v2(this);

Modified: scummvm/trunk/engines/gob/inter.h
===================================================================
--- scummvm/trunk/engines/gob/inter.h	2011-01-25 00:32:48 UTC (rev 55507)
+++ scummvm/trunk/engines/gob/inter.h	2011-01-25 00:50:26 UTC (rev 55508)
@@ -583,6 +583,32 @@
 	void oPlaytoons_openItk();
 };
 
+class Inter_v7 : public Inter_Playtoons {
+public:
+	Inter_v7(GobEngine *vm);
+	virtual ~Inter_v7() {}
+
+protected:
+	virtual void setupOpcodesDraw();
+	virtual void setupOpcodesFunc();
+	virtual void setupOpcodesGob();
+
+	void o7_draw0x0D();
+	void o7_draw0x44();
+	void o7_draw0x45();
+	void o7_draw0x57();
+	void o7_draw0x89();
+	void o7_draw0x8A();
+	void o7_draw0x8C();
+	void o7_draw0x90();
+	void o7_draw0x93();
+	void o7_draw0xA1();
+	void o7_draw0xA2();
+	void o7_draw0xA4();
+	void o7_draw0xC4();
+	void o7_draw0xC6();
+};
+
 } // End of namespace Gob
 
 #endif // GOB_INTER_H

Modified: scummvm/trunk/engines/gob/inter_playtoons.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_playtoons.cpp	2011-01-25 00:32:48 UTC (rev 55507)
+++ scummvm/trunk/engines/gob/inter_playtoons.cpp	2011-01-25 00:50:26 UTC (rev 55508)
@@ -237,6 +237,10 @@
 		debugC(2, kDebugFileIO, "oPlaytoons_checkData: \"%s\" instead of \"%s\"", file + 3, file);
 		file += 3;
 	}
+	if (strncmp(file, "<STK>", 5) == 0) {
+		debugC(2, kDebugFileIO, "oPlaytoons_checkData: \"%s\" instead of \"%s\"", file + 5, file);
+		file += 5;
+	}
 
 	// WORKAROUND: In the Playtoons stick files found in german Addy 4, some paths are hardcoded
 	if ((backSlash = strrchr(file, '\\'))) {

Modified: scummvm/trunk/engines/gob/inter_v1.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v1.cpp	2011-01-25 00:32:48 UTC (rev 55507)
+++ scummvm/trunk/engines/gob/inter_v1.cpp	2011-01-25 00:50:26 UTC (rev 55508)
@@ -1215,6 +1215,9 @@
 		WRITE_VAR(59, 4000);
 
 	switch (cmd) {
+	case -1:
+		break;
+
 	case 0:
 		_vm->_draw->_showCursor &= ~2;
 		_vm->_util->longDelay(1);

Modified: scummvm/trunk/engines/gob/inter_v5.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v5.cpp	2011-01-25 00:32:48 UTC (rev 55507)
+++ scummvm/trunk/engines/gob/inter_v5.cpp	2011-01-25 00:50:26 UTC (rev 55508)
@@ -130,6 +130,9 @@
 	width = _vm->_game->_script->readValExpr();
 	height = _vm->_game->_script->readValExpr();
 
+	if (videoMode == 0)
+		videoMode = 0x14;
+
 	_vm->_video->clearScreen();
 
 	if (videoMode == 0x13) {

Added: scummvm/trunk/engines/gob/inter_v7.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v7.cpp	                        (rev 0)
+++ scummvm/trunk/engines/gob/inter_v7.cpp	2011-01-25 00:50:26 UTC (rev 55508)
@@ -0,0 +1,229 @@
+/* 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.
+ *
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#include "common/endian.h"
+
+#include "gob/gob.h"
+#include "gob/inter.h"
+#include "gob/game.h"
+#include "gob/script.h"
+
+namespace Gob {
+
+#define OPCODEVER Inter_v7
+#define OPCODEDRAW(i, x)  _opcodesDraw[i]._OPCODEDRAW(OPCODEVER, x)
+#define OPCODEFUNC(i, x)  _opcodesFunc[i]._OPCODEFUNC(OPCODEVER, x)
+#define OPCODEGOB(i, x)   _opcodesGob[i]._OPCODEGOB(OPCODEVER, x)
+
+Inter_v7::Inter_v7(GobEngine *vm) : Inter_Playtoons(vm) {
+}
+
+void Inter_v7::setupOpcodesDraw() {
+	Inter_Playtoons::setupOpcodesDraw();
+
+	OPCODEDRAW(0x0D, o7_draw0x0D);
+	OPCODEDRAW(0x44, o7_draw0x44);
+	OPCODEDRAW(0x45, o7_draw0x45);
+	OPCODEDRAW(0x57, o7_draw0x57);
+	OPCODEDRAW(0x89, o7_draw0x89);
+	OPCODEDRAW(0x8A, o7_draw0x8A);
+	OPCODEDRAW(0x8C, o7_draw0x8C);
+	OPCODEDRAW(0x90, o7_draw0x90);
+	OPCODEDRAW(0x93, o7_draw0x93);
+	OPCODEDRAW(0xA1, o7_draw0xA1);
+	OPCODEDRAW(0xA2, o7_draw0xA2);
+	OPCODEDRAW(0xA4, o7_draw0xA4);
+	OPCODEDRAW(0xC4, o7_draw0xC4);
+	OPCODEDRAW(0xC6, o7_draw0xC6);
+}
+
+void Inter_v7::setupOpcodesFunc() {
+	Inter_Playtoons::setupOpcodesFunc();
+}
+
+void Inter_v7::setupOpcodesGob() {
+	Inter_Playtoons::setupOpcodesGob();
+}
+
+void Inter_v7::o7_draw0x0D() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+
+	int16 expr0 = _vm->_game->_script->readValExpr();
+
+	warning("Addy Stub Draw 0x0D: \"%s\", %d", str0.c_str(), expr0);
+}
+
+void Inter_v7::o7_draw0x44() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str1 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str2 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str3 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str4 = _vm->_game->_script->getResultStr();
+
+	warning("Addy Stub Draw 0x44: \"%s\", \"%s\", \"%s\", \"%s\", \"%s\"",
+			str0.c_str(), str1.c_str(), str2.c_str(), str3.c_str(), str4.c_str());
+}
+
+void Inter_v7::o7_draw0x45() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str1 = _vm->_game->_script->getResultStr();
+
+	warning("Addy Stub Draw 0x45: \"%s\", \"%s\"", str0.c_str(), str1.c_str());
+}
+
+void Inter_v7::o7_draw0x57() {
+	int16 index0 = _vm->_game->_script->readVarIndex();
+	int16 index1 = _vm->_game->_script->readVarIndex();
+
+	warning("Addy Stub Draw 0x57: %d, %d", index0, index1);
+}
+
+void Inter_v7::o7_draw0x89() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str1 = _vm->_game->_script->getResultStr();
+
+	int16 index0 = _vm->_game->_script->readVarIndex();
+
+	warning("Addy Stub Draw 0x89: \"%s\", \"%s\", %d", str0.c_str(), str1.c_str(), index0);
+}
+
+void Inter_v7::o7_draw0x8A() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+
+	int16 index0 = _vm->_game->_script->readVarIndex();
+	int16 index1 = _vm->_game->_script->readVarIndex();
+
+	warning("Addy Stub Draw 0x8A: \"%s\", %d, %d", str0.c_str(), index0, index1);
+}
+
+void Inter_v7::o7_draw0x8C() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+
+	int16 index0 = _vm->_game->_script->readVarIndex();
+
+	warning("Addy Stub Draw 0x8C: \"%s\", %d", str0.c_str(), index0);
+}
+
+void Inter_v7::o7_draw0x90() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+
+	int16 expr0 = _vm->_game->_script->readValExpr();
+	int16 expr1 = _vm->_game->_script->readValExpr();
+	int16 expr2 = _vm->_game->_script->readValExpr();
+	int16 expr3 = _vm->_game->_script->readValExpr();
+	int16 expr4 = _vm->_game->_script->readValExpr();
+	int16 expr5 = _vm->_game->_script->readValExpr();
+	int16 expr6 = _vm->_game->_script->readValExpr();
+	int16 expr7 = _vm->_game->_script->readValExpr();
+
+	warning("Addy Stub Draw 0x90: \"%s\", %d, %d, %d, %d, %d, %d, %d, %d",
+			str0.c_str(), expr0, expr1, expr2, expr3, expr4, expr5, expr6, expr7);
+}
+
+void Inter_v7::o7_draw0x93() {
+	uint32 expr0 = _vm->_game->_script->readValExpr();
+
+	warning("Addy Stub Draw 0x93: %d", expr0);
+}
+
+void Inter_v7::o7_draw0xA1() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str1 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str2 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str3 = _vm->_game->_script->getResultStr();
+
+	int16 index0 = _vm->_game->_script->readVarIndex();
+
+	warning("Addy Stub Draw 0xA1: \"%s\", \"%s\", \"%s\", \"%s\", %d",
+			str0.c_str(), str1.c_str(), str2.c_str(), str3.c_str(), index0);
+}
+
+void Inter_v7::o7_draw0xA2() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str1 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str2 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str3 = _vm->_game->_script->getResultStr();
+
+	warning("Addy Stub Draw 0xA2: \"%s\", \"%s\", \"%s\", \"%s\"",
+			str0.c_str(), str1.c_str(), str2.c_str(), str3.c_str());
+}
+
+void Inter_v7::o7_draw0xA4() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+
+	int16 expr0 = _vm->_game->_script->readValExpr();
+	int16 expr1 = _vm->_game->_script->readValExpr();
+
+	warning("Addy Stub Draw 0xA4: \"%s\", %d, %d", str0.c_str(), expr0, expr1);
+}
+
+void Inter_v7::o7_draw0xC4() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str1 = _vm->_game->_script->getResultStr();
+
+	warning("Addy Stub Draw 0xC4: \"%s\", \"%s\"", str0.c_str(), str1.c_str());
+}
+
+void Inter_v7::o7_draw0xC6() {
+	_vm->_game->_script->evalExpr(0);
+	Common::String str0 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str1 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str2 = _vm->_game->_script->getResultStr();
+	_vm->_game->_script->evalExpr(0);
+	Common::String str3 = _vm->_game->_script->getResultStr();
+
+	int16 index0 = _vm->_game->_script->readVarIndex();
+
+	warning("Addy Stub Draw 0xC6: \"%s\", \"%s\", \"%s\", \"%s\", %d",
+			str0.c_str(), str1.c_str(), str2.c_str(), str3.c_str(), index0);
+}
+
+} // End of namespace Gob


Property changes on: scummvm/trunk/engines/gob/inter_v7.cpp
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Date Rev Author URL Id
Added: svn:eol-style
   + native

Modified: scummvm/trunk/engines/gob/module.mk
===================================================================
--- scummvm/trunk/engines/gob/module.mk	2011-01-25 00:32:48 UTC (rev 55507)
+++ scummvm/trunk/engines/gob/module.mk	2011-01-25 00:50:26 UTC (rev 55508)
@@ -38,6 +38,7 @@
 	inter_v4.o \
 	inter_v5.o \
 	inter_v6.o \
+	inter_v7.o \
 	map.o \
 	map_v1.o \
 	map_v2.o \


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list