| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586 |
- //
- // Copyright (c) 2008-2017 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include "../Precompiled.h"
- #include "../Core/Context.h"
- #include "../Core/CoreEvents.h"
- #include "../Engine/Console.h"
- #include "../Engine/EngineEvents.h"
- #include "../Graphics/Graphics.h"
- #include "../Input/Input.h"
- #include "../IO/IOEvents.h"
- #include "../IO/Log.h"
- #include "../Resource/ResourceCache.h"
- #include "../UI/DropDownList.h"
- #include "../UI/Font.h"
- #include "../UI/LineEdit.h"
- #include "../UI/ListView.h"
- #include "../UI/ScrollBar.h"
- #include "../UI/Text.h"
- #include "../UI/UI.h"
- #include "../UI/UIEvents.h"
- #include "../DebugNew.h"
- namespace Urho3D
- {
- static const int DEFAULT_CONSOLE_ROWS = 16;
- static const int DEFAULT_HISTORY_SIZE = 16;
- const char* logStyles[] =
- {
- "ConsoleDebugText",
- "ConsoleInfoText",
- "ConsoleWarningText",
- "ConsoleErrorText",
- "ConsoleText"
- };
- Console::Console(Context* context) :
- Object(context),
- autoVisibleOnError_(false),
- historyRows_(DEFAULT_HISTORY_SIZE),
- historyPosition_(0),
- autoCompletePosition_(0),
- historyOrAutoCompleteChange_(false),
- printing_(false)
- {
- auto* ui = GetSubsystem<UI>();
- UIElement* uiRoot = ui->GetRoot();
- // By default prevent the automatic showing of the screen keyboard
- focusOnShow_ = !ui->GetUseScreenKeyboard();
- background_ = uiRoot->CreateChild<BorderImage>();
- background_->SetBringToBack(false);
- background_->SetClipChildren(true);
- background_->SetEnabled(true);
- background_->SetVisible(false); // Hide by default
- background_->SetPriority(200); // Show on top of the debug HUD
- background_->SetBringToBack(false);
- background_->SetLayout(LM_VERTICAL);
- rowContainer_ = background_->CreateChild<ListView>();
- rowContainer_->SetHighlightMode(HM_ALWAYS);
- rowContainer_->SetMultiselect(true);
- commandLine_ = background_->CreateChild<UIElement>();
- commandLine_->SetLayoutMode(LM_HORIZONTAL);
- commandLine_->SetLayoutSpacing(1);
- interpreters_ = commandLine_->CreateChild<DropDownList>();
- lineEdit_ = commandLine_->CreateChild<LineEdit>();
- lineEdit_->SetFocusMode(FM_FOCUSABLE); // Do not allow defocus with ESC
- closeButton_ = uiRoot->CreateChild<Button>();
- closeButton_->SetVisible(false);
- closeButton_->SetPriority(background_->GetPriority() + 1); // Show on top of console's background
- closeButton_->SetBringToBack(false);
- SetNumRows(DEFAULT_CONSOLE_ROWS);
- SubscribeToEvent(interpreters_, E_ITEMSELECTED, URHO3D_HANDLER(Console, HandleInterpreterSelected));
- SubscribeToEvent(lineEdit_, E_TEXTCHANGED, URHO3D_HANDLER(Console, HandleTextChanged));
- SubscribeToEvent(lineEdit_, E_TEXTFINISHED, URHO3D_HANDLER(Console, HandleTextFinished));
- SubscribeToEvent(lineEdit_, E_UNHANDLEDKEY, URHO3D_HANDLER(Console, HandleLineEditKey));
- SubscribeToEvent(closeButton_, E_RELEASED, URHO3D_HANDLER(Console, HandleCloseButtonPressed));
- SubscribeToEvent(uiRoot, E_RESIZED, URHO3D_HANDLER(Console, HandleRootElementResized));
- SubscribeToEvent(E_LOGMESSAGE, URHO3D_HANDLER(Console, HandleLogMessage));
- SubscribeToEvent(E_POSTUPDATE, URHO3D_HANDLER(Console, HandlePostUpdate));
- }
- Console::~Console()
- {
- background_->Remove();
- closeButton_->Remove();
- }
- void Console::SetDefaultStyle(XMLFile* style)
- {
- if (!style)
- return;
- background_->SetDefaultStyle(style);
- background_->SetStyle("ConsoleBackground");
- rowContainer_->SetStyleAuto();
- for (unsigned i = 0; i < rowContainer_->GetNumItems(); ++i)
- rowContainer_->GetItem(i)->SetStyle("ConsoleText");
- interpreters_->SetStyleAuto();
- for (unsigned i = 0; i < interpreters_->GetNumItems(); ++i)
- interpreters_->GetItem(i)->SetStyle("ConsoleText");
- lineEdit_->SetStyle("ConsoleLineEdit");
- closeButton_->SetDefaultStyle(style);
- closeButton_->SetStyle("CloseButton");
- UpdateElements();
- }
- void Console::SetVisible(bool enable)
- {
- auto* input = GetSubsystem<Input>();
- auto* ui = GetSubsystem<UI>();
- Cursor* cursor = ui->GetCursor();
- background_->SetVisible(enable);
- closeButton_->SetVisible(enable);
- if (enable)
- {
- // Check if we have receivers for E_CONSOLECOMMAND every time here in case the handler is being added later dynamically
- bool hasInterpreter = PopulateInterpreter();
- commandLine_->SetVisible(hasInterpreter);
- if (hasInterpreter && focusOnShow_)
- ui->SetFocusElement(lineEdit_);
- // Ensure the background has no empty space when shown without the lineedit
- background_->SetHeight(background_->GetMinHeight());
- if (!cursor)
- {
- // Show OS mouse
- input->SetMouseMode(MM_FREE, true);
- input->SetMouseVisible(true, true);
- }
- input->SetMouseGrabbed(false, true);
- }
- else
- {
- rowContainer_->SetFocus(false);
- interpreters_->SetFocus(false);
- lineEdit_->SetFocus(false);
- if (!cursor)
- {
- // Restore OS mouse visibility
- input->ResetMouseMode();
- input->ResetMouseVisible();
- }
- input->ResetMouseGrabbed();
- }
- }
- void Console::Toggle()
- {
- SetVisible(!IsVisible());
- }
- void Console::SetNumBufferedRows(unsigned rows)
- {
- if (rows < displayedRows_)
- return;
- rowContainer_->DisableLayoutUpdate();
- int delta = rowContainer_->GetNumItems() - rows;
- if (delta > 0)
- {
- // We have more, remove oldest rows first
- for (int i = 0; i < delta; ++i)
- rowContainer_->RemoveItem((unsigned)0);
- }
- else
- {
- // We have less, add more rows at the top
- for (int i = 0; i > delta; --i)
- {
- auto* text = new Text(context_);
- // If style is already set, apply here to ensure proper height of the console when
- // amount of rows is changed
- if (background_->GetDefaultStyle())
- text->SetStyle("ConsoleText");
- rowContainer_->InsertItem(0, text);
- }
- }
- rowContainer_->EnsureItemVisibility(rowContainer_->GetItem(rowContainer_->GetNumItems() - 1));
- rowContainer_->EnableLayoutUpdate();
- rowContainer_->UpdateLayout();
- UpdateElements();
- }
- void Console::SetNumRows(unsigned rows)
- {
- if (!rows)
- return;
- displayedRows_ = rows;
- if (GetNumBufferedRows() < rows)
- SetNumBufferedRows(rows);
- UpdateElements();
- }
- void Console::SetNumHistoryRows(unsigned rows)
- {
- historyRows_ = rows;
- if (history_.Size() > rows)
- history_.Resize(rows);
- if (historyPosition_ > rows)
- historyPosition_ = rows;
- }
- void Console::SetFocusOnShow(bool enable)
- {
- focusOnShow_ = enable;
- }
- void Console::AddAutoComplete(const String& option)
- {
- // Sorted insertion
- Vector<String>::Iterator iter = UpperBound(autoComplete_.Begin(), autoComplete_.End(), option);
- if (!iter.ptr_)
- autoComplete_.Push(option);
- // Make sure it isn't a duplicate
- else if (iter == autoComplete_.Begin() || *(iter - 1) != option)
- autoComplete_.Insert(iter, option);
- }
- void Console::RemoveAutoComplete(const String& option)
- {
- // Erase and keep ordered
- autoComplete_.Erase(LowerBound(autoComplete_.Begin(), autoComplete_.End(), option));
- if (autoCompletePosition_ > autoComplete_.Size())
- autoCompletePosition_ = autoComplete_.Size();
- }
- void Console::UpdateElements()
- {
- int width = GetSubsystem<UI>()->GetRoot()->GetWidth();
- const IntRect& border = background_->GetLayoutBorder();
- const IntRect& panelBorder = rowContainer_->GetScrollPanel()->GetClipBorder();
- rowContainer_->SetFixedWidth(width - border.left_ - border.right_);
- rowContainer_->SetFixedHeight(
- displayedRows_ * rowContainer_->GetItem((unsigned)0)->GetHeight() + panelBorder.top_ + panelBorder.bottom_ +
- (rowContainer_->GetHorizontalScrollBar()->IsVisible() ? rowContainer_->GetHorizontalScrollBar()->GetHeight() : 0));
- background_->SetFixedWidth(width);
- background_->SetHeight(background_->GetMinHeight());
- }
- XMLFile* Console::GetDefaultStyle() const
- {
- return background_->GetDefaultStyle(false);
- }
- bool Console::IsVisible() const
- {
- return background_ && background_->IsVisible();
- }
- unsigned Console::GetNumBufferedRows() const
- {
- return rowContainer_->GetNumItems();
- }
- void Console::CopySelectedRows() const
- {
- rowContainer_->CopySelectedItemsToClipboard();
- }
- const String& Console::GetHistoryRow(unsigned index) const
- {
- return index < history_.Size() ? history_[index] : String::EMPTY;
- }
- bool Console::PopulateInterpreter()
- {
- interpreters_->RemoveAllItems();
- EventReceiverGroup* group = context_->GetEventReceivers(E_CONSOLECOMMAND);
- if (!group || group->receivers_.Empty())
- return false;
- Vector<String> names;
- for (unsigned i = 0; i < group->receivers_.Size(); ++i)
- {
- Object* receiver = group->receivers_[i];
- if (receiver)
- names.Push(receiver->GetTypeName());
- }
- Sort(names.Begin(), names.End());
- unsigned selection = M_MAX_UNSIGNED;
- for (unsigned i = 0; i < names.Size(); ++i)
- {
- const String& name = names[i];
- if (name == commandInterpreter_)
- selection = i;
- auto* text = new Text(context_);
- text->SetStyle("ConsoleText");
- text->SetText(name);
- interpreters_->AddItem(text);
- }
- const IntRect& border = interpreters_->GetPopup()->GetLayoutBorder();
- interpreters_->SetMaxWidth(interpreters_->GetListView()->GetContentElement()->GetWidth() + border.left_ + border.right_);
- bool enabled = interpreters_->GetNumItems() > 1;
- interpreters_->SetEnabled(enabled);
- interpreters_->SetFocusMode(enabled ? FM_FOCUSABLE_DEFOCUSABLE : FM_NOTFOCUSABLE);
- if (selection == M_MAX_UNSIGNED)
- {
- selection = 0;
- commandInterpreter_ = names[selection];
- }
- interpreters_->SetSelection(selection);
- return true;
- }
- void Console::HandleInterpreterSelected(StringHash eventType, VariantMap& eventData)
- {
- commandInterpreter_ = static_cast<Text*>(interpreters_->GetSelectedItem())->GetText();
- lineEdit_->SetFocus(true);
- }
- void Console::HandleTextChanged(StringHash eventType, VariantMap & eventData)
- {
- // Save the original line
- // Make sure the change isn't caused by auto complete or history
- if (!historyOrAutoCompleteChange_)
- autoCompleteLine_ = eventData[TextEntry::P_TEXT].GetString();
- historyOrAutoCompleteChange_ = false;
- }
- void Console::HandleTextFinished(StringHash eventType, VariantMap& eventData)
- {
- using namespace TextFinished;
- String line = lineEdit_->GetText();
- if (!line.Empty())
- {
- // Send the command as an event for script subsystem
- using namespace ConsoleCommand;
- SendEvent(E_CONSOLECOMMAND,
- P_COMMAND, line,
- P_ID, static_cast<Text*>(interpreters_->GetSelectedItem())->GetText());
- // Make sure the line isn't the same as the last one
- if (history_.Empty() || line != history_.Back())
- {
- // Store to history, then clear the lineedit
- history_.Push(line);
- if (history_.Size() > historyRows_)
- history_.Erase(history_.Begin());
- }
- historyPosition_ = history_.Size(); // Reset
- autoCompletePosition_ = autoComplete_.Size(); // Reset
- currentRow_.Clear();
- lineEdit_->SetText(currentRow_);
- }
- }
- void Console::HandleLineEditKey(StringHash eventType, VariantMap& eventData)
- {
- if (!historyRows_)
- return;
- using namespace UnhandledKey;
- bool changed = false;
- switch (eventData[P_KEY].GetInt())
- {
- case KEY_UP:
- if (autoCompletePosition_ == 0)
- autoCompletePosition_ = autoComplete_.Size();
- if (autoCompletePosition_ < autoComplete_.Size())
- {
- // Search for auto completion that contains the contents of the line
- for (--autoCompletePosition_; autoCompletePosition_ != M_MAX_UNSIGNED; --autoCompletePosition_)
- {
- const String& current = autoComplete_[autoCompletePosition_];
- if (current.StartsWith(autoCompleteLine_))
- {
- historyOrAutoCompleteChange_ = true;
- lineEdit_->SetText(current);
- break;
- }
- }
- // If not found
- if (autoCompletePosition_ == M_MAX_UNSIGNED)
- {
- // Reset the position
- autoCompletePosition_ = autoComplete_.Size();
- // Reset history position
- historyPosition_ = history_.Size();
- }
- }
- // If no more auto complete options and history options left
- if (autoCompletePosition_ == autoComplete_.Size() && historyPosition_ > 0)
- {
- // If line text is not a history, save the current text value to be restored later
- if (historyPosition_ == history_.Size())
- currentRow_ = lineEdit_->GetText();
- // Use the previous option
- --historyPosition_;
- changed = true;
- }
- break;
- case KEY_DOWN:
- // If history options left
- if (historyPosition_ < history_.Size())
- {
- // Use the next option
- ++historyPosition_;
- changed = true;
- }
- else
- {
- // Loop over
- if (autoCompletePosition_ >= autoComplete_.Size())
- autoCompletePosition_ = 0;
- else
- ++autoCompletePosition_; // If not starting over, skip checking the currently found completion
- unsigned startPosition = autoCompletePosition_;
- // Search for auto completion that contains the contents of the line
- for (; autoCompletePosition_ < autoComplete_.Size(); ++autoCompletePosition_)
- {
- const String& current = autoComplete_[autoCompletePosition_];
- if (current.StartsWith(autoCompleteLine_))
- {
- historyOrAutoCompleteChange_ = true;
- lineEdit_->SetText(current);
- break;
- }
- }
- // Continue to search the complete range
- if (autoCompletePosition_ == autoComplete_.Size())
- {
- for (autoCompletePosition_ = 0; autoCompletePosition_ != startPosition; ++autoCompletePosition_)
- {
- const String& current = autoComplete_[autoCompletePosition_];
- if (current.StartsWith(autoCompleteLine_))
- {
- historyOrAutoCompleteChange_ = true;
- lineEdit_->SetText(current);
- break;
- }
- }
- }
- }
- break;
- default: break;
- }
- if (changed)
- {
- historyOrAutoCompleteChange_ = true;
- // Set text to history option
- if (historyPosition_ < history_.Size())
- lineEdit_->SetText(history_[historyPosition_]);
- else // restore the original line value before it was set to history values
- {
- lineEdit_->SetText(currentRow_);
- // Set the auto complete position according to the currentRow
- for (autoCompletePosition_ = 0; autoCompletePosition_ < autoComplete_.Size(); ++autoCompletePosition_)
- if (autoComplete_[autoCompletePosition_].StartsWith(currentRow_))
- break;
- }
- }
- }
- void Console::HandleCloseButtonPressed(StringHash eventType, VariantMap& eventData)
- {
- SetVisible(false);
- }
- void Console::HandleRootElementResized(StringHash eventType, VariantMap& eventData)
- {
- UpdateElements();
- }
- void Console::HandleLogMessage(StringHash eventType, VariantMap& eventData)
- {
- // If printing a log message causes more messages to be logged (error accessing font), disregard them
- if (printing_)
- return;
- using namespace LogMessage;
- int level = eventData[P_LEVEL].GetInt();
- // The message may be multi-line, so split to rows in that case
- Vector<String> rows = eventData[P_MESSAGE].GetString().Split('\n');
- for (unsigned i = 0; i < rows.Size(); ++i)
- pendingRows_.Push(MakePair(level, rows[i]));
- if (autoVisibleOnError_ && level == LOG_ERROR && !IsVisible())
- SetVisible(true);
- }
- void Console::HandlePostUpdate(StringHash eventType, VariantMap& eventData)
- {
- // Ensure UI-elements are not detached
- if (!background_->GetParent())
- {
- auto* ui = GetSubsystem<UI>();
- UIElement* uiRoot = ui->GetRoot();
- uiRoot->AddChild(background_);
- uiRoot->AddChild(closeButton_);
- }
- if (!rowContainer_->GetNumItems() || pendingRows_.Empty())
- return;
- printing_ = true;
- rowContainer_->DisableLayoutUpdate();
- Text* text = nullptr;
- for (unsigned i = 0; i < pendingRows_.Size(); ++i)
- {
- rowContainer_->RemoveItem((unsigned)0);
- text = new Text(context_);
- text->SetText(pendingRows_[i].second_);
- // Highlight console messages based on their type
- text->SetStyle(logStyles[pendingRows_[i].first_]);
- rowContainer_->AddItem(text);
- }
- pendingRows_.Clear();
- rowContainer_->EnsureItemVisibility(text);
- rowContainer_->EnableLayoutUpdate();
- rowContainer_->UpdateLayout();
- UpdateElements(); // May need to readjust the height due to scrollbar visibility changes
- printing_ = false;
- }
- }
|