aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra_v2.h
diff options
context:
space:
mode:
authorJohannes Schickel2008-03-28 00:13:43 +0000
committerJohannes Schickel2008-03-28 00:13:43 +0000
commit98f9a47619681943d9dc797f6982abca3a1f4c44 (patch)
treeb148ec5f5399d1d431909673b88ac13946ea46cb /engines/kyra/kyra_v2.h
parent221e6bb84f67e8fd808d922a0ff347956b78e166 (diff)
downloadscummvm-rg350-98f9a47619681943d9dc797f6982abca3a1f4c44.tar.gz
scummvm-rg350-98f9a47619681943d9dc797f6982abca3a1f4c44.tar.bz2
scummvm-rg350-98f9a47619681943d9dc797f6982abca3a1f4c44.zip
Implemented opcodes:
- 38: o2_countItemsInScene - 57: o2_setTimerDelay - 84: o2_getSceneExitToFacing - 137: o2_removeItemFromScene svn-id: r31279
Diffstat (limited to 'engines/kyra/kyra_v2.h')
-rw-r--r--engines/kyra/kyra_v2.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/kyra/kyra_v2.h b/engines/kyra/kyra_v2.h
index 5d57c4ca66..226d0ed330 100644
--- a/engines/kyra/kyra_v2.h
+++ b/engines/kyra/kyra_v2.h
@@ -984,6 +984,7 @@ protected:
int o2_defineItem(ScriptState *script);
int o2_removeItemFromInventory(ScriptState *script);
int o2_countItemInInventory(ScriptState *script);
+ int o2_countItemsInScene(ScriptState *script);
int o2_queryGameFlag(ScriptState *script);
int o2_resetGameFlag(ScriptState *script);
int o2_setGameFlag(ScriptState *script);
@@ -1000,6 +1001,7 @@ protected:
//int o2_playSoundEffect(ScriptState *script);
int o2_delaySecs(ScriptState *script);
int o2_delay(ScriptState *script);
+ int o2_setTimerDelay(ScriptState *script);
int o2_setScaleTableItem(ScriptState *script);
int o2_setDrawLayerTableItem(ScriptState *script);
int o2_setCharPalEntry(ScriptState *script);
@@ -1022,6 +1024,7 @@ protected:
int o2_switchScene(ScriptState *script);
int o2_getShapeFlag1(ScriptState *script);
int o2_setPathfinderFlag(ScriptState *script);
+ int o2_getSceneExitToFacing(ScriptState *script);
int o2_setLayerFlag(ScriptState *script);
int o2_setZanthiaPos(ScriptState *script);
int o2_loadMusicTrack(ScriptState *script);
@@ -1066,6 +1069,7 @@ protected:
int o2_getColorCodeValue(ScriptState *script);
int o2_setColorCodeValue(ScriptState *script);
int o2_countItemInstances(ScriptState *script);
+ int o2_removeItemFromScene(ScriptState *script);
int o2_initObject(ScriptState *script);
int o2_npcChat(ScriptState *script);
int o2_deinitObject(ScriptState *script);