summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-26 16:44:50 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-26 16:44:50 +0300
commitda649050e6a92a199e1ba6ec09f456b184e51809 (patch)
tree6dadd6b56e821fe715799f4e6b0c15c225a7134d /src/net/tmwa
parent653447ca463eaf573e7123896155b538b8dec869 (diff)
downloadplus-da649050e6a92a199e1ba6ec09f456b184e51809.tar.gz
plus-da649050e6a92a199e1ba6ec09f456b184e51809.tar.bz2
plus-da649050e6a92a199e1ba6ec09f456b184e51809.tar.xz
plus-da649050e6a92a199e1ba6ec09f456b184e51809.zip
Move receive code from generalhandler into separate file.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/generalhandler.cpp51
-rw-r--r--src/net/tmwa/generalhandler.h2
-rw-r--r--src/net/tmwa/generalrecv.cpp132
-rw-r--r--src/net/tmwa/generalrecv.h38
4 files changed, 173 insertions, 50 deletions
diff --git a/src/net/tmwa/generalhandler.cpp b/src/net/tmwa/generalhandler.cpp
index 8c173f248..4f03f490e 100644
--- a/src/net/tmwa/generalhandler.cpp
+++ b/src/net/tmwa/generalhandler.cpp
@@ -32,6 +32,8 @@
#include "gui/widgets/tabs/chat/guildtab.h"
#include "gui/widgets/tabs/chat/partytab.h"
+#include "net/tmwa/generalrecv.h"
+
#include "net/tmwa/adminhandler.h"
#include "net/tmwa/beinghandler.h"
#include "net/tmwa/buysellhandler.h"
@@ -84,9 +86,6 @@ extern Net::GeneralHandler *generalHandler;
namespace TmwAthena
{
-ServerInfo charServer;
-ServerInfo mapServer;
-
GeneralHandler::GeneralHandler() :
MessageHandler(),
mAdminHandler(new AdminHandler),
@@ -165,7 +164,7 @@ void GeneralHandler::handleMessage(Net::MessageIn &msg)
switch (msg.getId())
{
case SMSG_CONNECTION_PROBLEM:
- processConnectionProblem(msg);
+ GeneralRecv::processConnectionProblem(msg);
break;
default:
@@ -174,50 +173,6 @@ void GeneralHandler::handleMessage(Net::MessageIn &msg)
BLOCK_END("GeneralHandler::handleMessage")
}
-void GeneralHandler::processConnectionProblem(Net::MessageIn &msg)
-{
- const uint8_t code = msg.readUInt8("flag");
- logger->log("Connection problem: %u", static_cast<unsigned int>(code));
-
- switch (code)
- {
- case 0:
- // TRANSLATORS: error message
- errorMessage = _("Authentication failed.");
- break;
- case 1:
- // TRANSLATORS: error message
- errorMessage = _("No servers available.");
- break;
- case 2:
- if (client->getState() == STATE_GAME)
- {
- // TRANSLATORS: error message
- errorMessage = _("Someone else is trying to use this "
- "account.");
- }
- else
- {
- // TRANSLATORS: error message
- errorMessage = _("This account is already logged in.");
- }
- break;
- case 3:
- // TRANSLATORS: error message
- errorMessage = _("Speed hack detected.");
- break;
- case 8:
- // TRANSLATORS: error message
- errorMessage = _("Duplicated login.");
- break;
- default:
- // TRANSLATORS: error message
- errorMessage = _("Unknown connection error.");
- break;
- }
- client->setState(STATE_ERROR);
-}
-
void GeneralHandler::load()
{
(new Network)->registerHandler(this);
diff --git a/src/net/tmwa/generalhandler.h b/src/net/tmwa/generalhandler.h
index 118d6dc4d..66aea3869 100644
--- a/src/net/tmwa/generalhandler.h
+++ b/src/net/tmwa/generalhandler.h
@@ -63,8 +63,6 @@ class GeneralHandler final : public MessageHandler,
void gameEnded() const override final;
protected:
- static void processConnectionProblem(Net::MessageIn &msg);
-
MessageHandlerPtr mAdminHandler;
MessageHandlerPtr mBeingHandler;
MessageHandlerPtr mBuySellHandler;
diff --git a/src/net/tmwa/generalrecv.cpp b/src/net/tmwa/generalrecv.cpp
new file mode 100644
index 000000000..bf84accb3
--- /dev/null
+++ b/src/net/tmwa/generalrecv.cpp
@@ -0,0 +1,132 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 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/>.
+ */
+
+#include "net/tmwa/generalrecv.h"
+
+#include "client.h"
+#include "configuration.h"
+
+#include "gui/windows/skilldialog.h"
+#include "gui/windows/socialwindow.h"
+#include "gui/windows/statuswindow.h"
+
+#include "gui/widgets/tabs/chat/guildtab.h"
+#include "gui/widgets/tabs/chat/partytab.h"
+
+#include "net/tmwa/adminhandler.h"
+#include "net/tmwa/beinghandler.h"
+#include "net/tmwa/buysellhandler.h"
+#include "net/tmwa/chathandler.h"
+#include "net/tmwa/charserverhandler.h"
+#include "net/tmwa/gamehandler.h"
+#include "net/tmwa/guildhandler.h"
+#include "net/tmwa/inventoryhandler.h"
+#include "net/tmwa/itemhandler.h"
+#include "net/tmwa/loginhandler.h"
+#include "net/tmwa/network.h"
+#include "net/tmwa/npchandler.h"
+#include "net/tmwa/partyhandler.h"
+#include "net/tmwa/pethandler.h"
+#include "net/tmwa/playerhandler.h"
+#include "net/tmwa/protocol.h"
+#include "net/tmwa/serverfeatures.h"
+#include "net/tmwa/tradehandler.h"
+#include "net/tmwa/skillhandler.h"
+#include "net/tmwa/questhandler.h"
+
+#ifdef EATHENA_SUPPORT
+#include "net/tmwa/auctionhandler.h"
+#include "net/tmwa/bankhandler.h"
+#include "net/tmwa/battlegroundhandler.h"
+#include "net/tmwa/buyingstorehandler.h"
+#include "net/tmwa/cashshophandler.h"
+#include "net/tmwa/elementalhandler.h"
+#include "net/tmwa/familyhandler.h"
+#include "net/tmwa/friendshandler.h"
+#include "net/tmwa/homunculushandler.h"
+#include "net/tmwa/mailhandler.h"
+#include "net/tmwa/maphandler.h"
+#include "net/tmwa/markethandler.h"
+#include "net/tmwa/mercenaryhandler.h"
+#include "net/tmwa/roulettehandler.h"
+#include "net/tmwa/searchstorehandler.h"
+#include "net/tmwa/vendinghandler.h"
+#endif
+
+#include "resources/db/itemdbstat.h"
+
+#include "utils/delete2.h"
+#include "utils/gettext.h"
+
+#include "debug.h"
+
+namespace TmwAthena
+{
+
+ServerInfo charServer;
+ServerInfo mapServer;
+
+void GeneralRecv::processConnectionProblem(Net::MessageIn &msg)
+{
+ const uint8_t code = msg.readUInt8("flag");
+ logger->log("Connection problem: %u", static_cast<unsigned int>(code));
+
+ switch (code)
+ {
+ case 0:
+ // TRANSLATORS: error message
+ errorMessage = _("Authentication failed.");
+ break;
+ case 1:
+ // TRANSLATORS: error message
+ errorMessage = _("No servers available.");
+ break;
+ case 2:
+ if (client->getState() == STATE_GAME)
+ {
+ // TRANSLATORS: error message
+ errorMessage = _("Someone else is trying to use this "
+ "account.");
+ }
+ else
+ {
+ // TRANSLATORS: error message
+ errorMessage = _("This account is already logged in.");
+ }
+ break;
+ case 3:
+ // TRANSLATORS: error message
+ errorMessage = _("Speed hack detected.");
+ break;
+ case 8:
+ // TRANSLATORS: error message
+ errorMessage = _("Duplicated login.");
+ break;
+ default:
+ // TRANSLATORS: error message
+ errorMessage = _("Unknown connection error.");
+ break;
+ }
+ client->setState(STATE_ERROR);
+}
+
+} // namespace TmwAthena
diff --git a/src/net/tmwa/generalrecv.h b/src/net/tmwa/generalrecv.h
new file mode 100644
index 000000000..769fc9dfd
--- /dev/null
+++ b/src/net/tmwa/generalrecv.h
@@ -0,0 +1,38 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 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_GENERALRECV_H
+#define NET_TMWA_GENERALRECV_H
+
+#include "net/generalhandler.h"
+
+#include "net/tmwa/messagehandler.h"
+
+namespace TmwAthena
+{
+ namespace GeneralRecv
+ {
+ void processConnectionProblem(Net::MessageIn &msg);
+ } // namespace GeneralRecv
+} // namespace TmwAthena
+
+#endif // NET_TMWA_GENERALRECV_H