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.
23 #include "irrlichttypes_bloated.h"
28 // Chat console related classes, only used by the client
34 // name of sending player, or empty if sent by server
39 ChatLine(std::wstring a_name, std::wstring a_text):
47 struct ChatFormattedFragment
57 struct ChatFormattedLine
59 // Array of text fragments
60 std::vector<ChatFormattedFragment> fragments;
61 // true if first line of one formatted ChatLine
68 ChatBuffer(u32 scrollback);
72 // Removes oldest chat line if scrollback size is reached
73 void addLine(std::wstring name, std::wstring text);
75 // Remove all chat lines
78 // Get number of lines currently in buffer.
79 u32 getLineCount() const;
80 // Get scrollback size, maximum number of lines in buffer.
81 u32 getScrollback() const;
82 // Get reference to i-th chat line.
83 const ChatLine& getLine(u32 index) const;
85 // Increase each chat line's age by dtime.
87 // Delete oldest N chat lines.
88 void deleteOldest(u32 count);
89 // Delete lines older than maxAge.
90 void deleteByAge(f32 maxAge);
92 // Get number of columns, 0 if reformat has not been called yet.
93 u32 getColumns() const;
94 // Get number of rows, 0 if reformat has not been called yet.
96 // Update console size and reformat all formatted lines.
97 void reformat(u32 cols, u32 rows);
98 // Get formatted line for a given row (0 is top of screen).
99 // Only valid after reformat has been called at least once
100 const ChatFormattedLine& getFormattedLine(u32 row) const;
101 // Scrolling in formatted buffer (relative)
102 // positive rows == scroll up, negative rows == scroll down
103 void scroll(s32 rows);
104 // Scrolling in formatted buffer (absolute)
105 void scrollAbsolute(s32 scroll);
106 // Scroll to bottom of buffer (newest)
108 // Scroll to top of buffer (oldest)
111 // Format a chat line for the given number of columns.
112 // Appends the formatted lines to the destination array and
113 // returns the number of formatted lines.
114 u32 formatChatLine(const ChatLine& line, u32 cols,
115 std::vector<ChatFormattedLine>& destination) const;
118 s32 getTopScrollPos() const;
119 s32 getBottomScrollPos() const;
124 // Array of unformatted chat lines
125 std::vector<ChatLine> m_unformatted;
127 // Number of character columns in console
129 // Number of character rows in console
131 // Scroll position (console's top line index into m_formatted)
133 // Array of formatted lines
134 std::vector<ChatFormattedLine> m_formatted;
135 // Empty formatted line, for error returns
136 ChatFormattedLine m_empty_formatted_line;
142 ChatPrompt(std::wstring prompt, u32 history_limit);
146 void input(wchar_t ch);
148 // Submit, clear and return current line
149 std::wstring submit();
151 // Clear the current line
154 // Replace the current line with the given text
155 void replace(std::wstring line);
157 // Select previous command from history
159 // Select next command from history
163 void nickCompletion(const std::list<std::wstring>& names, bool backwards);
165 // Update console size and reformat the visible portion of the prompt
166 void reformat(u32 cols);
167 // Get visible portion of the prompt.
168 std::wstring getVisiblePortion() const;
169 // Get cursor position (relative to visible portion). -1 if invalid
170 s32 getVisibleCursorPosition() const;
178 // Cursor operation direction
184 // Cursor operation scope
186 CURSOROP_SCOPE_CHARACTER,
192 // op specifies whether it's a move or delete operation
193 // dir specifies whether the operation goes left or right
194 // scope specifies how far the operation will reach (char/word/line)
196 // cursorOperation(CURSOROP_MOVE, CURSOROP_DIR_RIGHT, CURSOROP_SCOPE_LINE)
197 // moves the cursor to the end of the line.
198 // cursorOperation(CURSOROP_DELETE, CURSOROP_DIR_LEFT, CURSOROP_SCOPE_WORD)
199 // deletes the word to the left of the cursor.
200 void cursorOperation(CursorOp op, CursorOpDir dir, CursorOpScope scope);
203 // set m_view to ensure that 0 <= m_view <= m_cursor < m_view + m_cols
204 // if line can be fully shown, set m_view to zero
205 // else, also ensure m_view <= m_line.size() + 1 - m_cols
210 std::wstring m_prompt;
211 // Currently edited line
214 std::vector<std::wstring> m_history;
215 // History index (0 <= m_history_index <= m_history.size())
217 // Maximum number of history entries
220 // Number of columns excluding columns reserved for the prompt
222 // Start of visible portion (index into m_line)
224 // Cursor (index into m_line)
227 // Last nick completion start (index into m_line)
228 s32 m_nick_completion_start;
229 // Last nick completion start (index into m_line)
230 s32 m_nick_completion_end;
240 void addMessage(std::wstring name, std::wstring text);
241 // Parse and add unparsed chat message
242 void addUnparsedMessage(std::wstring line);
244 // Get the console buffer
245 ChatBuffer& getConsoleBuffer();
246 // Get the recent messages buffer
247 ChatBuffer& getRecentBuffer();
248 // Concatenate all recent messages
249 std::wstring getRecentChat();
250 // Get the console prompt
251 ChatPrompt& getPrompt();
253 // Reformat all buffers
254 void reformat(u32 cols, u32 rows);
256 // Clear all recent messages
257 void clearRecentChat();
259 // Age recent messages
260 void step(float dtime);
263 void scroll(s32 rows);
264 void scrollPageDown();
268 ChatBuffer m_console_buffer;
269 ChatBuffer m_recent_buffer;