Add cancel button to password change menu. (#5720)
[oweals/minetest.git] / src / guiTable.cpp
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
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.
9
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.
14
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.
18 */
19
20
21 #include "guiTable.h"
22 #include <queue>
23 #include <sstream>
24 #include <utility>
25 #include <string.h>
26 #include <IGUISkin.h>
27 #include <IGUIFont.h>
28 #include <IGUIScrollBar.h>
29 #include "debug.h"
30 #include "log.h"
31 #include "client/tile.h"
32 #include "gettime.h"
33 #include "util/string.h"
34 #include "util/numeric.h"
35 #include "util/string.h" // for parseColorString()
36 #include "settings.h" // for settings
37 #include "porting.h" // for dpi
38 #include "guiscalingfilter.h"
39
40 /*
41         GUITable
42 */
43
44 GUITable::GUITable(gui::IGUIEnvironment *env,
45                 gui::IGUIElement* parent, s32 id,
46                 core::rect<s32> rectangle,
47                 ISimpleTextureSource *tsrc
48 ):
49         gui::IGUIElement(gui::EGUIET_ELEMENT, env, parent, id, rectangle),
50         m_tsrc(tsrc),
51         m_is_textlist(false),
52         m_has_tree_column(false),
53         m_selected(-1),
54         m_sel_column(0),
55         m_sel_doubleclick(false),
56         m_keynav_time(0),
57         m_keynav_buffer(L""),
58         m_border(true),
59         m_color(255, 255, 255, 255),
60         m_background(255, 0, 0, 0),
61         m_highlight(255, 70, 100, 50),
62         m_highlight_text(255, 255, 255, 255),
63         m_rowheight(1),
64         m_font(NULL),
65         m_scrollbar(NULL)
66 {
67         assert(tsrc != NULL);
68
69         gui::IGUISkin* skin = Environment->getSkin();
70
71         m_font = skin->getFont();
72         if (m_font) {
73                 m_font->grab();
74                 m_rowheight = m_font->getDimension(L"A").Height + 4;
75                 m_rowheight = MYMAX(m_rowheight, 1);
76         }
77
78         const s32 s = skin->getSize(gui::EGDS_SCROLLBAR_SIZE);
79         m_scrollbar = Environment->addScrollBar(false,
80                         core::rect<s32>(RelativeRect.getWidth() - s,
81                                         0,
82                                         RelativeRect.getWidth(),
83                                         RelativeRect.getHeight()),
84                         this, -1);
85         m_scrollbar->setSubElement(true);
86         m_scrollbar->setTabStop(false);
87         m_scrollbar->setAlignment(gui::EGUIA_LOWERRIGHT, gui::EGUIA_LOWERRIGHT,
88                         gui::EGUIA_UPPERLEFT, gui::EGUIA_LOWERRIGHT);
89         m_scrollbar->setVisible(false);
90         m_scrollbar->setPos(0);
91
92         setTabStop(true);
93         setTabOrder(-1);
94         updateAbsolutePosition();
95
96         core::rect<s32> relative_rect = m_scrollbar->getRelativePosition();
97         s32 width = (relative_rect.getWidth()/(2.0/3.0)) * porting::getDisplayDensity() *
98                         g_settings->getFloat("gui_scaling");
99         m_scrollbar->setRelativePosition(core::rect<s32>(
100                         relative_rect.LowerRightCorner.X-width,relative_rect.UpperLeftCorner.Y,
101                         relative_rect.LowerRightCorner.X,relative_rect.LowerRightCorner.Y
102                         ));
103 }
104
105 GUITable::~GUITable()
106 {
107         for (size_t i = 0; i < m_rows.size(); ++i)
108                 delete[] m_rows[i].cells;
109
110         if (m_font)
111                 m_font->drop();
112         
113         m_scrollbar->remove();
114 }
115
116 GUITable::Option GUITable::splitOption(const std::string &str)
117 {
118         size_t equal_pos = str.find('=');
119         if (equal_pos == std::string::npos)
120                 return GUITable::Option(str, "");
121         else
122                 return GUITable::Option(str.substr(0, equal_pos),
123                                 str.substr(equal_pos + 1));
124 }
125
126 void GUITable::setTextList(const std::vector<std::string> &content,
127                 bool transparent)
128 {
129         clear();
130
131         if (transparent) {
132                 m_background.setAlpha(0);
133                 m_border = false;
134         }
135
136         m_is_textlist = true;
137
138         s32 empty_string_index = allocString("");
139
140         m_rows.resize(content.size());
141         for (s32 i = 0; i < (s32) content.size(); ++i) {
142                 Row *row = &m_rows[i];
143                 row->cells = new Cell[1];
144                 row->cellcount = 1;
145                 row->indent = 0;
146                 row->visible_index = i;
147                 m_visible_rows.push_back(i);
148
149                 Cell *cell = row->cells;
150                 cell->xmin = 0;
151                 cell->xmax = 0x7fff;  // something large enough
152                 cell->xpos = 6;
153                 cell->content_type = COLUMN_TYPE_TEXT;
154                 cell->content_index = empty_string_index;
155                 cell->tooltip_index = empty_string_index;
156                 cell->color.set(255, 255, 255, 255);
157                 cell->color_defined = false;
158                 cell->reported_column = 1;
159
160                 // parse row content (color)
161                 const std::string &s = content[i];
162                 if (s[0] == '#' && s[1] == '#') {
163                         // double # to escape
164                         cell->content_index = allocString(s.substr(2));
165                 }
166                 else if (s[0] == '#' && s.size() >= 7 &&
167                                 parseColorString(
168                                         s.substr(0,7), cell->color, false)) {
169                         // single # for color
170                         cell->color_defined = true;
171                         cell->content_index = allocString(s.substr(7));
172                 }
173                 else {
174                         // no #, just text
175                         cell->content_index = allocString(s);
176                 }
177
178         }
179
180         allocationComplete();
181
182         // Clamp scroll bar position
183         updateScrollBar();
184 }
185
186 void GUITable::setTable(const TableOptions &options,
187                 const TableColumns &columns,
188                 std::vector<std::string> &content)
189 {
190         clear();
191
192         // Naming conventions:
193         // i is always a row index, 0-based
194         // j is always a column index, 0-based
195         // k is another index, for example an option index
196
197         // Handle a stupid error case... (issue #1187)
198         if (columns.empty()) {
199                 TableColumn text_column;
200                 text_column.type = "text";
201                 TableColumns new_columns;
202                 new_columns.push_back(text_column);
203                 setTable(options, new_columns, content);
204                 return;
205         }
206
207         // Handle table options
208         video::SColor default_color(255, 255, 255, 255);
209         s32 opendepth = 0;
210         for (size_t k = 0; k < options.size(); ++k) {
211                 const std::string &name = options[k].name;
212                 const std::string &value = options[k].value;
213                 if (name == "color")
214                         parseColorString(value, m_color, false);
215                 else if (name == "background")
216                         parseColorString(value, m_background, false);
217                 else if (name == "border")
218                         m_border = is_yes(value);
219                 else if (name == "highlight")
220                         parseColorString(value, m_highlight, false);
221                 else if (name == "highlight_text")
222                         parseColorString(value, m_highlight_text, false);
223                 else if (name == "opendepth")
224                         opendepth = stoi(value);
225                 else
226                         errorstream<<"Invalid table option: \""<<name<<"\""
227                                 <<" (value=\""<<value<<"\")"<<std::endl;
228         }
229
230         // Get number of columns and rows
231         // note: error case columns.size() == 0 was handled above
232         s32 colcount = columns.size();
233         assert(colcount >= 1);
234         // rowcount = ceil(cellcount / colcount) but use integer arithmetic
235         s32 rowcount = (content.size() + colcount - 1) / colcount;
236         assert(rowcount >= 0);
237         // Append empty strings to content if there is an incomplete row
238         s32 cellcount = rowcount * colcount;
239         while (content.size() < (u32) cellcount)
240                 content.push_back("");
241
242         // Create temporary rows (for processing columns)
243         struct TempRow {
244                 // Current horizontal position (may different between rows due
245                 // to indent/tree columns, or text/image columns with width<0)
246                 s32 x;
247                 // Tree indentation level
248                 s32 indent;
249                 // Next cell: Index into m_strings or m_images
250                 s32 content_index;
251                 // Next cell: Width in pixels
252                 s32 content_width;
253                 // Vector of completed cells in this row
254                 std::vector<Cell> cells;
255                 // Stores colors and how long they last (maximum column index)
256                 std::vector<std::pair<video::SColor, s32> > colors;
257
258                 TempRow(): x(0), indent(0), content_index(0), content_width(0) {}
259         };
260         TempRow *rows = new TempRow[rowcount];
261
262         // Get em width. Pedantically speaking, the width of "M" is not
263         // necessarily the same as the em width, but whatever, close enough.
264         s32 em = 6;
265         if (m_font)
266                 em = m_font->getDimension(L"M").Width;
267
268         s32 default_tooltip_index = allocString("");
269
270         std::map<s32, s32> active_image_indices;
271
272         // Process content in column-major order
273         for (s32 j = 0; j < colcount; ++j) {
274                 // Check column type
275                 ColumnType columntype = COLUMN_TYPE_TEXT;
276                 if (columns[j].type == "text")
277                         columntype = COLUMN_TYPE_TEXT;
278                 else if (columns[j].type == "image")
279                         columntype = COLUMN_TYPE_IMAGE;
280                 else if (columns[j].type == "color")
281                         columntype = COLUMN_TYPE_COLOR;
282                 else if (columns[j].type == "indent")
283                         columntype = COLUMN_TYPE_INDENT;
284                 else if (columns[j].type == "tree")
285                         columntype = COLUMN_TYPE_TREE;
286                 else
287                         errorstream<<"Invalid table column type: \""
288                                 <<columns[j].type<<"\""<<std::endl;
289
290                 // Process column options
291                 s32 padding = myround(0.5 * em);
292                 s32 tooltip_index = default_tooltip_index;
293                 s32 align = 0;
294                 s32 width = 0;
295                 s32 span = colcount;
296
297                 if (columntype == COLUMN_TYPE_INDENT) {
298                         padding = 0; // default indent padding
299                 }
300                 if (columntype == COLUMN_TYPE_INDENT ||
301                                 columntype == COLUMN_TYPE_TREE) {
302                         width = myround(em * 1.5); // default indent width
303                 }
304
305                 for (size_t k = 0; k < columns[j].options.size(); ++k) {
306                         const std::string &name = columns[j].options[k].name;
307                         const std::string &value = columns[j].options[k].value;
308                         if (name == "padding")
309                                 padding = myround(stof(value) * em);
310                         else if (name == "tooltip")
311                                 tooltip_index = allocString(value);
312                         else if (name == "align" && value == "left")
313                                 align = 0;
314                         else if (name == "align" && value == "center")
315                                 align = 1;
316                         else if (name == "align" && value == "right")
317                                 align = 2;
318                         else if (name == "align" && value == "inline")
319                                 align = 3;
320                         else if (name == "width")
321                                 width = myround(stof(value) * em);
322                         else if (name == "span" && columntype == COLUMN_TYPE_COLOR)
323                                 span = stoi(value);
324                         else if (columntype == COLUMN_TYPE_IMAGE &&
325                                         !name.empty() &&
326                                         string_allowed(name, "0123456789")) {
327                                 s32 content_index = allocImage(value);
328                                 active_image_indices.insert(std::make_pair(
329                                                         stoi(name),
330                                                         content_index));
331                         }
332                         else {
333                                 errorstream<<"Invalid table column option: \""<<name<<"\""
334                                         <<" (value=\""<<value<<"\")"<<std::endl;
335                         }
336                 }
337
338                 // If current column type can use information from "color" columns,
339                 // find out which of those is currently active
340                 if (columntype == COLUMN_TYPE_TEXT) {
341                         for (s32 i = 0; i < rowcount; ++i) {
342                                 TempRow *row = &rows[i];
343                                 while (!row->colors.empty() && row->colors.back().second < j)
344                                         row->colors.pop_back();
345                         }
346                 }
347
348                 // Make template for new cells
349                 Cell newcell;
350                 memset(&newcell, 0, sizeof newcell);
351                 newcell.content_type = columntype;
352                 newcell.tooltip_index = tooltip_index;
353                 newcell.reported_column = j+1;
354
355                 if (columntype == COLUMN_TYPE_TEXT) {
356                         // Find right edge of column
357                         s32 xmax = 0;
358                         for (s32 i = 0; i < rowcount; ++i) {
359                                 TempRow *row = &rows[i];
360                                 row->content_index = allocString(content[i * colcount + j]);
361                                 const core::stringw &text = m_strings[row->content_index];
362                                 row->content_width = m_font ?
363                                         m_font->getDimension(text.c_str()).Width : 0;
364                                 row->content_width = MYMAX(row->content_width, width);
365                                 s32 row_xmax = row->x + padding + row->content_width;
366                                 xmax = MYMAX(xmax, row_xmax);
367                         }
368                         // Add a new cell (of text type) to each row
369                         for (s32 i = 0; i < rowcount; ++i) {
370                                 newcell.xmin = rows[i].x + padding;
371                                 alignContent(&newcell, xmax, rows[i].content_width, align);
372                                 newcell.content_index = rows[i].content_index;
373                                 newcell.color_defined = !rows[i].colors.empty();
374                                 if (newcell.color_defined)
375                                         newcell.color = rows[i].colors.back().first;
376                                 rows[i].cells.push_back(newcell);
377                                 rows[i].x = newcell.xmax;
378                         }
379                 }
380                 else if (columntype == COLUMN_TYPE_IMAGE) {
381                         // Find right edge of column
382                         s32 xmax = 0;
383                         for (s32 i = 0; i < rowcount; ++i) {
384                                 TempRow *row = &rows[i];
385                                 row->content_index = -1;
386
387                                 // Find content_index. Image indices are defined in
388                                 // column options so check active_image_indices.
389                                 s32 image_index = stoi(content[i * colcount + j]);
390                                 std::map<s32, s32>::iterator image_iter =
391                                         active_image_indices.find(image_index);
392                                 if (image_iter != active_image_indices.end())
393                                         row->content_index = image_iter->second;
394
395                                 // Get texture object (might be NULL)
396                                 video::ITexture *image = NULL;
397                                 if (row->content_index >= 0)
398                                         image = m_images[row->content_index];
399
400                                 // Get content width and update xmax
401                                 row->content_width = image ? image->getOriginalSize().Width : 0;
402                                 row->content_width = MYMAX(row->content_width, width);
403                                 s32 row_xmax = row->x + padding + row->content_width;
404                                 xmax = MYMAX(xmax, row_xmax);
405                         }
406                         // Add a new cell (of image type) to each row
407                         for (s32 i = 0; i < rowcount; ++i) {
408                                 newcell.xmin = rows[i].x + padding;
409                                 alignContent(&newcell, xmax, rows[i].content_width, align);
410                                 newcell.content_index = rows[i].content_index;
411                                 rows[i].cells.push_back(newcell);
412                                 rows[i].x = newcell.xmax;
413                         }
414                         active_image_indices.clear();
415                 }
416                 else if (columntype == COLUMN_TYPE_COLOR) {
417                         for (s32 i = 0; i < rowcount; ++i) {
418                                 video::SColor cellcolor(255, 255, 255, 255);
419                                 if (parseColorString(content[i * colcount + j], cellcolor, true))
420                                         rows[i].colors.push_back(std::make_pair(cellcolor, j+span));
421                         }
422                 }
423                 else if (columntype == COLUMN_TYPE_INDENT ||
424                                 columntype == COLUMN_TYPE_TREE) {
425                         // For column type "tree", reserve additional space for +/-
426                         // Also enable special processing for treeview-type tables
427                         s32 content_width = 0;
428                         if (columntype == COLUMN_TYPE_TREE) {
429                                 content_width = m_font ? m_font->getDimension(L"+").Width : 0;
430                                 m_has_tree_column = true;
431                         }
432                         // Add a new cell (of indent or tree type) to each row
433                         for (s32 i = 0; i < rowcount; ++i) {
434                                 TempRow *row = &rows[i];
435
436                                 s32 indentlevel = stoi(content[i * colcount + j]);
437                                 indentlevel = MYMAX(indentlevel, 0);
438                                 if (columntype == COLUMN_TYPE_TREE)
439                                         row->indent = indentlevel;
440
441                                 newcell.xmin = row->x + padding;
442                                 newcell.xpos = newcell.xmin + indentlevel * width;
443                                 newcell.xmax = newcell.xpos + content_width;
444                                 newcell.content_index = 0;
445                                 newcell.color_defined = !rows[i].colors.empty();
446                                 if (newcell.color_defined)
447                                         newcell.color = rows[i].colors.back().first;
448                                 row->cells.push_back(newcell);
449                                 row->x = newcell.xmax;
450                         }
451                 }
452         }
453
454         // Copy temporary rows to not so temporary rows
455         if (rowcount >= 1) {
456                 m_rows.resize(rowcount);
457                 for (s32 i = 0; i < rowcount; ++i) {
458                         Row *row = &m_rows[i];
459                         row->cellcount = rows[i].cells.size();
460                         row->cells = new Cell[row->cellcount];
461                         memcpy((void*) row->cells, (void*) &rows[i].cells[0],
462                                         row->cellcount * sizeof(Cell));
463                         row->indent = rows[i].indent;
464                         row->visible_index = i;
465                         m_visible_rows.push_back(i);
466                 }
467         }
468
469         if (m_has_tree_column) {
470                 // Treeview: convert tree to indent cells on leaf rows
471                 for (s32 i = 0; i < rowcount; ++i) {
472                         if (i == rowcount-1 || m_rows[i].indent >= m_rows[i+1].indent)
473                                 for (s32 j = 0; j < m_rows[i].cellcount; ++j)
474                                         if (m_rows[i].cells[j].content_type == COLUMN_TYPE_TREE)
475                                                 m_rows[i].cells[j].content_type = COLUMN_TYPE_INDENT;
476                 }
477
478                 // Treeview: close rows according to opendepth option
479                 std::set<s32> opened_trees;
480                 for (s32 i = 0; i < rowcount; ++i)
481                         if (m_rows[i].indent < opendepth)
482                                 opened_trees.insert(i);
483                 setOpenedTrees(opened_trees);
484         }
485
486         // Delete temporary information used only during setTable()
487         delete[] rows;
488         allocationComplete();
489
490         // Clamp scroll bar position
491         updateScrollBar();
492 }
493
494 void GUITable::clear()
495 {
496         // Clean up cells and rows
497         for (size_t i = 0; i < m_rows.size(); ++i)
498                 delete[] m_rows[i].cells;
499         m_rows.clear();
500         m_visible_rows.clear();
501
502         // Get colors from skin
503         gui::IGUISkin *skin = Environment->getSkin();
504         m_color          = skin->getColor(gui::EGDC_BUTTON_TEXT);
505         m_background     = skin->getColor(gui::EGDC_3D_HIGH_LIGHT);
506         m_highlight      = skin->getColor(gui::EGDC_HIGH_LIGHT);
507         m_highlight_text = skin->getColor(gui::EGDC_HIGH_LIGHT_TEXT);
508
509         // Reset members
510         m_is_textlist = false;
511         m_has_tree_column = false;
512         m_selected = -1;
513         m_sel_column = 0;
514         m_sel_doubleclick = false;
515         m_keynav_time = 0;
516         m_keynav_buffer = L"";
517         m_border = true;
518         m_strings.clear();
519         m_images.clear();
520         m_alloc_strings.clear();
521         m_alloc_images.clear();
522 }
523
524 std::string GUITable::checkEvent()
525 {
526         s32 sel = getSelected();
527         assert(sel >= 0);
528
529         if (sel == 0) {
530                 return "INV";
531         }
532
533         std::ostringstream os(std::ios::binary);
534         if (m_sel_doubleclick) {
535                 os<<"DCL:";
536                 m_sel_doubleclick = false;
537         }
538         else {
539                 os<<"CHG:";
540         }
541         os<<sel;
542         if (!m_is_textlist) {
543                 os<<":"<<m_sel_column;
544         }
545         return os.str();
546 }
547
548 s32 GUITable::getSelected() const
549 {
550         if (m_selected < 0)
551                 return 0;
552
553         assert(m_selected >= 0 && m_selected < (s32) m_visible_rows.size());
554         return m_visible_rows[m_selected] + 1;
555 }
556
557 void GUITable::setSelected(s32 index)
558 {
559         s32 old_selected = m_selected;
560
561         m_selected = -1;
562         m_sel_column = 0;
563         m_sel_doubleclick = false;
564
565         --index; // Switch from 1-based indexing to 0-based indexing
566
567         s32 rowcount = m_rows.size();
568         if (rowcount == 0 || index < 0) {
569                 return;
570         } else if (index >= rowcount) {
571                 index = rowcount - 1;
572         }
573
574         // If the selected row is not visible, open its ancestors to make it visible
575         bool selection_invisible = m_rows[index].visible_index < 0;
576         if (selection_invisible) {
577                 std::set<s32> opened_trees;
578                 getOpenedTrees(opened_trees);
579                 s32 indent = m_rows[index].indent;
580                 for (s32 j = index - 1; j >= 0; --j) {
581                         if (m_rows[j].indent < indent) {
582                                 opened_trees.insert(j);
583                                 indent = m_rows[j].indent;
584                         }
585                 }
586                 setOpenedTrees(opened_trees);
587         }
588
589         if (index >= 0) {
590                 m_selected = m_rows[index].visible_index;
591                 assert(m_selected >= 0 && m_selected < (s32) m_visible_rows.size());
592         }
593
594         if (m_selected != old_selected || selection_invisible) {
595                 autoScroll();
596         }
597 }
598
599 GUITable::DynamicData GUITable::getDynamicData() const
600 {
601         DynamicData dyndata;
602         dyndata.selected = getSelected();
603         dyndata.scrollpos = m_scrollbar->getPos();
604         dyndata.keynav_time = m_keynav_time;
605         dyndata.keynav_buffer = m_keynav_buffer;
606         if (m_has_tree_column)
607                 getOpenedTrees(dyndata.opened_trees);
608         return dyndata;
609 }
610
611 void GUITable::setDynamicData(const DynamicData &dyndata)
612 {
613         if (m_has_tree_column)
614                 setOpenedTrees(dyndata.opened_trees);
615
616         m_keynav_time = dyndata.keynav_time;
617         m_keynav_buffer = dyndata.keynav_buffer;
618
619         setSelected(dyndata.selected);
620         m_sel_column = 0;
621         m_sel_doubleclick = false;
622
623         m_scrollbar->setPos(dyndata.scrollpos);
624 }
625
626 const c8* GUITable::getTypeName() const
627 {
628         return "GUITable";
629 }
630
631 void GUITable::updateAbsolutePosition()
632 {
633         IGUIElement::updateAbsolutePosition();
634         updateScrollBar();
635 }
636
637 void GUITable::draw()
638 {
639         if (!IsVisible)
640                 return;
641
642         gui::IGUISkin *skin = Environment->getSkin();
643
644         // draw background
645
646         bool draw_background = m_background.getAlpha() > 0;
647         if (m_border)
648                 skin->draw3DSunkenPane(this, m_background,
649                                 true, draw_background,
650                                 AbsoluteRect, &AbsoluteClippingRect);
651         else if (draw_background)
652                 skin->draw2DRectangle(this, m_background,
653                                 AbsoluteRect, &AbsoluteClippingRect);
654
655         // get clipping rect
656
657         core::rect<s32> client_clip(AbsoluteRect);
658         client_clip.UpperLeftCorner.Y += 1;
659         client_clip.UpperLeftCorner.X += 1;
660         client_clip.LowerRightCorner.Y -= 1;
661         client_clip.LowerRightCorner.X -= 1;
662         if (m_scrollbar->isVisible()) {
663                 client_clip.LowerRightCorner.X =
664                                 m_scrollbar->getAbsolutePosition().UpperLeftCorner.X;
665         }
666         client_clip.clipAgainst(AbsoluteClippingRect);
667
668         // draw visible rows
669
670         s32 scrollpos = m_scrollbar->getPos();
671         s32 row_min = scrollpos / m_rowheight;
672         s32 row_max = (scrollpos + AbsoluteRect.getHeight() - 1)
673                         / m_rowheight + 1;
674         row_max = MYMIN(row_max, (s32) m_visible_rows.size());
675
676         core::rect<s32> row_rect(AbsoluteRect);
677         if (m_scrollbar->isVisible())
678                 row_rect.LowerRightCorner.X -=
679                         skin->getSize(gui::EGDS_SCROLLBAR_SIZE);
680         row_rect.UpperLeftCorner.Y += row_min * m_rowheight - scrollpos;
681         row_rect.LowerRightCorner.Y = row_rect.UpperLeftCorner.Y + m_rowheight;
682
683         for (s32 i = row_min; i < row_max; ++i) {
684                 Row *row = &m_rows[m_visible_rows[i]];
685                 bool is_sel = i == m_selected;
686                 video::SColor color = m_color;
687
688                 if (is_sel) {
689                         skin->draw2DRectangle(this, m_highlight, row_rect, &client_clip);
690                         color = m_highlight_text;
691                 }
692
693                 for (s32 j = 0; j < row->cellcount; ++j)
694                         drawCell(&row->cells[j], color, row_rect, client_clip);
695
696                 row_rect.UpperLeftCorner.Y += m_rowheight;
697                 row_rect.LowerRightCorner.Y += m_rowheight;
698         }
699
700         // Draw children
701         IGUIElement::draw();
702 }
703
704 void GUITable::drawCell(const Cell *cell, video::SColor color,
705                 const core::rect<s32> &row_rect,
706                 const core::rect<s32> &client_clip)
707 {
708         if ((cell->content_type == COLUMN_TYPE_TEXT)
709                         || (cell->content_type == COLUMN_TYPE_TREE)) {
710
711                 core::rect<s32> text_rect = row_rect;
712                 text_rect.UpperLeftCorner.X = row_rect.UpperLeftCorner.X
713                                 + cell->xpos;
714                 text_rect.LowerRightCorner.X = row_rect.UpperLeftCorner.X
715                                 + cell->xmax;
716
717                 if (cell->color_defined)
718                         color = cell->color;
719
720                 if (m_font) {
721                         if (cell->content_type == COLUMN_TYPE_TEXT)
722                                 m_font->draw(m_strings[cell->content_index],
723                                                 text_rect, color,
724                                                 false, true, &client_clip);
725                         else // tree
726                                 m_font->draw(cell->content_index ? L"+" : L"-",
727                                                 text_rect, color,
728                                                 false, true, &client_clip);
729                 }
730         }
731         else if (cell->content_type == COLUMN_TYPE_IMAGE) {
732
733                 if (cell->content_index < 0)
734                         return;
735
736                 video::IVideoDriver *driver = Environment->getVideoDriver();
737                 video::ITexture *image = m_images[cell->content_index];
738
739                 if (image) {
740                         core::position2d<s32> dest_pos =
741                                         row_rect.UpperLeftCorner;
742                         dest_pos.X += cell->xpos;
743                         core::rect<s32> source_rect(
744                                         core::position2d<s32>(0, 0),
745                                         image->getOriginalSize());
746                         s32 imgh = source_rect.LowerRightCorner.Y;
747                         s32 rowh = row_rect.getHeight();
748                         if (imgh < rowh)
749                                 dest_pos.Y += (rowh - imgh) / 2;
750                         else
751                                 source_rect.LowerRightCorner.Y = rowh;
752
753                         video::SColor color(255, 255, 255, 255);
754
755                         driver->draw2DImage(image, dest_pos, source_rect,
756                                         &client_clip, color, true);
757                 }
758         }
759 }
760
761 bool GUITable::OnEvent(const SEvent &event)
762 {
763         if (!isEnabled())
764                 return IGUIElement::OnEvent(event);
765
766         if (event.EventType == EET_KEY_INPUT_EVENT) {
767                 if (event.KeyInput.PressedDown && (
768                                 event.KeyInput.Key == KEY_DOWN ||
769                                 event.KeyInput.Key == KEY_UP   ||
770                                 event.KeyInput.Key == KEY_HOME ||
771                                 event.KeyInput.Key == KEY_END  ||
772                                 event.KeyInput.Key == KEY_NEXT ||
773                                 event.KeyInput.Key == KEY_PRIOR)) {
774                         s32 offset = 0;
775                         switch (event.KeyInput.Key) {
776                                 case KEY_DOWN:
777                                         offset = 1;
778                                         break;
779                                 case KEY_UP:
780                                         offset = -1;
781                                         break;
782                                 case KEY_HOME:
783                                         offset = - (s32) m_visible_rows.size();
784                                         break;
785                                 case KEY_END:
786                                         offset = m_visible_rows.size();
787                                         break;
788                                 case KEY_NEXT:
789                                         offset = AbsoluteRect.getHeight() / m_rowheight;
790                                         break;
791                                 case KEY_PRIOR:
792                                         offset = - (s32) (AbsoluteRect.getHeight() / m_rowheight);
793                                         break;
794                                 default:
795                                         break;
796                         }
797                         s32 old_selected = m_selected;
798                         s32 rowcount = m_visible_rows.size();
799                         if (rowcount != 0) {
800                                 m_selected = rangelim(m_selected + offset, 0, rowcount-1);
801                                 autoScroll();
802                         }
803
804                         if (m_selected != old_selected)
805                                 sendTableEvent(0, false);
806
807                         return true;
808                 }
809                 else if (event.KeyInput.PressedDown && (
810                                 event.KeyInput.Key == KEY_LEFT ||
811                                 event.KeyInput.Key == KEY_RIGHT)) {
812                         // Open/close subtree via keyboard
813                         if (m_selected >= 0) {
814                                 int dir = event.KeyInput.Key == KEY_LEFT ? -1 : 1;
815                                 toggleVisibleTree(m_selected, dir, true);
816                         }
817                         return true;
818                 }
819                 else if (!event.KeyInput.PressedDown && (
820                                 event.KeyInput.Key == KEY_RETURN ||
821                                 event.KeyInput.Key == KEY_SPACE)) {
822                         sendTableEvent(0, true);
823                         return true;
824                 }
825                 else if (event.KeyInput.Key == KEY_ESCAPE ||
826                                 event.KeyInput.Key == KEY_SPACE) {
827                         // pass to parent
828                 }
829                 else if (event.KeyInput.PressedDown && event.KeyInput.Char) {
830                         // change selection based on text as it is typed
831                         u64 now = porting::getTimeMs();
832                         if (now - m_keynav_time >= 500)
833                                 m_keynav_buffer = L"";
834                         m_keynav_time = now;
835
836                         // add to key buffer if not a key repeat
837                         if (!(m_keynav_buffer.size() == 1 &&
838                                         m_keynav_buffer[0] == event.KeyInput.Char)) {
839                                 m_keynav_buffer.append(event.KeyInput.Char);
840                         }
841
842                         // find the selected item, starting at the current selection
843                         // don't change selection if the key buffer matches the current item
844                         s32 old_selected = m_selected;
845                         s32 start = MYMAX(m_selected, 0);
846                         s32 rowcount = m_visible_rows.size();
847                         for (s32 k = 1; k < rowcount; ++k) {
848                                 s32 current = start + k;
849                                 if (current >= rowcount)
850                                         current -= rowcount;
851                                 if (doesRowStartWith(getRow(current), m_keynav_buffer)) {
852                                         m_selected = current;
853                                         break;
854                                 }
855                         }
856                         autoScroll();
857                         if (m_selected != old_selected)
858                                 sendTableEvent(0, false);
859
860                         return true;
861                 }
862         }
863         if (event.EventType == EET_MOUSE_INPUT_EVENT) {
864                 core::position2d<s32> p(event.MouseInput.X, event.MouseInput.Y);
865
866                 if (event.MouseInput.Event == EMIE_MOUSE_WHEEL) {
867                         m_scrollbar->setPos(m_scrollbar->getPos() +
868                                         (event.MouseInput.Wheel < 0 ? -3 : 3) *
869                                         - (s32) m_rowheight / 2);
870                         return true;
871                 }
872
873                 // Find hovered row and cell
874                 bool really_hovering = false;
875                 s32 row_i = getRowAt(p.Y, really_hovering);
876                 const Cell *cell = NULL;
877                 if (really_hovering) {
878                         s32 cell_j = getCellAt(p.X, row_i);
879                         if (cell_j >= 0)
880                                 cell = &(getRow(row_i)->cells[cell_j]);
881                 }
882
883                 // Update tooltip
884                 setToolTipText(cell ? m_strings[cell->tooltip_index].c_str() : L"");
885
886                 // Fix for #1567/#1806:
887                 // IGUIScrollBar passes double click events to its parent,
888                 // which we don't want. Detect this case and discard the event
889                 if (event.MouseInput.Event != EMIE_MOUSE_MOVED &&
890                                 m_scrollbar->isVisible() &&
891                                 m_scrollbar->isPointInside(p))
892                         return true;
893
894                 if (event.MouseInput.isLeftPressed() &&
895                                 (isPointInside(p) ||
896                                  event.MouseInput.Event == EMIE_MOUSE_MOVED)) {
897                         s32 sel_column = 0;
898                         bool sel_doubleclick = (event.MouseInput.Event
899                                         == EMIE_LMOUSE_DOUBLE_CLICK);
900                         bool plusminus_clicked = false;
901
902                         // For certain events (left click), report column
903                         // Also open/close subtrees when the +/- is clicked
904                         if (cell && (
905                                         event.MouseInput.Event == EMIE_LMOUSE_PRESSED_DOWN ||
906                                         event.MouseInput.Event == EMIE_LMOUSE_DOUBLE_CLICK ||
907                                         event.MouseInput.Event == EMIE_LMOUSE_TRIPLE_CLICK)) {
908                                 sel_column = cell->reported_column;
909                                 if (cell->content_type == COLUMN_TYPE_TREE)
910                                         plusminus_clicked = true;
911                         }
912
913                         if (plusminus_clicked) {
914                                 if (event.MouseInput.Event == EMIE_LMOUSE_PRESSED_DOWN) {
915                                         toggleVisibleTree(row_i, 0, false);
916                                 }
917                         }
918                         else {
919                                 // Normal selection
920                                 s32 old_selected = m_selected;
921                                 m_selected = row_i;
922                                 autoScroll();
923
924                                 if (m_selected != old_selected ||
925                                                 sel_column >= 1 ||
926                                                 sel_doubleclick) {
927                                         sendTableEvent(sel_column, sel_doubleclick);
928                                 }
929
930                                 // Treeview: double click opens/closes trees
931                                 if (m_has_tree_column && sel_doubleclick) {
932                                         toggleVisibleTree(m_selected, 0, false);
933                                 }
934                         }
935                 }
936                 return true;
937         }
938         if (event.EventType == EET_GUI_EVENT &&
939                         event.GUIEvent.EventType == gui::EGET_SCROLL_BAR_CHANGED &&
940                         event.GUIEvent.Caller == m_scrollbar) {
941                 // Don't pass events from our scrollbar to the parent
942                 return true;
943         }
944
945         return IGUIElement::OnEvent(event);
946 }
947
948 /******************************************************************************/
949 /* GUITable helper functions                                                  */
950 /******************************************************************************/
951
952 s32 GUITable::allocString(const std::string &text)
953 {
954         std::map<std::string, s32>::iterator it = m_alloc_strings.find(text);
955         if (it == m_alloc_strings.end()) {
956                 s32 id = m_strings.size();
957                 std::wstring wtext = utf8_to_wide(text);
958                 m_strings.push_back(core::stringw(wtext.c_str()));
959                 m_alloc_strings.insert(std::make_pair(text, id));
960                 return id;
961         }
962         else {
963                 return it->second;
964         }
965 }
966
967 s32 GUITable::allocImage(const std::string &imagename)
968 {
969         std::map<std::string, s32>::iterator it = m_alloc_images.find(imagename);
970         if (it == m_alloc_images.end()) {
971                 s32 id = m_images.size();
972                 m_images.push_back(m_tsrc->getTexture(imagename));
973                 m_alloc_images.insert(std::make_pair(imagename, id));
974                 return id;
975         }
976         else {
977                 return it->second;
978         }
979 }
980
981 void GUITable::allocationComplete()
982 {
983         // Called when done with creating rows and cells from table data,
984         // i.e. when allocString and allocImage won't be called anymore
985         m_alloc_strings.clear();
986         m_alloc_images.clear();
987 }
988
989 const GUITable::Row* GUITable::getRow(s32 i) const
990 {
991         if (i >= 0 && i < (s32) m_visible_rows.size())
992                 return &m_rows[m_visible_rows[i]];
993         else
994                 return NULL;
995 }
996
997 bool GUITable::doesRowStartWith(const Row *row, const core::stringw &str) const
998 {
999         if (row == NULL)
1000                 return false;
1001
1002         for (s32 j = 0; j < row->cellcount; ++j) {
1003                 Cell *cell = &row->cells[j];
1004                 if (cell->content_type == COLUMN_TYPE_TEXT) {
1005                         const core::stringw &cellstr = m_strings[cell->content_index];
1006                         if (cellstr.size() >= str.size() &&
1007                                         str.equals_ignore_case(cellstr.subString(0, str.size())))
1008                                 return true;
1009                 }
1010         }
1011         return false;
1012 }
1013
1014 s32 GUITable::getRowAt(s32 y, bool &really_hovering) const
1015 {
1016         really_hovering = false;
1017
1018         s32 rowcount = m_visible_rows.size();
1019         if (rowcount == 0)
1020                 return -1;
1021
1022         // Use arithmetic to find row
1023         s32 rel_y = y - AbsoluteRect.UpperLeftCorner.Y - 1;
1024         s32 i = (rel_y + m_scrollbar->getPos()) / m_rowheight;
1025
1026         if (i >= 0 && i < rowcount) {
1027                 really_hovering = true;
1028                 return i;
1029         }
1030         else if (i < 0)
1031                 return 0;
1032         else
1033                 return rowcount - 1;
1034
1035 }
1036
1037 s32 GUITable::getCellAt(s32 x, s32 row_i) const
1038 {
1039         const Row *row = getRow(row_i);
1040         if (row == NULL)
1041                 return -1;
1042
1043         // Use binary search to find cell in row
1044         s32 rel_x = x - AbsoluteRect.UpperLeftCorner.X - 1;
1045         s32 jmin = 0;
1046         s32 jmax = row->cellcount - 1;
1047         while (jmin < jmax) {
1048                 s32 pivot = jmin + (jmax - jmin) / 2;
1049                 assert(pivot >= 0 && pivot < row->cellcount);
1050                 const Cell *cell = &row->cells[pivot];
1051
1052                 if (rel_x >= cell->xmin && rel_x <= cell->xmax)
1053                         return pivot;
1054                 else if (rel_x < cell->xmin)
1055                         jmax = pivot - 1;
1056                 else
1057                         jmin = pivot + 1;
1058         }
1059
1060         if (jmin >= 0 && jmin < row->cellcount &&
1061                         rel_x >= row->cells[jmin].xmin &&
1062                         rel_x <= row->cells[jmin].xmax)
1063                 return jmin;
1064         else
1065                 return -1;
1066 }
1067
1068 void GUITable::autoScroll()
1069 {
1070         if (m_selected >= 0) {
1071                 s32 pos = m_scrollbar->getPos();
1072                 s32 maxpos = m_selected * m_rowheight;
1073                 s32 minpos = maxpos - (AbsoluteRect.getHeight() - m_rowheight);
1074                 if (pos > maxpos)
1075                         m_scrollbar->setPos(maxpos);
1076                 else if (pos < minpos)
1077                         m_scrollbar->setPos(minpos);
1078         }
1079 }
1080
1081 void GUITable::updateScrollBar()
1082 {
1083         s32 totalheight = m_rowheight * m_visible_rows.size();
1084         s32 scrollmax = MYMAX(0, totalheight - AbsoluteRect.getHeight());
1085         m_scrollbar->setVisible(scrollmax > 0);
1086         m_scrollbar->setMax(scrollmax);
1087         m_scrollbar->setSmallStep(m_rowheight);
1088         m_scrollbar->setLargeStep(2 * m_rowheight);
1089 }
1090
1091 void GUITable::sendTableEvent(s32 column, bool doubleclick)
1092 {
1093         m_sel_column = column;
1094         m_sel_doubleclick = doubleclick;
1095         if (Parent) {
1096                 SEvent e;
1097                 memset(&e, 0, sizeof e);
1098                 e.EventType = EET_GUI_EVENT;
1099                 e.GUIEvent.Caller = this;
1100                 e.GUIEvent.Element = 0;
1101                 e.GUIEvent.EventType = gui::EGET_TABLE_CHANGED;
1102                 Parent->OnEvent(e);
1103         }
1104 }
1105
1106 void GUITable::getOpenedTrees(std::set<s32> &opened_trees) const
1107 {
1108         opened_trees.clear();
1109         s32 rowcount = m_rows.size();
1110         for (s32 i = 0; i < rowcount - 1; ++i) {
1111                 if (m_rows[i].indent < m_rows[i+1].indent &&
1112                                 m_rows[i+1].visible_index != -2)
1113                         opened_trees.insert(i);
1114         }
1115 }
1116
1117 void GUITable::setOpenedTrees(const std::set<s32> &opened_trees)
1118 {
1119         s32 old_selected = -1;
1120         if (m_selected >= 0)
1121                 old_selected = m_visible_rows[m_selected];
1122
1123         std::vector<s32> parents;
1124         std::vector<s32> closed_parents;
1125
1126         m_visible_rows.clear();
1127
1128         for (size_t i = 0; i < m_rows.size(); ++i) {
1129                 Row *row = &m_rows[i];
1130
1131                 // Update list of ancestors
1132                 while (!parents.empty() && m_rows[parents.back()].indent >= row->indent)
1133                         parents.pop_back();
1134                 while (!closed_parents.empty() &&
1135                                 m_rows[closed_parents.back()].indent >= row->indent)
1136                         closed_parents.pop_back();
1137
1138                 assert(closed_parents.size() <= parents.size());
1139
1140                 if (closed_parents.empty()) {
1141                         // Visible row
1142                         row->visible_index = m_visible_rows.size();
1143                         m_visible_rows.push_back(i);
1144                 }
1145                 else if (parents.back() == closed_parents.back()) {
1146                         // Invisible row, direct parent is closed
1147                         row->visible_index = -2;
1148                 }
1149                 else {
1150                         // Invisible row, direct parent is open, some ancestor is closed
1151                         row->visible_index = -1;
1152                 }
1153
1154                 // If not a leaf, add to parents list
1155                 if (i < m_rows.size()-1 && row->indent < m_rows[i+1].indent) {
1156                         parents.push_back(i);
1157
1158                         s32 content_index = 0; // "-", open
1159                         if (opened_trees.count(i) == 0) {
1160                                 closed_parents.push_back(i);
1161                                 content_index = 1; // "+", closed
1162                         }
1163
1164                         // Update all cells of type "tree"
1165                         for (s32 j = 0; j < row->cellcount; ++j)
1166                                 if (row->cells[j].content_type == COLUMN_TYPE_TREE)
1167                                         row->cells[j].content_index = content_index;
1168                 }
1169         }
1170
1171         updateScrollBar();
1172
1173         // m_selected must be updated since it is a visible row index
1174         if (old_selected >= 0)
1175                 m_selected = m_rows[old_selected].visible_index;
1176 }
1177
1178 void GUITable::openTree(s32 to_open)
1179 {
1180         std::set<s32> opened_trees;
1181         getOpenedTrees(opened_trees);
1182         opened_trees.insert(to_open);
1183         setOpenedTrees(opened_trees);
1184 }
1185
1186 void GUITable::closeTree(s32 to_close)
1187 {
1188         std::set<s32> opened_trees;
1189         getOpenedTrees(opened_trees);
1190         opened_trees.erase(to_close);
1191         setOpenedTrees(opened_trees);
1192 }
1193
1194 // The following function takes a visible row index (hidden rows skipped)
1195 // dir: -1 = left (close), 0 = auto (toggle), 1 = right (open)
1196 void GUITable::toggleVisibleTree(s32 row_i, int dir, bool move_selection)
1197 {
1198         // Check if the chosen tree is currently open
1199         const Row *row = getRow(row_i);
1200         if (row == NULL)
1201                 return;
1202
1203         bool was_open = false;
1204         for (s32 j = 0; j < row->cellcount; ++j) {
1205                 if (row->cells[j].content_type == COLUMN_TYPE_TREE) {
1206                         was_open = row->cells[j].content_index == 0;
1207                         break;
1208                 }
1209         }
1210
1211         // Check if the chosen tree should be opened
1212         bool do_open = !was_open;
1213         if (dir < 0)
1214                 do_open = false;
1215         else if (dir > 0)
1216                 do_open = true;
1217
1218         // Close or open the tree; the heavy lifting is done by setOpenedTrees
1219         if (was_open && !do_open)
1220                 closeTree(m_visible_rows[row_i]);
1221         else if (!was_open && do_open)
1222                 openTree(m_visible_rows[row_i]);
1223
1224         // Change selected row if requested by caller,
1225         // this is useful for keyboard navigation
1226         if (move_selection) {
1227                 s32 sel = row_i;
1228                 if (was_open && do_open) {
1229                         // Move selection to first child
1230                         const Row *maybe_child = getRow(sel + 1);
1231                         if (maybe_child && maybe_child->indent > row->indent)
1232                                 sel++;
1233                 }
1234                 else if (!was_open && !do_open) {
1235                         // Move selection to parent
1236                         assert(getRow(sel) != NULL);
1237                         while (sel > 0 && getRow(sel - 1)->indent >= row->indent)
1238                                 sel--;
1239                         sel--;
1240                         if (sel < 0)  // was root already selected?
1241                                 sel = row_i;
1242                 }
1243                 if (sel != m_selected) {
1244                         m_selected = sel;
1245                         autoScroll();
1246                         sendTableEvent(0, false);
1247                 }
1248         }
1249 }
1250
1251 void GUITable::alignContent(Cell *cell, s32 xmax, s32 content_width, s32 align)
1252 {
1253         // requires that cell.xmin, cell.xmax are properly set
1254         // align = 0: left aligned, 1: centered, 2: right aligned, 3: inline
1255         if (align == 0) {
1256                 cell->xpos = cell->xmin;
1257                 cell->xmax = xmax;
1258         }
1259         else if (align == 1) {
1260                 cell->xpos = (cell->xmin + xmax - content_width) / 2;
1261                 cell->xmax = xmax;
1262         }
1263         else if (align == 2) {
1264                 cell->xpos = xmax - content_width;
1265                 cell->xmax = xmax;
1266         }
1267         else {
1268                 // inline alignment: the cells of the column don't have an aligned
1269                 // right border, the right border of each cell depends on the content
1270                 cell->xpos = cell->xmin;
1271                 cell->xmax = cell->xmin + content_width;
1272         }
1273 }