diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-18 19:09:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-18 19:09:02 +0300 |
commit | 789277e423144102b2b28788e1bb8c7672b06a79 (patch) | |
tree | 3488e37e2b3f21c7735a81bf5bff1910d2b4a0b5 /src/net/tmwa | |
parent | 5f8e616fee9bbf1634ac9e8deb86770c074ce887 (diff) | |
download | plus-789277e423144102b2b28788e1bb8c7672b06a79.tar.gz plus-789277e423144102b2b28788e1bb8c7672b06a79.tar.bz2 plus-789277e423144102b2b28788e1bb8c7672b06a79.tar.xz plus-789277e423144102b2b28788e1bb8c7672b06a79.zip |
Add empty roulettehandler.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/generalhandler.cpp | 2 | ||||
-rw-r--r-- | src/net/tmwa/generalhandler.h | 1 | ||||
-rw-r--r-- | src/net/tmwa/roulettehandler.cpp | 50 | ||||
-rw-r--r-- | src/net/tmwa/roulettehandler.h | 46 |
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 |