[9348] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Fabian 'x3n' Landau |
---|
| 24 | * Co-authors: |
---|
| 25 | * Reto Grieder |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
| 30 | @file |
---|
| 31 | @brief Implementation of the ConsoleWriter singleton. |
---|
| 32 | */ |
---|
| 33 | |
---|
| 34 | #include "ConsoleWriter.h" |
---|
| 35 | |
---|
| 36 | |
---|
| 37 | #include "OutputManager.h" |
---|
| 38 | |
---|
| 39 | namespace orxonox |
---|
| 40 | { |
---|
| 41 | /** |
---|
| 42 | @brief Constructor, initializes the output level. |
---|
| 43 | |
---|
| 44 | In debug builds, it writes output up to level::internal_warning to the |
---|
| 45 | console, in release builds only up to level::user_info. |
---|
| 46 | |
---|
| 47 | After creation, the instance is enabled. |
---|
| 48 | */ |
---|
[9550] | 49 | ConsoleWriter::ConsoleWriter(std::ostream& outputStream) : BaseWriter("Console"), outputStream_(outputStream) |
---|
[9348] | 50 | { |
---|
| 51 | #ifdef ORXONOX_RELEASE |
---|
| 52 | this->setLevelMax(level::user_info); |
---|
| 53 | #else |
---|
| 54 | this->setLevelMax(level::internal_warning); |
---|
| 55 | #endif |
---|
| 56 | this->bEnabled_ = true; |
---|
| 57 | } |
---|
| 58 | |
---|
| 59 | /** |
---|
| 60 | @brief Destructor. |
---|
| 61 | */ |
---|
| 62 | ConsoleWriter::~ConsoleWriter() |
---|
| 63 | { |
---|
| 64 | } |
---|
| 65 | |
---|
| 66 | /** |
---|
| 67 | @brief Inherited function from BaseWriter, writes output to the console using std::cout. |
---|
| 68 | */ |
---|
| 69 | void ConsoleWriter::printLine(const std::string& line, OutputLevel) |
---|
| 70 | { |
---|
[9550] | 71 | this->outputStream_ << line << std::endl; |
---|
[9348] | 72 | } |
---|
| 73 | |
---|
| 74 | /** |
---|
| 75 | @brief Enables the instance by registering itself as listener at OutputManager. |
---|
| 76 | */ |
---|
| 77 | void ConsoleWriter::enable() |
---|
| 78 | { |
---|
| 79 | if (!this->bEnabled_) |
---|
| 80 | { |
---|
| 81 | OutputManager::getInstance().registerListener(this); |
---|
| 82 | this->bEnabled_ = true; |
---|
| 83 | } |
---|
| 84 | } |
---|
| 85 | |
---|
| 86 | /** |
---|
| 87 | @brief Disables the instance by unregistering itself from OutputManager. |
---|
| 88 | */ |
---|
| 89 | void ConsoleWriter::disable() |
---|
| 90 | { |
---|
| 91 | if (this->bEnabled_) |
---|
| 92 | { |
---|
| 93 | OutputManager::getInstance().unregisterListener(this); |
---|
| 94 | this->bEnabled_ = false; |
---|
| 95 | } |
---|
| 96 | } |
---|
| 97 | } |
---|