Console can be toggled with Tab key / Receives chars while open
[supertux.git] / src / console.hpp
1 //  $Id: worldmap.hpp 3209 2006-04-02 22:19:22Z sommer $
2 // 
3 //  SuperTux - Console
4 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 // 
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 #ifndef SUPERTUX_CONSOLE_H
21 #define SUPERTUX_CONSOLE_H
22
23 #include <list>
24 #include <string>
25 #include <sstream>
26 #include <iostream>
27
28 class Console;
29 class ConsoleStreamBuffer;
30 class DrawingContext;
31 class Surface;
32
33 class Console 
34 {
35   public:
36     Console(DrawingContext* context);
37     ~Console();
38
39     static std::ostream input; /**< stream of keyboard input to send to the console. Do not forget to send std::endl or to flush the stream. */
40     static std::ostream output; /**< stream of characters to output to the console. Do not forget to send std::endl or to flush the stream. */
41
42     static void flush(ConsoleStreamBuffer* buffer); /**< act upon changes in a stream, normally called by the stream itself */
43
44     void draw(); /**< draw the console to its */
45     static void show(); /**< display the console */
46     static void hide(); /**< hide the console */
47     static bool hasFocus(); /**< true if characters should be sent to the console instead of their normal target */
48
49   protected:
50     static std::list<std::string> lines; /**< backbuffer of lines sent to the console */
51     DrawingContext* context; /**< context to draw to */
52     Surface* background; /**< console background image */
53     static int height; /**< height of the console in px */
54     static bool focused; /**< true if console has input focus */
55
56     static ConsoleStreamBuffer inputBuffer; /**< stream buffer used by input stream */
57     static ConsoleStreamBuffer outputBuffer; /**< stream buffer used by output stream */
58
59     static void addLine(std::string s); /**< display a line in the console */
60     static void parse(std::string s); /**< react to a given command */
61 };
62
63 class ConsoleStreamBuffer : public std::stringbuf 
64 {
65   public:
66     int sync() 
67     {
68       Console::flush(this);
69       return std::stringbuf::sync();
70     }
71 };
72
73 #endif
74
75