2016-03-27 11:49:47 +02:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
Copyright (C) 2015 the OpenMoHAA team
|
|
|
|
|
|
|
|
This file is part of OpenMoHAA source code.
|
|
|
|
|
|
|
|
OpenMoHAA source code 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.
|
|
|
|
|
|
|
|
OpenMoHAA source code 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 OpenMoHAA source code; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ui_local.h"
|
|
|
|
|
2023-05-17 15:54:51 +02:00
|
|
|
Event W_Console_ChildSizeChanged
|
|
|
|
(
|
|
|
|
"_console_childsizechanged",
|
|
|
|
EV_DEFAULT,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
"Signal that the child area of the floating window has changed"
|
|
|
|
);
|
|
|
|
|
|
|
|
Event EV_Console_Print
|
|
|
|
(
|
|
|
|
"print",
|
|
|
|
EV_DEFAULT,
|
|
|
|
"s",
|
|
|
|
"string",
|
|
|
|
"Print the string to the console"
|
|
|
|
);
|
|
|
|
|
2016-03-27 11:49:47 +02:00
|
|
|
CLASS_DECLARATION( UIWidget, UIConsole, NULL )
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
{ &W_SizeChanged, &UIConsole::OnSizeChanged },
|
|
|
|
{ &EV_Console_Print, &UIConsole::Print },
|
2016-03-27 11:49:47 +02:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
UIConsole::UIConsole()
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
m_scroll = NULL;
|
|
|
|
m_firstitem = 0;
|
|
|
|
m_numitems = 0;
|
|
|
|
m_caret = 0;
|
2016-03-27 11:49:47 +02:00
|
|
|
|
2023-05-17 15:54:51 +02:00
|
|
|
m_scroll = new UIVertScroll();
|
|
|
|
AllowActivate(true);
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int UIConsole::getFirstItem
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
return m_firstitem;
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int UIConsole::getNextItem
|
|
|
|
(
|
|
|
|
int prev
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
if (prev == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_numitems = m_numitems;
|
|
|
|
m_firstitem = m_firstitem;
|
|
|
|
prev = prev + 1;
|
|
|
|
|
|
|
|
if (m_numitems < MAX_CONSOLE_ITEMS)
|
|
|
|
{
|
|
|
|
if (prev > m_firstitem)
|
|
|
|
{
|
|
|
|
if (prev - m_firstitem >= m_numitems)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (m_firstitem + m_numitems >= prev + MAX_CONSOLE_ITEMS)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prev >= MAX_CONSOLE_ITEMS) {
|
|
|
|
prev = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prev != m_firstitem) {
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int UIConsole::getLastItem
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
int item = m_firstitem + m_numitems;
|
|
|
|
|
|
|
|
if (item - 1 >= MAX_CONSOLE_ITEMS) {
|
|
|
|
return item - MAX_CONSOLE_ITEMS - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return item - 1;
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int UIConsole::AddLine
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
int line = getLastItem() + 1;
|
|
|
|
|
|
|
|
if (line >= MAX_CONSOLE_ITEMS) {
|
|
|
|
line = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_numitems <= MAX_CONSOLE_ITEMS)
|
|
|
|
{
|
|
|
|
m_numitems++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_firstitem++;
|
|
|
|
if (m_firstitem >= MAX_CONSOLE_ITEMS) {
|
|
|
|
m_firstitem = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return line;
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::DrawBottomLine
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
int promptwidth;
|
|
|
|
static str prompt = ">";
|
|
|
|
int top;
|
|
|
|
int iXPos;
|
|
|
|
int iMaxStringWidth;
|
|
|
|
int widthbeforecaret;
|
|
|
|
|
|
|
|
promptwidth = m_font->getWidth(prompt.c_str(), -1);
|
|
|
|
top = m_frame.size.height - m_font->getHeight(qfalse);
|
|
|
|
m_font->Print(0.0, top, prompt.c_str(), -1, qfalse);
|
|
|
|
|
|
|
|
iXPos = promptwidth + 1;
|
|
|
|
iMaxStringWidth = m_frame.size.width - iXPos - m_scroll->getSize().width;
|
|
|
|
|
|
|
|
if (m_caret > m_currentline.length())
|
|
|
|
{
|
|
|
|
// Make sure to not overflow
|
|
|
|
m_caret = m_currentline.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_caret < 0) m_caret = 0;
|
|
|
|
|
|
|
|
widthbeforecaret = promptwidth + m_font->getWidth(m_currentline.c_str(), m_caret);
|
|
|
|
|
|
|
|
if (m_refreshcompletionbuffer || m_completionbuffer.length() >= m_currentline.length())
|
|
|
|
{
|
|
|
|
static str indicator;
|
|
|
|
const char* pString;
|
|
|
|
int indicatorwidth;
|
|
|
|
int iChar;
|
|
|
|
int iCharLength;
|
|
|
|
int iStringLength;
|
|
|
|
|
|
|
|
if (widthbeforecaret < iMaxStringWidth)
|
|
|
|
{
|
|
|
|
m_font->Print(iXPos, top, m_currentline.c_str(), -1, qfalse);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
indicatorwidth = m_font->getWidth(indicator.c_str(), -1);
|
|
|
|
m_font->Print(iXPos, top, indicator.c_str(), -1, 0);
|
|
|
|
|
|
|
|
iXPos += indicatorwidth;
|
|
|
|
iMaxStringWidth -= indicatorwidth;
|
|
|
|
|
|
|
|
pString = &m_currentline[m_caret - 1];
|
|
|
|
iStringLength = 0;
|
|
|
|
iCharLength = m_font->getCharWidth(pString[0]);
|
|
|
|
|
|
|
|
for (iChar = m_caret; iChar > 1; --iChar)
|
|
|
|
{
|
|
|
|
iStringLength += iCharLength;
|
|
|
|
iCharLength = m_font->getCharWidth(pString[iChar - 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_font->Print(iXPos, top, pString + 1, -1, qfalse);
|
|
|
|
widthbeforecaret = iXPos + m_font->getWidth(pString + 1, m_caret - iChar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int completewidth;
|
|
|
|
int linewidth;
|
|
|
|
|
|
|
|
completewidth = m_font->getWidth(m_completionbuffer.c_str(), -1);
|
|
|
|
linewidth = m_font->getWidth(&m_currentline[m_completionbuffer.length()], -1);
|
|
|
|
m_font->Print(iXPos, top, m_completionbuffer.c_str(), -1, qfalse);
|
|
|
|
|
|
|
|
iXPos += completewidth;
|
|
|
|
m_font->Print(iXPos, top, &m_currentline[m_completionbuffer.length()], -1, 0);
|
|
|
|
|
|
|
|
DrawBoxWithSolidBorder(UIRect2D(iXPos, top, linewidth, m_font->getHeight(qfalse)), UBlack, URed, 1, 2, 1.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Make the caret blink
|
|
|
|
//
|
|
|
|
if ((uid.time % 750) > 375 && IsActive()) {
|
|
|
|
DrawBox(UIRect2D(widthbeforecaret, top, 1.0, m_font->getHeight(qfalse)), m_foreground_color, 1.0);
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::AddHistory
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 17:31:09 +02:00
|
|
|
if (m_history.IterateFromTail())
|
|
|
|
{
|
|
|
|
if (m_history.getCurrent() != m_currentline) {
|
|
|
|
m_history.AddTail(m_currentline);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_history.AddTail(m_currentline);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (m_history.getCount() > 20)
|
|
|
|
{
|
|
|
|
m_history.IterateFromHead();
|
|
|
|
m_history.RemoveCurrentSetNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_historyposition = 0;
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::Print
|
|
|
|
(
|
|
|
|
Event *ev
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
AddText(ev->GetString(1), NULL);
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::KeyEnter
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
AddText(str(">") + m_currentline + "\n", NULL);
|
|
|
|
|
|
|
|
if (m_consolehandler)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
// call the console handler
|
|
|
|
//
|
|
|
|
m_consolehandler((m_currentline + "\n").c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear the console input
|
|
|
|
m_currentline = "";
|
|
|
|
m_caret = 0;
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::setConsoleHandler
|
|
|
|
(
|
|
|
|
consoleHandler_t handler
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
m_consolehandler = handler;
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::AddText
|
|
|
|
(
|
|
|
|
const char *text,
|
|
|
|
UColor *pColor
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
bool atbottom;
|
|
|
|
int newtop;
|
|
|
|
int i, size;
|
|
|
|
item* curitem;
|
|
|
|
|
|
|
|
atbottom = m_scroll->getPageHeight() + m_scroll->getTopItem() >= m_scroll->getNumItems();
|
|
|
|
newtop = m_scroll->getTopItem();
|
|
|
|
|
|
|
|
if (!m_numitems)
|
|
|
|
{
|
|
|
|
m_numitems = 1;
|
|
|
|
m_items[m_firstitem].string = "";
|
2023-05-17 17:31:09 +02:00
|
|
|
m_items[m_firstitem].lines = 0;
|
|
|
|
m_items[m_firstitem].pColor = &m_foreground_color;
|
2023-05-17 15:54:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
curitem = &m_items[getLastItem()];
|
|
|
|
if (!pColor) {
|
|
|
|
pColor = &m_foreground_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; text[i]; i++)
|
|
|
|
{
|
|
|
|
if (text[i] == '\n')
|
|
|
|
{
|
|
|
|
curitem->pColor = pColor;
|
|
|
|
CalcLineBreaks(*curitem);
|
|
|
|
|
|
|
|
int line = AddLine();
|
|
|
|
curitem = &m_items[line];
|
|
|
|
newtop -= m_items[line].lines;
|
|
|
|
m_items[line].lines = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
curitem->string += text[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
curitem->pColor = pColor;
|
|
|
|
CalcLineBreaks(*curitem);
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
for (i = m_firstitem; i != -1; i = getNextItem(i)) {
|
|
|
|
size += m_items[i].lines;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_scroll->setNumItems(size);
|
|
|
|
|
|
|
|
if (atbottom || newtop > m_scroll->getNumItems() - m_scroll->getPageHeight()) {
|
|
|
|
m_scroll->setTopItem(m_scroll->getNumItems() - m_scroll->getPageHeight());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_scroll->setTopItem(newtop);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_scroll->getTopItem() < 0) {
|
|
|
|
m_scroll->setTopItem(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (curitem->lines == 9) {
|
|
|
|
AddText("\n", NULL);
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::CalcLineBreaks
|
|
|
|
(
|
|
|
|
item& theItem
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
int i;
|
|
|
|
str sofar, checking;
|
|
|
|
int lensofar, lenchecking, len_of_space;
|
|
|
|
const char* remaining;
|
|
|
|
|
|
|
|
lensofar = 0;
|
|
|
|
lenchecking = 0;
|
|
|
|
len_of_space = m_font->getCharWidth(' ');
|
|
|
|
remaining = theItem.string.c_str();
|
|
|
|
|
|
|
|
for (i = 0; remaining[i]; i++)
|
|
|
|
{
|
|
|
|
if (remaining[i] == ' ')
|
|
|
|
{
|
|
|
|
sofar += ' ';
|
|
|
|
checking = "";
|
|
|
|
lensofar += lenchecking + len_of_space;
|
|
|
|
lenchecking = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int charlen = m_font->getCharWidth(remaining[i]);
|
|
|
|
if (m_frame.size.width - m_scroll->getSize().width < (charlen + lenchecking + lensofar))
|
|
|
|
{
|
|
|
|
if (lensofar)
|
|
|
|
{
|
|
|
|
lensofar = lenchecking;
|
|
|
|
theItem.breaks[theItem.lines] = sofar.length();
|
|
|
|
sofar = checking;
|
|
|
|
lenchecking = charlen;
|
|
|
|
checking = remaining[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
theItem.breaks[theItem.lines] = checking.length();
|
|
|
|
sofar = remaining[i];
|
|
|
|
lenchecking = 0;
|
|
|
|
checking = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
theItem.lines++;
|
|
|
|
|
|
|
|
if (theItem.lines == 9) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
checking += remaining[i];
|
|
|
|
lenchecking += charlen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (remaining[i] || lenchecking || lensofar) {
|
|
|
|
theItem.breaks[theItem.lines++] = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
lensofar = 0;
|
|
|
|
for (i = 0; i < theItem.lines; i++)
|
|
|
|
{
|
|
|
|
theItem.begins[i] = lensofar;
|
|
|
|
if (theItem.breaks[i] != -1) {
|
|
|
|
lensofar += theItem.breaks[i];
|
|
|
|
}
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::Clear
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
// clear items line
|
|
|
|
for (i = 0; i < MAX_CONSOLE_ITEMS; i++)
|
|
|
|
{
|
|
|
|
m_items[i].lines = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_numitems = 0;
|
|
|
|
m_firstitem = 0;
|
|
|
|
m_caret = 0;
|
|
|
|
m_currentline = "";
|
|
|
|
|
|
|
|
if (m_scroll) {
|
|
|
|
m_scroll->setNumItems(0);
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::FrameInitialized
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
Connect(this, W_SizeChanged, W_SizeChanged);
|
|
|
|
OnSizeChanged(NULL);
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::Draw
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
UColor* pCurrColor;
|
|
|
|
|
|
|
|
m_font->setColor(m_foreground_color);
|
|
|
|
pCurrColor = &m_foreground_color;
|
|
|
|
|
|
|
|
m_scroll->setSolidBorderColor(m_background_color);
|
|
|
|
m_scroll->setBackgroundColor(m_background_color, true);
|
|
|
|
m_scroll->setBackgroundAlpha(m_alpha);
|
|
|
|
m_scroll->setForegroundColor(m_foreground_color);
|
|
|
|
|
|
|
|
if (m_numitems)
|
|
|
|
{
|
|
|
|
int i, item;
|
|
|
|
int top;
|
|
|
|
int lines_drawn, at_line;
|
|
|
|
int topitem;
|
|
|
|
|
|
|
|
top = (int)(m_frame.size.height - m_font->getHeight(false) * (m_scroll->getPageHeight() + 2));
|
|
|
|
item = m_firstitem;
|
|
|
|
topitem = m_scroll->getTopItem() - 1;
|
|
|
|
|
|
|
|
if (item == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = m_items[item].lines;
|
|
|
|
while (i < topitem) {
|
|
|
|
item = getNextItem(item);
|
|
|
|
if (item == -1) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
i += m_items[item].lines;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item == -1) {
|
|
|
|
// no item available
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
at_line = m_items[item].lines - (i - topitem);
|
|
|
|
lines_drawn = 0;
|
|
|
|
while (lines_drawn < m_scroll->getPageHeight() + 1)
|
|
|
|
{
|
|
|
|
if (item != -1 && at_line >= m_items[item].lines)
|
|
|
|
{
|
|
|
|
at_line = 0;
|
|
|
|
do {
|
|
|
|
item = getNextItem(item);
|
|
|
|
}
|
|
|
|
while (item != -1 && m_items[item].lines <= 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (at_line >= 0)
|
|
|
|
{
|
|
|
|
if (item == -1) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (at_line >= m_items[item].lines) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ::item* theItem = &m_items[item];
|
|
|
|
if (theItem->pColor != pCurrColor)
|
|
|
|
{
|
|
|
|
m_font->setColor(*theItem->pColor);
|
|
|
|
pCurrColor = theItem->pColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_font->setAlpha(m_alpha);
|
|
|
|
m_font->Print(0.0, top, &theItem->string.c_str()[theItem->begins[at_line]], theItem->breaks[at_line], 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
top += m_font->getHeight(false);
|
|
|
|
lines_drawn++;
|
|
|
|
at_line++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pCurrColor != &m_foreground_color) {
|
|
|
|
m_font->setColor(m_foreground_color);
|
|
|
|
}
|
|
|
|
|
|
|
|
DrawBottomLine();
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::CharEvent
|
|
|
|
(
|
|
|
|
int ch
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
if (ch <= 31) {
|
|
|
|
// Not a valid char for the console
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_refreshcompletionbuffer = true;
|
|
|
|
|
|
|
|
if (m_caret > m_currentline.length()) {
|
|
|
|
m_caret = m_currentline.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_caret < 0) {
|
|
|
|
m_caret = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_currentline == m_caret)
|
|
|
|
{
|
|
|
|
m_currentline.append(str(char(ch)));
|
|
|
|
m_caret++;
|
|
|
|
}
|
|
|
|
else if (m_caret)
|
|
|
|
{
|
|
|
|
m_currentline = str(m_currentline, 0, m_caret) + str(char(ch)) + m_currentline.c_str()[m_caret];
|
|
|
|
m_caret++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_currentline = str(char(ch)) + m_currentline;
|
|
|
|
m_caret++;
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
qboolean UIConsole::KeyEvent
|
|
|
|
(
|
|
|
|
int key,
|
|
|
|
unsigned int time
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 17:31:09 +02:00
|
|
|
// FIXME: Partially implemented
|
|
|
|
|
2023-05-17 15:54:51 +02:00
|
|
|
if (key != K_TAB && key != K_BACKSPACE) {
|
|
|
|
m_refreshcompletionbuffer = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case K_TAB:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_ENTER:
|
|
|
|
case K_KP_ENTER:
|
|
|
|
if (m_currentline.length()) {
|
|
|
|
KeyEnter();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_BACKSPACE:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_UPARROW:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_DOWNARROW:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_LEFTARROW:
|
|
|
|
if (m_caret > 0) {
|
|
|
|
m_caret--;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_RIGHTARROW:
|
|
|
|
if (m_caret < m_currentline.length()) {
|
|
|
|
m_caret++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_DEL:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_PGDN:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_PGUP:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_HOME:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_END:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_MWHEELDOWN:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_MWHEELUP:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIConsole::OnSizeChanged
|
|
|
|
(
|
|
|
|
Event *ev
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 17:31:09 +02:00
|
|
|
int linesperpage;
|
|
|
|
int numscroll;
|
|
|
|
int item;
|
|
|
|
int topitem;
|
|
|
|
int topline;
|
|
|
|
int atscroll;
|
|
|
|
bool attop;
|
|
|
|
bool atbottom;
|
|
|
|
|
|
|
|
numscroll = 0;
|
|
|
|
topitem = -1;
|
|
|
|
topline = 0;
|
|
|
|
atscroll = 0;
|
|
|
|
attop = false;
|
|
|
|
atbottom = false;
|
|
|
|
|
|
|
|
linesperpage = (m_frame.size.height / (float)m_font->getHeight(qfalse));
|
|
|
|
m_scroll->InitFrameAlignRight(this, 0, 0);
|
|
|
|
|
|
|
|
if (ev)
|
|
|
|
{
|
|
|
|
attop = m_scroll->getTopItem() == 0;
|
|
|
|
atbottom = m_scroll->getPageHeight() + m_scroll->getTopItem() >= m_scroll->getNumItems();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_scroll->setPageHeight(linesperpage - 1);
|
|
|
|
if (m_scroll->getPageHeight() < 1) {
|
|
|
|
m_scroll->setPageHeight(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (item = m_firstitem; item != -1; item = getNextItem(item))
|
|
|
|
{
|
|
|
|
atscroll += m_items[item].lines;
|
|
|
|
if (atscroll >= m_scroll->getTopItem() && topitem == -1) {
|
|
|
|
topitem = item;
|
|
|
|
}
|
|
|
|
|
|
|
|
CalcLineBreaks(m_items[item]);
|
|
|
|
|
|
|
|
numscroll += m_items[item].lines;
|
|
|
|
if (topitem == -1 || topitem == item) {
|
|
|
|
topline += m_items[item].lines;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_scroll->setNumItems(numscroll);
|
|
|
|
|
|
|
|
if (topitem != -1)
|
|
|
|
{
|
|
|
|
if (topline > m_scroll->getNumItems() - m_scroll->getPageHeight()) {
|
|
|
|
atbottom = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!atbottom)
|
|
|
|
{
|
|
|
|
if (attop) {
|
|
|
|
m_scroll->setTopItem(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (topline < 0) {
|
|
|
|
topline = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_scroll->setTopItem(topline);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_scroll->setTopItem(m_scroll->getNumItems() - m_scroll->getPageHeight());
|
|
|
|
if (m_scroll->getTopItem() < 0) {
|
|
|
|
m_scroll->setTopItem(0);
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CLASS_DECLARATION( UIFloatingWindow, UIFloatingConsole, NULL )
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
{ &W_Console_ChildSizeChanged, &UIFloatingConsole::OnChildSizeChanged },
|
|
|
|
{ &UIFloatingConsole::W_ClosePressed, &UIFloatingConsole::OnClosePressed },
|
2016-03-27 11:49:47 +02:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
UIFloatingConsole::UIFloatingConsole()
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
m_status = NULL;
|
|
|
|
m_handler = NULL;
|
|
|
|
setConsoleColor(UWhite);
|
|
|
|
setConsoleBackground(UBlack, 1.0);
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingConsole::FrameInitialized
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
// call the parent initialisation
|
|
|
|
UIFloatingWindow::FrameInitialized();
|
|
|
|
|
|
|
|
m_status = new UIStatusBar(alignment_t::WND_ALIGN_BOTTOM, 20.0);
|
|
|
|
m_status->InitFrame(getChildSpace(), UIRect2D(0, 0, 20.0, 20.0), 0, "verdana-12");
|
|
|
|
m_status->EnableSizeBox(this);
|
|
|
|
m_status->setTitle(str());
|
|
|
|
|
|
|
|
m_console = new UIConsole();
|
|
|
|
m_console->InitFrame(getChildSpace(), UIRect2D(0, 0, 20.0, 20.0), 0, "verdana-12");
|
|
|
|
setConsoleColor(m_consoleColor);
|
|
|
|
setConsoleBackground(m_consoleBackground, m_consoleAlpha);
|
|
|
|
|
|
|
|
Connect(this, W_SizeChanged, W_Console_ChildSizeChanged);
|
|
|
|
getChildSpace()->AllowActivate(false);
|
|
|
|
OnChildSizeChanged(NULL);
|
|
|
|
|
|
|
|
m_background_color.a = 1.0;
|
|
|
|
m_alpha = 1.0;
|
|
|
|
|
|
|
|
getChildSpace()->setBackgroundAlpha(1.0);
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingConsole::OnChildSizeChanged
|
|
|
|
(
|
|
|
|
Event *ev
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
const UISize2D childSpaceSize = getChildSpace()->getSize();
|
|
|
|
const UISize2D statusSize = m_status->getSize();
|
|
|
|
const UISize2D newSize(childSpaceSize.width, childSpaceSize.height - statusSize.height);
|
|
|
|
|
|
|
|
m_console->setFrame(UIRect2D(UIPoint2D(0, 0), newSize));
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingConsole::AddText
|
|
|
|
(
|
|
|
|
const char *text,
|
|
|
|
UColor *pColor
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
if (m_console) {
|
|
|
|
m_console->AddText(text, pColor);
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingConsole::setConsoleHandler
|
|
|
|
(
|
|
|
|
consoleHandler_t handler
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
if (m_console) {
|
|
|
|
m_console->setConsoleHandler(handler);
|
|
|
|
} else {
|
|
|
|
m_handler = handler;
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingConsole::Clear
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
if (m_console) {
|
|
|
|
m_console->Clear();
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingConsole::OnClosePressed
|
|
|
|
(
|
|
|
|
Event *ev
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
SendSignal(UIFloatingWindow::W_ClosePressed);
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingConsole::setConsoleBackground
|
|
|
|
(
|
|
|
|
const UColor& color,
|
|
|
|
float alpha
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
m_consoleBackground = color;
|
|
|
|
m_consoleAlpha = alpha;
|
|
|
|
|
|
|
|
if (m_console)
|
|
|
|
{
|
|
|
|
m_console->setBackgroundAlpha(alpha);
|
|
|
|
m_console->setBackgroundColor(color, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_status)
|
|
|
|
{
|
|
|
|
m_status->setBackgroundAlpha(alpha);
|
|
|
|
m_status->setBackgroundColor(color, true);
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingConsole::setConsoleColor
|
|
|
|
(
|
|
|
|
const UColor& color
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
2023-05-17 15:54:51 +02:00
|
|
|
m_consoleColor = color;
|
|
|
|
|
|
|
|
if (m_console) {
|
|
|
|
m_console->setForegroundColor(color);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_status) {
|
|
|
|
m_status->setForegroundColor(color);
|
|
|
|
}
|
2016-03-27 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CLASS_DECLARATION( UIConsole, UIDMConsole, NULL )
|
|
|
|
{
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
UIDMConsole::UIDMConsole()
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIDMConsole::KeyEnter
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIDMConsole::AddDMMessageText
|
|
|
|
(
|
|
|
|
const char *text,
|
|
|
|
UColor *pColor
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIDMConsole::Draw
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
qboolean UIDMConsole::KeyEvent
|
|
|
|
(
|
|
|
|
int key,
|
|
|
|
unsigned int time
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
return qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
qboolean UIDMConsole::GetQuickMessageMode
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
return qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIDMConsole::SetQuickMessageMode
|
|
|
|
(
|
|
|
|
qboolean bQuickMessage
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
int UIDMConsole::GetMessageMode
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIDMConsole::SetMessageMode
|
|
|
|
(
|
|
|
|
int iMode
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
CLASS_DECLARATION( UIFloatingConsole, UIFloatingDMConsole, NULL )
|
|
|
|
{
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
UIFloatingDMConsole::UIFloatingDMConsole()
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::FrameInitialized
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::OnChildSizeChanged
|
|
|
|
(
|
|
|
|
Event *ev
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::AddText
|
|
|
|
(
|
|
|
|
const char *text,
|
|
|
|
UColor *pColor
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::AddDMMessageText
|
|
|
|
(
|
|
|
|
const char *text,
|
|
|
|
UColor *pColor
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::setConsoleHandler
|
|
|
|
(
|
|
|
|
consoleHandler_t handler
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::Clear
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::OnClosePressed
|
|
|
|
(
|
|
|
|
Event *ev
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::setConsoleBackground
|
|
|
|
(
|
|
|
|
const UColor& color,
|
|
|
|
float alpha
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::setConsoleColor
|
|
|
|
(
|
|
|
|
const UColor& color
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
qboolean UIFloatingDMConsole::GetQuickMessageMode
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
return qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::SetQuickMessageMode
|
|
|
|
(
|
|
|
|
qboolean bQuickMessage
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
|
|
|
|
|
|
|
int UIFloatingDMConsole::GetMessageMode
|
|
|
|
(
|
|
|
|
void
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIFloatingDMConsole::SetMessageMode
|
|
|
|
(
|
|
|
|
int iMode
|
|
|
|
)
|
|
|
|
|
|
|
|
{
|
|
|
|
// FIXME: stub
|
|
|
|
}
|