summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-18 19:09:02 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-18 19:09:02 +0300
commit789277e423144102b2b28788e1bb8c7672b06a79 (patch)
tree3488e37e2b3f21c7735a81bf5bff1910d2b4a0b5
parent5f8e616fee9bbf1634ac9e8deb86770c074ce887 (diff)
downloadplus-789277e423144102b2b28788e1bb8c7672b06a79.tar.gz
plus-789277e423144102b2b28788e1bb8c7672b06a79.tar.bz2
plus-789277e423144102b2b28788e1bb8c7672b06a79.tar.xz
plus-789277e423144102b2b28788e1bb8c7672b06a79.zip
Add empty roulettehandler.
-rw-r--r--src/CMakeLists.txt5
-rw-r--r--src/Makefile.am5
-rw-r--r--src/net/eathena/generalhandler.cpp3
-rw-r--r--src/net/eathena/generalhandler.h1
-rw-r--r--src/net/eathena/roulettehandler.cpp55
-rw-r--r--src/net/eathena/roulettehandler.h43
-rw-r--r--src/net/net.cpp2
-rw-r--r--src/net/roulettehandler.h45
-rw-r--r--src/net/tmwa/generalhandler.cpp2
-rw-r--r--src/net/tmwa/generalhandler.h1
-rw-r--r--src/net/tmwa/roulettehandler.cpp50
-rw-r--r--src/net/tmwa/roulettehandler.h46
12 files changed, 258 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 4d4c1ac9f..4c7ec6845 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1397,6 +1397,8 @@ SET(SRCS_TMWAEATHENA
net/tmwa/markethandler.h
net/tmwa/mercenaryhandler.cpp
net/tmwa/mercenaryhandler.h
+ net/tmwa/roulettehandler.cpp
+ net/tmwa/roulettehandler.h
net/tmwa/searchstorehandler.cpp
net/tmwa/searchstorehandler.h
net/tmwa/vendinghandler.cpp
@@ -1437,6 +1439,7 @@ SET(SRCS_EATHENA
net/maphandler.h
net/markethandler.h
net/mercenaryhandler.h
+ net/roulettehandler.h
net/searchstorehandler.h
net/vendinghandler.h
net/eathena/adminhandler.cpp
@@ -1513,6 +1516,8 @@ SET(SRCS_EATHENA
net/eathena/protocol.h
net/eathena/questhandler.cpp
net/eathena/questhandler.h
+ net/eathena/roulettehandler.cpp
+ net/eathena/roulettehandler.h
net/eathena/searchstorehandler.cpp
net/eathena/searchstorehandler.h
net/eathena/serverfeatures.cpp
diff --git a/src/Makefile.am b/src/Makefile.am
index 8afa062aa..1e50c11d1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1331,6 +1331,8 @@ manaplus_SOURCES += net/tmwa/auctionhandler.cpp \
net/tmwa/markethandler.h \
net/tmwa/mercenaryhandler.cpp \
net/tmwa/mercenaryhandler.h \
+ net/tmwa/roulettehandler.cpp \
+ net/tmwa/roulettehandler.h \
net/tmwa/searchstorehandler.cpp \
net/tmwa/searchstorehandler.h \
net/tmwa/vendinghandler.cpp \
@@ -1371,6 +1373,7 @@ manaplus_SOURCES += gui/windows/bankwindow.cpp \
net/maphandler.h \
net/markethandler.h \
net/mercenaryhandler.h \
+ net/roulettehandler.h \
net/searchstorehandler.h \
net/vendinghandler.h \
net/eathena/adminhandler.cpp \
@@ -1447,6 +1450,8 @@ manaplus_SOURCES += gui/windows/bankwindow.cpp \
net/eathena/protocol.h \
net/eathena/questhandler.cpp \
net/eathena/questhandler.h \
+ net/eathena/roulettehandler.cpp \
+ net/eathena/roulettehandler.h \
net/eathena/searchstorehandler.cpp \
net/eathena/searchstorehandler.h \
net/eathena/serverfeatures.cpp \
diff --git a/src/net/eathena/generalhandler.cpp b/src/net/eathena/generalhandler.cpp
index 3c14843b8..2a21f90f3 100644
--- a/src/net/eathena/generalhandler.cpp
+++ b/src/net/eathena/generalhandler.cpp
@@ -67,6 +67,7 @@
#include "net/eathena/pethandler.h"
#include "net/eathena/playerhandler.h"
#include "net/eathena/protocol.h"
+#include "net/eathena/roulettehandler.h"
#include "net/eathena/searchstorehandler.h"
#include "net/eathena/serverfeatures.h"
#include "net/eathena/tradehandler.h"
@@ -123,6 +124,7 @@ GeneralHandler::GeneralHandler() :
mMapHandler(new MarketHandler),
mMarketHandler(new MarketHandler),
mVendingHandler(new VendingHandler),
+ mRouletteHandler(new RouletteHandler),
mSearchStoreHandler(new SearchStoreHandler)
{
static const uint16_t _messages[] =
@@ -316,6 +318,7 @@ void GeneralHandler::load()
mNetwork->registerHandler(mMarketHandler);
mNetwork->registerHandler(mVendingHandler);
mNetwork->registerHandler(mSearchStoreHandler);
+ mNetwork->registerHandler(mRouletteHandler);
}
void GeneralHandler::reload()
diff --git a/src/net/eathena/generalhandler.h b/src/net/eathena/generalhandler.h
index 04078a3fa..8f90d161b 100644
--- a/src/net/eathena/generalhandler.h
+++ b/src/net/eathena/generalhandler.h
@@ -97,6 +97,7 @@ class GeneralHandler final : public MessageHandler,
MessageHandlerPtr mMapHandler;
MessageHandlerPtr mMarketHandler;
MessageHandlerPtr mVendingHandler;
+ MessageHandlerPtr mRouletteHandler;
MessageHandlerPtr mSearchStoreHandler;
};
diff --git a/src/net/eathena/roulettehandler.cpp b/src/net/eathena/roulettehandler.cpp
new file mode 100644
index 000000000..d11357fbb
--- /dev/null
+++ b/src/net/eathena/roulettehandler.cpp
@@ -0,0 +1,55 @@
+/*
+ * The ManaPlus Client
+ * 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/eathena/roulettehandler.h"
+
+#include "logger.h"
+
+#include "net/eathena/messageout.h"
+#include "net/eathena/protocol.h"
+
+#include "debug.h"
+
+extern Net::RouletteHandler *rouletteHandler;
+
+namespace EAthena
+{
+
+RouletteHandler::RouletteHandler() :
+ MessageHandler()
+{
+ static const uint16_t _messages[] =
+ {
+ 0
+ };
+ handledMessages = _messages;
+ rouletteHandler = this;
+}
+
+void RouletteHandler::handleMessage(Net::MessageIn &msg)
+{
+ switch (msg.getId())
+ {
+ default:
+ break;
+ }
+}
+
+} // namespace EAthena
diff --git a/src/net/eathena/roulettehandler.h b/src/net/eathena/roulettehandler.h
new file mode 100644
index 000000000..8b69c002f
--- /dev/null
+++ b/src/net/eathena/roulettehandler.h
@@ -0,0 +1,43 @@
+/*
+ * The ManaPlus Client
+ * 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_EATHENA_ROULETTEHANDLER_H
+#define NET_EATHENA_ROULETTEHANDLER_H
+
+#include "net/roulettehandler.h"
+
+#include "net/eathena/messagehandler.h"
+
+namespace EAthena
+{
+class RouletteHandler final : public MessageHandler,
+ public Net::RouletteHandler
+{
+ public:
+ RouletteHandler();
+
+ A_DELETE_COPY(RouletteHandler)
+
+ void handleMessage(Net::MessageIn &msg) override final;
+};
+
+} // namespace EAthena
+
+#endif // NET_EATHENA_ROULETTEHANDLER_H
diff --git a/src/net/net.cpp b/src/net/net.cpp
index 24bc6443f..2d2fea41d 100644
--- a/src/net/net.cpp
+++ b/src/net/net.cpp
@@ -55,6 +55,7 @@ namespace Net
class MarketHandler;
class MercenaryHandler;
class SearchStoreHandler;
+ class RouletteHandler;
class VendingHandler;
#endif
class AdminHandler;
@@ -107,6 +108,7 @@ Net::MailHandler *mailHandler = nullptr;
Net::MapHandler *mapHandler = nullptr;
Net::MarketHandler *marketHandler = nullptr;
Net::MercenaryHandler *mercenaryHandler = nullptr;
+Net::RouletteHandler *rouletteHandler = nullptr;
Net::SearchStoreHandler *searchStoreHandler = nullptr;
Net::VendingHandler *vendingHandler = nullptr;
#endif
diff --git a/src/net/roulettehandler.h b/src/net/roulettehandler.h
new file mode 100644
index 000000000..80ad6af45
--- /dev/null
+++ b/src/net/roulettehandler.h
@@ -0,0 +1,45 @@
+/*
+ * The ManaPlus Client
+ * 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_ROULETTEHANDLER_H
+#define NET_ROULETTEHANDLER_H
+
+#ifdef EATHENA_SUPPORT
+
+#include <string>
+
+#include "localconsts.h"
+
+namespace Net
+{
+
+class RouletteHandler notfinal
+{
+ public:
+ virtual ~RouletteHandler()
+ { }
+};
+
+} // namespace Net
+
+extern Net::RouletteHandler *rouletteHandler;
+
+#endif // EATHENA_SUPPORT
+#endif // NET_ROULETTEHANDLER_H
diff --git a/src/net/tmwa/generalhandler.cpp b/src/net/tmwa/generalhandler.cpp
index a620cd840..483f08ec7 100644
--- a/src/net/tmwa/generalhandler.cpp
+++ b/src/net/tmwa/generalhandler.cpp
@@ -69,6 +69,7 @@
#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
@@ -122,6 +123,7 @@ GeneralHandler::GeneralHandler() :
mMapHandler(new MarketHandler),
mMarketHandler(new MarketHandler),
mMercenaryHandler(new MercenaryHandler),
+ mRouletteHandler(new RouletteHandler),
mSearchStoreHandler(new SearchStoreHandler),
mVendingHandler(new VendingHandler)
#else
diff --git a/src/net/tmwa/generalhandler.h b/src/net/tmwa/generalhandler.h
index 3fd9c4f3d..453d4e472 100644
--- a/src/net/tmwa/generalhandler.h
+++ b/src/net/tmwa/generalhandler.h
@@ -95,6 +95,7 @@ class GeneralHandler final : public MessageHandler,
MessageHandlerPtr mMapHandler;
MessageHandlerPtr mMarketHandler;
MessageHandlerPtr mMercenaryHandler;
+ MessageHandlerPtr mRouletteHandler;
MessageHandlerPtr mSearchStoreHandler;
MessageHandlerPtr mVendingHandler;
#endif
diff --git a/src/net/tmwa/roulettehandler.cpp b/src/net/tmwa/roulettehandler.cpp
new file mode 100644
index 000000000..63957d926
--- /dev/null
+++ b/src/net/tmwa/roulettehandler.cpp
@@ -0,0 +1,50 @@
+/*
+ * The ManaPlus Client
+ * 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/roulettehandler.h"
+
+#include "debug.h"
+
+extern Net::RouletteHandler *rouletteHandler;
+
+namespace TmwAthena
+{
+
+RouletteHandler::RouletteHandler() :
+ MessageHandler()
+{
+ static const uint16_t _messages[] =
+ {
+ 0
+ };
+ handledMessages = _messages;
+ rouletteHandler = this;
+}
+
+void RouletteHandler::handleMessage(Net::MessageIn &msg)
+{
+ switch (msg.getId())
+ {
+ default:
+ break;
+ }
+}
+
+} // namespace TmwAthena
diff --git a/src/net/tmwa/roulettehandler.h b/src/net/tmwa/roulettehandler.h
new file mode 100644
index 000000000..969870cc4
--- /dev/null
+++ b/src/net/tmwa/roulettehandler.h
@@ -0,0 +1,46 @@
+/*
+ * The ManaPlus Client
+ * 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_ROULETTEHANDLER_H
+#define NET_TMWA_ROULETTEEHANDLER_H
+
+#ifdef EATHENA_SUPPORT
+
+#include "net/roulettehandler.h"
+
+#include "net/tmwa/messagehandler.h"
+
+namespace TmwAthena
+{
+class RouletteHandler final : public MessageHandler,
+ public Net::RouletteHandler
+{
+ public:
+ RouletteHandler();
+
+ A_DELETE_COPY(RouletteHandler)
+
+ void handleMessage(Net::MessageIn &msg) override final;
+};
+
+} // namespace TmwAthena
+
+#endif // EATHENA_SUPPORT
+#endif // NET_TMWA_ROULETTEHANDLER_H