aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorMax Horn2007-02-03 01:21:49 +0000
committerMax Horn2007-02-03 01:21:49 +0000
commit5395c4a2f4463ec2f3f9fdcc42d6f0a37f085620 (patch)
treec506242541044e1bc075e123fa0311444d2e1b2d /engines/scumm
parente363d1ebb1b29919b45af724498b8f158ca6d8aa (diff)
downloadscummvm-rg350-5395c4a2f4463ec2f3f9fdcc42d6f0a37f085620.tar.gz
scummvm-rg350-5395c4a2f4463ec2f3f9fdcc42d6f0a37f085620.tar.bz2
scummvm-rg350-5395c4a2f4463ec2f3f9fdcc42d6f0a37f085620.zip
Removed _actorPos locat vars, and instead use _pos directly
svn-id: r25344
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/actor.cpp34
1 files changed, 14 insertions, 20 deletions
diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp
index f360cd5b3d..e8c087e160 100644
--- a/engines/scumm/actor.cpp
+++ b/engines/scumm/actor.cpp
@@ -247,15 +247,14 @@ int getAngleFromPos(int x, int y, bool useATAN) {
}
int Actor::calcMovementFactor(const Common::Point& next) {
- Common::Point _actorPos(_pos);
int diffX, diffY;
int32 deltaXFactor, deltaYFactor;
- if (_actorPos == next)
+ if (_pos == next)
return 0;
- diffX = next.x - _actorPos.x;
- diffY = next.y - _actorPos.y;
+ diffX = next.x - _pos.x;
+ diffY = next.y - _pos.y;
deltaYFactor = _speedy << 16;
if (diffY < 0)
@@ -281,7 +280,7 @@ int Actor::calcMovementFactor(const Common::Point& next) {
}
}
- _walkdata.cur = _actorPos;
+ _walkdata.cur = _pos;
_walkdata.next = next;
_walkdata.deltaXFactor = deltaXFactor;
_walkdata.deltaYFactor = deltaYFactor;
@@ -295,7 +294,6 @@ int Actor::calcMovementFactor(const Common::Point& next) {
int Actor::actorWalkStep() {
int tmpX, tmpY;
- Common::Point _actorPos;
int distX, distY;
int nextFacing;
@@ -309,38 +307,34 @@ int Actor::actorWalkStep() {
_moving |= MF_IN_LEG;
}
- _actorPos = _pos;
-
- if (_walkbox != _walkdata.curbox && _vm->checkXYInBoxBounds(_walkdata.curbox, _actorPos.x, _actorPos.y)) {
+ if (_walkbox != _walkdata.curbox && _vm->checkXYInBoxBounds(_walkdata.curbox, _pos.x, _pos.y)) {
setBox(_walkdata.curbox);
}
distX = ABS(_walkdata.next.x - _walkdata.cur.x);
distY = ABS(_walkdata.next.y - _walkdata.cur.y);
- if (ABS(_actorPos.x - _walkdata.cur.x) >= distX && ABS(_actorPos.y - _walkdata.cur.y) >= distY) {
+ if (ABS(_pos.x - _walkdata.cur.x) >= distX && ABS(_pos.y - _walkdata.cur.y) >= distY) {
_moving &= ~MF_IN_LEG;
return 0;
}
- tmpX = (_actorPos.x << 16) + _walkdata.xfrac + (_walkdata.deltaXFactor >> 8) * _scalex;
+ tmpX = (_pos.x << 16) + _walkdata.xfrac + (_walkdata.deltaXFactor >> 8) * _scalex;
_walkdata.xfrac = (uint16)tmpX;
- _actorPos.x = (tmpX >> 16);
+ _pos.x = (tmpX >> 16);
- tmpY = (_actorPos.y << 16) + _walkdata.yfrac + (_walkdata.deltaYFactor >> 8) * _scaley;
+ tmpY = (_pos.y << 16) + _walkdata.yfrac + (_walkdata.deltaYFactor >> 8) * _scaley;
_walkdata.yfrac = (uint16)tmpY;
- _actorPos.y = (tmpY >> 16);
+ _pos.y = (tmpY >> 16);
- if (ABS(_actorPos.x - _walkdata.cur.x) > distX) {
- _actorPos.x = _walkdata.next.x;
+ if (ABS(_pos.x - _walkdata.cur.x) > distX) {
+ _pos.x = _walkdata.next.x;
}
- if (ABS(_actorPos.y - _walkdata.cur.y) > distY) {
- _actorPos.y = _walkdata.next.y;
+ if (ABS(_pos.y - _walkdata.cur.y) > distY) {
+ _pos.y = _walkdata.next.y;
}
- _pos = _actorPos;
-
if (_vm->_game.version >= 4 && _vm->_game.version <= 6 && _pos == _walkdata.next) {
_moving &= ~MF_IN_LEG;
return 0;