]> git.lizzy.rs Git - minetest.git/blob - src/guiTable.cpp
Fixes #1687 by extra semaphore retval handle code for OSX
[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 "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 "main.h"
37 #include "settings.h" // for settings
38 #include "porting.h" // for dpi
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         m_selected = -1;
560         m_sel_column = 0;
561         m_sel_doubleclick = false;
562
563         --index;
564
565         s32 rowcount = m_rows.size();
566
567         if (index >= rowcount)
568                 index = rowcount - 1;
569         while (index >= 0 && m_rows[index].visible_index < 0)
570                 --index;
571         if (index >= 0) {
572                 m_selected = m_rows[index].visible_index;
573                 assert(m_selected >= 0 && m_selected < (s32) m_visible_rows.size());
574         }
575
576         autoScroll();
577 }
578
579 GUITable::DynamicData GUITable::getDynamicData() const
580 {
581         DynamicData dyndata;
582         dyndata.selected = getSelected();
583         dyndata.scrollpos = m_scrollbar->getPos();
584         dyndata.keynav_time = m_keynav_time;
585         dyndata.keynav_buffer = m_keynav_buffer;
586         if (m_has_tree_column)
587                 getOpenedTrees(dyndata.opened_trees);
588         return dyndata;
589 }
590
591 void GUITable::setDynamicData(const DynamicData &dyndata)
592 {
593         if (m_has_tree_column)
594                 setOpenedTrees(dyndata.opened_trees);
595
596         m_keynav_time = dyndata.keynav_time;
597         m_keynav_buffer = dyndata.keynav_buffer;
598
599         m_scrollbar->setPos(dyndata.scrollpos);
600
601         setSelected(dyndata.selected);
602         m_sel_column = 0;
603         m_sel_doubleclick = false;
604 }
605
606 const c8* GUITable::getTypeName() const
607 {
608         return "GUITable";
609 }
610
611 void GUITable::updateAbsolutePosition()
612 {
613         IGUIElement::updateAbsolutePosition();
614         updateScrollBar();
615 }
616
617 void GUITable::draw()
618 {
619         if (!IsVisible)
620                 return;
621
622         gui::IGUISkin *skin = Environment->getSkin();
623
624         // draw background
625
626         bool draw_background = m_background.getAlpha() > 0;
627         if (m_border)
628                 skin->draw3DSunkenPane(this, m_background,
629                                 true, draw_background,
630                                 AbsoluteRect, &AbsoluteClippingRect);
631         else if (draw_background)
632                 skin->draw2DRectangle(this, m_background,
633                                 AbsoluteRect, &AbsoluteClippingRect);
634
635         // get clipping rect
636
637         core::rect<s32> client_clip(AbsoluteRect);
638         client_clip.UpperLeftCorner.Y += 1;
639         client_clip.UpperLeftCorner.X += 1;
640         client_clip.LowerRightCorner.Y -= 1;
641         client_clip.LowerRightCorner.X -=
642                 m_scrollbar->isVisible() ?
643                 skin->getSize(gui::EGDS_SCROLLBAR_SIZE) :
644                 1;
645         client_clip.clipAgainst(AbsoluteClippingRect);
646
647         // draw visible rows
648
649         s32 scrollpos = m_scrollbar->getPos();
650         s32 row_min = scrollpos / m_rowheight;
651         s32 row_max = (scrollpos + AbsoluteRect.getHeight() - 1)
652                         / m_rowheight + 1;
653         row_max = MYMIN(row_max, (s32) m_visible_rows.size());
654
655         core::rect<s32> row_rect(AbsoluteRect);
656         if (m_scrollbar->isVisible())
657                 row_rect.LowerRightCorner.X -=
658                         skin->getSize(gui::EGDS_SCROLLBAR_SIZE);
659         row_rect.UpperLeftCorner.Y += row_min * m_rowheight - scrollpos;
660         row_rect.LowerRightCorner.Y = row_rect.UpperLeftCorner.Y + m_rowheight;
661
662         for (s32 i = row_min; i < row_max; ++i) {
663                 Row *row = &m_rows[m_visible_rows[i]];
664                 bool is_sel = i == m_selected;
665                 video::SColor color = m_color;
666
667                 if (is_sel) {
668                         skin->draw2DRectangle(this, m_highlight, row_rect, &client_clip);
669                         color = m_highlight_text;
670                 }
671
672                 for (s32 j = 0; j < row->cellcount; ++j)
673                         drawCell(&row->cells[j], color, row_rect, client_clip);
674
675                 row_rect.UpperLeftCorner.Y += m_rowheight;
676                 row_rect.LowerRightCorner.Y += m_rowheight;
677         }
678
679         // Draw children
680         IGUIElement::draw();
681 }
682
683 void GUITable::drawCell(const Cell *cell, video::SColor color,
684                 const core::rect<s32> &row_rect,
685                 const core::rect<s32> &client_clip)
686 {
687         if ((cell->content_type == COLUMN_TYPE_TEXT)
688                         || (cell->content_type == COLUMN_TYPE_TREE)) {
689
690                 core::rect<s32> text_rect = row_rect;
691                 text_rect.UpperLeftCorner.X = row_rect.UpperLeftCorner.X
692                                 + cell->xpos;
693                 text_rect.LowerRightCorner.X = row_rect.UpperLeftCorner.X
694                                 + cell->xmax;
695
696                 if (cell->color_defined)
697                         color = cell->color;
698
699                 if (m_font) {
700                         if (cell->content_type == COLUMN_TYPE_TEXT)
701                                 m_font->draw(m_strings[cell->content_index],
702                                                 text_rect, color,
703                                                 false, true, &client_clip);
704                         else // tree
705                                 m_font->draw(cell->content_index ? L"+" : L"-",
706                                                 text_rect, color,
707                                                 false, true, &client_clip);
708                 }
709         }
710         else if (cell->content_type == COLUMN_TYPE_IMAGE) {
711
712                 if (cell->content_index < 0)
713                         return;
714
715                 video::IVideoDriver *driver = Environment->getVideoDriver();
716                 video::ITexture *image = m_images[cell->content_index];
717
718                 if (image) {
719                         core::position2d<s32> dest_pos =
720                                         row_rect.UpperLeftCorner;
721                         dest_pos.X += cell->xpos;
722                         core::rect<s32> source_rect(
723                                         core::position2d<s32>(0, 0),
724                                         image->getOriginalSize());
725                         s32 imgh = source_rect.LowerRightCorner.Y;
726                         s32 rowh = row_rect.getHeight();
727                         if (imgh < rowh)
728                                 dest_pos.Y += (rowh - imgh) / 2;
729                         else
730                                 source_rect.LowerRightCorner.Y = rowh;
731
732                         video::SColor color(255, 255, 255, 255);
733
734                         driver->draw2DImage(image, dest_pos, source_rect,
735                                         &client_clip, color, true);
736                 }
737         }
738 }
739
740 bool GUITable::OnEvent(const SEvent &event)
741 {
742         if (!isEnabled())
743                 return IGUIElement::OnEvent(event);
744
745         if (event.EventType == EET_KEY_INPUT_EVENT) {
746                 if (event.KeyInput.PressedDown && (
747                                 event.KeyInput.Key == KEY_DOWN ||
748                                 event.KeyInput.Key == KEY_UP   ||
749                                 event.KeyInput.Key == KEY_HOME ||
750                                 event.KeyInput.Key == KEY_END  ||
751                                 event.KeyInput.Key == KEY_NEXT ||
752                                 event.KeyInput.Key == KEY_PRIOR)) {
753                         s32 offset = 0;
754                         switch (event.KeyInput.Key) {
755                                 case KEY_DOWN:
756                                         offset = 1;
757                                         break;
758                                 case KEY_UP:
759                                         offset = -1;
760                                         break;
761                                 case KEY_HOME:
762                                         offset = - (s32) m_visible_rows.size();
763                                         break;
764                                 case KEY_END:
765                                         offset = m_visible_rows.size();
766                                         break;
767                                 case KEY_NEXT:
768                                         offset = AbsoluteRect.getHeight() / m_rowheight;
769                                         break;
770                                 case KEY_PRIOR:
771                                         offset = - (s32) (AbsoluteRect.getHeight() / m_rowheight);
772                                         break;
773                                 default:
774                                         break;
775                         }
776                         s32 old_selected = m_selected;
777                         s32 rowcount = m_visible_rows.size();
778                         if (rowcount != 0) {
779                                 m_selected = rangelim(m_selected + offset, 0, rowcount-1);
780                                 autoScroll();
781                         }
782
783                         if (m_selected != old_selected)
784                                 sendTableEvent(0, false);
785
786                         return true;
787                 }
788                 else if (event.KeyInput.PressedDown && (
789                                 event.KeyInput.Key == KEY_LEFT ||
790                                 event.KeyInput.Key == KEY_RIGHT)) {
791                         // Open/close subtree via keyboard
792                         if (m_selected >= 0) {
793                                 int dir = event.KeyInput.Key == KEY_LEFT ? -1 : 1;
794                                 toggleVisibleTree(m_selected, dir, true);
795                         }
796                         return true;
797                 }
798                 else if (!event.KeyInput.PressedDown && (
799                                 event.KeyInput.Key == KEY_RETURN ||
800                                 event.KeyInput.Key == KEY_SPACE)) {
801                         sendTableEvent(0, true);
802                         return true;
803                 }
804                 else if (event.KeyInput.Key == KEY_ESCAPE ||
805                                 event.KeyInput.Key == KEY_SPACE) {
806                         // pass to parent
807                 }
808                 else if (event.KeyInput.PressedDown && event.KeyInput.Char) {
809                         // change selection based on text as it is typed
810                         s32 now = getTimeMs();
811                         if (now - m_keynav_time >= 500)
812                                 m_keynav_buffer = L"";
813                         m_keynav_time = now;
814
815                         // add to key buffer if not a key repeat
816                         if (!(m_keynav_buffer.size() == 1 &&
817                                         m_keynav_buffer[0] == event.KeyInput.Char)) {
818                                 m_keynav_buffer.append(event.KeyInput.Char);
819                         }
820
821                         // find the selected item, starting at the current selection
822                         // don't change selection if the key buffer matches the current item
823                         s32 old_selected = m_selected;
824                         s32 start = MYMAX(m_selected, 0);
825                         s32 rowcount = m_visible_rows.size();
826                         for (s32 k = 1; k < rowcount; ++k) {
827                                 s32 current = start + k;
828                                 if (current >= rowcount)
829                                         current -= rowcount;
830                                 if (doesRowStartWith(getRow(current), m_keynav_buffer)) {
831                                         m_selected = current;
832                                         break;
833                                 }
834                         }
835                         autoScroll();
836                         if (m_selected != old_selected)
837                                 sendTableEvent(0, false);
838
839                         return true;
840                 }
841         }
842         if (event.EventType == EET_MOUSE_INPUT_EVENT) {
843                 core::position2d<s32> p(event.MouseInput.X, event.MouseInput.Y);
844
845                 if (event.MouseInput.Event == EMIE_MOUSE_WHEEL) {
846                         m_scrollbar->setPos(m_scrollbar->getPos() +
847                                         (event.MouseInput.Wheel < 0 ? -3 : 3) *
848                                         - (s32) m_rowheight / 2);
849                         return true;
850                 }
851
852                 // Find hovered row and cell
853                 bool really_hovering = false;
854                 s32 row_i = getRowAt(p.Y, really_hovering);
855                 const Cell *cell = NULL;
856                 if (really_hovering) {
857                         s32 cell_j = getCellAt(p.X, row_i);
858                         if (cell_j >= 0)
859                                 cell = &(getRow(row_i)->cells[cell_j]);
860                 }
861
862                 // Update tooltip
863                 setToolTipText(cell ? m_strings[cell->tooltip_index].c_str() : L"");
864
865                 // Fix for #1567/#1806:
866                 // IGUIScrollBar passes double click events to its parent,
867                 // which we don't want. Detect this case and discard the event
868                 if (event.MouseInput.Event != EMIE_MOUSE_MOVED &&
869                                 m_scrollbar->isVisible() &&
870                                 m_scrollbar->isPointInside(p))
871                         return true;
872
873                 if (event.MouseInput.isLeftPressed() &&
874                                 (isPointInside(p) ||
875                                  event.MouseInput.Event == EMIE_MOUSE_MOVED)) {
876                         s32 sel_column = 0;
877                         bool sel_doubleclick = (event.MouseInput.Event
878                                         == EMIE_LMOUSE_DOUBLE_CLICK);
879                         bool plusminus_clicked = false;
880
881                         // For certain events (left click), report column
882                         // Also open/close subtrees when the +/- is clicked
883                         if (cell && (
884                                         event.MouseInput.Event == EMIE_LMOUSE_PRESSED_DOWN ||
885                                         event.MouseInput.Event == EMIE_LMOUSE_DOUBLE_CLICK ||
886                                         event.MouseInput.Event == EMIE_LMOUSE_TRIPLE_CLICK)) {
887                                 sel_column = cell->reported_column;
888                                 if (cell->content_type == COLUMN_TYPE_TREE)
889                                         plusminus_clicked = true;
890                         }
891
892                         if (plusminus_clicked) {
893                                 if (event.MouseInput.Event == EMIE_LMOUSE_PRESSED_DOWN) {
894                                         toggleVisibleTree(row_i, 0, false);
895                                 }
896                         }
897                         else {
898                                 // Normal selection
899                                 s32 old_selected = m_selected;
900                                 m_selected = row_i;
901                                 autoScroll();
902
903                                 if (m_selected != old_selected ||
904                                                 sel_column >= 1 ||
905                                                 sel_doubleclick) {
906                                         sendTableEvent(sel_column, sel_doubleclick);
907                                 }
908                         }
909                 }
910                 return true;
911         }
912         if (event.EventType == EET_GUI_EVENT &&
913                         event.GUIEvent.EventType == gui::EGET_SCROLL_BAR_CHANGED &&
914                         event.GUIEvent.Caller == m_scrollbar) {
915                 // Don't pass events from our scrollbar to the parent
916                 return true;
917         }
918
919         return IGUIElement::OnEvent(event);
920 }
921
922 /******************************************************************************/
923 /* GUITable helper functions                                                  */
924 /******************************************************************************/
925
926 s32 GUITable::allocString(const std::string &text)
927 {
928         std::map<std::string, s32>::iterator it = m_alloc_strings.find(text);
929         if (it == m_alloc_strings.end()) {
930                 s32 id = m_strings.size();
931                 std::wstring wtext = narrow_to_wide(text);
932                 m_strings.push_back(core::stringw(wtext.c_str()));
933                 m_alloc_strings.insert(std::make_pair(text, id));
934                 return id;
935         }
936         else {
937                 return it->second;
938         }
939 }
940
941 s32 GUITable::allocImage(const std::string &imagename)
942 {
943         std::map<std::string, s32>::iterator it = m_alloc_images.find(imagename);
944         if (it == m_alloc_images.end()) {
945                 s32 id = m_images.size();
946                 m_images.push_back(m_tsrc->getTexture(imagename));
947                 m_alloc_images.insert(std::make_pair(imagename, id));
948                 return id;
949         }
950         else {
951                 return it->second;
952         }
953 }
954
955 void GUITable::allocationComplete()
956 {
957         // Called when done with creating rows and cells from table data,
958         // i.e. when allocString and allocImage won't be called anymore
959         m_alloc_strings.clear();
960         m_alloc_images.clear();
961 }
962
963 const GUITable::Row* GUITable::getRow(s32 i) const
964 {
965         if (i >= 0 && i < (s32) m_visible_rows.size())
966                 return &m_rows[m_visible_rows[i]];
967         else
968                 return NULL;
969 }
970
971 bool GUITable::doesRowStartWith(const Row *row, const core::stringw &str) const
972 {
973         if (row == NULL)
974                 return false;
975
976         for (s32 j = 0; j < row->cellcount; ++j) {
977                 Cell *cell = &row->cells[j];
978                 if (cell->content_type == COLUMN_TYPE_TEXT) {
979                         const core::stringw &cellstr = m_strings[cell->content_index];
980                         if (cellstr.size() >= str.size() &&
981                                         str.equals_ignore_case(cellstr.subString(0, str.size())))
982                                 return true;
983                 }
984         }
985         return false;
986 }
987
988 s32 GUITable::getRowAt(s32 y, bool &really_hovering) const
989 {
990         really_hovering = false;
991
992         s32 rowcount = m_visible_rows.size();
993         if (rowcount == 0)
994                 return -1;
995
996         // Use arithmetic to find row
997         s32 rel_y = y - AbsoluteRect.UpperLeftCorner.Y - 1;
998         s32 i = (rel_y + m_scrollbar->getPos()) / m_rowheight;
999
1000         if (i >= 0 && i < rowcount) {
1001                 really_hovering = true;
1002                 return i;
1003         }
1004         else if (i < 0)
1005                 return 0;
1006         else
1007                 return rowcount - 1;
1008
1009 }
1010
1011 s32 GUITable::getCellAt(s32 x, s32 row_i) const
1012 {
1013         const Row *row = getRow(row_i);
1014         if (row == NULL)
1015                 return -1;
1016
1017         // Use binary search to find cell in row
1018         s32 rel_x = x - AbsoluteRect.UpperLeftCorner.X - 1;
1019         s32 jmin = 0;
1020         s32 jmax = row->cellcount - 1;
1021         while (jmin < jmax) {
1022                 s32 pivot = jmin + (jmax - jmin) / 2;
1023                 assert(pivot >= 0 && pivot < row->cellcount);
1024                 const Cell *cell = &row->cells[pivot];
1025
1026                 if (rel_x >= cell->xmin && rel_x <= cell->xmax)
1027                         return pivot;
1028                 else if (rel_x < cell->xmin)
1029                         jmax = pivot - 1;
1030                 else
1031                         jmin = pivot + 1;
1032         }
1033
1034         if (jmin >= 0 && jmin < row->cellcount &&
1035                         rel_x >= row->cells[jmin].xmin &&
1036                         rel_x <= row->cells[jmin].xmax)
1037                 return jmin;
1038         else
1039                 return -1;
1040 }
1041
1042 void GUITable::autoScroll()
1043 {
1044         if (m_selected >= 0) {
1045                 s32 pos = m_scrollbar->getPos();
1046                 s32 maxpos = m_selected * m_rowheight;
1047                 s32 minpos = maxpos - (AbsoluteRect.getHeight() - m_rowheight);
1048                 if (pos > maxpos)
1049                         m_scrollbar->setPos(maxpos);
1050                 else if (pos < minpos)
1051                         m_scrollbar->setPos(minpos);
1052         }
1053 }
1054
1055 void GUITable::updateScrollBar()
1056 {
1057         s32 totalheight = m_rowheight * m_visible_rows.size();
1058         s32 scrollmax = MYMAX(0, totalheight - AbsoluteRect.getHeight());
1059         m_scrollbar->setVisible(scrollmax > 0);
1060         m_scrollbar->setMax(scrollmax);
1061         m_scrollbar->setSmallStep(m_rowheight);
1062         m_scrollbar->setLargeStep(2 * m_rowheight);
1063 }
1064
1065 void GUITable::sendTableEvent(s32 column, bool doubleclick)
1066 {
1067         m_sel_column = column;
1068         m_sel_doubleclick = doubleclick;
1069         if (Parent) {
1070                 SEvent e;
1071                 memset(&e, 0, sizeof e);
1072                 e.EventType = EET_GUI_EVENT;
1073                 e.GUIEvent.Caller = this;
1074                 e.GUIEvent.Element = 0;
1075                 e.GUIEvent.EventType = gui::EGET_TABLE_CHANGED;
1076                 Parent->OnEvent(e);
1077         }
1078 }
1079
1080 void GUITable::getOpenedTrees(std::set<s32> &opened_trees) const
1081 {
1082         opened_trees.clear();
1083         s32 rowcount = m_rows.size();
1084         for (s32 i = 0; i < rowcount - 1; ++i) {
1085                 if (m_rows[i].indent < m_rows[i+1].indent &&
1086                                 m_rows[i+1].visible_index != -2)
1087                         opened_trees.insert(i);
1088         }
1089 }
1090
1091 void GUITable::setOpenedTrees(const std::set<s32> &opened_trees)
1092 {
1093         s32 old_selected = getSelected();
1094
1095         std::vector<s32> parents;
1096         std::vector<s32> closed_parents;
1097
1098         m_visible_rows.clear();
1099
1100         for (size_t i = 0; i < m_rows.size(); ++i) {
1101                 Row *row = &m_rows[i];
1102
1103                 // Update list of ancestors
1104                 while (!parents.empty() && m_rows[parents.back()].indent >= row->indent)
1105                         parents.pop_back();
1106                 while (!closed_parents.empty() &&
1107                                 m_rows[closed_parents.back()].indent >= row->indent)
1108                         closed_parents.pop_back();
1109
1110                 assert(closed_parents.size() <= parents.size());
1111
1112                 if (closed_parents.empty()) {
1113                         // Visible row
1114                         row->visible_index = m_visible_rows.size();
1115                         m_visible_rows.push_back(i);
1116                 }
1117                 else if (parents.back() == closed_parents.back()) {
1118                         // Invisible row, direct parent is closed
1119                         row->visible_index = -2;
1120                 }
1121                 else {
1122                         // Invisible row, direct parent is open, some ancestor is closed
1123                         row->visible_index = -1;
1124                 }
1125
1126                 // If not a leaf, add to parents list
1127                 if (i < m_rows.size()-1 && row->indent < m_rows[i+1].indent) {
1128                         parents.push_back(i);
1129
1130                         s32 content_index = 0; // "-", open
1131                         if (opened_trees.count(i) == 0) {
1132                                 closed_parents.push_back(i);
1133                                 content_index = 1; // "+", closed
1134                         }
1135
1136                         // Update all cells of type "tree"
1137                         for (s32 j = 0; j < row->cellcount; ++j)
1138                                 if (row->cells[j].content_type == COLUMN_TYPE_TREE)
1139                                         row->cells[j].content_index = content_index;
1140                 }
1141         }
1142
1143         updateScrollBar();
1144
1145         setSelected(old_selected);
1146 }
1147
1148 void GUITable::openTree(s32 to_open)
1149 {
1150         std::set<s32> opened_trees;
1151         getOpenedTrees(opened_trees);
1152         opened_trees.insert(to_open);
1153         setOpenedTrees(opened_trees);
1154 }
1155
1156 void GUITable::closeTree(s32 to_close)
1157 {
1158         std::set<s32> opened_trees;
1159         getOpenedTrees(opened_trees);
1160         opened_trees.erase(to_close);
1161         setOpenedTrees(opened_trees);
1162 }
1163
1164 // The following function takes a visible row index (hidden rows skipped)
1165 // dir: -1 = left (close), 0 = auto (toggle), 1 = right (open)
1166 void GUITable::toggleVisibleTree(s32 row_i, int dir, bool move_selection)
1167 {
1168         // Check if the chosen tree is currently open
1169         const Row *row = getRow(row_i);
1170         if (row == NULL)
1171                 return;
1172
1173         bool was_open = false;
1174         for (s32 j = 0; j < row->cellcount; ++j) {
1175                 if (row->cells[j].content_type == COLUMN_TYPE_TREE) {
1176                         was_open = row->cells[j].content_index == 0;
1177                         break;
1178                 }
1179         }
1180
1181         // Check if the chosen tree should be opened
1182         bool do_open = !was_open;
1183         if (dir < 0)
1184                 do_open = false;
1185         else if (dir > 0)
1186                 do_open = true;
1187
1188         // Close or open the tree; the heavy lifting is done by setOpenedTrees
1189         if (was_open && !do_open)
1190                 closeTree(m_visible_rows[row_i]);
1191         else if (!was_open && do_open)
1192                 openTree(m_visible_rows[row_i]);
1193
1194         // Change selected row if requested by caller,
1195         // this is useful for keyboard navigation
1196         if (move_selection) {
1197                 s32 sel = row_i;
1198                 if (was_open && do_open) {
1199                         // Move selection to first child
1200                         const Row *maybe_child = getRow(sel + 1);
1201                         if (maybe_child && maybe_child->indent > row->indent)
1202                                 sel++;
1203                 }
1204                 else if (!was_open && !do_open) {
1205                         // Move selection to parent
1206                         assert(getRow(sel) != NULL);
1207                         while (sel > 0 && getRow(sel - 1)->indent >= row->indent)
1208                                 sel--;
1209                         sel--;
1210                         if (sel < 0)  // was root already selected?
1211                                 sel = row_i;
1212                 }
1213                 if (sel != m_selected) {
1214                         m_selected = sel;
1215                         autoScroll();
1216                         sendTableEvent(0, false);
1217                 }
1218         }
1219 }
1220
1221 void GUITable::alignContent(Cell *cell, s32 xmax, s32 content_width, s32 align)
1222 {
1223         // requires that cell.xmin, cell.xmax are properly set
1224         // align = 0: left aligned, 1: centered, 2: right aligned, 3: inline
1225         if (align == 0) {
1226                 cell->xpos = cell->xmin;
1227                 cell->xmax = xmax;
1228         }
1229         else if (align == 1) {
1230                 cell->xpos = (cell->xmin + xmax - content_width) / 2;
1231                 cell->xmax = xmax;
1232         }
1233         else if (align == 2) {
1234                 cell->xpos = xmax - content_width;
1235                 cell->xmax = xmax;
1236         }
1237         else {
1238                 // inline alignment: the cells of the column don't have an aligned
1239                 // right border, the right border of each cell depends on the content
1240                 cell->xpos = cell->xmin;
1241                 cell->xmax = cell->xmin + content_width;
1242         }
1243 }