summaryrefslogtreecommitdiff
path: root/src/net/messageout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/messageout.cpp')
-rw-r--r--src/net/messageout.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/net/messageout.cpp b/src/net/messageout.cpp
index e67044614..2d1389581 100644
--- a/src/net/messageout.cpp
+++ b/src/net/messageout.cpp
@@ -136,4 +136,41 @@ unsigned int MessageOut::getDataSize() const
return mDataSize;
}
+unsigned char MessageOut::toServerDirection(unsigned char direction)
+{
+ // Translate direction to eAthena format
+ switch (direction)
+ {
+ case 1: // DOWN
+ direction = 0;
+ break;
+ case 3: // DOWN | LEFT
+ direction = 1;
+ break;
+ case 2: // LEFT
+ direction = 2;
+ break;
+ case 6: // LEFT | UP
+ direction = 3;
+ break;
+ case 4: // UP
+ direction = 4;
+ break;
+ case 12: // UP | RIGHT
+ direction = 5;
+ break;
+ case 8: // RIGHT
+ direction = 6;
+ break;
+ case 9: // RIGHT + DOWN
+ direction = 7;
+ break;
+ default:
+ // OOPSIE! Impossible or unknown
+ direction = static_cast<unsigned char>(-1);
+ break;
+ }
+ return direction;
+}
+
} // namespace Net