aboutsummaryrefslogtreecommitdiff
path: root/scumm/intern.h
diff options
context:
space:
mode:
authorMax Horn2004-09-18 22:09:34 +0000
committerMax Horn2004-09-18 22:09:34 +0000
commit7b7021028676f61b0ff261c35ab8d6d5e86a118e (patch)
treea54175cf4956eb98c0e1361dbe1daadd9f3db942 /scumm/intern.h
parent81191ea60bd66baf6cbffa52ab52121592c33b86 (diff)
downloadscummvm-rg350-7b7021028676f61b0ff261c35ab8d6d5e86a118e.tar.gz
scummvm-rg350-7b7021028676f61b0ff261c35ab8d6d5e86a118e.tar.bz2
scummvm-rg350-7b7021028676f61b0ff261c35ab8d6d5e86a118e.zip
renamed HE opcodes to distinguish them from their 'regular' V6/V7 counterparts
svn-id: r15173
Diffstat (limited to 'scumm/intern.h')
-rw-r--r--scumm/intern.h72
1 files changed, 35 insertions, 37 deletions
diff --git a/scumm/intern.h b/scumm/intern.h
index e6757a1030..223770ace7 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -587,24 +587,23 @@ protected:
void swapObjects(int object1, int object2);
/* HE version 60 script opcodes */
- // TODO: Rename all these methods to use prefix "o6he_" instead of "o6_"
- void o6_setState();
- void o6_roomOps();
- void o6_actorOps();
- void o6_wait();
- void o6_kernelSetFunctions();
- void o6_kernelGetFunctions();
- void o6_openFile();
- void o6_closeFile();
- void o6_deleteFile();
- void o6_readFile();
- void o6_rename();
- void o6_writeFile();
- void o6_soundOps();
- void o6_seekFilePos();
- void o6_localizeArray();
- void o6_redimArray();
- void o6_readFilePos();
+ void o6he_setState();
+ void o6he_roomOps();
+ void o6he_actorOps();
+ void o6he_wait();
+ void o6he_kernelSetFunctions();
+ void o6he_kernelGetFunctions();
+ void o6he_openFile();
+ void o6he_closeFile();
+ void o6he_deleteFile();
+ void o6he_readFile();
+ void o6he_rename();
+ void o6he_writeFile();
+ void o6he_soundOps();
+ void o6he_seekFilePos();
+ void o6he_localizeArray();
+ void o6he_redimArray();
+ void o6he_readFilePos();
};
class ScummEngine_v7he : public ScummEngine_v6he {
@@ -637,25 +636,24 @@ protected:
int polygonHit(int id, int x, int y);
/* HE version 70 script opcodes */
- // TODO: Rename all these methods to use prefix "o70he_" instead of "o7_"
- void o7_cursorCommand();
- void o7_startSound();
- void o7_pickupObject();
- void o7_getActorRoom();
- void o7_resourceRoutines();
- void o7_quitPauseRestart();
- void o7_kernelSetFunctions();
- void o7_unknownED();
- void o7_stringLen();
- void o7_unknownEF();
- void o7_readINI();
- void o7_writeINI();
- void o7_unknownF5();
- void o7_unknownF6();
- void o7_setFilePath();
- void o7_unknownFA();
- void o7_polygonOps();
- void o7_polygonHit();
+ void o70he_cursorCommand();
+ void o70he_startSound();
+ void o70he_pickupObject();
+ void o70he_getActorRoom();
+ void o70he_resourceRoutines();
+ void o70he_quitPauseRestart();
+ void o70he_kernelSetFunctions();
+ void o70he_unknownED();
+ void o70he_stringLen();
+ void o70he_unknownEF();
+ void o70he_readINI();
+ void o70he_writeINI();
+ void o70he_unknownF5();
+ void o70he_unknownF6();
+ void o70he_setFilePath();
+ void o70he_unknownFA();
+ void o70he_polygonOps();
+ void o70he_polygonHit();
};
class ScummEngine_v72he : public ScummEngine_v7he {