diff options
Diffstat (limited to 'src')
-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 |