From 6dc1f5e0b68cf390f7938329b50a9b28bd187862 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 1 Feb 2015 23:48:15 +0300 Subject: Set correct vending status to local player. Allow buy from vending shop. --- src/listeners/vendingmodelistener.cpp | 36 +++++++++++++++++++++++++++++++++ src/listeners/vendingmodelistener.h | 38 +++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 src/listeners/vendingmodelistener.cpp create mode 100644 src/listeners/vendingmodelistener.h (limited to 'src/listeners') diff --git a/src/listeners/vendingmodelistener.cpp b/src/listeners/vendingmodelistener.cpp new file mode 100644 index 000000000..7dd34f7ba --- /dev/null +++ b/src/listeners/vendingmodelistener.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/vendingmodelistener.h" + +#include "debug.h" + +defineListener(VendingModeListener) + +void VendingModeListener::distributeEvent(const bool b) +{ + FOR_EACH (std::vector::iterator, + it, mListeners) + { + VendingModeListener *const listener = *it; + if (listener) + listener->vendingEnabled(b); + } +} diff --git a/src/listeners/vendingmodelistener.h b/src/listeners/vendingmodelistener.h new file mode 100644 index 000000000..2330c3d8d --- /dev/null +++ b/src/listeners/vendingmodelistener.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_VENDINGMODELISTENER_H +#define LISTENERS_VENDINGMODELISTENER_H + +#include "listeners/baselistener.hpp" + +#include "localconsts.h" + +class VendingModeListener notfinal +{ + public: + virtual void vendingEnabled(const bool b) = 0; + + static void distributeEvent(const bool b); + + defineListenerHeader(VendingModeListener) +}; + +#endif // LISTENERS_VENDINGMODELISTENER_H -- cgit v1.2.3-60-g2f50