summaryrefslogtreecommitdiff
path: root/src/net/tmwa/beingrecv.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-24 17:01:22 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-24 17:01:22 +0300
commit3fc6d30634ea19569caaa1e8887378eef9c4505d (patch)
tree86079d581aae2585c6f21a936fca0876d7244703 /src/net/tmwa/beingrecv.h
parent4ea298eef5d60e7101844add7f352d4539ea9dd7 (diff)
downloadmv-3fc6d30634ea19569caaa1e8887378eef9c4505d.tar.gz
mv-3fc6d30634ea19569caaa1e8887378eef9c4505d.tar.bz2
mv-3fc6d30634ea19569caaa1e8887378eef9c4505d.tar.xz
mv-3fc6d30634ea19569caaa1e8887378eef9c4505d.zip
Rename being receive handler into beingrecv.
Diffstat (limited to 'src/net/tmwa/beingrecv.h')
-rw-r--r--src/net/tmwa/beingrecv.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/net/tmwa/beingrecv.h b/src/net/tmwa/beingrecv.h
new file mode 100644
index 000000000..9bc660b4f
--- /dev/null
+++ b/src/net/tmwa/beingrecv.h
@@ -0,0 +1,66 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2004-2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * Copyright (C) 2011-2015 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NET_TMWA_BEING_H
+#define NET_TMWA_BEING_H
+
+#include "net/ea/beinghandler.h"
+
+#include "net/tmwa/messagehandler.h"
+
+namespace TmwAthena
+{
+ namespace BeingRecv
+ {
+ void processBeingChangeLook(Net::MessageIn &msg);
+ void processBeingChangeLook2(Net::MessageIn &msg);
+ void processBeingVisible(Net::MessageIn &msg);
+ void processBeingMove(Net::MessageIn &msg);
+ void processPlayerUpdate1(Net::MessageIn &msg);
+ void processPlayerUpdate2(Net::MessageIn &msg);
+ void processPlayerMove(Net::MessageIn &msg);
+ void processBeingSpawn(Net::MessageIn &msg);
+ void processSkillCasting(Net::MessageIn &msg);
+ void processBeingStatusChange(Net::MessageIn &msg);
+ void processBeingMove2(Net::MessageIn &msg);
+ void processBeingChangeDirection(Net::MessageIn &msg);
+ void processBeingChangeLookContinue(Net::MessageIn &msg,
+ Being *const dstBeing,
+ const uint8_t type,
+ const int id,
+ const int id2) A_NONNULL(2);
+ void processPlaterStatusChange(Net::MessageIn &msg);
+ void processBeingResurrect(Net::MessageIn &msg);
+ void processPlayerGuilPartyInfo(Net::MessageIn &msg);
+ void processBeingSelfEffect(Net::MessageIn &msg);
+ void processSkillCastCancel(Net::MessageIn &msg);
+ void processIpResponse(Net::MessageIn &msg);
+ void processPvpSet(Net::MessageIn &msg);
+ void applyPlayerAction(Net::MessageIn &msg,
+ Being *const being,
+ const uint8_t type);
+ void setServerGender(Being *const being,
+ const uint8_t gender);
+ } // namespace BeingRecv
+} // namespace TmwAthena
+
+#endif // NET_TMWA_BEING_H