3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "guiChatConsole.h"
27 #include "main.h" // for g_settings
36 #include "xCGUITTFont.h"
39 inline u32 clamp_u8(s32 value)
41 return (u32) MYMIN(MYMAX(value, 0), 255);
45 GUIChatConsole::GUIChatConsole(
46 gui::IGUIEnvironment* env,
47 gui::IGUIElement* parent,
52 IGUIElement(gui::EGUIET_ELEMENT, env, parent, id,
53 core::rect<s32>(0,0,100,100)),
54 m_chat_backend(backend),
56 m_screensize(v2u32(0,0)),
57 m_animate_time_old(0),
61 m_desired_height_fraction(0.0),
65 m_cursor_blink_speed(0.0),
68 m_background_color(255, 0, 0, 0),
72 m_animate_time_old = getTimeMs();
74 // load background settings
75 bool console_color_set = !g_settings->get("console_color").empty();
76 s32 console_alpha = g_settings->getS32("console_alpha");
78 // load the background texture depending on settings
79 m_background_color.setAlpha(clamp_u8(console_alpha));
80 if (console_color_set)
82 v3f console_color = g_settings->getV3F("console_color");
83 m_background_color.setRed(clamp_u8(myround(console_color.X)));
84 m_background_color.setGreen(clamp_u8(myround(console_color.Y)));
85 m_background_color.setBlue(clamp_u8(myround(console_color.Z)));
89 m_background = env->getVideoDriver()->getTexture(getTexturePath("background_chat.jpg").c_str());
90 m_background_color.setRed(255);
91 m_background_color.setGreen(255);
92 m_background_color.setBlue(255);
96 // FIXME should a custom texture_path be searched too?
98 std::string font_name = g_settings->get("mono_font_path");
99 u16 font_size = g_settings->getU16("mono_font_size");
100 m_font = gui::CGUITTFont::createTTFont(env, font_name.c_str(), font_size);
102 std::string font_name = "fontdejavusansmono.png";
103 m_font = env->getFont(getTexturePath(font_name).c_str());
107 dstream << "Unable to load font: " << font_name << std::endl;
111 core::dimension2d<u32> dim = m_font->getDimension(L"M");
112 m_fontsize = v2u32(dim.Width, dim.Height);
113 dstream << "Font size: " << m_fontsize.X << " " << m_fontsize.Y << std::endl;
115 m_fontsize.X = MYMAX(m_fontsize.X, 1);
116 m_fontsize.Y = MYMAX(m_fontsize.Y, 1);
118 // set default cursor options
119 setCursor(true, true, 2.0, 0.1);
122 GUIChatConsole::~GUIChatConsole()
126 void GUIChatConsole::openConsole(f32 height)
129 m_desired_height_fraction = height;
130 m_desired_height = height * m_screensize.Y;
134 bool GUIChatConsole::isOpenInhibited() const
136 return m_open_inhibited > 0;
139 void GUIChatConsole::closeConsole()
144 void GUIChatConsole::closeConsoleAtOnce()
148 recalculateConsolePosition();
151 f32 GUIChatConsole::getDesiredHeight() const
153 return m_desired_height_fraction;
156 void GUIChatConsole::setCursor(
157 bool visible, bool blinking, f32 blink_speed, f32 relative_height)
163 // leave m_cursor_blink unchanged
164 m_cursor_blink_speed = blink_speed;
168 m_cursor_blink = 0x8000; // on
169 m_cursor_blink_speed = 0.0;
174 m_cursor_blink = 0; // off
175 m_cursor_blink_speed = 0.0;
177 m_cursor_height = relative_height;
180 void GUIChatConsole::draw()
185 video::IVideoDriver* driver = Environment->getVideoDriver();
188 v2u32 screensize = driver->getScreenSize();
189 if (screensize != m_screensize)
191 // screen size has changed
192 // scale current console height to new window size
193 if (m_screensize.Y != 0)
194 m_height = m_height * screensize.Y / m_screensize.Y;
195 m_desired_height = m_desired_height_fraction * m_screensize.Y;
196 m_screensize = screensize;
201 u32 now = getTimeMs();
202 animate(now - m_animate_time_old);
203 m_animate_time_old = now;
205 // Draw console elements if visible
213 gui::IGUIElement::draw();
216 void GUIChatConsole::reformatConsole()
218 s32 cols = m_screensize.X / m_fontsize.X - 2; // make room for a margin (looks better)
219 s32 rows = m_desired_height / m_fontsize.Y - 1; // make room for the input prompt
220 if (cols <= 0 || rows <= 0)
222 m_chat_backend->reformat(cols, rows);
225 void GUIChatConsole::recalculateConsolePosition()
227 core::rect<s32> rect(0, 0, m_screensize.X, m_height);
229 recalculateAbsolutePosition(false);
232 void GUIChatConsole::animate(u32 msec)
234 // animate the console height
235 s32 goal = m_open ? m_desired_height : 0;
236 if (m_height != goal)
238 s32 max_change = msec * m_screensize.Y * (m_height_speed / 1000.0);
245 if (m_height + max_change < goal)
246 m_height += max_change;
253 if (m_height > goal + max_change)
254 m_height -= max_change;
259 recalculateConsolePosition();
263 if (m_cursor_blink_speed != 0.0)
265 u32 blink_increase = 0x10000 * msec * (m_cursor_blink_speed / 1000.0);
266 if (blink_increase == 0)
268 m_cursor_blink = ((m_cursor_blink + blink_increase) & 0xffff);
271 // decrease open inhibit counter
272 if (m_open_inhibited > msec)
273 m_open_inhibited -= msec;
275 m_open_inhibited = 0;
278 void GUIChatConsole::drawBackground()
280 video::IVideoDriver* driver = Environment->getVideoDriver();
281 if (m_background != NULL)
283 core::rect<s32> sourcerect(0, -m_height, m_screensize.X, 0);
288 &AbsoluteClippingRect,
294 driver->draw2DRectangle(
296 core::rect<s32>(0, 0, m_screensize.X, m_height),
297 &AbsoluteClippingRect);
301 void GUIChatConsole::drawText()
306 ChatBuffer& buf = m_chat_backend->getConsoleBuffer();
307 for (u32 row = 0; row < buf.getRows(); ++row)
309 const ChatFormattedLine& line = buf.getFormattedLine(row);
310 if (line.fragments.empty())
313 s32 line_height = m_fontsize.Y;
314 s32 y = row * line_height + m_height - m_desired_height;
315 if (y + line_height < 0)
318 for (u32 i = 0; i < line.fragments.size(); ++i)
320 const ChatFormattedFragment& fragment = line.fragments[i];
321 s32 x = (fragment.column + 1) * m_fontsize.X;
322 core::rect<s32> destrect(
323 x, y, x + m_fontsize.X * fragment.text.size(), y + m_fontsize.Y);
325 fragment.text.c_str(),
327 video::SColor(255, 255, 255, 255),
330 &AbsoluteClippingRect);
335 void GUIChatConsole::drawPrompt()
340 u32 row = m_chat_backend->getConsoleBuffer().getRows();
341 s32 line_height = m_fontsize.Y;
342 s32 y = row * line_height + m_height - m_desired_height;
344 ChatPrompt& prompt = m_chat_backend->getPrompt();
345 std::wstring prompt_text = prompt.getVisiblePortion();
347 // FIXME Draw string at once, not character by character
348 // That will only work with the cursor once we have a monospace font
349 for (u32 i = 0; i < prompt_text.size(); ++i)
351 wchar_t ws[2] = {prompt_text[i], 0};
352 s32 x = (1 + i) * m_fontsize.X;
353 core::rect<s32> destrect(
354 x, y, x + m_fontsize.X, y + m_fontsize.Y);
358 video::SColor(255, 255, 255, 255),
361 &AbsoluteClippingRect);
364 // Draw the cursor during on periods
365 if ((m_cursor_blink & 0x8000) != 0)
367 s32 cursor_pos = prompt.getVisibleCursorPosition();
370 video::IVideoDriver* driver = Environment->getVideoDriver();
371 s32 x = (1 + cursor_pos) * m_fontsize.X;
372 core::rect<s32> destrect(
374 y + (1.0-m_cursor_height) * m_fontsize.Y,
377 video::SColor cursor_color(255,255,255,255);
378 driver->draw2DRectangle(
381 &AbsoluteClippingRect);
387 bool GUIChatConsole::OnEvent(const SEvent& event)
389 if(event.EventType == EET_KEY_INPUT_EVENT && event.KeyInput.PressedDown)
392 if(KeyPress(event.KeyInput) == getKeySetting("keymap_console"))
395 Environment->removeFocus(this);
397 // inhibit open so the_game doesn't reopen immediately
398 m_open_inhibited = 50;
401 else if(event.KeyInput.Key == KEY_ESCAPE)
403 closeConsoleAtOnce();
404 Environment->removeFocus(this);
405 // the_game will open the pause menu
408 else if(event.KeyInput.Key == KEY_PRIOR)
410 m_chat_backend->scrollPageUp();
413 else if(event.KeyInput.Key == KEY_NEXT)
415 m_chat_backend->scrollPageDown();
418 else if(event.KeyInput.Key == KEY_RETURN)
420 std::wstring text = m_chat_backend->getPrompt().submit();
421 m_client->typeChatMessage(text);
424 else if(event.KeyInput.Key == KEY_UP)
427 // Move back in history
428 m_chat_backend->getPrompt().historyPrev();
431 else if(event.KeyInput.Key == KEY_DOWN)
434 // Move forward in history
435 m_chat_backend->getPrompt().historyNext();
438 else if(event.KeyInput.Key == KEY_LEFT)
440 // Left or Ctrl-Left pressed
441 // move character / word to the left
442 ChatPrompt::CursorOpScope scope =
443 event.KeyInput.Control ?
444 ChatPrompt::CURSOROP_SCOPE_WORD :
445 ChatPrompt::CURSOROP_SCOPE_CHARACTER;
446 m_chat_backend->getPrompt().cursorOperation(
447 ChatPrompt::CURSOROP_MOVE,
448 ChatPrompt::CURSOROP_DIR_LEFT,
452 else if(event.KeyInput.Key == KEY_RIGHT)
454 // Right or Ctrl-Right pressed
455 // move character / word to the right
456 ChatPrompt::CursorOpScope scope =
457 event.KeyInput.Control ?
458 ChatPrompt::CURSOROP_SCOPE_WORD :
459 ChatPrompt::CURSOROP_SCOPE_CHARACTER;
460 m_chat_backend->getPrompt().cursorOperation(
461 ChatPrompt::CURSOROP_MOVE,
462 ChatPrompt::CURSOROP_DIR_RIGHT,
466 else if(event.KeyInput.Key == KEY_HOME)
469 // move to beginning of line
470 m_chat_backend->getPrompt().cursorOperation(
471 ChatPrompt::CURSOROP_MOVE,
472 ChatPrompt::CURSOROP_DIR_LEFT,
473 ChatPrompt::CURSOROP_SCOPE_LINE);
476 else if(event.KeyInput.Key == KEY_END)
479 // move to end of line
480 m_chat_backend->getPrompt().cursorOperation(
481 ChatPrompt::CURSOROP_MOVE,
482 ChatPrompt::CURSOROP_DIR_RIGHT,
483 ChatPrompt::CURSOROP_SCOPE_LINE);
486 else if(event.KeyInput.Key == KEY_BACK)
488 // Backspace or Ctrl-Backspace pressed
489 // delete character / word to the left
490 ChatPrompt::CursorOpScope scope =
491 event.KeyInput.Control ?
492 ChatPrompt::CURSOROP_SCOPE_WORD :
493 ChatPrompt::CURSOROP_SCOPE_CHARACTER;
494 m_chat_backend->getPrompt().cursorOperation(
495 ChatPrompt::CURSOROP_DELETE,
496 ChatPrompt::CURSOROP_DIR_LEFT,
500 else if(event.KeyInput.Key == KEY_DELETE)
502 // Delete or Ctrl-Delete pressed
503 // delete character / word to the right
504 ChatPrompt::CursorOpScope scope =
505 event.KeyInput.Control ?
506 ChatPrompt::CURSOROP_SCOPE_WORD :
507 ChatPrompt::CURSOROP_SCOPE_CHARACTER;
508 m_chat_backend->getPrompt().cursorOperation(
509 ChatPrompt::CURSOROP_DELETE,
510 ChatPrompt::CURSOROP_DIR_RIGHT,
514 else if(event.KeyInput.Key == KEY_KEY_U && event.KeyInput.Control)
517 // kill line to left end
518 m_chat_backend->getPrompt().cursorOperation(
519 ChatPrompt::CURSOROP_DELETE,
520 ChatPrompt::CURSOROP_DIR_LEFT,
521 ChatPrompt::CURSOROP_SCOPE_LINE);
524 else if(event.KeyInput.Key == KEY_KEY_K && event.KeyInput.Control)
527 // kill line to right end
528 m_chat_backend->getPrompt().cursorOperation(
529 ChatPrompt::CURSOROP_DELETE,
530 ChatPrompt::CURSOROP_DIR_RIGHT,
531 ChatPrompt::CURSOROP_SCOPE_LINE);
534 else if(event.KeyInput.Key == KEY_TAB)
536 // Tab or Shift-Tab pressed
538 std::list<std::wstring> names = m_client->getConnectedPlayerNames();
539 bool backwards = event.KeyInput.Shift;
540 m_chat_backend->getPrompt().nickCompletion(names, backwards);
543 else if(event.KeyInput.Char != 0 && !event.KeyInput.Control)
545 m_chat_backend->getPrompt().input(event.KeyInput.Char);
549 else if(event.EventType == EET_MOUSE_INPUT_EVENT)
551 if(event.MouseInput.Event == EMIE_MOUSE_WHEEL)
553 s32 rows = myround(-3.0 * event.MouseInput.Wheel);
554 m_chat_backend->scroll(rows);
558 return Parent ? Parent->OnEvent(event) : false;