diff options
author | Johannes Schickel | 2008-04-26 23:26:47 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-04-26 23:26:47 +0000 |
commit | 9b3edffa8dcc532370d3e8d924610642701237bf (patch) | |
tree | 690c89946b158dff4bf5aee30854f96bda58faaf /engines | |
parent | 567c7312356d8f9e8207c4d5ef476a8235591fcb (diff) | |
download | scummvm-rg350-9b3edffa8dcc532370d3e8d924610642701237bf.tar.gz scummvm-rg350-9b3edffa8dcc532370d3e8d924610642701237bf.tar.bz2 scummvm-rg350-9b3edffa8dcc532370d3e8d924610642701237bf.zip |
Implemented opcodes:
- 74: o3_setSceneAnimPosAndFrame
- 81: o3_switchScene
svn-id: r31744
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/kyra_v3.h | 4 | ||||
-rw-r--r-- | engines/kyra/script_v3.cpp | 74 |
2 files changed, 74 insertions, 4 deletions
diff --git a/engines/kyra/kyra_v3.h b/engines/kyra/kyra_v3.h index a8bf4baab6..ae5b9040de 100644 --- a/engines/kyra/kyra_v3.h +++ b/engines/kyra/kyra_v3.h @@ -716,6 +716,8 @@ private: int o3_checkForItem(ScriptState *script); int o3_resetInventory(ScriptState *script); int o3_defineItem(ScriptState *script); + int o3_removeInventoryItemInstances(ScriptState *script); + int o3_countInventoryItemInstances(ScriptState *script); int o3_npcChatSequence(ScriptState *script); int o3_queryGameFlag(ScriptState *script); int o3_resetGameFlag(ScriptState *script); @@ -741,10 +743,12 @@ private: int o3_updateConversations(ScriptState *script); int o3_setSceneDim(ScriptState *script); int o3_update(ScriptState *script); + int o3_setSceneAnimPosAndFrame(ScriptState *script); int o3_removeItemInstances(ScriptState *script); int o3_disableInventory(ScriptState *script); int o3_enableInventory(ScriptState *script); int o3_enterNewScene(ScriptState *script); + int o3_switchScene(ScriptState *script); int o3_setMalcolmPos(ScriptState *script); int o3_stopMusic(ScriptState *script); int o3_playMusicTrack(ScriptState *script); diff --git a/engines/kyra/script_v3.cpp b/engines/kyra/script_v3.cpp index e05bc3b471..f620750891 100644 --- a/engines/kyra/script_v3.cpp +++ b/engines/kyra/script_v3.cpp @@ -273,6 +273,32 @@ int KyraEngine_v3::o3_defineItem(ScriptState *script) { return freeItem; } +int KyraEngine_v3::o3_removeInventoryItemInstances(ScriptState *script) { + debugC(3, kDebugLevelScriptFuncs, "KyraEngine_v3::o3_removeInventoryItemInstances(%p) (%d)", (const void *)script, stackPos(0)); + const int item = stackPos(0); + for (int i = 0; i < 10; ++i) { + if (_mainCharacter.inventory[i] == item) + _mainCharacter.inventory[i] = 0xFFFF; + } + return 0; +} + +int KyraEngine_v3::o3_countInventoryItemInstances(ScriptState *script) { + debugC(3, kDebugLevelScriptFuncs, "KyraEngine_v3::o3_countInventoryItemInstances(%p) (%d)", (const void *)script, stackPos(0)); + const int item = stackPos(0); + int count = 0; + + for (int i = 0; i < 10; ++i) { + if (_mainCharacter.inventory[i] == item) + ++count; + } + + if (_itemInHand == item) + ++count; + + return count; +} + int KyraEngine_v3::o3_npcChatSequence(ScriptState *script) { debugC(3, kDebugLevelScriptFuncs, "KyraEngine_v3::o3_npcChatSequence(%p) (%d, %d)", (const void *)script, stackPos(0), stackPos(1)); const int id = stackPos(0); @@ -720,6 +746,35 @@ int KyraEngine_v3::o3_setSceneDim(ScriptState *script) { return 0; } +int KyraEngine_v3::o3_setSceneAnimPosAndFrame(ScriptState *script) { + debugC(3, kDebugLevelScriptFuncs, "KyraEngine_v3::o3_setSceneAnimPosAndFrame(%p) (%d, %d, %d, %d, %d, %d)", (const void *)script, + stackPos(0), stackPos(1), stackPos(2), stackPos(3), stackPos(4), stackPos(5)); + SceneAnim &anim = _sceneAnims[stackPos(0)]; + const int newX2 = stackPos(1); + const int newY2 = stackPos(2); + const int newX = stackPos(3); + const int newY = stackPos(4); + + if (newX2 >= 0) + anim.x2 = newX2; + if (newY2 >= 0) + anim.y2 = newY2; + + if (newX >= 0) + anim.x = newX; + else + anim.x = anim.x2 + (anim.width >> 1); + + if (newY >= 0) + anim.y = newY; + else + anim.y = anim.y2 + anim.height - 1; + + updateSceneAnim(stackPos(0), stackPos(5)); + _specialSceneScriptRunFlag = false; + return 0; +} + int KyraEngine_v3::o3_update(ScriptState *script) { debugC(3, kDebugLevelScriptFuncs, "KyraEngine_v3::o3_update(%p) (%d)", (const void *)script, stackPos(0)); for (int times = stackPos(0); times != 0; --times) { @@ -789,6 +844,17 @@ int KyraEngine_v3::o3_enterNewScene(ScriptState *script) { return 0; } +int KyraEngine_v3::o3_switchScene(ScriptState *script) { + debugC(3, kDebugLevelScriptFuncs, "KyraEngine_v3::o3_switchScene(%p) (%d)", (const void *)script, stackPos(0)); + setGameFlag(1); + _mainCharX = _mainCharacter.x1; + _mainCharY = _mainCharacter.y1; + _noScriptEnter = false; + enterNewScene(stackPos(0), _mainCharacter.facing, 0, 0, 0); + _noScriptEnter = true; + return 0; +} + int KyraEngine_v3::o3_setMalcolmPos(ScriptState *script) { debugC(3, kDebugLevelScriptFuncs, "KyraEngine_v3::o3_setMalcolmPos(%p) (%d, %d)", (const void *)script, stackPos(0), stackPos(1)); _mainCharX = stackPos(0); @@ -1325,8 +1391,8 @@ void KyraEngine_v3::setupOpcodeTable() { Opcode(o3_resetInventory); Opcode(o3_defineItem); // 0x24 - OpcodeUnImpl(); - OpcodeUnImpl(); + Opcode(o3_removeInventoryItemInstances); + Opcode(o3_countInventoryItemInstances); Opcode(o3_npcChatSequence); Opcode(o3_queryGameFlag); // 0x28 @@ -1372,7 +1438,7 @@ void KyraEngine_v3::setupOpcodeTable() { // 0x48 Opcode(o3_dummy); Opcode(o3_dummy); - OpcodeUnImpl(); + Opcode(o3_setSceneAnimPosAndFrame); Opcode(o3_update); // 0x4c Opcode(o3_removeItemInstances); @@ -1381,7 +1447,7 @@ void KyraEngine_v3::setupOpcodeTable() { Opcode(o3_enableInventory); // 0x50 Opcode(o3_enterNewScene); - OpcodeUnImpl(); + Opcode(o3_switchScene); OpcodeUnImpl(); Opcode(o3_dummy); // 0x54 |