From c2f007b58743491dc9250f09137ad847043b840d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 15 Feb 2015 00:14:39 +0300 Subject: eathena: impliment packet SMSG_BUYINGSTORE_OWN_ITEMS. --- src/listeners/buyingstoremodelistener.cpp | 36 +++++++++++++++++++++++++++++ src/listeners/buyingstoremodelistener.h | 38 +++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 src/listeners/buyingstoremodelistener.cpp create mode 100644 src/listeners/buyingstoremodelistener.h (limited to 'src/listeners') diff --git a/src/listeners/buyingstoremodelistener.cpp b/src/listeners/buyingstoremodelistener.cpp new file mode 100644 index 000000000..217c19813 --- /dev/null +++ b/src/listeners/buyingstoremodelistener.cpp @@ -0,0 +1,36 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014-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 "listeners/buyingstoremodelistener.h" + +#include "debug.h" + +defineListener(BuyingStoreModeListener) + +void BuyingStoreModeListener::distributeEvent(const bool b) +{ + FOR_EACH (std::vector::iterator, + it, mListeners) + { + BuyingStoreModeListener *const listener = *it; + if (listener) + listener->buyingStoreEnabled(b); + } +} diff --git a/src/listeners/buyingstoremodelistener.h b/src/listeners/buyingstoremodelistener.h new file mode 100644 index 000000000..36d402d59 --- /dev/null +++ b/src/listeners/buyingstoremodelistener.h @@ -0,0 +1,38 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014-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 LISTENERS_BUYINGSTOREMODELISTENER_H +#define LISTENERS_BUYINGSTOREMODELISTENER_H + +#include "listeners/baselistener.hpp" + +#include "localconsts.h" + +class BuyingStoreModeListener notfinal +{ + public: + virtual void buyingStoreEnabled(const bool b) = 0; + + static void distributeEvent(const bool b); + + defineListenerHeader(BuyingStoreModeListener) +}; + +#endif // LISTENERS_BUYINGSTOREMODELISTENER_H -- cgit v1.2.3-60-g2f50