aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2004-09-13 04:45:21 +0000
committerTravis Howell2004-09-13 04:45:21 +0000
commit6611493a567b7f7b85208bb56fa931e7efba7df3 (patch)
tree09d6ded90224b961fc47f22374aa95e079a34628
parentc1122f4333d1988a78c9d9fbe67076dc979d5c83 (diff)
downloadscummvm-rg350-6611493a567b7f7b85208bb56fa931e7efba7df3.tar.gz
scummvm-rg350-6611493a567b7f7b85208bb56fa931e7efba7df3.tar.bz2
scummvm-rg350-6611493a567b7f7b85208bb56fa931e7efba7df3.zip
HE arcade game work a bit now.
svn-id: r15087
-rw-r--r--scumm/intern.h3
-rw-r--r--scumm/script_v7he.cpp4
-rw-r--r--scumm/script_v80he.cpp45
-rw-r--r--scumm/script_v90he.cpp4
4 files changed, 41 insertions, 15 deletions
diff --git a/scumm/intern.h b/scumm/intern.h
index 6ca3be5835..4e5e167788 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -790,7 +790,8 @@ protected:
/* HE version 80 script opcodes */
void o80_unknown45();
void o80_unknown49();
- void o80_unknown4D();
+ void o80_readConfigFile();
+ void o80_writeConfigFile();
void o80_cursorCommand();
void o80_setState();
};
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp
index 7afde73612..fe3cfe61f9 100644
--- a/scumm/script_v7he.cpp
+++ b/scumm/script_v7he.cpp
@@ -647,9 +647,7 @@ void ScummEngine_v7he::o7_resourceRoutines() {
resid = _resourceMapper[resid & 0x7F];
unlock(rtRoom, resid);
break;
- case 116: // SO_CLEAR_HEAP
- /* this is actually a scumm message */
- error("clear heap not working yet");
+ case 116:
break;
case 117: // SO_LOAD_CHARSET
resid = pop();
diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp
index 7241bab8a0..e6eb4b20cb 100644
--- a/scumm/script_v80he.cpp
+++ b/scumm/script_v80he.cpp
@@ -141,8 +141,8 @@ void ScummEngine_v80he::setupOpcodes() {
OPCODE(o72_wordArrayIndexedWrite),
/* 4C */
OPCODE(o6_invalid),
- OPCODE(o80_unknown4D),
- OPCODE(o6_invalid),
+ OPCODE(o80_readConfigFile),
+ OPCODE(o80_writeConfigFile),
OPCODE(o6_wordVarInc),
/* 50 */
OPCODE(o72_unknown50),
@@ -422,14 +422,14 @@ void ScummEngine_v80he::o80_unknown49() {
debug(1,"o80_unknown49 stub (%d, %d)", subOp, snd);
}
-void ScummEngine_v80he::o80_unknown4D() {
- byte option[128], option2[128], option3[256];
+void ScummEngine_v80he::o80_readConfigFile() {
+ byte name[128], section[128], filename[256];
int type, retval;
// we pretend that we don't have .ini file
- copyScriptString(option);
- copyScriptString(option2);
- copyScriptString(option3);
+ copyScriptString(section);
+ copyScriptString(name);
+ copyScriptString(filename);
type = fetchScriptByte();
switch (type) {
@@ -444,9 +444,36 @@ void ScummEngine_v80he::o80_unknown4D() {
push(retval); // var ID string
break;
default:
- error("o80_unknown4D: default type %d", type);
+ error("o80_readConfigFile: default type %d", type);
+ }
+ debug(1, "o80_readConfigFile: Filename %s Section %s Name %s", filename, section, name);
+}
+
+void ScummEngine_v80he::o80_writeConfigFile() {
+ byte filename[256], section[256], name[256], string[1024];
+ int type, value;
+
+ // we pretend that we don't have .ini file
+ type = fetchScriptByte();
+
+ switch (type) {
+ case 6: // number
+ value = pop();
+ copyScriptString(section);
+ copyScriptString(name);
+ copyScriptString(filename);
+ debug(1,"o80_writeConfigFile: Filename %s Section %s Name %s Value %d", filename, section, name, value);
+ break;
+ case 7: // string
+ copyScriptString(string);
+ copyScriptString(section);
+ copyScriptString(name);
+ copyScriptString(filename);
+ debug(1,"o80_writeConfigFile: Filename %s Section %s Name %s String %s", filename, section, name, string);
+ break;
+ default:
+ error("o80_writeConfigFile: default type %d", type);
}
- debug(1, "o80_unknown4D (%d) %s %s %s", type, option, option2, option3);
}
void ScummEngine_v80he::o80_cursorCommand() {
diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp
index e5b94d36d5..117f835821 100644
--- a/scumm/script_v90he.cpp
+++ b/scumm/script_v90he.cpp
@@ -141,8 +141,8 @@ void ScummEngine_v90he::setupOpcodes() {
OPCODE(o72_wordArrayIndexedWrite),
/* 4C */
OPCODE(o6_invalid),
- OPCODE(o80_unknown4D),
- OPCODE(o6_invalid),
+ OPCODE(o80_readConfigFile),
+ OPCODE(o80_writeConfigFile),
OPCODE(o6_wordVarInc),
/* 50 */
OPCODE(o72_unknown50),