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

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Sun Jun 7 01:39:58 CEST 2009


Revision: 41312
          http://scummvm.svn.sourceforge.net/scummvm/?rev=41312&view=rev
Author:   drmccoy
Date:     2009-06-06 23:39:58 +0000 (Sat, 06 Jun 2009)

Log Message:
-----------
Renamed the evaluateStore opcodes to assign, because that's what they are

Modified Paths:
--------------
    scummvm/trunk/engines/gob/inter.h
    scummvm/trunk/engines/gob/inter_bargon.cpp
    scummvm/trunk/engines/gob/inter_fascin.cpp
    scummvm/trunk/engines/gob/inter_v1.cpp
    scummvm/trunk/engines/gob/inter_v2.cpp
    scummvm/trunk/engines/gob/inter_v3.cpp
    scummvm/trunk/engines/gob/inter_v4.cpp
    scummvm/trunk/engines/gob/inter_v5.cpp
    scummvm/trunk/engines/gob/inter_v6.cpp

Modified: scummvm/trunk/engines/gob/inter.h
===================================================================
--- scummvm/trunk/engines/gob/inter.h	2009-06-06 23:22:48 UTC (rev 41311)
+++ scummvm/trunk/engines/gob/inter.h	2009-06-06 23:39:58 UTC (rev 41312)
@@ -185,7 +185,7 @@
 	bool o1_repeatUntil(OpFuncParams &params);
 	bool o1_whileDo(OpFuncParams &params);
 	bool o1_if(OpFuncParams &params);
-	bool o1_evaluateStore(OpFuncParams &params);
+	bool o1_assign(OpFuncParams &params);
 	bool o1_loadSpriteToPos(OpFuncParams &params);
 	bool o1_printText(OpFuncParams &params);
 	bool o1_loadTot(OpFuncParams &params);
@@ -383,7 +383,7 @@
 	void o2_closeItk();
 	void o2_setImdFrontSurf();
 	void o2_resetImdFrontSurf();
-	bool o2_evaluateStore(OpFuncParams &params);
+	bool o2_assign(OpFuncParams &params);
 	bool o2_printText(OpFuncParams &params);
 	bool o2_animPalInit(OpFuncParams &params);
 	bool o2_addCollision(OpFuncParams &params);
@@ -692,7 +692,7 @@
 	void o6_openItk();
 
 	bool o6_loadCursor(OpFuncParams &params);
-	bool o6_evaluateStore(OpFuncParams &params);
+	bool o6_assign(OpFuncParams &params);
 	bool o6_palLoad(OpFuncParams &params);
 	bool o6_freeCollision(OpFuncParams &params);
 	bool o6_fillRect(OpFuncParams &params);

Modified: scummvm/trunk/engines/gob/inter_bargon.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_bargon.cpp	2009-06-06 23:22:48 UTC (rev 41311)
+++ scummvm/trunk/engines/gob/inter_bargon.cpp	2009-06-06 23:39:58 UTC (rev 41312)
@@ -456,7 +456,7 @@
 		OPCODE(o1_whileDo),
 		/* 08 */
 		OPCODE(o1_if),
-		OPCODE(o2_evaluateStore),
+		OPCODE(o2_assign),
 		OPCODE(o1_loadSpriteToPos),
 		{0, ""},
 		/* 0C */

Modified: scummvm/trunk/engines/gob/inter_fascin.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_fascin.cpp	2009-06-06 23:22:48 UTC (rev 41311)
+++ scummvm/trunk/engines/gob/inter_fascin.cpp	2009-06-06 23:39:58 UTC (rev 41312)
@@ -401,7 +401,7 @@
 		OPCODE(o1_whileDo),
 		/* 08 */
 		OPCODE(o1_if),
-		OPCODE(o2_evaluateStore),
+		OPCODE(o2_assign),
 		OPCODE(o1_loadSpriteToPos),
 		{0, ""},
 		/* 0C */

Modified: scummvm/trunk/engines/gob/inter_v1.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v1.cpp	2009-06-06 23:22:48 UTC (rev 41311)
+++ scummvm/trunk/engines/gob/inter_v1.cpp	2009-06-06 23:39:58 UTC (rev 41312)
@@ -463,7 +463,7 @@
 		OPCODE(o1_whileDo),
 		/* 08 */
 		OPCODE(o1_if),
