diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-02 13:35:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-02 13:35:49 +0300 |
commit | ce2e90b35291abe32c47e21569a58e9eb22cc87b (patch) | |
tree | c1336be7f447fbf3ad79a4103b2945e00e22ff4a | |
parent | c26b6e2c74750c1f4f99ef5d673ea6fc2aac767b (diff) | |
download | plus-ce2e90b35291abe32c47e21569a58e9eb22cc87b.tar.gz plus-ce2e90b35291abe32c47e21569a58e9eb22cc87b.tar.bz2 plus-ce2e90b35291abe32c47e21569a58e9eb22cc87b.tar.xz plus-ce2e90b35291abe32c47e21569a58e9eb22cc87b.zip |
Add PlayerDeathListener.
-rw-r--r-- | src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/listeners/playerdeathlistener.cpp | 36 | ||||
-rw-r--r-- | src/listeners/playerdeathlistener.h | 38 |
4 files changed, 78 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4b0805bae..92bf0a7e1 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1114,6 +1114,8 @@ SET(SRCS listeners/openurllistener.h listeners/pincodelistener.cpp listeners/pincodelistener.h + listeners/playerdeathlistener.cpp + listeners/playerdeathlistener.h listeners/playerpostdeathlistener.h listeners/playerlistener.cpp listeners/playerlistener.h diff --git a/src/Makefile.am b/src/Makefile.am index fdbf00bd5..e4c94eae2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -205,6 +205,8 @@ manaplus_SOURCES += events/actionevent.h \ listeners/openurllistener.h \ listeners/pincodelistener.cpp \ listeners/pincodelistener.h \ + listeners/playerdeathlistener.cpp \ + listeners/playerdeathlistener.h \ listeners/playerpostdeathlistener.h \ listeners/playerlistener.cpp \ listeners/playerlistener.h \ diff --git a/src/listeners/playerdeathlistener.cpp b/src/listeners/playerdeathlistener.cpp new file mode 100644 index 000000000..c41248fb3 --- /dev/null +++ b/src/listeners/playerdeathlistener.cpp @@ -0,0 +1,36 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014 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/playerdeathlistener.h" + +#include "debug.h" + +defineListener(PlayerDeathListener) + +void PlayerDeathListener::distributeEvent() +{ + FOR_EACH (std::vector<PlayerDeathListener*>::iterator, + it, mListeners) + { + PlayerDeathListener *const listener = *it; + if (listener) + listener->playerDeath(); + } +} diff --git a/src/listeners/playerdeathlistener.h b/src/listeners/playerdeathlistener.h new file mode 100644 index 000000000..eeecfa204 --- /dev/null +++ b/src/listeners/playerdeathlistener.h @@ -0,0 +1,38 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014 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/>. + */ + +#ifndef LISTENERS_PLAYERDEATHLISTENER_H +#define LISTENERS_PLAYERDEATHLISTENER_H + +#include "listeners/baselistener.hpp" + +#include "localconsts.h" + +class PlayerDeathListener notfinal +{ + public: + virtual void playerDeath() = 0; + + static void distributeEvent(); + + defineListenerHeader(PlayerDeathListener) +}; + +#endif // LISTENERS_PLAYERDEATHLISTENER_H |