summaryrefslogtreecommitdiff
path: root/src/net/eathena/maphandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/maphandler.cpp')
-rw-r--r--src/net/eathena/maphandler.cpp37
1 files changed, 5 insertions, 32 deletions
diff --git a/src/net/eathena/maphandler.cpp b/src/net/eathena/maphandler.cpp
index ee43bcfe0..533307e4d 100644
--- a/src/net/eathena/maphandler.cpp
+++ b/src/net/eathena/maphandler.cpp
@@ -22,6 +22,7 @@
#include "logger.h"
+#include "net/eathena/maprecv.h"
#include "net/eathena/protocol.h"
#include "debug.h"
@@ -51,19 +52,19 @@ void MapHandler::handleMessage(Net::MessageIn &msg)
switch (msg.getId())
{
case SMSG_INSTANCE_START:
- processInstanceStart(msg);
+ MapRecv::processInstanceStart(msg);
break;
case SMSG_INSTANCE_CREATE:
- processInstanceCreate(msg);
+ MapRecv::processInstanceCreate(msg);
break;
case SMSG_INSTANCE_INFO:
- processInstanceInfo(msg);
+ MapRecv::processInstanceInfo(msg);
break;
case SMSG_INSTANCE_DELETE:
- processInstanceDelete(msg);
+ MapRecv::processInstanceDelete(msg);
break;
default:
@@ -71,32 +72,4 @@ void MapHandler::handleMessage(Net::MessageIn &msg)
}
}
-void MapHandler::processInstanceStart(Net::MessageIn &msg)
-{
- UNIMPLIMENTEDPACKET;
- msg.readString(61, "instance name");
- msg.readInt16("flag");
-}
-
-void MapHandler::processInstanceCreate(Net::MessageIn &msg)
-{
- UNIMPLIMENTEDPACKET;
- msg.readInt16("flag");
-}
-
-void MapHandler::processInstanceInfo(Net::MessageIn &msg)
-{
- UNIMPLIMENTEDPACKET;
- msg.readString(61, "instance name");
- msg.readInt32("remaining time");
- msg.readInt32("no players close time");
-}
-
-void MapHandler::processInstanceDelete(Net::MessageIn &msg)
-{
- UNIMPLIMENTEDPACKET;
- msg.readInt32("flag");
- msg.readInt32("unused");
-}
-
} // namespace EAthena