summaryrefslogtreecommitdiff
path: root/src/net/tmwa/beinghandler.cpp
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-03-17 00:55:59 +0100
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-03-17 00:55:59 +0100
commitc6462143d107c35846cadc45e205d8ecedb6bf7a (patch)
treec6c9d01710bb4d079653fcdb6cf01dcef1d00a62 /src/net/tmwa/beinghandler.cpp
parent452dc7f163749de0b5d698af2f022ca22c1aabb0 (diff)
downloadmana-client-c6462143d107c35846cadc45e205d8ecedb6bf7a.tar.gz
mana-client-c6462143d107c35846cadc45e205d8ecedb6bf7a.tar.bz2
mana-client-c6462143d107c35846cadc45e205d8ecedb6bf7a.tar.xz
mana-client-c6462143d107c35846cadc45e205d8ecedb6bf7a.zip
Handle ta move and position message in a more generic way.
This avoids code duplication.
Diffstat (limited to 'src/net/tmwa/beinghandler.cpp')
-rw-r--r--src/net/tmwa/beinghandler.cpp133
1 files changed, 47 insertions, 86 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp
index cee915c7..b7f702c0 100644
--- a/src/net/tmwa/beinghandler.cpp
+++ b/src/net/tmwa/beinghandler.cpp
@@ -101,6 +101,44 @@ Being *createBeing(int id, short job)
return being;
}
+void handleMoveMessage(Uint16 srcX, Uint16 srcY, Uint16 dstX, Uint16 dstY,
+ Being *dstBeing, int tileWidth, int tileHeight)
+{
+ // Avoid dealing with flawed destination
+ if (srcX && srcY && dstX && dstY)
+ {
+ Vector pos(srcX * tileWidth + tileWidth / 2,
+ srcY * tileHeight + tileHeight / 2);
+
+ Vector dest(dstX * tileWidth + tileWidth / 2,
+ dstY * tileHeight + tileHeight / 2);
+
+ // Don't set the position as the movement algorithm
+ // can guess it and it would break the animation played,
+ // when we're close enough.
+ if (std::abs(dest.x - pos.x) > POS_DEST_DIFF_TOLERANCE
+ || std::abs(dest.y - pos.y) > POS_DEST_DIFF_TOLERANCE)
+ dstBeing->setPosition(pos);
+
+ // We turn the destination back to a pixel one.
+ dstBeing->setDestination(dest.x, dest.y);
+ }
+}
+
+void handlePosMessage(Uint16 x, Uint16 y, Being *dstBeing,
+ int tileWidth, int tileHeight, Uint8 dir = 0)
+{
+ // Avoid dealing with flawed destination
+ if (x && y)
+ {
+ Vector pos(x * tileWidth + tileWidth / 2,
+ y * tileHeight + tileHeight / 2);
+ dstBeing->setPosition(pos);
+ if (dir)
+ dstBeing->setDirection(dir);
+ }
+}
+
void BeingHandler::handleMessage(Net::MessageIn &msg)
{
if (!actorSpriteManager)
@@ -216,41 +254,15 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
{
Uint16 srcX, srcY, dstX, dstY;
msg.readCoordinatePair(srcX, srcY, dstX, dstY);
- //dstBeing->setAction(Being::STAND); Useless
- // Avoid dealing with flawed destination
- if (srcX && srcY && dstX && dstY)
- {
- Vector pos(srcX * tileWidth + tileWidth / 2,
- srcY * tileHeight + tileHeight / 2);
-
- Vector dest(dstX * tileWidth + tileWidth / 2,
- dstY * tileHeight + tileHeight / 2);
- // Don't set the position as the movement algorithm
- // can guess it and it would break the animation played,
- // when we're close enough.
- if (std::abs(dest.x - pos.x) > POS_DEST_DIFF_TOLERANCE
- || std::abs(dest.y - pos.y) > POS_DEST_DIFF_TOLERANCE)
- dstBeing->setPosition(pos);
-
- // We turn the destination back to a pixel one.
- dstBeing->setDestination(dest.x, dest.y);
- }
+ handleMoveMessage(srcX, srcY, dstX, dstY, dstBeing,
+ tileWidth, tileHeight);
}
else
{
Uint8 dir;
Uint16 x, y;
msg.readCoordinates(x, y, dir);
-
- // Avoid dealing with flawed destination
- if (x && y)
- {
- Vector pos(x * tileWidth + tileWidth / 2,
- y * tileHeight + tileHeight / 2);
- dstBeing->setPosition(pos);
- if (dir)
- dstBeing->setDirection(dir);
- }
+ handlePosMessage(x, y, dstBeing, tileWidth, tileHeight, dir);
}
msg.readInt8(); // unknown
@@ -290,24 +302,8 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
Uint16 srcX, srcY, dstX, dstY;
msg.readCoordinatePair(srcX, srcY, dstX, dstY);
msg.readInt32(); // Server tick
-
- //dstBeing->setAction(Being::STAND); // Useless.
- // Avoid dealing with flawed destination
- if (srcX && srcY && dstX && dstY)
- {
- Vector pos(srcX * tileWidth + tileWidth / 2,
- srcY * tileHeight + tileHeight / 2);
- Vector dest(dstX * tileWidth + tileWidth / 2,
- dstY * tileHeight + tileHeight / 2);
- // Don't set the position as the movement algorithm can guess
- // it and it would break the animation played, when we're
- // close enough.
- if (std::abs(dest.x - pos.x) > POS_DEST_DIFF_TOLERANCE
- || std::abs(dest.y - pos.y) > POS_DEST_DIFF_TOLERANCE)
- dstBeing->setPosition(pos);
-
- dstBeing->setDestination(dest.x, dest.y);
- }
+ handleMoveMessage(srcX, srcY, dstX, dstY, dstBeing,
+ tileWidth, tileHeight);
}
break;
@@ -618,40 +614,15 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
{
Uint16 srcX, srcY, dstX, dstY;
msg.readCoordinatePair(srcX, srcY, dstX, dstY);
-
- //dstBeing->setAction(Being::STAND); // Useless.
- // Avoid dealing with flawed destination
- if (srcX && srcY && dstX && dstY)
- {
- Vector pos(srcX * tileWidth + tileWidth / 2,
- srcY * tileHeight + tileHeight / 2);
- Vector dest(dstX * tileWidth + tileWidth / 2,
- dstY * tileHeight + tileHeight / 2);
-
- // Don't set the position as the movement algorithm
- // can guess it and it would break the animation played,
- // when we're close enough.
- if (std::abs(dest.x - pos.x) > POS_DEST_DIFF_TOLERANCE
- || std::abs(dest.y - pos.y) > POS_DEST_DIFF_TOLERANCE)
- dstBeing->setPosition(pos);
-
- dstBeing->setDestination(dest.x, dest.y);
- }
+ handleMoveMessage(srcX, srcY, dstX, dstY, dstBeing,
+ tileWidth, tileHeight);
}
else
{
Uint8 dir;
Uint16 x, y;
msg.readCoordinates(x, y, dir);
- // Avoid dealing with flawed destination
- if (x && y)
- {
- Vector pos(x * tileWidth + tileWidth / 2,
- y * tileHeight + tileHeight / 2);
- dstBeing->setPosition(pos);
- if (dir)
- dstBeing->setDirection(dir);
- }
+ handlePosMessage(x, y, dstBeing, tileWidth, tileHeight, dir);
}
gmstatus = msg.readInt16();
@@ -706,17 +677,7 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
Uint16 x, y;
x = msg.readInt16();
y = msg.readInt16();
- // Avoid dealing with flawed destination
- if (x && y)
- {
- Vector pos(x * tileWidth + tileWidth / 2,
- y * tileHeight + tileHeight / 2);
- dstBeing->setPosition(pos);
- if (dstBeing->getCurrentAction() == Being::MOVE)
- {
- dstBeing->setAction(Being::STAND);
- }
- }
+ handlePosMessage(x, y, dstBeing, tileWidth, tileHeight);
}
}
break;