aboutsummaryrefslogtreecommitdiff
path: root/kyra/script_v1.cpp
diff options
context:
space:
mode:
authorJames Brown2004-10-15 06:06:47 +0000
committerJames Brown2004-10-15 06:06:47 +0000
commit8f65711a28b0cdedca29cdd1787b40546d448575 (patch)
treefeafc61c0bdbd529ef1eb52acf743033395f3547 /kyra/script_v1.cpp
parent9e40ef7d29ccaca45708b39e1da92bbca088d6ac (diff)
downloadscummvm-rg350-8f65711a28b0cdedca29cdd1787b40546d448575.tar.gz
scummvm-rg350-8f65711a28b0cdedca29cdd1787b40546d448575.tar.bz2
scummvm-rg350-8f65711a28b0cdedca29cdd1787b40546d448575.zip
Merge in some of LordHotos kyra code, with some changes.
It's still non-functional, but once I merge in some more of my local changes things should actually be moving a long a bit. svn-id: r15554
Diffstat (limited to 'kyra/script_v1.cpp')
-rw-r--r--kyra/script_v1.cpp220
1 files changed, 220 insertions, 0 deletions
diff --git a/kyra/script_v1.cpp b/kyra/script_v1.cpp
new file mode 100644
index 0000000000..8b306f52e1
--- /dev/null
+++ b/kyra/script_v1.cpp
@@ -0,0 +1,220 @@
+/* ScummVM - Kyrandia Interpreter
+ * Copyright (C) 2003-2004 The ScummVM project
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+
+#include "stdafx.h"
+
+#include "kyra.h"
+#include "script.h"
+
+namespace Kyra {
+ // Command procs
+
+ void VMContext::c1_unknownCommand(void) {
+ debug("unknown command '0x%x'.", _currentCommand);
+ debug("\targument: '0x%x'", _argument);
+
+ _error = true;
+ }
+
+ void VMContext::c1_goToLine(void) {
+ _instructionPos = _argument << 1;
+ }
+
+ void VMContext::c1_setReturn(void) {
+ _returnValue = _argument;
+ }
+
+ void VMContext::c1_pushRetRec(void) {
+ if (!_argument) {
+ pushStack(_returnValue);
+ } else {
+ int32 rec = ((int16)_tempPos << 16) | ((_instructionPos >> 1) + 1);
+ pushStack(rec);
+ _tempPos = _instructionPos;
+ }
+ }
+
+ void VMContext::c1_push(void) {
+ pushStack(_argument);
+ }
+
+ void VMContext::c1_pushVar(void) {
+ pushStack(_registers[_argument]);
+ }
+
+ void VMContext::c1_pushFrameNeg(void) {
+ pushStack(_stack[_tempPos + _argument]);
+ }
+
+ void VMContext::c1_pushFramePos(void) {
+ pushStack(_stack[_tempPos - _argument]);
+ }
+
+ void VMContext::c1_popRetRec(void) {
+ if (!_argument) {
+ _returnValue = popStack();
+ } else {
+ if (_stackPos <= 0) {
+ _scriptState = kScriptStopped;
+ }
+ int32 rec = popStack();
+
+ _tempPos = (int16)((rec & 0xFFFF0000) >> 16);
+ _instructionPos = (rec & 0x0000FFFF) * 2;
+ }
+ }
+
+ void VMContext::c1_popVar(void) {
+ _registers[_argument] = popStack();
+ }
+
+ void VMContext::c1_popFrameNeg(void) {
+ _stack[_tempPos + _argument] = popStack();
+ }
+
+ void VMContext::c1_popFramePos(void) {
+ _stack[_tempPos - _argument] = popStack();
+ }
+
+ void VMContext::c1_addToSP(void) {
+ _stackPos -= _argument;
+ }
+
+ void VMContext::c1_subFromSP(void) {
+ _stackPos += _argument;
+ }
+
+ void VMContext::c1_execOpcode(void) {
+ OpcodeProc proc = _opcodes[_argument].proc;
+ (this->*proc)();
+ }
+
+ void VMContext::c1_ifNotGoTo(void) {
+ if (!popStack()) {
+ _instructionPos = _argument << 1;
+ }
+ }
+
+ void VMContext::c1_negate(void) {
+ switch(_argument) {
+ case 0:
+ topStack() = !topStack();
+ break;
+
+ case 1:
+ topStack() = -topStack();
+ break;
+
+ case 2:
+ topStack() = ~topStack();
+ break;
+
+ default:
+ debug("unkown negate instruction %d", _argument);
+ _error = true;
+ break;
+ };
+ }
+
+ void VMContext::c1_evaluate(void) {
+ int32 x, y;
+ int32 res = false;
+
+ x = popStack();
+ y = popStack();
+
+ switch(_argument) {
+ case 0:
+ res = x && y;
+ break;
+
+ case 1:
+ res = x || y;
+ break;
+
+ case 3:
+ res = x != y;
+ break;
+
+ case 4:
+ res = x < y;
+ break;
+
+ case 5:
+ res = x <= y;
+ break;
+
+ case 6:
+ res = x > y;
+ break;
+
+ case 7:
+ res = x >= y;
+ break;
+
+ case 8:
+ res = x + y;
+ break;
+
+ case 9:
+ res = x - y;
+ break;
+
+ case 10:
+ res = x * y;
+ break;
+
+ case 11:
+ res = x / y;
+ break;
+
+ case 12:
+ res = x >> y;
+ break;
+
+ case 13:
+ res = x << y;
+ break;
+
+ case 14:
+ res = x & y;
+ break;
+
+ case 15:
+ res = x | y;
+ break;
+
+ case 16:
+ res = x % y;
+ break;
+
+ case 17:
+ res = x ^ y;
+ break;
+
+ default:
+ debug("unknown evaluate command");
+ break;
+ };
+
+ pushStack(res);
+ }
+} // end of namespace Kyra