diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-01 23:48:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-02 22:48:03 +0300 |
commit | 6dc1f5e0b68cf390f7938329b50a9b28bd187862 (patch) | |
tree | 29e30e48cc03d95aeff278f6842f3a15de8f4106 /src/listeners/vendingmodelistener.cpp | |
parent | c8c51d7550adf9c952a4be54398df7e7a6f341a8 (diff) | |
download | manaverse-6dc1f5e0b68cf390f7938329b50a9b28bd187862.tar.gz manaverse-6dc1f5e0b68cf390f7938329b50a9b28bd187862.tar.bz2 manaverse-6dc1f5e0b68cf390f7938329b50a9b28bd187862.tar.xz manaverse-6dc1f5e0b68cf390f7938329b50a9b28bd187862.zip |
Set correct vending status to local player.
Allow buy from vending shop.
Diffstat (limited to 'src/listeners/vendingmodelistener.cpp')
-rw-r--r-- | src/listeners/vendingmodelistener.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>. + */ + +#include "listeners/vendingmodelistener.h" + +#include "debug.h" + +defineListener(VendingModeListener) + +void VendingModeListener::distributeEvent(const bool b) +{ + FOR_EACH (std::vector<VendingModeListener*>::iterator, + it, mListeners) + { + VendingModeListener *const listener = *it; + if (listener) + listener->vendingEnabled(b); + } +} |