From 7e127f1832452953be6a9fd319174dbf91cbfcb6 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 22 Jun 2016 03:18:36 +0300 Subject: Build path in SMSG_BEING_MOVE3 packet from back to forward and if need fix start position. --- src/net/ea/beingrecv.cpp | 73 +++++++++++++++--------------------------------- src/position.h | 1 + 2 files changed, 23 insertions(+), 51 deletions(-) (limited to 'src') diff --git a/src/net/ea/beingrecv.cpp b/src/net/ea/beingrecv.cpp index c93d26a2c..39a0e26e1 100644 --- a/src/net/ea/beingrecv.cpp +++ b/src/net/ea/beingrecv.cpp @@ -449,71 +449,42 @@ void BeingRecv::processBeingMove3(Net::MessageIn &msg) Path path; if (moves) { - for (int f = 0; f < len; f ++) + int x2 = dstBeing->getCachedX(); + int y2 = dstBeing->getCachedY(); + Path path2; + path2.push_back(Position(x2, y2)); + for (int f = len - 1; f >= 0; f --) { const unsigned char dir = moves[f]; if (dir <= 7) { - x += dirx[dir]; - y += diry[dir]; - path.push_back(Position(x, y)); + x2 -= dirx[dir]; + y2 -= diry[dir]; + path2.push_back(Position(x2, y2)); + if (x2 == x && y2 == y) + break; } else { logger->log("bad move packet: %d", dir); } } - const int x1 = dstBeing->getCachedX(); - const int y1 = dstBeing->getCachedY(); - if (x1 != x || y1 != y) + + if (!path2.empty()) { -// reportAlways("Found desync being move. " -// "Calculated target (%d,%d). " -// "Actual target (%d,%d).", -// static_cast(x), -// static_cast(y), -// static_cast(x1), -// static_cast(y1)); - if (len > 0) + const Position &pos = path2.back(); + if (x != pos.x || + y != pos.y) { - const unsigned char dir = moves[0]; - int16_t x0 = x; - int16_t y0 = y; - - if (dir <= 7) - { - x0 -= dirx[0]; - y0 -= diry[0]; - if (x1 == x0 && y1 == y0) - { - path.erase(path.begin()); - logger->log("Fixed being moving desync by " - "removing one tile"); - } - else - { - x0 = x; - y0 = y; - if (abs(x0 - x1) < 2 && abs(y0 - y1) < 2) - { - path.push_back(Position(x1, y1)); - logger->log("Fixed being moving desync by " - "adding one tile"); - } - else - { - reportAlways("Error: being moving desync. " - "Calculated target (%d,%d). " - "Actual target (%d,%d).", - static_cast(x), - static_cast(y), - static_cast(x1), - static_cast(y1)); - } - } - } + dstBeing->setTileCoords(pos.x, pos.y); } } + + path2.pop_back(); + FOR_EACHR (PathRIterator, it, path2) + { + path.push_back(*it); + } delete [] moves; } diff --git a/src/position.h b/src/position.h index caaca35ed..a2cb033f8 100644 --- a/src/position.h +++ b/src/position.h @@ -43,6 +43,7 @@ struct Position final typedef std::list Path; typedef Path::iterator PathIterator; +typedef Path::reverse_iterator PathRIterator; /** * Appends a string representation of a position to the output stream. -- cgit v1.2.3-60-g2f50