Console logging is now identical in all builds; warning and error show the console...
[supertux.git] / src / supertux / console.hpp
1 //  SuperTux - Console
2 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_SUPERTUX_CONSOLE_HPP
18 #define HEADER_SUPERTUX_SUPERTUX_CONSOLE_HPP
19
20 #include <list>
21 #include <memory>
22 #include <squirrel.h>
23 #include <sstream>
24 #include <vector>
25
26 #include "video/font_ptr.hpp"
27 #include "video/surface_ptr.hpp"
28
29 class Console;
30 class ConsoleStreamBuffer;
31 class ConsoleCommandReceiver;
32 class DrawingContext;
33
34 class Console
35 {
36 public:
37   Console();
38   ~Console();
39
40   static Console* instance;
41
42   static std::ostream output; /**< stream of characters to output to the console. Do not forget to send std::endl or to flush the stream. */
43
44   void init_graphics();
45
46   void input(char c); /**< add character to inputBuffer */
47   void backspace(); /**< delete character left of inputBufferPosition */
48   void eraseChar(); /**< delete character at inputBufferPosition */
49   void enter(); /**< process and clear input stream */
50   void scroll(int offset); /**< scroll console text up or down by @c offset lines */
51   void autocomplete(); /**< autocomplete current command */
52   void show_history(int offset); /**< move @c offset lines forward through history; Negative offset moves backward */
53   void move_cursor(int offset); /**< move the cursor @c offset chars to the right; Negative offset moves backward; 0xFFFF moves to the end */
54
55   void draw(DrawingContext& context); /**< draw the console in a DrawingContext */
56   void update(float elapsed_time);
57
58   void show(); /**< display the console */
59   void open(); /**< open the console for viewing for 6 seconds */
60   void hide(); /**< hide the console */
61   void toggle(); /**< display the console if hidden, hide otherwise */
62
63   bool hasFocus(); /**< true if characters should be sent to the console instead of their normal target */
64
65   template<typename T> static bool string_is(std::string s) {
66     std::istringstream iss(s);
67     T i;
68     if ((iss >> i) && iss.eof()) {
69       return true;
70     } else {
71       return false;
72     }
73   }
74
75   template<typename T> static T string_to(std::string s) {
76     std::istringstream iss(s);
77     T i;
78     if ((iss >> i) && iss.eof()) {
79       return i;
80     } else {
81       return T();
82     }
83   }
84
85 private:
86   std::list<std::string> history; /**< command history. New lines get added to back. */
87   std::list<std::string>::iterator history_position; /**< item of command history that is currently displayed */
88   std::list<std::string> lines; /**< backbuffer of lines sent to the console. New lines get added to front. */
89
90   SurfacePtr background; /**< console background image */
91   SurfacePtr background2; /**< second, moving console background image */
92
93   HSQUIRRELVM vm; /**< squirrel thread for the console (with custom roottable) */
94   HSQOBJECT vm_object;
95
96   int backgroundOffset; /**< current offset of scrolling background image */
97   float height; /**< height of the console in px */
98   float alpha;
99   int offset; /**< decrease to scroll text up */
100   bool focused; /**< true if console has input focus */
101   FontPtr font;
102   float fontheight; /**< height of the font (this is a separate var, because the font could not be initialized yet but is needed in the addLine message */
103
104   float stayOpen;
105
106   static int inputBufferPosition; /**< position in inputBuffer before which to append new characters */
107   static std::string inputBuffer; /**< string used for keyboard input */
108   static ConsoleStreamBuffer outputBuffer; /**< stream buffer used by output stream */
109
110   void addLines(std::string s); /**< display a string of (potentially) multiple lines in the console */
111   void addLine(std::string s); /**< display a line in the console */
112   void parse(std::string s); /**< react to a given command */
113
114   /** ready a virtual machine instance, creating a new thread and loading default .nut files if needed */
115   void ready_vm();
116
117   /** execute squirrel script and output result */
118   void execute_script(const std::string& s);
119
120   bool consoleCommand(std::string command, std::vector<std::string> arguments); /**< process internal command; return false if command was unknown, true otherwise */
121
122   friend class ConsoleStreamBuffer;
123   void flush(ConsoleStreamBuffer* buffer); /**< act upon changes in a ConsoleStreamBuffer */
124
125 private:
126   Console(const Console&);
127   Console & operator=(const Console&);
128 };
129
130 class ConsoleStreamBuffer : public std::stringbuf
131 {
132 public:
133   int sync()
134   {
135     int result = std::stringbuf::sync();
136     if(Console::instance != NULL)
137       Console::instance->flush(this);
138     return result;
139   }
140 };
141
142 #endif
143
144 /* EOF */