[Scummvm-cvs-logs] SF.net SVN: scummvm: [29631] scummvm/trunk/engines/scumm/he

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Sun Nov 25 00:58:09 CET 2007


Revision: 29631
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29631&view=rev
Author:   Kirben
Date:     2007-11-24 15:58:09 -0800 (Sat, 24 Nov 2007)

Log Message:
-----------
Add notes (From wiki) for u32 codes used in Backyard Soccer.

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/he/logic_he.cpp
    scummvm/trunk/engines/scumm/he/logic_he.h

Modified: scummvm/trunk/engines/scumm/he/logic_he.cpp
===================================================================
--- scummvm/trunk/engines/scumm/he/logic_he.cpp	2007-11-24 21:56:36 UTC (rev 29630)
+++ scummvm/trunk/engines/scumm/he/logic_he.cpp	2007-11-24 23:58:09 UTC (rev 29631)
@@ -923,4 +923,40 @@
 	return 1;
 }
 
+int LogicHEsoccer::op_1007(int32 *args) {
+	// TODO: Used when the HE logo is shown
+
+	return 1;
+}
+
+int LogicHEsoccer::op_1008(int32 *args) {
+	// TODO: Used during a match (kicking?)
+
+	return 1;
+}
+
+int LogicHEsoccer::op_1012(int32 *args) {
+	// TODO: Used after op_1019
+
+	return 1;
+}
+
+int LogicHEsoccer::op_1014(int32 *args) {
+	// TODO: Used many times during a match
+
+	return 1;
+}
+
+int LogicHEsoccer::op_1019(int32 *args) {
+	// TODO: Used at the beginning of a match
+
+	return 1;
+}
+
+int LogicHEsoccer::op_1021(int32 *args) {
+	// TODO: Used during a match (ball movement?)
+
+	return 1;
+}
+
 } // End of namespace Scumm

Modified: scummvm/trunk/engines/scumm/he/logic_he.h
===================================================================
--- scummvm/trunk/engines/scumm/he/logic_he.h	2007-11-24 21:56:36 UTC (rev 29630)
+++ scummvm/trunk/engines/scumm/he/logic_he.h	2007-11-24 23:58:09 UTC (rev 29631)
@@ -127,6 +127,12 @@
 	int op_1003(int32 *args);
 	int op_1004(int32 *args);
 	int op_1006(int32 *args);
+	int op_1007(int32 *args);
+	int op_1008(int32 *args);
+	int op_1012(int32 *args);
+	int op_1014(int32 *args);
+	int op_1019(int32 *args);
+	int op_1021(int32 *args);
 };
 
 } // End of namespace Scumm


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