/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * 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 (at your option) 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Oliver Scheuss * Reto Grieder * Co-authors: * ... * */ /** @file @ingroup Command ShellConsole */ #ifndef _IOConsole_H__ #define _IOConsole_H__ #include "core/CorePrereqs.h" #include #include #include #include "util/Singleton.h" #include "Shell.h" struct termios; namespace orxonox { class _CoreExport IOConsole : public Singleton, public ShellListener { friend class Singleton; public: IOConsole(); ~IOConsole(); void preUpdate(const Clock& time); private: void setTerminalMode(); void getTerminalSize(); void printStatusLines(); static int extractLogLevel(std::string* text); // Methods from ShellListener virtual void linesChanged() override; virtual void lineAdded() override; virtual void inputChanged() override; virtual void cursorChanged() override; virtual void executed() override; virtual void exit() override; bool willPrintStatusLines(); void printInputLine(); void printOutputLine(const std::string& line, Shell::LineType type); static void resetTerminalMode(); Shell* shell_; InputBuffer* buffer_; std::ostream cout_; std::ostringstream origCout_; int terminalWidth_; int terminalHeight_; int lastTerminalWidth_; int lastTerminalHeight_; const std::string promptString_; bool bPrintStatusLine_; bool bStatusPrinted_; std::vector statusLineWidths_; int statusLineMaxWidth_; static const int minOutputLines_ = 3; termios* originalTerminalSettings_; static IOConsole* singletonPtr_s; }; } #endif /* _IOConsole_H__ */