31#include "table/strings.h"
35static const uint ICON_HISTORY_SIZE = 20;
36static const uint ICON_RIGHT_BORDERWIDTH = 10;
37static const uint ICON_BOTTOM_BORDERWIDTH = 12;
76 using AutoCompletion::AutoCompletion;
79 std::vector<std::string> GetSuggestions(std::string_view
prefix, std::string_view
query)
override
82 std::vector<std::string> suggestions;
89 for (
const auto &[_, command] : IConsole::Commands()) {
90 if (command.name.starts_with(
query)) {
91 suggestions.push_back(command.name);
94 for (
const auto &[_, alias] : IConsole::Aliases()) {
95 if (alias.name.starts_with(
query)) {
96 suggestions.push_back(alias.name);
103 void ApplySuggestion(std::string_view
prefix, std::string_view suggestion)
override
105 this->textbuf->
Assign(fmt::format(
"{}{} ",
prefix, suggestion));
112static std::deque<std::string> _iconsole_history;
113static ptrdiff_t _iconsole_historypos;
120static void IConsoleClearCommand()
123 _iconsole_tab_completion.Reset();
127static inline void IConsoleResetHistoryPos()
129 _iconsole_historypos = -1;
136static constexpr NWidgetPart _nested_console_window_widgets[] = {
144 _nested_console_window_widgets
149 static size_t scroll;
152 int cursor_width = 0;
169 void Close([[maybe_unused]]
int data = 0)
override
169 void Close([[maybe_unused]]
int data = 0)
override {
…}
183 size_t namount =
static_cast<size_t>(-amount);
184 IConsoleWindow::scroll = (namount > IConsoleWindow::scroll) ? 0 : IConsoleWindow::scroll - namount;
186 assert(this->
height >= 0 && this->line_height > 0);
189 IConsoleWindow::scroll = std::min<size_t>(IConsoleWindow::scroll + amount, max_scroll);
200 for (
size_t line_index = IConsoleWindow::scroll; line_index <
_iconsole_buffer.size(); line_index++) {
217 if (_focused_window ==
this && _iconsole_cmdline.
caret) {
224 assert(this->
height >= 0 && this->line_height > 0);
229 IConsoleWindow::scroll = std::min<size_t>(IConsoleWindow::scroll, max_scroll);
255 case WKC_SHIFT | WKC_PAGEDOWN:
256 this->
Scroll(-scroll_height);
259 case WKC_SHIFT | WKC_PAGEUP:
260 this->
Scroll(scroll_height);
263 case WKC_SHIFT | WKC_DOWN:
267 case WKC_SHIFT | WKC_UP:
275 case WKC_RETURN:
case WKC_NUM_ENTER: {
281 IConsoleClearCommand();
287 case WKC_CTRL | WKC_RETURN:
293 case (WKC_CTRL |
'L'):
298 if (_iconsole_tab_completion.AutoComplete()) {
307 _iconsole_tab_completion.Reset();
309 IConsoleWindow::scroll = 0;
310 IConsoleResetHistoryPos();
321 void InsertTextString(
WidgetID, std::string_view str,
bool marked, std::optional<size_t> caret, std::optional<size_t> insert_location, std::optional<size_t> replacement_end)
override
323 if (_iconsole_cmdline.
InsertString(str, marked, caret, insert_location, replacement_end)) {
324 _iconsole_tab_completion.Reset();
325 IConsoleWindow::scroll = 0;
326 IConsoleResetHistoryPos();
321 void InsertTextString(
WidgetID, std::string_view str,
bool marked, std::optional<size_t> caret, std::optional<size_t> insert_location, std::optional<size_t> replacement_end)
override {
…}
333 return &_iconsole_cmdline;
338 int delta = std::min<int>(this->
width - this->line_offset - _iconsole_cmdline.
pixels - ICON_RIGHT_BORDERWIDTH, 0);
339 Point pt = {this->line_offset + delta + _iconsole_cmdline.
caretxoffs, this->
height - this->line_height};
346 int delta = std::min<int>(this->
width - this->line_offset - _iconsole_cmdline.
pixels - ICON_RIGHT_BORDERWIDTH, 0);
351 Rect r = {this->line_offset + delta + p1.left, this->
height - this->
line_height, this->line_offset + delta + p2.right, this->
height};
357 int delta = std::min<int>(this->
width - this->line_offset - _iconsole_cmdline.
pixels - ICON_RIGHT_BORDERWIDTH, 0);
359 if (!
IsInsideMM(pt.y, this->height - this->line_height, this->height))
return -1;
381size_t IConsoleWindow::scroll = 0;
383void IConsoleGUIInit()
385 IConsoleResetHistoryPos();
388 IConsoleClearBuffer();
390 IConsolePrint(TC_LIGHT_BLUE,
"OpenTTD Game Console Revision 7 - {}", _openttd_revision);
394 IConsoleClearCommand();
397void IConsoleClearBuffer()
402void IConsoleGUIFree()
404 IConsoleClearBuffer();
410 switch (_iconsole_mode) {
412 w->
height = _screen.height / 3;
413 w->
width = _screen.width;
416 w->
height = _screen.height - ICON_BOTTOM_BORDERWIDTH;
417 w->
width = _screen.width;
428 switch (_iconsole_mode) {
459 if (cmd.empty())
return std::nullopt;
462 if (_iconsole_history.empty() || _iconsole_history.front() != cmd) {
463 _iconsole_history.emplace_front(cmd);
464 while (_iconsole_history.size() > ICON_HISTORY_SIZE) _iconsole_history.pop_back();
468 IConsoleResetHistoryPos();
469 return _iconsole_history.front();
478 if (_iconsole_history.empty())
return;
479 _iconsole_historypos = Clamp<ptrdiff_t>(_iconsole_historypos + direction, -1, _iconsole_history.size() - 1);
481 if (_iconsole_historypos == -1) {
484 _iconsole_cmdline.
Assign(_iconsole_history[_iconsole_historypos]);
486 _iconsole_tab_completion.Reset();
513 bool need_truncation =
false;
520 need_truncation =
true;
525 if (need_truncation) {
529 return need_truncation;
545 c &= ~TC_IS_PALETTE_COLOUR;
546 for (Colours i = COLOUR_BEGIN; i < COLOUR_END; i++) {
Generic auto-completion engine.
std::string_view query
Last token of the text. This is used to based the suggestions on.
std::string_view prefix
Prefix of the text before the last space.
An interval timer will fire every interval, and will continue to fire until it is deleted.
static const std::string_view WHITESPACE_NO_NEWLINE
ASCII whitespace characters, excluding new-line.
virtual void EditBoxLostFocus()
An edit box lost the input focus.
static VideoDriver * GetInstance()
Get the currently active instance of the video driver.
virtual void EditBoxGainedFocus()
An edit box gained the input focus.
void IConsoleCmdExec(std::string_view command_string, const uint recurse_count)
Execute a given command passed to us.
void IConsolePrint(TextColour colour_code, const std::string &string)
Handle the printing of text entered into the console or redirected there by any other means.
Console functions used outside of the console code.
static std::optional< std::string_view > IConsoleHistoryAdd(std::string_view cmd)
Add the entered line into the history so you can look it back scroll, etc.
void IConsoleSwitch()
Toggle in-game console between opened and closed.
void IConsoleClose()
Close the in-game console.
bool IsValidConsoleColour(TextColour c)
Check whether the given TextColour is valid for console usage.
static bool TruncateBuffer()
Remove old lines from the backlog buffer.
void IConsoleGUIPrint(TextColour colour_code, const std::string &str)
Handle the printing of text entered into the console or redirected there by any other means.
static std::deque< IConsoleLine > _iconsole_buffer
The console backlog buffer.
void IConsoleResize(Window *w)
Change the size of the in-game console window after the screen size changed, or the window state chan...
static void IConsoleHistoryNavigate(int direction)
Navigate Up/Down in the history of typed commands.
GUI related functions in the console.
Internally used functions for the console.
static const uint ICON_CMDLN_SIZE
maximum length of a typed in command
static const TextColour CC_WHITE
White console lines for various things such as the welcome.
static const TextColour CC_COMMAND
Colour for the console's commands.
IConsoleModes
Modes of the in-game console.
@ ICONSOLE_CLOSED
In-game console is closed.
@ ICONSOLE_OPENED
In-game console is opened, upper 1/3 of the screen.
@ ICONSOLE_FULL
In-game console is opened, whole screen.
int GetCharacterHeight(FontSize size)
Get height of a character for a given font size.
Dimension GetStringBoundingBox(std::string_view str, FontSize start_fontsize)
Return the string dimension in pixels.
int DrawString(int left, int right, int top, std::string_view str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly truncated to make it fit in its allocated space.
void GfxFillRect(int left, int top, int right, int bottom, int colour, FillRectMode mode)
Applies a certain FillRectMode-operation to a rectangle [left, right] x [top, bottom] on the screen.
uint8_t GetCharacterWidth(FontSize size, char32_t key)
Return width of character glyph.
int DrawStringMultiLine(int left, int right, int top, int bottom, std::string_view str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly over multiple lines.
Functions related to the gfx engine.
ParagraphLayouter::Position GetCharPosInString(std::string_view str, size_t pos, FontSize start_fontsize)
Get the leading corner of a character in a single-line string relative to the start of the string.
ptrdiff_t GetCharAtPosition(std::string_view str, int x, FontSize start_fontsize)
Get the character from a string that is drawn at a specific position.
Functions related to laying out the texts.
@ FS_NORMAL
Index of the normal font in the font tables.
@ SA_LEFT
Left align the text.
@ SA_FORCE
Force the alignment, i.e. don't swap for RTL languages.
@ SA_BOTTOM
Bottom align the text.
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
@ TC_IS_PALETTE_COLOUR
Colour value is already a real palette colour index, not an index of a StringColour.
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
void MarkWholeScreenDirty()
This function mark the whole screen as dirty.
constexpr bool IsInsideMM(const size_t x, const size_t min, const size_t max) noexcept
Checks if a value is in an interval.
uint8_t GetColourGradient(Colours colour, ColourShade shade)
Get colour gradient palette index.
static const uint8_t PC_BLACK
Black palette colour.
static const uint8_t PC_DARK_RED
Dark red palette colour.
declaration of OTTD revision dependent variables
A number of safeguards to prevent using unsafe methods.
ClientSettings _settings_client
The current settings for this game.
Types related to global configuration settings.
Definition of base types and functions in a cross-platform compatible way.
Functions related to low-level strings.
bool IsWhitespace(char32_t c)
Check whether UNICODE character is whitespace or not, i.e.
#define LRM
A left-to-right marker, marks the next character as left-to-right.
std::string GetString(StringID string)
Resolve the given StringID into a std::string with formatting but no parameters.
Functions related to OTTD's strings.
GUISettings gui
settings related to the GUI
uint16_t console_backlog_length
the minimum amount of items in the console backlog before items will be removed.
uint16_t console_backlog_timeout
the minimum amount of time items should be in the console backlog before they will be removed in ~3 s...
Container for a single line of console output.
TextColour colour
The colour of the line.
uint16_t time
The amount of time the line is in the backlog.
std::string buffer
The data to store.
IConsoleLine(std::string buffer, TextColour colour)
Initialize the console line.
void OnFocusLost(bool) override
The window has lost focus.
EventState OnKeyPress(char32_t key, uint16_t keycode) override
A key has been pressed.
void Scroll(int amount)
Scroll the content of the console.
const Textbuf * GetFocusedTextbuf() const override
Get the current input text buffer.
ptrdiff_t GetTextCharacterAtPosition(const Point &pt) const override
Get the character that is rendered at a position by the focused edit box.
Rect GetTextBoundingRect(size_t from, size_t to) const override
Get the bounding rectangle for a text range if an edit box has the focus.
void OnMouseLoop() override
Called for every mouse loop run, which is at least once per (game) tick.
void OnInit() override
Notification that the nested widget tree gets initialized.
void Close(int data=0) override
Hide the window and all its child windows, and mark them for a later deletion.
int line_height
Height of one line of text in the console.
void InsertTextString(WidgetID, std::string_view str, bool marked, std::optional< size_t > caret, std::optional< size_t > insert_location, std::optional< size_t > replacement_end) override
Insert a text string at the cursor position into the edit box widget.
void OnPaint() override
The window must be repainted.
const IntervalTimer< TimerWindow > truncate_interval
Check on a regular interval if the console buffer needs truncating.
Point GetCaretPosition() const override
Get the current caret position if an edit box has the focus.
void OnMouseWheel(int wheel, WidgetID widget) override
The mouse wheel has been turned.
void OnFocus() override
The window has gained focus.
Coordinates of a point in 2D.
Specification of a rectangle with absolute coordinates of all edges.
Helper/buffer for input fields.
uint16_t pixels
the current size of the string in pixels
uint16_t markxoffs
the start position of the marked area in pixels
void DeleteAll()
Delete every character in the textbuffer.
std::string_view GetText() const
Get the current text.
bool InsertString(std::string_view str, bool marked, std::optional< size_t > caret=std::nullopt, std::optional< size_t > insert_location=std::nullopt, std::optional< size_t > replacement_end=std::nullopt)
Insert a string into the text buffer.
uint16_t caretxoffs
the current position of the caret in pixels
uint16_t marklength
the length of the marked area in pixels
void Assign(std::string_view text)
Copy a string into the textbuffer.
bool caret
is the caret ("_") visible or not
bool HandleCaret()
Handle the flashing of the caret.
High level window description.
Data structure for an opened window.
virtual void Close(int data=0)
Hide the window and all its child windows, and mark them for a later deletion.
void InitNested(WindowNumber number=0)
Perform complete initialization of the Window with nested widgets, to allow use.
int height
Height of the window (number of pixels down in y direction)
int width
width of the window (number of pixels to the right in x direction)
Stuff related to text buffers.
HandleKeyPressResult
Return values for Textbuf::HandleKeypress.
@ HKPR_NOT_HANDLED
Key does not affect editboxes.
@ HKPR_EDITING
Textbuf content changed.
Definition of Interval and OneShot timers.
Definition of the Window system.
Base of all video drivers.
void CloseWindowById(WindowClass cls, WindowNumber number, bool force, int data)
Close a window by its class and window number (if it is open).
void ResizeWindow(Window *w, int delta_x, int delta_y, bool clamp_to_screen, bool schedule_resize)
Resize the window.
void SetWindowDirty(WindowClass cls, WindowNumber number)
Mark window as dirty (in need of repainting)
Window functions not directly related to making/drawing windows.
Functions, definitions and such used only by the GUI.
@ WDP_MANUAL
Manually align the window (so no automatic location finding)
EventState
State of handling an event.
@ ES_HANDLED
The passed event is handled.
@ ES_NOT_HANDLED
The passed event is not handled.
@ WC_CONSOLE
Console; Window numbers:
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.