summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-05-18 20:16:00 +0300
committerAndrei Karas <akaras@inbox.ru>2018-05-18 20:16:00 +0300
commite40ff3205395015708b4801a984c25f239089f50 (patch)
tree17ff37e40c797d0b691c6cea22bd1a58ec2e05f4
parent34891cab564d7ed5752d4f161f2b76e727830e50 (diff)
downloadplus-e40ff3205395015708b4801a984c25f239089f50.tar.gz
plus-e40ff3205395015708b4801a984c25f239089f50.tar.bz2
plus-e40ff3205395015708b4801a984c25f239089f50.tar.xz
plus-e40ff3205395015708b4801a984c25f239089f50.zip
Add packet CMSG_MAP_BLOCK_PLAY_CANCEL 0x0447.
-rw-r--r--src/net/eathena/maphandler.cpp8
-rw-r--r--src/net/eathena/maphandler.h2
-rw-r--r--src/net/eathena/packetsout.inc7
-rw-r--r--src/net/maphandler.h2
-rw-r--r--src/net/tmwa/maphandler.cpp4
-rw-r--r--src/net/tmwa/maphandler.h2
6 files changed, 25 insertions, 0 deletions
diff --git a/src/net/eathena/maphandler.cpp b/src/net/eathena/maphandler.cpp
index 760a5c458..8136fdb79 100644
--- a/src/net/eathena/maphandler.cpp
+++ b/src/net/eathena/maphandler.cpp
@@ -20,6 +20,9 @@
#include "net/eathena/maphandler.h"
+#include "net/eathena/messageout.h"
+#include "net/eathena/protocolout.h"
+
#include "debug.h"
namespace EAthena
@@ -36,4 +39,9 @@ MapHandler::~MapHandler()
mapHandler = nullptr;
}
+void MapHandler::blockPlayCancel() const
+{
+ createOutPacket(CMSG_MAP_BLOCK_PLAY_CANCEL);
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/maphandler.h b/src/net/eathena/maphandler.h
index 277bbce86..d87947f78 100644
--- a/src/net/eathena/maphandler.h
+++ b/src/net/eathena/maphandler.h
@@ -34,6 +34,8 @@ class MapHandler final : public Net::MapHandler
A_DELETE_COPY(MapHandler)
~MapHandler() override final;
+
+ void blockPlayCancel() const override final;
};
} // namespace EAthena
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc
index ef9ce6c14..34ac2b436 100644
--- a/src/net/eathena/packetsout.inc
+++ b/src/net/eathena/packetsout.inc
@@ -333,6 +333,7 @@ packet(CMSG_MAIL2_CANCEL_WRITE_MAIL, 0x0000, 0, nullptr);
packet(CMSG_CLAN_MESSAGE, 0x0000, 0, nullptr);
packet(CMSG_WINDOW_OPEN_REQUEST2, 0x0000, 0, nullptr);
packet(CMSG_ATTENDANCE_REWARD, 0x0000, 0, nullptr);
+packet(CMSG_MAP_BLOCK_PLAY_CANCEL, 0x0000, 0, nullptr);
#else
// 20040713
if (packetVersion >= 20040713)
@@ -564,6 +565,12 @@ if (packetVersion >= 20081210)
packet(CMSG_SKILL_SELECT_MENU, 0x0443, 8, clif->pSkillSelectMenu);
}
+// 20090520
+if (packetVersion >= 20090520)
+{
+ packet(CMSG_MAP_BLOCK_PLAY_CANCEL, 0x0447, 2, clif->p_cz_blocking_play_cancel);
+}
+
// 20090603
if (packetVersion >= 20090603)
{
diff --git a/src/net/maphandler.h b/src/net/maphandler.h
index 34a5243b6..a1c1db6f9 100644
--- a/src/net/maphandler.h
+++ b/src/net/maphandler.h
@@ -36,6 +36,8 @@ class MapHandler notfinal
virtual ~MapHandler()
{ }
+
+ virtual void blockPlayCancel() const = 0;
};
} // namespace Net
diff --git a/src/net/tmwa/maphandler.cpp b/src/net/tmwa/maphandler.cpp
index 62918ebfc..a3b7e005f 100644
--- a/src/net/tmwa/maphandler.cpp
+++ b/src/net/tmwa/maphandler.cpp
@@ -36,4 +36,8 @@ MapHandler::~MapHandler()
mapHandler = nullptr;
}
+void MapHandler::blockPlayCancel() const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/maphandler.h b/src/net/tmwa/maphandler.h
index 565544061..6b35673e6 100644
--- a/src/net/tmwa/maphandler.h
+++ b/src/net/tmwa/maphandler.h
@@ -34,6 +34,8 @@ class MapHandler final : public Net::MapHandler
A_DELETE_COPY(MapHandler)
~MapHandler() override final;
+
+ void blockPlayCancel() const override final;
};
} // namespace TmwAthena