summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-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
4 files changed, 99 insertions, 0 deletions
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