aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra_v2.h
diff options
context:
space:
mode:
authorJohannes Schickel2008-03-15 09:57:41 +0000
committerJohannes Schickel2008-03-15 09:57:41 +0000
commit91adba9842b516cbe02966f0d140aa2d7f5dc79c (patch)
tree09f7d2497ecf0e68fc3ae13a8196148edcf8aed3 /engines/kyra/kyra_v2.h
parent8e3681dbe9fcc08ff3b74190bc8bf1d48d236564 (diff)
downloadscummvm-rg350-91adba9842b516cbe02966f0d140aa2d7f5dc79c.tar.gz
scummvm-rg350-91adba9842b516cbe02966f0d140aa2d7f5dc79c.tar.bz2
scummvm-rg350-91adba9842b516cbe02966f0d140aa2d7f5dc79c.zip
Implement opcodes:
- 7: o2_getCharacterScene - 54: o2_delaySecs - 103: o2_fillRect svn-id: r31125
Diffstat (limited to 'engines/kyra/kyra_v2.h')
-rw-r--r--engines/kyra/kyra_v2.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/kyra/kyra_v2.h b/engines/kyra/kyra_v2.h
index 243f0bd830..c145c79727 100644
--- a/engines/kyra/kyra_v2.h
+++ b/engines/kyra/kyra_v2.h
@@ -935,6 +935,7 @@ protected:
int o2_getCharacterX(ScriptState *script);
int o2_getCharacterY(ScriptState *script);
int o2_getCharacterFacing(ScriptState *script);
+ int o2_getCharacterScene(ScriptState *script);
int o2_setSceneComment(ScriptState *script);
int o2_setCharacterAnimFrame(ScriptState *script);
int o2_trySceneChange(ScriptState *script);
@@ -957,6 +958,7 @@ protected:
int o2_setMousePos(ScriptState *script);
int o2_showMouse(ScriptState *script);
//int o2_playSoundEffect(ScriptState *script);
+ int o2_delaySecs(ScriptState *script);
int o2_delay(ScriptState *script);
int o2_setScaleTableItem(ScriptState *script);
int o2_setDrawLayerTableItem(ScriptState *script);
@@ -975,6 +977,7 @@ protected:
int o2_playWanderScoreViaMap(ScriptState *script);
int o2_playSoundEffect(ScriptState *script);
int o2_getRand(ScriptState *script);
+ int o2_fillRect(ScriptState *script);
int o2_encodeShape(ScriptState *script);
int o2_defineRoomEntrance(ScriptState *script);
int o2_runTemporaryScript(ScriptState *script);