From 291f73098e52742bed3f4c4271524e347ee317e1 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 7 Jan 2015 00:53:46 +0300 Subject: Add empty vending handler. --- src/net/tmwa/generalhandler.cpp | 5 ++++- src/net/tmwa/generalhandler.h | 1 + src/net/tmwa/vendinghandler.cpp | 45 +++++++++++++++++++++++++++++++++++++++++ src/net/tmwa/vendinghandler.h | 44 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 src/net/tmwa/vendinghandler.cpp create mode 100644 src/net/tmwa/vendinghandler.h (limited to 'src/net/tmwa') diff --git a/src/net/tmwa/generalhandler.cpp b/src/net/tmwa/generalhandler.cpp index b42020ce0..a34da33dc 100644 --- a/src/net/tmwa/generalhandler.cpp +++ b/src/net/tmwa/generalhandler.cpp @@ -67,6 +67,7 @@ #include "net/tmwa/tradehandler.h" #include "net/tmwa/skillhandler.h" #include "net/tmwa/questhandler.h" +#include "net/tmwa/vendinghandler.h" #include "resources/db/itemdbstat.h" @@ -113,7 +114,8 @@ GeneralHandler::GeneralHandler() : mHomunculusHandler(new HomunculusHandler), mFriendsHandler(new FriendsHandler), mElementalHandler(new ElementalHandler), - mMarketHandler(new MarketHandler) + mMarketHandler(new MarketHandler), + mVendingHandler(new VendingHandler) { static const uint16_t _messages[] = { @@ -240,6 +242,7 @@ void GeneralHandler::load() mNetwork->registerHandler(mFriendsHandler); mNetwork->registerHandler(mElementalHandler); mNetwork->registerHandler(mMarketHandler); + mNetwork->registerHandler(mVendingHandler); } void GeneralHandler::reload() diff --git a/src/net/tmwa/generalhandler.h b/src/net/tmwa/generalhandler.h index 6da362e96..ed1bc983c 100644 --- a/src/net/tmwa/generalhandler.h +++ b/src/net/tmwa/generalhandler.h @@ -92,6 +92,7 @@ class GeneralHandler final : public MessageHandler, MessageHandlerPtr mFriendsHandler; MessageHandlerPtr mElementalHandler; MessageHandlerPtr mMarketHandler; + MessageHandlerPtr mVendingHandler; }; } // namespace TmwAthena diff --git a/src/net/tmwa/vendinghandler.cpp b/src/net/tmwa/vendinghandler.cpp new file mode 100644 index 000000000..2250f2f1e --- /dev/null +++ b/src/net/tmwa/vendinghandler.cpp @@ -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 . + */ + +#include "net/tmwa/vendinghandler.h" + +#include "debug.h" + +extern Net::VendingHandler *vendingHandler; + +namespace TmwAthena +{ + +VendingHandler::VendingHandler() : + MessageHandler() +{ + static const uint16_t _messages[] = + { + 0 + }; + handledMessages = _messages; + vendingHandler = this; +} + +void VendingHandler::handleMessage(Net::MessageIn &msg A_UNUSED) +{ +} + +} // namespace TmwAthena diff --git a/src/net/tmwa/vendinghandler.h b/src/net/tmwa/vendinghandler.h new file mode 100644 index 000000000..567494110 --- /dev/null +++ b/src/net/tmwa/vendinghandler.h @@ -0,0 +1,44 @@ +/* + * 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 . + */ + +#ifndef NET_TMWA_VENDINGHANDLER_H +#define NET_TMWA_VENDINGHANDLER_H + +#include "net/vendinghandler.h" + +#include "net/tmwa/messagehandler.h" + +namespace TmwAthena +{ + +class VendingHandler final : public MessageHandler, + public Net::VendingHandler +{ + public: + VendingHandler(); + + A_DELETE_COPY(VendingHandler) + + void handleMessage(Net::MessageIn &msg) override final; +}; + +} // namespace TmwAthena + +#endif // NET_TMWA_VENDINGHANDLER_H -- cgit v1.2.3-60-g2f50