-		OPCODE(o1_evaluateStore),
+		OPCODE(o1_assign),
 		OPCODE(o1_loadSpriteToPos),
 		{0, ""},
 		/* 0C */
@@ -1322,7 +1322,7 @@
 	return false;
 }
 
-bool Inter_v1::o1_evaluateStore(OpFuncParams &params) {
+bool Inter_v1::o1_assign(OpFuncParams &params) {
 	byte *savedPos;
 	int16 token;
 	int16 result;

Modified: scummvm/trunk/engines/gob/inter_v2.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v2.cpp	2009-06-06 23:22:48 UTC (rev 41311)
+++ scummvm/trunk/engines/gob/inter_v2.cpp	2009-06-06 23:39:58 UTC (rev 41312)
@@ -436,7 +436,7 @@
 		OPCODE(o1_whileDo),
 		/* 08 */
 		OPCODE(o1_if),
-		OPCODE(o2_evaluateStore),
+		OPCODE(o2_assign),
 		OPCODE(o1_loadSpriteToPos),
 		{0, ""},
 		/* 0C */
@@ -1588,7 +1588,7 @@
 void Inter_v2::o2_resetImdFrontSurf() {
 }
 
-bool Inter_v2::o2_evaluateStore(OpFuncParams &params) {
+bool Inter_v2::o2_assign(OpFuncParams &params) {
 	byte *savedPos;
 	int16 varOff;
 	int16 token;

Modified: scummvm/trunk/engines/gob/inter_v3.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v3.cpp	2009-06-06 23:22:48 UTC (rev 41311)
+++ scummvm/trunk/engines/gob/inter_v3.cpp	2009-06-06 23:39:58 UTC (rev 41312)
@@ -453,7 +453,7 @@
 		OPCODE(o1_whileDo),
 		/* 08 */
 		OPCODE(o1_if),
-		OPCODE(o2_evaluateStore),
+		OPCODE(o2_assign),
 		OPCODE(o1_loadSpriteToPos),
 		{0, ""},
 		/* 0C */

Modified: scummvm/trunk/engines/gob/inter_v4.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v4.cpp	2009-06-06 23:22:48 UTC (rev 41311)
+++ scummvm/trunk/engines/gob/inter_v4.cpp	2009-06-06 23:39:58 UTC (rev 41312)
@@ -455,7 +455,7 @@
 		OPCODE(o1_whileDo),
 		/* 08 */
 		OPCODE(o1_if),
-		OPCODE(o2_evaluateStore),
+		OPCODE(o2_assign),
 		OPCODE(o1_loadSpriteToPos),
 		{0, ""},
 		/* 0C */

Modified: scummvm/trunk/engines/gob/inter_v5.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v5.cpp	2009-06-06 23:22:48 UTC (rev 41311)
+++ scummvm/trunk/engines/gob/inter_v5.cpp	2009-06-06 23:39:58 UTC (rev 41312)
@@ -408,7 +408,7 @@
 		OPCODE(o1_whileDo),
 		/* 08 */
 		OPCODE(o1_if),
-		OPCODE(o2_evaluateStore),
+		OPCODE(o2_assign),
 		OPCODE(o1_loadSpriteToPos),
 		{0, ""},
 		/* 0C */

Modified: scummvm/trunk/engines/gob/inter_v6.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v6.cpp	2009-06-06 23:22:48 UTC (rev 41311)
+++ scummvm/trunk/engines/gob/inter_v6.cpp	2009-06-06 23:39:58 UTC (rev 41312)
@@ -388,7 +388,7 @@
 		OPCODE(o1_whileDo),
 		/* 08 */
 		OPCODE(o1_if),
-		OPCODE(o6_evaluateStore),
+		OPCODE(o6_assign),
 		OPCODE(o1_loadSpriteToPos),
 		{0, ""},
 		/* 0C */
@@ -840,7 +840,7 @@
 	return false;
 }
 
-bool Inter_v6::o6_evaluateStore(OpFuncParams &params) {
+bool Inter_v6::o6_assign(OpFuncParams &params) {
 	byte *savedPos;
 	int16 varOff;
 	int16 token;


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