From 0255911fce07d79d29684f9837f96a4c824f4040 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 7 Jan 2015 17:32:13 +0300 Subject: Add empty searchstorehandler. --- src/CMakeLists.txt | 4 +++ src/Makefile.am | 5 ++++ src/net/eathena/generalhandler.cpp | 5 +++- src/net/eathena/generalhandler.h | 1 + src/net/eathena/searchstorehandler.cpp | 52 ++++++++++++++++++++++++++++++++++ src/net/eathena/searchstorehandler.h | 43 ++++++++++++++++++++++++++++ src/net/net.cpp | 2 ++ src/net/searchstorehandler.h | 42 +++++++++++++++++++++++++++ src/net/tmwa/generalhandler.cpp | 5 +++- src/net/tmwa/generalhandler.h | 1 + src/net/tmwa/searchstorehandler.cpp | 50 ++++++++++++++++++++++++++++++++ src/net/tmwa/searchstorehandler.h | 43 ++++++++++++++++++++++++++++ 12 files changed, 251 insertions(+), 2 deletions(-) create mode 100644 src/net/eathena/searchstorehandler.cpp create mode 100644 src/net/eathena/searchstorehandler.h create mode 100644 src/net/searchstorehandler.h create mode 100644 src/net/tmwa/searchstorehandler.cpp create mode 100644 src/net/tmwa/searchstorehandler.h diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a0fa78e31..d805ff267 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1385,6 +1385,8 @@ SET(SRCS_TMWA net/tmwa/protocol.h net/tmwa/questhandler.cpp net/tmwa/questhandler.h + net/tmwa/searchstorehandler.cpp + net/tmwa/searchstorehandler.h net/tmwa/serverfeatures.cpp net/tmwa/serverfeatures.h net/tmwa/skillhandler.cpp @@ -1466,6 +1468,8 @@ SET(SRCS_EATHENA net/eathena/protocol.h net/eathena/questhandler.cpp net/eathena/questhandler.h + net/eathena/searchstorehandler.cpp + net/eathena/searchstorehandler.h net/eathena/serverfeatures.cpp net/eathena/serverfeatures.h net/eathena/skillhandler.cpp diff --git a/src/Makefile.am b/src/Makefile.am index f0bcb6686..0d0d84594 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -702,6 +702,7 @@ manaplus_SOURCES += gui/widgets/avatarlistbox.cpp \ net/registrationoptions.h \ net/sdltcpnet.cpp \ net/sdltcpnet.h \ + net/searchstorehandler.h \ net/serverfeatures.h \ net/serverinfo.h \ net/skillhandler.h \ @@ -1319,6 +1320,8 @@ manaplus_SOURCES += \ net/tmwa/protocol.h \ net/tmwa/questhandler.cpp \ net/tmwa/questhandler.h \ + net/tmwa/searchstorehandler.cpp \ + net/tmwa/searchstorehandler.h \ net/tmwa/serverfeatures.cpp \ net/tmwa/serverfeatures.h \ net/tmwa/skillhandler.cpp \ @@ -1401,6 +1404,8 @@ manaplus_SOURCES += net/eathena/adminhandler.cpp \ net/eathena/protocol.h \ net/eathena/questhandler.cpp \ net/eathena/questhandler.h \ + net/eathena/searchstorehandler.cpp \ + net/eathena/searchstorehandler.h \ net/eathena/serverfeatures.cpp \ net/eathena/serverfeatures.h \ net/eathena/skillhandler.cpp \ diff --git a/src/net/eathena/generalhandler.cpp b/src/net/eathena/generalhandler.cpp index 570d79136..7ded3aa35 100644 --- a/src/net/eathena/generalhandler.cpp +++ b/src/net/eathena/generalhandler.cpp @@ -65,6 +65,7 @@ #include "net/eathena/pethandler.h" #include "net/eathena/playerhandler.h" #include "net/eathena/protocol.h" +#include "net/eathena/searchstorehandler.h" #include "net/eathena/serverfeatures.h" #include "net/eathena/tradehandler.h" #include "net/eathena/skillhandler.h" @@ -117,7 +118,8 @@ GeneralHandler::GeneralHandler() : mFriendsHandler(new FriendsHandler), mElementalHandler(new ElementalHandler), mMarketHandler(new MarketHandler), - mVendingHandler(new VendingHandler) + mVendingHandler(new VendingHandler), + mSearchStoreHandler(new SearchStoreHandler) { static const uint16_t _messages[] = { @@ -307,6 +309,7 @@ void GeneralHandler::load() mNetwork->registerHandler(mElementalHandler); mNetwork->registerHandler(mMarketHandler); mNetwork->registerHandler(mVendingHandler); + mNetwork->registerHandler(mSearchStoreHandler); } void GeneralHandler::reload() diff --git a/src/net/eathena/generalhandler.h b/src/net/eathena/generalhandler.h index fcd22265e..892653739 100644 --- a/src/net/eathena/generalhandler.h +++ b/src/net/eathena/generalhandler.h @@ -95,6 +95,7 @@ class GeneralHandler final : public MessageHandler, MessageHandlerPtr mElementalHandler; MessageHandlerPtr mMarketHandler; MessageHandlerPtr mVendingHandler; + MessageHandlerPtr mSearchStoreHandler; }; } // namespace EAthena diff --git a/src/net/eathena/searchstorehandler.cpp b/src/net/eathena/searchstorehandler.cpp new file mode 100644 index 000000000..602a8dce1 --- /dev/null +++ b/src/net/eathena/searchstorehandler.cpp @@ -0,0 +1,52 @@ +/* + * 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/eathena/searchstorehandler.h" + +#include "net/eathena/protocol.h" + +#include "debug.h" + +extern Net::SearchStoreHandler *searchStoreHandler; + +namespace EAthena +{ + +SearchStoreHandler::SearchStoreHandler() : + MessageHandler() +{ + static const uint16_t _messages[] = + { + 0 + }; + handledMessages = _messages; + searchStoreHandler = this; +} + +void SearchStoreHandler::handleMessage(Net::MessageIn &msg) +{ + switch (msg.getId()) + { + default: + break; + } +} + +} // namespace EAthena diff --git a/src/net/eathena/searchstorehandler.h b/src/net/eathena/searchstorehandler.h new file mode 100644 index 000000000..f9c486faf --- /dev/null +++ b/src/net/eathena/searchstorehandler.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 . + */ + +#ifndef NET_EATHENA_SEARCHSTOREHANDLER_H +#define NET_EATHENA_SEARCHSTOREHANDLER_H + +#include "net/searchstorehandler.h" + +#include "net/eathena/messagehandler.h" + +namespace EAthena +{ +class SearchStoreHandler final : public MessageHandler, + public Net::SearchStoreHandler +{ + public: + SearchStoreHandler(); + + A_DELETE_COPY(SearchStoreHandler) + + void handleMessage(Net::MessageIn &msg) override final; +}; + +} // namespace EAthena + +#endif // NET_EATHENA_SEARCHSTOREHANDLER_H diff --git a/src/net/net.cpp b/src/net/net.cpp index d9b32dc29..3dc095cef 100644 --- a/src/net/net.cpp +++ b/src/net/net.cpp @@ -65,6 +65,7 @@ namespace Net class PetHandler; class PlayerHandler; class QuestHandler; + class SearchStoreHandler; class ServerFeatures; class SkillHandler; class TradeHandler; @@ -101,6 +102,7 @@ Net::FriendsHandler *friendsHandler = nullptr; Net::ElementalHandler *elementalHandler = nullptr; Net::MarketHandler *marketHandler = nullptr; Net::VendingHandler *vendingHandler = nullptr; +Net::SearchStoreHandler *searchStoreHandler = nullptr; namespace Net { diff --git a/src/net/searchstorehandler.h b/src/net/searchstorehandler.h new file mode 100644 index 000000000..30b5d0e88 --- /dev/null +++ b/src/net/searchstorehandler.h @@ -0,0 +1,42 @@ +/* + * 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_SEARCHSTOREHANDLER_H +#define NET_SEARCHSTOREHANDLER_H + +#include + +#include "localconsts.h" + +namespace Net +{ + +class SearchStoreHandler notfinal +{ + public: + virtual ~SearchStoreHandler() + { } +}; + +} // namespace Net + +extern Net::SearchStoreHandler *searchStoreHandler; + +#endif // NET_SEARCHSTOREHANDLER_H diff --git a/src/net/tmwa/generalhandler.cpp b/src/net/tmwa/generalhandler.cpp index a34da33dc..359cc5492 100644 --- a/src/net/tmwa/generalhandler.cpp +++ b/src/net/tmwa/generalhandler.cpp @@ -63,6 +63,7 @@ #include "net/tmwa/pethandler.h" #include "net/tmwa/playerhandler.h" #include "net/tmwa/protocol.h" +#include "net/tmwa/searchstorehandler.h" #include "net/tmwa/serverfeatures.h" #include "net/tmwa/tradehandler.h" #include "net/tmwa/skillhandler.h" @@ -115,7 +116,8 @@ GeneralHandler::GeneralHandler() : mFriendsHandler(new FriendsHandler), mElementalHandler(new ElementalHandler), mMarketHandler(new MarketHandler), - mVendingHandler(new VendingHandler) + mVendingHandler(new VendingHandler), + mSearchStoreHandler(new SearchStoreHandler) { static const uint16_t _messages[] = { @@ -243,6 +245,7 @@ void GeneralHandler::load() mNetwork->registerHandler(mElementalHandler); mNetwork->registerHandler(mMarketHandler); mNetwork->registerHandler(mVendingHandler); + mNetwork->registerHandler(mSearchStoreHandler); } void GeneralHandler::reload() diff --git a/src/net/tmwa/generalhandler.h b/src/net/tmwa/generalhandler.h index ed1bc983c..01eda4145 100644 --- a/src/net/tmwa/generalhandler.h +++ b/src/net/tmwa/generalhandler.h @@ -93,6 +93,7 @@ class GeneralHandler final : public MessageHandler, MessageHandlerPtr mElementalHandler; MessageHandlerPtr mMarketHandler; MessageHandlerPtr mVendingHandler; + MessageHandlerPtr mSearchStoreHandler; }; } // namespace TmwAthena diff --git a/src/net/tmwa/searchstorehandler.cpp b/src/net/tmwa/searchstorehandler.cpp new file mode 100644 index 000000000..26e35725f --- /dev/null +++ b/src/net/tmwa/searchstorehandler.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 . + */ + +#include "net/tmwa/searchstorehandler.h" + +#include "debug.h" + +extern Net::SearchStoreHandler *searchStoreHandler; + +namespace TmwAthena +{ + +SearchStoreHandler::SearchStoreHandler() : + MessageHandler() +{ + static const uint16_t _messages[] = + { + 0 + }; + handledMessages = _messages; + searchStoreHandler = this; +} + +void SearchStoreHandler::handleMessage(Net::MessageIn &msg) +{ + switch (msg.getId()) + { + default: + break; + } +} + +} // namespace TmwAthena diff --git a/src/net/tmwa/searchstorehandler.h b/src/net/tmwa/searchstorehandler.h new file mode 100644 index 000000000..f5c00a6c1 --- /dev/null +++ b/src/net/tmwa/searchstorehandler.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 . + */ + +#ifndef NET_TMWA_SEARCHSTOREHANDLER_H +#define NET_TMWA_SEARCHSTOREHANDLER_H + +#include "net/searchstorehandler.h" + +#include "net/tmwa/messagehandler.h" + +namespace TmwAthena +{ +class SearchStoreHandler final : public MessageHandler, + public Net::SearchStoreHandler +{ + public: + SearchStoreHandler(); + + A_DELETE_COPY(SearchStoreHandler) + + void handleMessage(Net::MessageIn &msg) override final; +}; + +} // namespace TmwAthena + +#endif // NET_TMWA_SEARCHSTOREHANDLER_H -- cgit v1.2.3-70-g09d2