From 50a5ff8c29c9df133104d9113debafbc5424d0ab Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 9 Mar 2015 20:13:00 +0300 Subject: Add debug message listener. --- src/CMakeLists.txt | 2 ++ src/Makefile.am | 2 ++ src/listeners/debugmessagelistener.cpp | 36 ++++++++++++++++++++++++++++++ src/listeners/debugmessagelistener.h | 40 ++++++++++++++++++++++++++++++++++ 4 files changed, 80 insertions(+) create mode 100644 src/listeners/debugmessagelistener.cpp create mode 100644 src/listeners/debugmessagelistener.h (limited to 'src') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index df16d5f77..0364164d8 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -845,6 +845,8 @@ SET(SRCS enums/being/gender.h being/homunculusinfo.h listeners/configlistener.h + listeners/debugmessagelistener.cpp + listeners/debugmessagelistener.h configuration.cpp configuration.h debug.h diff --git a/src/Makefile.am b/src/Makefile.am index 1731da442..86e1355da 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -188,6 +188,8 @@ manaplus_SOURCES += events/actionevent.h \ events/event.h \ listeners/focuslistener.h \ listeners/guiconfiglistener.h \ + listeners/debugmessagelistener.cpp \ + listeners/debugmessagelistener.h \ listeners/guitableactionlistener.cpp \ listeners/guitableactionlistener.h \ listeners/inputactionreplaylistener.cpp \ diff --git a/src/listeners/debugmessagelistener.cpp b/src/listeners/debugmessagelistener.cpp new file mode 100644 index 000000000..32fdb142b --- /dev/null +++ b/src/listeners/debugmessagelistener.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/debugmessagelistener.h" + +#include "debug.h" + +defineListener(DebugMessageListener) + +void DebugMessageListener::distributeEvent(const std::string &msg) +{ + FOR_EACH (std::vector::iterator, + it, mListeners) + { + DebugMessageListener *const listener = *it; + if (listener) + listener->debugMessage(msg); + } +} diff --git a/src/listeners/debugmessagelistener.h b/src/listeners/debugmessagelistener.h new file mode 100644 index 000000000..d458ece58 --- /dev/null +++ b/src/listeners/debugmessagelistener.h @@ -0,0 +1,40 @@ +/* + * 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_DEBUGMESSAGELISTENER_H +#define LISTENERS_DEBUGMESSAGELISTENER_H + +#include "listeners/baselistener.hpp" + +#include + +#include "localconsts.h" + +class DebugMessageListener notfinal +{ + public: + virtual void debugMessage(const std::string &msg) = 0; + + static void distributeEvent(const std::string &msg); + + defineListenerHeader(DebugMessageListener) +}; + +#endif // LISTENERS_DEBUGMESSAGELISTENER_H -- cgit v1.2.3-60-g2f50