aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/he
diff options
context:
space:
mode:
authorTravis Howell2007-11-24 23:58:09 +0000
committerTravis Howell2007-11-24 23:58:09 +0000
commitf47add1b7ed57a0ca7cb6a869e575436ec3af436 (patch)
tree1011bfc5a5e5642b80ac278e71bc19e9d9dff454 /engines/scumm/he
parente10aa928c16fc5b71f05c34df230f4c23ddb0036 (diff)
downloadscummvm-rg350-f47add1b7ed57a0ca7cb6a869e575436ec3af436.tar.gz
scummvm-rg350-f47add1b7ed57a0ca7cb6a869e575436ec3af436.tar.bz2
scummvm-rg350-f47add1b7ed57a0ca7cb6a869e575436ec3af436.zip
Add notes (From wiki) for u32 codes used in Backyard Soccer.
svn-id: r29631
Diffstat (limited to 'engines/scumm/he')
-rw-r--r--engines/scumm/he/logic_he.cpp36
-rw-r--r--engines/scumm/he/logic_he.h6
2 files changed, 42 insertions, 0 deletions
diff --git a/engines/scumm/he/logic_he.cpp b/engines/scumm/he/logic_he.cpp
index 7620cf61cb..bdb48f70ed 100644
--- a/engines/scumm/he/logic_he.cpp
+++ b/engines/scumm/he/logic_he.cpp
@@ -923,4 +923,40 @@ int LogicHEsoccer::op_1006(int32 *args) {
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
diff --git a/engines/scumm/he/logic_he.h b/engines/scumm/he/logic_he.h
index f9e59f7db6..96de40f287 100644
--- a/engines/scumm/he/logic_he.h
+++ b/engines/scumm/he/logic_he.h
@@ -127,6 +127,12 @@ private:
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