aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2012-06-17 14:44:30 +0200
committerEugene Sandulenko2018-03-28 17:36:57 +0200
commit802f132f02e5b0d9cb603eb4e19e610f13d27890 (patch)
treeced65865e3292f7f9f01bb1866b268332abd1071
parent7e55ed492c5313edc7b2a39b36ee495e5a23f34d (diff)
downloadscummvm-rg350-802f132f02e5b0d9cb603eb4e19e610f13d27890.tar.gz
scummvm-rg350-802f132f02e5b0d9cb603eb4e19e610f13d27890.tar.bz2
scummvm-rg350-802f132f02e5b0d9cb603eb4e19e610f13d27890.zip
LILLIPUT: One more renaming
-rw-r--r--engines/lilliput/script.cpp31
-rw-r--r--engines/lilliput/script.h2
2 files changed, 12 insertions, 21 deletions
diff --git a/engines/lilliput/script.cpp b/engines/lilliput/script.cpp
index c842331843..b555bd158a 100644
--- a/engines/lilliput/script.cpp
+++ b/engines/lilliput/script.cpp
@@ -418,7 +418,7 @@ void LilliputScript::handleOpcodeType2(int curWord) {
OC_setInterfaceHotspot();
break;
case 0x3A:
- OC_sub180C3();
+ OC_scrollViewPort();
break;
case 0x3B:
OC_setViewPortPos();
@@ -668,7 +668,7 @@ static const OpCode opCodes2[] = {
/* 0x37 */ { "OC_sub18074", 2, kImmediateValue, kImmediateValue, kNone, kNone, kNone },
/* 0x38 */ { "OC_setCurrentCharacterDirection", 1, kImmediateValue, kNone, kNone, kNone, kNone },
/* 0x39 */ { "OC_setInterfaceHotspot", 2, kImmediateValue, kImmediateValue, kNone, kNone, kNone },
-/* 0x3a */ { "OC_sub180C3", 1, kImmediateValue, kNone, kNone, kNone, kNone },
+/* 0x3a */ { "OC_scrollViewPort", 1, kImmediateValue, kNone, kNone, kNone, kNone },
/* 0x3b */ { "OC_setViewPortPos", 1, kgetPosFromScript, kNone, kNone, kNone, kNone },
/* 0x3c */ { "OC_setCurrentCharacterAltitude", 1, kImmediateValue, kNone, kNone, kNone, kNone },
/* 0x3d */ { "OC_sub1817F", 2, kImmediateValue, kImmediateValue, kNone, kNone, kNone },
@@ -2803,30 +2803,21 @@ void LilliputScript::OC_setInterfaceHotspot() {
_vm->displayInterfaceHotspots();
}
-void LilliputScript::OC_sub180C3() {
- debugC(1, kDebugScriptTBC, "OC_sub180C3()");
+void LilliputScript::OC_scrollViewPort() {
+ debugC(1, kDebugScriptTBC, "OC_scrollViewPort()");
_viewportCharacterTarget = -1;
- int var1 = _currScript->readUint16LE();
-
- static const char _byte180B3[] = { 6, 0, 0, -6 };
- static const char _byte180BB[] = { 0, -6, 6, 0 };
+ int direction = _currScript->readUint16LE();
- int x = _viewportPos.x + _byte180B3[var1];
- int y = _viewportPos.y + _byte180BB[var1];
-
- if (x < 0)
- x = 0;
-
- if (y < 0)
- y = 0;
+ static const char scrollValX[] = { 6, 0, 0, -6 };
+ static const char scrollValY[] = { 0, -6, 6, 0 };
- if (x > 56)
- x = 56;
+ int x = _viewportPos.x + scrollValX[direction];
+ int y = _viewportPos.y + scrollValY[direction];
- if (y > 56)
- y = 56;
+ CLIP(x, 0, 56);
+ CLIP(y, 0, 56);
_vm->_refreshScreenFlag = true;
_vm->viewportScrollTo(Common::Point(x, y));
diff --git a/engines/lilliput/script.h b/engines/lilliput/script.h
index b796e8533c..5969ec130d 100644
--- a/engines/lilliput/script.h
+++ b/engines/lilliput/script.h
@@ -252,7 +252,7 @@ private:
void OC_sub18074();
void OC_setCurrentCharacterDirection();
void OC_setInterfaceHotspot();
- void OC_sub180C3();
+ void OC_scrollViewPort();
void OC_setViewPortPos();
void OC_setCurrentCharacterAltitude();
void OC_sub1817F();