From c36ab53b35e336e21fce5943d7d609ea02f8cea9 Mon Sep 17 00:00:00 2001 From: Bertram Date: Wed, 21 Oct 2009 23:55:59 +0200 Subject: Commencing the keyboard walking fine-tune. Also, fixed sit to stand action change. --- src/being.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/being.cpp') diff --git a/src/being.cpp b/src/being.cpp index c13b52f7..d133225f 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -192,6 +192,12 @@ void Being::setDestination(int dstX, int dstY) it++; } + // Remove the last path node, as it's more clever to go to mDest instead. + // It also permit to avoid zigzag at the end of the path, + // especially with mouse. + thisPath.pop_back(); + thisPath.push_back(Position(mDest.x, mDest.y)); + setPath(thisPath); } #endif // TMWSERV_SUPPORT @@ -534,7 +540,7 @@ void Being::logic() const float nominalLength = dir.length(); // When we've not reached our destination, move to it. - if (nominalLength > 0.0f && mWalkSpeed > 0.0f) + if (nominalLength > 1.0f && mWalkSpeed > 0.0f) { // The private mWalkSpeed member is the speed in tiles per second. -- cgit v1.2.3-70-g09d2