f3e0220728bc09b2f501fe95ba07d44f0eb75d27
[supertux.git] / src / console.cpp
1 //  $Id: worldmap.cpp 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 #include <config.h>
21 #include <iostream>
22 #include "console.hpp"
23 #include "video/drawing_context.hpp"
24 #include "video/surface.hpp"
25 #include "player_status.hpp"
26 #include "main.hpp"
27 #include "resources.hpp"
28
29 namespace {
30   int ticks; // TODO: use a clock?
31 }
32
33 Console::Console()
34 {
35   background = new Surface("images/engine/console.png");
36   background2 = new Surface("images/engine/console2.png");
37 }
38
39 Console::~Console() 
40 {
41   delete background;
42   delete background2;
43 }
44
45 void 
46 Console::flush(ConsoleStreamBuffer* buffer) 
47 {
48   if (buffer == &outputBuffer) {
49     std::string s = outputBuffer.str();
50     if ((s.length() > 0) && ((s[s.length()-1] == '\n') || (s[s.length()-1] == '\r'))) {
51       while ((s[s.length()-1] == '\n') || (s[s.length()-1] == '\r')) s.erase(s.length()-1);
52       addLine(s);
53       outputBuffer.str(std::string());
54     }
55   }
56   if (buffer == &inputBuffer) {
57     std::string s = inputBuffer.str();
58     if ((s.length() > 0) && ((s[s.length()-1] == '\n') || (s[s.length()-1] == '\r'))) {
59       while ((s[s.length()-1] == '\n') || (s[s.length()-1] == '\r')) s.erase(s.length()-1);
60       addLine("> "+s);
61       parse(s);
62       inputBuffer.str(std::string());
63     }
64   }
65 }
66
67 void
68 Console::backspace()
69 {
70   std::string s = inputBuffer.str();
71   if (s.length() > 0) {
72     s.erase(s.length()-1);
73     inputBuffer.str(s);
74     inputBuffer.pubseekoff(0, std::ios_base::end, std::ios_base::out);
75   }
76 }
77
78 void
79 Console::scroll(int numLines)
80 {
81   offset += numLines;
82   if (offset > 0) offset = 0;
83 }
84
85 void
86 Console::autocomplete()
87 {
88   std::string cmdPart = inputBuffer.str();
89   addLine("> "+cmdPart);
90
91   std::string cmdList = "";
92   int cmdListLen = 0;
93   for (std::map<std::string, std::list<ConsoleCommandReceiver*> >::iterator i = commands.begin(); i != commands.end(); i++) {
94     std::string cmdKnown = i->first;
95     if (cmdKnown.substr(0, cmdPart.length()) == cmdPart) {
96       if (cmdListLen > 0) cmdList = cmdList + ", ";
97       cmdList = cmdList + cmdKnown;
98       cmdListLen++;
99     }
100   }
101   if (cmdListLen == 0) addLine("No known command starts with \""+cmdPart+"\"");
102   if (cmdListLen == 1) {
103     inputBuffer.str(cmdList);
104     inputBuffer.pubseekoff(0, std::ios_base::end, std::ios_base::out);
105   }
106   if (cmdListLen > 1) addLine(cmdList);
107 }
108
109 void 
110 Console::addLine(std::string s) 
111 {
112   std::cerr << s << std::endl;
113   while (s.length() > 99) {
114     lines.push_front(s.substr(0, 99-3)+"...");
115     s = "..."+s.substr(99-3);
116   }
117   lines.push_front(s);
118   while (lines.size() >= 65535) lines.pop_back();
119   if (height < 64) {
120     if (height < 4+9) height=4+9;
121     height+=9;
122   }
123   ticks=60;
124 }
125
126 void
127 Console::parse(std::string s) 
128 {
129   // split line into list of args
130   std::vector<std::string> args;
131   size_t start = 0;
132   size_t end = 0;
133   while (1) {
134     start = s.find_first_not_of(" ,", end);
135     end = s.find_first_of(" ,", start);
136     if (start == s.npos) break;
137     args.push_back(s.substr(start, end-start));
138   }
139
140   // command is args[0]
141   std::string command = args.front();
142   args.erase(args.begin());
143
144   // look up registered ccr
145   std::map<std::string, std::list<ConsoleCommandReceiver*> >::iterator i = commands.find(command);
146   if ((i == commands.end()) || (i->second.size() == 0)) {
147     addLine("unknown command: \"" + command + "\"");
148     return;
149   }
150
151   // send command to the most recently registered ccr
152   ConsoleCommandReceiver* ccr = i->second.front();
153   if (ccr->consoleCommand(command, args) != true) msg_warning << "Sent command to registered ccr, but command was unhandled" << std::endl;
154 }
155
156 bool
157 Console::hasFocus() 
158 {
159   return focused;
160 }
161
162 void
163 Console::show()
164 {
165   focused = true;
166   height = 256;
167 }
168
169 void 
170 Console::hide()
171 {
172   focused = false;
173   height = 0;
174
175   // clear input buffer
176   inputBuffer.str(std::string());
177 }
178
179 void 
180 Console::toggle()
181 {
182   if (Console::hasFocus()) {
183     Console::hide(); 
184   } 
185   else { 
186     Console::show();
187   }
188 }
189
190 void 
191 Console::draw(DrawingContext& context)
192 {
193   if (height == 0) return;
194   if (!focused) {
195     if (ticks-- < 0) {
196       height-=10;
197       ticks=0;
198       if (height < 0) height=0;
199     }
200     if (height == 0) return;
201   }
202
203   context.draw_surface(background2, Vector(SCREEN_WIDTH/2 - background->get_width()/2 - background->get_width() + backgroundOffset, height - background->get_height()), LAYER_FOREGROUND1+1);
204   context.draw_surface(background2, Vector(SCREEN_WIDTH/2 - background->get_width()/2 + backgroundOffset, height - background->get_height()), LAYER_FOREGROUND1+1);
205   context.draw_surface(background, Vector(SCREEN_WIDTH/2 - background->get_width()/2, height - background->get_height()), LAYER_FOREGROUND1+1);
206   backgroundOffset+=10;
207   if (backgroundOffset > (int)background->get_width()) backgroundOffset -= (int)background->get_width();
208
209   int lineNo = 0;
210
211   if (focused) {
212     lineNo++;
213     float py = height-4-1*9;
214     context.draw_text(white_small_text, "> "+inputBuffer.str()+"_", Vector(4, py), LEFT_ALLIGN, LAYER_FOREGROUND1+1);
215   }
216
217   int skipLines = -offset;
218   for (std::list<std::string>::iterator i = lines.begin(); i != lines.end(); i++) {
219     if (skipLines-- > 0) continue;
220     lineNo++;
221     float py = height-4-lineNo*9;
222     if (py < -9) break;
223     context.draw_text(white_small_text, *i, Vector(4, py), LEFT_ALLIGN, LAYER_FOREGROUND1+1);
224   }
225 }
226
227 void 
228 Console::registerCommand(std::string command, ConsoleCommandReceiver* ccr)
229 {
230   commands[command].push_front(ccr);
231 }
232
233 void 
234 Console::unregisterCommand(std::string command, ConsoleCommandReceiver* ccr)
235 {
236   std::map<std::string, std::list<ConsoleCommandReceiver*> >::iterator i = commands.find(command);
237   if ((i == commands.end()) || (i->second.size() == 0)) {
238     msg_warning << "Command \"" << command << "\" not associated with a command receiver. Not dissociated." << std::endl;
239     return;
240   }
241   std::list<ConsoleCommandReceiver*>::iterator j = find(i->second.begin(), i->second.end(), ccr);
242   if (j == i->second.end()) {
243     msg_warning << "Command \"" << command << "\" not associated with given command receiver. Not dissociated." << std::endl;
244     return;
245   }
246   i->second.erase(j);
247 }
248
249 int Console::height = 0;
250 bool Console::focused = false;
251 std::list<std::string> Console::lines;
252 std::map<std::string, std::list<ConsoleCommandReceiver*> > Console::commands;
253 ConsoleStreamBuffer Console::inputBuffer;
254 ConsoleStreamBuffer Console::outputBuffer;
255 std::ostream Console::input(&Console::inputBuffer);
256 std::ostream Console::output(&Console::outputBuffer);
257 int Console::offset = 0;
258 int Console::backgroundOffset = 0;
259