Fix the bgcolor formspec element (#8716)
[oweals/minetest.git] / src / gui / guiFormSpecMenu.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 <cstdlib>
22 #include <algorithm>
23 #include <iterator>
24 #include <sstream>
25 #include <limits>
26 #include "guiButton.h"
27 #include "guiFormSpecMenu.h"
28 #include "guiTable.h"
29 #include "constants.h"
30 #include "gamedef.h"
31 #include "client/keycode.h"
32 #include "util/strfnd.h"
33 #include <IGUICheckBox.h>
34 #include <IGUIEditBox.h>
35 #include <IGUIButton.h>
36 #include <IGUIStaticText.h>
37 #include <IGUIFont.h>
38 #include <IGUITabControl.h>
39 #include <IGUIComboBox.h>
40 #include "client/renderingengine.h"
41 #include "log.h"
42 #include "client/tile.h" // ITextureSource
43 #include "client/hud.h" // drawItemStack
44 #include "filesys.h"
45 #include "gettime.h"
46 #include "gettext.h"
47 #include "scripting_server.h"
48 #include "mainmenumanager.h"
49 #include "porting.h"
50 #include "settings.h"
51 #include "client/client.h"
52 #include "client/fontengine.h"
53 #include "util/hex.h"
54 #include "util/numeric.h"
55 #include "util/string.h" // for parseColorString()
56 #include "irrlicht_changes/static_text.h"
57 #include "client/guiscalingfilter.h"
58 #include "guiEditBoxWithScrollbar.h"
59 #include "intlGUIEditBox.h"
60
61 #define MY_CHECKPOS(a,b)                                                                                                        \
62         if (v_pos.size() != 2) {                                                                                                \
63                 errorstream<< "Invalid pos for element " << a << "specified: \""        \
64                         << parts[b] << "\"" << std::endl;                                                               \
65                         return;                                                                                                                 \
66         }
67
68 #define MY_CHECKGEOM(a,b)                                                                                                       \
69         if (v_geom.size() != 2) {                                                                                               \
70                 errorstream<< "Invalid geometry for element " << a <<                           \
71                         "specified: \"" << parts[b] << "\"" << std::endl;                               \
72                         return;                                                                                                                 \
73         }
74 /*
75         GUIFormSpecMenu
76 */
77 static unsigned int font_line_height(gui::IGUIFont *font)
78 {
79         return font->getDimension(L"Ay").Height + font->getKerningHeight();
80 }
81
82 inline u32 clamp_u8(s32 value)
83 {
84         return (u32) MYMIN(MYMAX(value, 0), 255);
85 }
86
87 GUIFormSpecMenu::GUIFormSpecMenu(JoystickController *joystick,
88                 gui::IGUIElement *parent, s32 id, IMenuManager *menumgr,
89                 Client *client, ISimpleTextureSource *tsrc, IFormSource *fsrc, TextDest *tdst,
90                 const std::string &formspecPrepend,
91                 bool remap_dbl_click):
92         GUIModalMenu(RenderingEngine::get_gui_env(), parent, id, menumgr),
93         m_invmgr(client),
94         m_tsrc(tsrc),
95         m_client(client),
96         m_formspec_prepend(formspecPrepend),
97         m_form_src(fsrc),
98         m_text_dst(tdst),
99         m_joystick(joystick),
100         m_remap_dbl_click(remap_dbl_click)
101 {
102         current_keys_pending.key_down = false;
103         current_keys_pending.key_up = false;
104         current_keys_pending.key_enter = false;
105         current_keys_pending.key_escape = false;
106
107         m_doubleclickdetect[0].time = 0;
108         m_doubleclickdetect[1].time = 0;
109
110         m_doubleclickdetect[0].pos = v2s32(0, 0);
111         m_doubleclickdetect[1].pos = v2s32(0, 0);
112
113         m_tooltip_show_delay = (u32)g_settings->getS32("tooltip_show_delay");
114         m_tooltip_append_itemname = g_settings->getBool("tooltip_append_itemname");
115 }
116
117 GUIFormSpecMenu::~GUIFormSpecMenu()
118 {
119         removeChildren();
120
121         for (auto &table_it : m_tables) {
122                 table_it.second->drop();
123         }
124
125         delete m_selected_item;
126         delete m_form_src;
127         delete m_text_dst;
128 }
129
130 void GUIFormSpecMenu::create(GUIFormSpecMenu *&cur_formspec, Client *client,
131         JoystickController *joystick, IFormSource *fs_src, TextDest *txt_dest,
132         const std::string &formspecPrepend)
133 {
134         if (cur_formspec == nullptr) {
135                 cur_formspec = new GUIFormSpecMenu(joystick, guiroot, -1, &g_menumgr,
136                         client, client->getTextureSource(), fs_src, txt_dest, formspecPrepend);
137                 cur_formspec->doPause = false;
138
139                 /*
140                         Caution: do not call (*cur_formspec)->drop() here --
141                         the reference might outlive the menu, so we will
142                         periodically check if *cur_formspec is the only
143                         remaining reference (i.e. the menu was removed)
144                         and delete it in that case.
145                 */
146
147         } else {
148                 cur_formspec->setFormspecPrepend(formspecPrepend);
149                 cur_formspec->setFormSource(fs_src);
150                 cur_formspec->setTextDest(txt_dest);
151         }
152 }
153
154 void GUIFormSpecMenu::removeChildren()
155 {
156         const core::list<gui::IGUIElement*> &children = getChildren();
157
158         while(!children.empty()) {
159                 (*children.getLast())->remove();
160         }
161
162         if(m_tooltip_element) {
163                 m_tooltip_element->remove();
164                 m_tooltip_element->drop();
165                 m_tooltip_element = NULL;
166         }
167
168 }
169
170 void GUIFormSpecMenu::setInitialFocus()
171 {
172         // Set initial focus according to following order of precedence:
173         // 1. first empty editbox
174         // 2. first editbox
175         // 3. first table
176         // 4. last button
177         // 5. first focusable (not statictext, not tabheader)
178         // 6. first child element
179
180         core::list<gui::IGUIElement*> children = getChildren();
181
182         // in case "children" contains any NULL elements, remove them
183         for (core::list<gui::IGUIElement*>::Iterator it = children.begin();
184                         it != children.end();) {
185                 if (*it)
186                         ++it;
187                 else
188                         it = children.erase(it);
189         }
190
191         // 1. first empty editbox
192         for (gui::IGUIElement *it : children) {
193                 if (it->getType() == gui::EGUIET_EDIT_BOX
194                                 && it->getText()[0] == 0) {
195                         Environment->setFocus(it);
196                         return;
197                 }
198         }
199
200         // 2. first editbox
201         for (gui::IGUIElement *it : children) {
202                 if (it->getType() == gui::EGUIET_EDIT_BOX) {
203                         Environment->setFocus(it);
204                         return;
205                 }
206         }
207
208         // 3. first table
209         for (gui::IGUIElement *it : children) {
210                 if (it->getTypeName() == std::string("GUITable")) {
211                         Environment->setFocus(it);
212                         return;
213                 }
214         }
215
216         // 4. last button
217         for (core::list<gui::IGUIElement*>::Iterator it = children.getLast();
218                         it != children.end(); --it) {
219                 if ((*it)->getType() == gui::EGUIET_BUTTON) {
220                         Environment->setFocus(*it);
221                         return;
222                 }
223         }
224
225         // 5. first focusable (not statictext, not tabheader)
226         for (gui::IGUIElement *it : children) {
227                 if (it->getType() != gui::EGUIET_STATIC_TEXT &&
228                         it->getType() != gui::EGUIET_TAB_CONTROL) {
229                         Environment->setFocus(it);
230                         return;
231                 }
232         }
233
234         // 6. first child element
235         if (children.empty())
236                 Environment->setFocus(this);
237         else
238                 Environment->setFocus(*(children.begin()));
239 }
240
241 GUITable* GUIFormSpecMenu::getTable(const std::string &tablename)
242 {
243         for (auto &table : m_tables) {
244                 if (tablename == table.first.fname)
245                         return table.second;
246         }
247         return 0;
248 }
249
250 std::vector<std::string>* GUIFormSpecMenu::getDropDownValues(const std::string &name)
251 {
252         for (auto &dropdown : m_dropdowns) {
253                 if (name == dropdown.first.fname)
254                         return &dropdown.second;
255         }
256         return NULL;
257 }
258
259 v2s32 GUIFormSpecMenu::getElementBasePos(bool absolute,
260                 const std::vector<std::string> *v_pos)
261 {
262         v2s32 pos = padding;
263         if (absolute)
264                 pos += AbsoluteRect.UpperLeftCorner;
265
266         v2f32 pos_f = v2f32(pos.X, pos.Y) + pos_offset * spacing;
267         if (v_pos) {
268                 pos_f.X += stof((*v_pos)[0]) * spacing.X;
269                 pos_f.Y += stof((*v_pos)[1]) * spacing.Y;
270         }
271         return v2s32(pos_f.X, pos_f.Y);
272 }
273
274 v2s32 GUIFormSpecMenu::getRealCoordinateBasePos(bool absolute,
275                 const std::vector<std::string> &v_pos)
276 {
277         v2f32 pos_f = v2f32(0.0f, 0.0f);
278
279         pos_f.X += stof(v_pos[0]) + pos_offset.X;
280         pos_f.Y += stof(v_pos[1]) + pos_offset.Y;
281
282         if (absolute)
283                 return v2s32(pos_f.X * imgsize.X + AbsoluteRect.UpperLeftCorner.X,
284                                 pos_f.Y * imgsize.Y + AbsoluteRect.UpperLeftCorner.Y);
285         return v2s32(pos_f.X * imgsize.X, pos_f.Y * imgsize.Y);
286 }
287
288 v2s32 GUIFormSpecMenu::getRealCoordinateGeometry(const std::vector<std::string> &v_geom)
289 {
290         return v2s32(stof(v_geom[0]) * imgsize.X, stof(v_geom[1]) * imgsize.Y);
291 }
292
293 void GUIFormSpecMenu::parseSize(parserData* data, const std::string &element)
294 {
295         std::vector<std::string> parts = split(element,',');
296
297         if (((parts.size() == 2) || parts.size() == 3) ||
298                 ((parts.size() > 3) && (m_formspec_version > FORMSPEC_API_VERSION)))
299         {
300                 if (parts[1].find(';') != std::string::npos)
301                         parts[1] = parts[1].substr(0,parts[1].find(';'));
302
303                 data->invsize.X = MYMAX(0, stof(parts[0]));
304                 data->invsize.Y = MYMAX(0, stof(parts[1]));
305
306                 lockSize(false);
307 #ifndef __ANDROID__
308                 if (parts.size() == 3) {
309                         if (parts[2] == "true") {
310                                 lockSize(true,v2u32(800,600));
311                         }
312                 }
313 #endif
314                 data->explicit_size = true;
315                 return;
316         }
317         errorstream<< "Invalid size element (" << parts.size() << "): '" << element << "'"  << std::endl;
318 }
319
320 void GUIFormSpecMenu::parseContainer(parserData* data, const std::string &element)
321 {
322         std::vector<std::string> parts = split(element, ',');
323
324         if (parts.size() >= 2) {
325                 if (parts[1].find(';') != std::string::npos)
326                         parts[1] = parts[1].substr(0, parts[1].find(';'));
327
328                 container_stack.push(pos_offset);
329                 pos_offset.X += stof(parts[0]);
330                 pos_offset.Y += stof(parts[1]);
331                 return;
332         }
333         errorstream<< "Invalid container start element (" << parts.size() << "): '" << element << "'"  << std::endl;
334 }
335
336 void GUIFormSpecMenu::parseContainerEnd(parserData* data)
337 {
338         if (container_stack.empty()) {
339                 errorstream<< "Invalid container end element, no matching container start element"  << std::endl;
340         } else {
341                 pos_offset = container_stack.top();
342                 container_stack.pop();
343         }
344 }
345
346 void GUIFormSpecMenu::parseList(parserData* data, const std::string &element)
347 {
348         if (m_client == 0) {
349                 warningstream<<"invalid use of 'list' with m_client==0"<<std::endl;
350                 return;
351         }
352
353         std::vector<std::string> parts = split(element,';');
354
355         if (((parts.size() == 4) || (parts.size() == 5)) ||
356                 ((parts.size() > 5) && (m_formspec_version > FORMSPEC_API_VERSION)))
357         {
358                 std::string location = parts[0];
359                 std::string listname = parts[1];
360                 std::vector<std::string> v_pos  = split(parts[2],',');
361                 std::vector<std::string> v_geom = split(parts[3],',');
362                 std::string startindex;
363                 if (parts.size() == 5)
364                         startindex = parts[4];
365
366                 MY_CHECKPOS("list",2);
367                 MY_CHECKGEOM("list",3);
368
369                 InventoryLocation loc;
370
371                 if (location == "context" || location == "current_name")
372                         loc = m_current_inventory_location;
373                 else
374                         loc.deSerialize(location);
375
376                 v2s32 pos;
377                 v2s32 geom;
378
379                 if (data->real_coordinates)
380                         pos = getRealCoordinateBasePos(true, v_pos);
381                 else
382                         pos = getElementBasePos(true, &v_pos);
383
384                 geom.X = stoi(v_geom[0]);
385                 geom.Y = stoi(v_geom[1]);
386
387                 s32 start_i = 0;
388                 if (!startindex.empty())
389                         start_i = stoi(startindex);
390
391                 if (geom.X < 0 || geom.Y < 0 || start_i < 0) {
392                         errorstream<< "Invalid list element: '" << element << "'"  << std::endl;
393                         return;
394                 }
395
396                 if(!data->explicit_size)
397                         warningstream<<"invalid use of list without a size[] element"<<std::endl;
398                 m_inventorylists.emplace_back(loc, listname, pos, geom, start_i, data->real_coordinates);
399                 return;
400         }
401         errorstream<< "Invalid list element(" << parts.size() << "): '" << element << "'"  << std::endl;
402 }
403
404 void GUIFormSpecMenu::parseListRing(parserData* data, const std::string &element)
405 {
406         if (m_client == 0) {
407                 errorstream << "WARNING: invalid use of 'listring' with m_client==0" << std::endl;
408                 return;
409         }
410
411         std::vector<std::string> parts = split(element, ';');
412
413         if (parts.size() == 2) {
414                 std::string location = parts[0];
415                 std::string listname = parts[1];
416
417                 InventoryLocation loc;
418
419                 if (location == "context" || location == "current_name")
420                         loc = m_current_inventory_location;
421                 else
422                         loc.deSerialize(location);
423
424                 m_inventory_rings.emplace_back(loc, listname);
425                 return;
426         }
427
428         if (element.empty() && m_inventorylists.size() > 1) {
429                 size_t siz = m_inventorylists.size();
430                 // insert the last two inv list elements into the list ring
431                 const ListDrawSpec &spa = m_inventorylists[siz - 2];
432                 const ListDrawSpec &spb = m_inventorylists[siz - 1];
433                 m_inventory_rings.emplace_back(spa.inventoryloc, spa.listname);
434                 m_inventory_rings.emplace_back(spb.inventoryloc, spb.listname);
435                 return;
436         }
437
438         errorstream<< "Invalid list ring element(" << parts.size() << ", "
439                 << m_inventorylists.size() << "): '" << element << "'"  << std::endl;
440 }
441
442 void GUIFormSpecMenu::parseCheckbox(parserData* data, const std::string &element)
443 {
444         std::vector<std::string> parts = split(element,';');
445
446         if (((parts.size() >= 3) && (parts.size() <= 4)) ||
447                 ((parts.size() > 4) && (m_formspec_version > FORMSPEC_API_VERSION)))
448         {
449                 std::vector<std::string> v_pos = split(parts[0],',');
450                 std::string name = parts[1];
451                 std::string label = parts[2];
452                 std::string selected;
453
454                 if (parts.size() >= 4)
455                         selected = parts[3];
456
457                 MY_CHECKPOS("checkbox",0);
458
459                 bool fselected = false;
460
461                 if (selected == "true")
462                         fselected = true;
463
464                 std::wstring wlabel = translate_string(utf8_to_wide(unescape_string(label)));
465                 const core::dimension2d<u32> label_size = m_font->getDimension(wlabel.c_str());
466                 s32 cb_size = Environment->getSkin()->getSize(gui::EGDS_CHECK_BOX_WIDTH);
467                 s32 y_center = (std::max(label_size.Height, (u32)cb_size) + 1) / 2;
468
469                 v2s32 pos;
470                 core::rect<s32> rect;
471
472                 if (data->real_coordinates) {
473                         pos = getRealCoordinateBasePos(false, v_pos);
474
475                         rect = core::rect<s32>(
476                                         pos.X,
477                                         pos.Y - y_center,
478                                         pos.X + label_size.Width + cb_size + 7,
479                                         pos.Y + y_center
480                                 );
481                 } else {
482                         pos = getElementBasePos(false, &v_pos);
483                         rect = core::rect<s32>(
484                                         pos.X,
485                                         pos.Y + imgsize.Y / 2 - y_center,
486                                         pos.X + label_size.Width + cb_size + 7,
487                                         pos.Y + imgsize.Y / 2 + y_center
488                                 );
489                 }
490
491                 FieldSpec spec(
492                                 name,
493                                 wlabel, //Needed for displaying text on MSVC
494                                 wlabel,
495                                 258+m_fields.size()
496                         );
497
498                 spec.ftype = f_CheckBox;
499
500                 gui::IGUICheckBox* e = Environment->addCheckBox(fselected, rect, this,
501                                         spec.fid, spec.flabel.c_str());
502
503                 auto style = getStyleForElement("checkbox", name);
504                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
505
506                 if (spec.fname == data->focused_fieldname) {
507                         Environment->setFocus(e);
508                 }
509
510                 m_checkboxes.emplace_back(spec,e);
511                 m_fields.push_back(spec);
512                 return;
513         }
514         errorstream<< "Invalid checkbox element(" << parts.size() << "): '" << element << "'"  << std::endl;
515 }
516
517 void GUIFormSpecMenu::parseScrollBar(parserData* data, const std::string &element)
518 {
519         std::vector<std::string> parts = split(element,';');
520
521         if (parts.size() >= 5) {
522                 std::vector<std::string> v_pos = split(parts[0],',');
523                 std::vector<std::string> v_geom = split(parts[1],',');
524                 std::string name = parts[3];
525                 std::string value = parts[4];
526
527                 MY_CHECKPOS("scrollbar",0);
528                 MY_CHECKGEOM("scrollbar",1);
529
530                 v2s32 pos;
531                 v2s32 dim;
532
533                 if (data->real_coordinates) {
534                         pos = getRealCoordinateBasePos(false, v_pos);
535                         dim = getRealCoordinateGeometry(v_geom);
536                 } else {
537                         pos = getElementBasePos(false, &v_pos);
538                         dim.X = stof(v_geom[0]) * spacing.X;
539                         dim.Y = stof(v_geom[1]) * spacing.Y;
540                 }
541
542                 core::rect<s32> rect =
543                                 core::rect<s32>(pos.X, pos.Y, pos.X + dim.X, pos.Y + dim.Y);
544
545                 FieldSpec spec(
546                                 name,
547                                 L"",
548                                 L"",
549                                 258+m_fields.size()
550                         );
551
552                 bool is_horizontal = true;
553
554                 if (parts[2] == "vertical")
555                         is_horizontal = false;
556
557                 spec.ftype = f_ScrollBar;
558                 spec.send  = true;
559                 gui::IGUIScrollBar* e =
560                                 Environment->addScrollBar(is_horizontal,rect,this,spec.fid);
561
562                 auto style = getStyleForElement("scrollbar", name);
563                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
564
565                 e->setMax(1000);
566                 e->setMin(0);
567                 e->setPos(stoi(parts[4]));
568                 e->setSmallStep(10);
569                 e->setLargeStep(100);
570
571                 m_scrollbars.emplace_back(spec,e);
572                 m_fields.push_back(spec);
573                 return;
574         }
575         errorstream<< "Invalid scrollbar element(" << parts.size() << "): '" << element << "'"  << std::endl;
576 }
577
578 void GUIFormSpecMenu::parseImage(parserData* data, const std::string &element)
579 {
580         std::vector<std::string> parts = split(element,';');
581
582         if ((parts.size() == 3) ||
583                 ((parts.size() > 3) && (m_formspec_version > FORMSPEC_API_VERSION)))
584         {
585                 std::vector<std::string> v_pos = split(parts[0],',');
586                 std::vector<std::string> v_geom = split(parts[1],',');
587                 std::string name = unescape_string(parts[2]);
588
589                 MY_CHECKPOS("image", 0);
590                 MY_CHECKGEOM("image", 1);
591
592                 v2s32 pos;
593                 v2s32 geom;
594
595                 if (data->real_coordinates) {
596                         pos = getRealCoordinateBasePos(true, v_pos);
597                         geom = getRealCoordinateGeometry(v_geom);
598                 } else {
599                         pos = getElementBasePos(true, &v_pos);
600                         geom.X = stof(v_geom[0]) * (float)imgsize.X;
601                         geom.Y = stof(v_geom[1]) * (float)imgsize.Y;
602                 }
603
604                 if (!data->explicit_size)
605                         warningstream<<"invalid use of image without a size[] element"<<std::endl;
606                 m_images.emplace_back(name, pos, geom);
607                 return;
608         }
609
610         if (parts.size() == 2) {
611                 std::vector<std::string> v_pos = split(parts[0],',');
612                 std::string name = unescape_string(parts[1]);
613
614                 MY_CHECKPOS("image", 0);
615
616                 v2s32 pos = getElementBasePos(true, &v_pos);
617
618                 if (!data->explicit_size)
619                         warningstream<<"invalid use of image without a size[] element"<<std::endl;
620                 m_images.emplace_back(name, pos);
621                 return;
622         }
623         errorstream<< "Invalid image element(" << parts.size() << "): '" << element << "'"  << std::endl;
624 }
625
626 void GUIFormSpecMenu::parseItemImage(parserData* data, const std::string &element)
627 {
628         std::vector<std::string> parts = split(element,';');
629
630         if ((parts.size() == 3) ||
631                 ((parts.size() > 3) && (m_formspec_version > FORMSPEC_API_VERSION)))
632         {
633                 std::vector<std::string> v_pos = split(parts[0],',');
634                 std::vector<std::string> v_geom = split(parts[1],',');
635                 std::string name = parts[2];
636
637                 MY_CHECKPOS("itemimage",0);
638                 MY_CHECKGEOM("itemimage",1);
639
640                 v2s32 pos;
641                 v2s32 geom;
642
643                 if (data->real_coordinates) {
644                         pos = getRealCoordinateBasePos(true, v_pos);
645                         geom = getRealCoordinateGeometry(v_geom);
646                 } else {
647                         pos = getElementBasePos(true, &v_pos);
648                         geom.X = stof(v_geom[0]) * (float)imgsize.X;
649                         geom.Y = stof(v_geom[1]) * (float)imgsize.Y;
650                 }
651
652                 if(!data->explicit_size)
653                         warningstream<<"invalid use of item_image without a size[] element"<<std::endl;
654                 m_itemimages.emplace_back("", name, pos, geom);
655                 return;
656         }
657         errorstream<< "Invalid ItemImage element(" << parts.size() << "): '" << element << "'"  << std::endl;
658 }
659
660 void GUIFormSpecMenu::parseButton(parserData* data, const std::string &element,
661                 const std::string &type)
662 {
663         std::vector<std::string> parts = split(element,';');
664
665         if ((parts.size() == 4) ||
666                 ((parts.size() > 4) && (m_formspec_version > FORMSPEC_API_VERSION)))
667         {
668                 std::vector<std::string> v_pos = split(parts[0],',');
669                 std::vector<std::string> v_geom = split(parts[1],',');
670                 std::string name = parts[2];
671                 std::string label = parts[3];
672
673                 MY_CHECKPOS("button",0);
674                 MY_CHECKGEOM("button",1);
675
676                 v2s32 pos;
677                 v2s32 geom;
678                 core::rect<s32> rect;
679
680                 if (data->real_coordinates) {
681                         pos = getRealCoordinateBasePos(false, v_pos);
682                         geom = getRealCoordinateGeometry(v_geom);
683                         rect = core::rect<s32>(pos.X, pos.Y, pos.X+geom.X,
684                                 pos.Y+geom.Y);
685                 } else {
686                         pos = getElementBasePos(false, &v_pos);
687                         geom.X = (stof(v_geom[0]) * spacing.X) - (spacing.X - imgsize.X);
688                         pos.Y += (stof(v_geom[1]) * (float)imgsize.Y)/2;
689
690                         rect = core::rect<s32>(pos.X, pos.Y - m_btn_height,
691                                                 pos.X + geom.X, pos.Y + m_btn_height);
692                 }
693
694                 if(!data->explicit_size)
695                         warningstream<<"invalid use of button without a size[] element"<<std::endl;
696
697                 std::wstring wlabel = translate_string(utf8_to_wide(unescape_string(label)));
698
699                 FieldSpec spec(
700                         name,
701                         wlabel,
702                         L"",
703                         258+m_fields.size()
704                 );
705                 spec.ftype = f_Button;
706                 if(type == "button_exit")
707                         spec.is_exit = true;
708
709                 GUIButton *e = GUIButton::addButton(Environment, rect, this, spec.fid, spec.flabel.c_str());
710
711                 auto style = getStyleForElement(type, name, (type != "button") ? "button" : "");
712                 if (style.isNotDefault(StyleSpec::BGCOLOR)) {
713                         e->setColor(style.getColor(StyleSpec::BGCOLOR));
714                 }
715                 if (style.isNotDefault(StyleSpec::TEXTCOLOR)) {
716                         e->setOverrideColor(style.getColor(StyleSpec::TEXTCOLOR));
717                 }
718                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
719                 e->setDrawBorder(style.getBool(StyleSpec::BORDER, true));
720
721                 if (style.isNotDefault(StyleSpec::BGIMG)) {
722                         std::string image_name = style.get(StyleSpec::BGIMG, "");
723                         std::string pressed_image_name = style.get(StyleSpec::BGIMG_PRESSED, "");
724
725                         video::ITexture *texture = 0;
726                         video::ITexture *pressed_texture = 0;
727                         texture = m_tsrc->getTexture(image_name);
728                         if (!pressed_image_name.empty())
729                                 pressed_texture = m_tsrc->getTexture(pressed_image_name);
730                         else
731                                 pressed_texture = texture;
732
733                         e->setUseAlphaChannel(style.getBool(StyleSpec::ALPHA, true));
734                         e->setImage(guiScalingImageButton(
735                                         Environment->getVideoDriver(), texture, geom.X, geom.Y));
736                         e->setPressedImage(guiScalingImageButton(
737                                         Environment->getVideoDriver(), pressed_texture, geom.X, geom.Y));
738                         e->setScaleImage(true);
739                 }
740
741                 if (spec.fname == data->focused_fieldname) {
742                         Environment->setFocus(e);
743                 }
744
745                 m_fields.push_back(spec);
746                 return;
747         }
748         errorstream<< "Invalid button element(" << parts.size() << "): '" << element << "'"  << std::endl;
749 }
750
751 void GUIFormSpecMenu::parseBackground(parserData* data, const std::string &element)
752 {
753         std::vector<std::string> parts = split(element,';');
754
755         if ((parts.size() >= 3 && parts.size() <= 5) ||
756                         (parts.size() > 5 && m_formspec_version > FORMSPEC_API_VERSION)) {
757                 std::vector<std::string> v_pos = split(parts[0],',');
758                 std::vector<std::string> v_geom = split(parts[1],',');
759                 std::string name = unescape_string(parts[2]);
760
761                 MY_CHECKPOS("background",0);
762                 MY_CHECKGEOM("background",1);
763
764                 v2s32 pos;
765                 v2s32 geom;
766
767                 if (data->real_coordinates) {
768                         pos = getRealCoordinateBasePos(true, v_pos);
769                         geom = getRealCoordinateGeometry(v_geom);
770                 } else {
771                         pos = getElementBasePos(true, &v_pos);
772                         pos.X -= (spacing.X - (float)imgsize.X) / 2;
773                         pos.Y -= (spacing.Y - (float)imgsize.Y) / 2;
774
775                         geom.X = stof(v_geom[0]) * spacing.X;
776                         geom.Y = stof(v_geom[1]) * spacing.Y;
777                 }
778
779                 bool clip = false;
780                 if (parts.size() >= 4 && is_yes(parts[3])) {
781                         if (data->real_coordinates) {
782                                 pos = getRealCoordinateBasePos(false, v_pos) * -1;
783                                 geom = v2s32(0, 0);
784                         } else {
785                                 pos.X = stoi(v_pos[0]); //acts as offset
786                                 pos.Y = stoi(v_pos[1]);
787                         }
788                         clip = true;
789                 }
790
791                 core::rect<s32> middle;
792                 if (parts.size() >= 5) {
793                         std::vector<std::string> v_middle = split(parts[4], ',');
794                         if (v_middle.size() == 1) {
795                                 s32 x = stoi(v_middle[0]);
796                                 middle.UpperLeftCorner = core::vector2di(x, x);
797                                 middle.LowerRightCorner = core::vector2di(-x, -x);
798                         } else if (v_middle.size() == 2) {
799                                 s32 x = stoi(v_middle[0]);
800                                 s32 y = stoi(v_middle[1]);
801                                 middle.UpperLeftCorner = core::vector2di(x, y);
802                                 middle.LowerRightCorner = core::vector2di(-x, -y);
803                                 // `-x` is interpreted as `w - x`
804                         } else if (v_middle.size() == 4) {
805                                 middle.UpperLeftCorner = core::vector2di(stoi(v_middle[0]), stoi(v_middle[1]));
806                                 middle.LowerRightCorner = core::vector2di(stoi(v_middle[2]), stoi(v_middle[3]));
807                         } else {
808                                 warningstream << "Invalid rectangle given to middle param of background[] element" << std::endl;
809                         }
810                 }
811
812                 if (!data->explicit_size && !clip)
813                         warningstream << "invalid use of unclipped background without a size[] element" << std::endl;
814
815                 m_backgrounds.emplace_back(name, pos, geom, middle, clip);
816
817                 return;
818         }
819         errorstream<< "Invalid background element(" << parts.size() << "): '" << element << "'"  << std::endl;
820 }
821
822 void GUIFormSpecMenu::parseTableOptions(parserData* data, const std::string &element)
823 {
824         std::vector<std::string> parts = split(element,';');
825
826         data->table_options.clear();
827         for (const std::string &part : parts) {
828                 // Parse table option
829                 std::string opt = unescape_string(part);
830                 data->table_options.push_back(GUITable::splitOption(opt));
831         }
832 }
833
834 void GUIFormSpecMenu::parseTableColumns(parserData* data, const std::string &element)
835 {
836         std::vector<std::string> parts = split(element,';');
837
838         data->table_columns.clear();
839         for (const std::string &part : parts) {
840                 std::vector<std::string> col_parts = split(part,',');
841                 GUITable::TableColumn column;
842                 // Parse column type
843                 if (!col_parts.empty())
844                         column.type = col_parts[0];
845                 // Parse column options
846                 for (size_t j = 1; j < col_parts.size(); ++j) {
847                         std::string opt = unescape_string(col_parts[j]);
848                         column.options.push_back(GUITable::splitOption(opt));
849                 }
850                 data->table_columns.push_back(column);
851         }
852 }
853
854 void GUIFormSpecMenu::parseTable(parserData* data, const std::string &element)
855 {
856         std::vector<std::string> parts = split(element,';');
857
858         if (((parts.size() == 4) || (parts.size() == 5)) ||
859                 ((parts.size() > 5) && (m_formspec_version > FORMSPEC_API_VERSION)))
860         {
861                 std::vector<std::string> v_pos = split(parts[0],',');
862                 std::vector<std::string> v_geom = split(parts[1],',');
863                 std::string name = parts[2];
864                 std::vector<std::string> items = split(parts[3],',');
865                 std::string str_initial_selection;
866                 std::string str_transparent = "false";
867
868                 if (parts.size() >= 5)
869                         str_initial_selection = parts[4];
870
871                 MY_CHECKPOS("table",0);
872                 MY_CHECKGEOM("table",1);
873
874                 v2s32 pos;
875                 v2s32 geom;
876
877                 if (data->real_coordinates) {
878                         pos = getRealCoordinateBasePos(false, v_pos);
879                         geom = getRealCoordinateGeometry(v_geom);
880                 } else {
881                         pos = getElementBasePos(false, &v_pos);
882                         geom.X = stof(v_geom[0]) * spacing.X;
883                         geom.Y = stof(v_geom[1]) * spacing.Y;
884                 }
885
886                 core::rect<s32> rect = core::rect<s32>(pos.X, pos.Y, pos.X+geom.X, pos.Y+geom.Y);
887
888                 FieldSpec spec(
889                         name,
890                         L"",
891                         L"",
892                         258+m_fields.size()
893                 );
894
895                 spec.ftype = f_Table;
896
897                 for (std::string &item : items) {
898                         item = wide_to_utf8(unescape_translate(utf8_to_wide(unescape_string(item))));
899                 }
900
901                 //now really show table
902                 GUITable *e = new GUITable(Environment, this, spec.fid, rect,
903                                 m_tsrc);
904
905                 if (spec.fname == data->focused_fieldname) {
906                         Environment->setFocus(e);
907                 }
908
909                 e->setTable(data->table_options, data->table_columns, items);
910
911                 if (data->table_dyndata.find(name) != data->table_dyndata.end()) {
912                         e->setDynamicData(data->table_dyndata[name]);
913                 }
914
915                 if (!str_initial_selection.empty() && str_initial_selection != "0")
916                         e->setSelected(stoi(str_initial_selection));
917
918                 auto style = getStyleForElement("table", name);
919                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
920
921                 m_tables.emplace_back(spec, e);
922                 m_fields.push_back(spec);
923                 return;
924         }
925         errorstream<< "Invalid table element(" << parts.size() << "): '" << element << "'"  << std::endl;
926 }
927
928 void GUIFormSpecMenu::parseTextList(parserData* data, const std::string &element)
929 {
930         std::vector<std::string> parts = split(element,';');
931
932         if (((parts.size() == 4) || (parts.size() == 5) || (parts.size() == 6)) ||
933                 ((parts.size() > 6) && (m_formspec_version > FORMSPEC_API_VERSION)))
934         {
935                 std::vector<std::string> v_pos = split(parts[0],',');
936                 std::vector<std::string> v_geom = split(parts[1],',');
937                 std::string name = parts[2];
938                 std::vector<std::string> items = split(parts[3],',');
939                 std::string str_initial_selection;
940                 std::string str_transparent = "false";
941
942                 if (parts.size() >= 5)
943                         str_initial_selection = parts[4];
944
945                 if (parts.size() >= 6)
946                         str_transparent = parts[5];
947
948                 MY_CHECKPOS("textlist",0);
949                 MY_CHECKGEOM("textlist",1);
950
951                 v2s32 pos;
952                 v2s32 geom;
953
954                 if (data->real_coordinates) {
955                         pos = getRealCoordinateBasePos(false, v_pos);
956                         geom = getRealCoordinateGeometry(v_geom);
957                 } else {
958                         pos = getElementBasePos(false, &v_pos);
959                         geom.X = stof(v_geom[0]) * spacing.X;
960                         geom.Y = stof(v_geom[1]) * spacing.Y;
961                 }
962
963                 core::rect<s32> rect = core::rect<s32>(pos.X, pos.Y, pos.X+geom.X, pos.Y+geom.Y);
964
965                 FieldSpec spec(
966                         name,
967                         L"",
968                         L"",
969                         258+m_fields.size()
970                 );
971
972                 spec.ftype = f_Table;
973
974                 for (std::string &item : items) {
975                         item = wide_to_utf8(unescape_translate(utf8_to_wide(unescape_string(item))));
976                 }
977
978                 //now really show list
979                 GUITable *e = new GUITable(Environment, this, spec.fid, rect,
980                                 m_tsrc);
981
982                 if (spec.fname == data->focused_fieldname) {
983                         Environment->setFocus(e);
984                 }
985
986                 e->setTextList(items, is_yes(str_transparent));
987
988                 if (data->table_dyndata.find(name) != data->table_dyndata.end()) {
989                         e->setDynamicData(data->table_dyndata[name]);
990                 }
991
992                 if (!str_initial_selection.empty() && str_initial_selection != "0")
993                         e->setSelected(stoi(str_initial_selection));
994
995                 auto style = getStyleForElement("textlist", name);
996                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
997
998                 m_tables.emplace_back(spec, e);
999                 m_fields.push_back(spec);
1000                 return;
1001         }
1002         errorstream<< "Invalid textlist element(" << parts.size() << "): '" << element << "'"  << std::endl;
1003 }
1004
1005
1006 void GUIFormSpecMenu::parseDropDown(parserData* data, const std::string &element)
1007 {
1008         std::vector<std::string> parts = split(element,';');
1009
1010         if ((parts.size() == 5) ||
1011                 ((parts.size() > 5) && (m_formspec_version > FORMSPEC_API_VERSION)))
1012         {
1013                 std::vector<std::string> v_pos = split(parts[0],',');
1014                 std::string name = parts[2];
1015                 std::vector<std::string> items = split(parts[3],',');
1016                 std::string str_initial_selection;
1017                 str_initial_selection = parts[4];
1018
1019                 MY_CHECKPOS("dropdown",0);
1020
1021                 v2s32 pos;
1022                 v2s32 geom;
1023                 core::rect<s32> rect;
1024
1025                 if (data->real_coordinates) {
1026                         std::vector<std::string> v_geom = split(parts[1],',');
1027
1028                         if (v_geom.size() == 1)
1029                                 v_geom.emplace_back("1");
1030
1031                         MY_CHECKGEOM("dropdown",1);
1032
1033                         pos = getRealCoordinateBasePos(false, v_pos);
1034                         geom = getRealCoordinateGeometry(v_geom);
1035                         rect = core::rect<s32>(pos.X, pos.Y, pos.X+geom.X, pos.Y+geom.Y);
1036                 } else {
1037                         pos = getElementBasePos(false, &v_pos);
1038
1039                         s32 width = stof(parts[1]) * spacing.Y;
1040
1041                         rect = core::rect<s32>(pos.X, pos.Y,
1042                                         pos.X + width, pos.Y + (m_btn_height * 2));
1043                 }
1044
1045                 FieldSpec spec(
1046                         name,
1047                         L"",
1048                         L"",
1049                         258+m_fields.size()
1050                 );
1051
1052                 spec.ftype = f_DropDown;
1053                 spec.send = true;
1054
1055                 //now really show list
1056                 gui::IGUIComboBox *e = Environment->addComboBox(rect, this,spec.fid);
1057
1058                 if (spec.fname == data->focused_fieldname) {
1059                         Environment->setFocus(e);
1060                 }
1061
1062                 for (const std::string &item : items) {
1063                         e->addItem(unescape_translate(unescape_string(
1064                                 utf8_to_wide(item))).c_str());
1065                 }
1066
1067                 if (!str_initial_selection.empty())
1068                         e->setSelected(stoi(str_initial_selection)-1);
1069
1070                 auto style = getStyleForElement("dropdown", name);
1071                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
1072
1073                 m_fields.push_back(spec);
1074
1075                 m_dropdowns.emplace_back(spec, std::vector<std::string>());
1076                 std::vector<std::string> &values = m_dropdowns.back().second;
1077                 for (const std::string &item : items) {
1078                         values.push_back(unescape_string(item));
1079                 }
1080
1081                 return;
1082         }
1083         errorstream << "Invalid dropdown element(" << parts.size() << "): '"
1084                                 << element << "'"  << std::endl;
1085 }
1086
1087 void GUIFormSpecMenu::parseFieldCloseOnEnter(parserData *data, const std::string &element)
1088 {
1089         std::vector<std::string> parts = split(element,';');
1090         if (parts.size() == 2 ||
1091                         (parts.size() > 2 && m_formspec_version > FORMSPEC_API_VERSION)) {
1092                 field_close_on_enter[parts[0]] = is_yes(parts[1]);
1093         }
1094 }
1095
1096 void GUIFormSpecMenu::parsePwdField(parserData* data, const std::string &element)
1097 {
1098         std::vector<std::string> parts = split(element,';');
1099
1100         if ((parts.size() == 4) || (parts.size() == 5) ||
1101                 ((parts.size() > 5) && (m_formspec_version > FORMSPEC_API_VERSION)))
1102         {
1103                 std::vector<std::string> v_pos = split(parts[0],',');
1104                 std::vector<std::string> v_geom = split(parts[1],',');
1105                 std::string name = parts[2];
1106                 std::string label = parts[3];
1107
1108                 MY_CHECKPOS("pwdfield",0);
1109                 MY_CHECKGEOM("pwdfield",1);
1110
1111                 v2s32 pos;
1112                 v2s32 geom;
1113
1114                 if (data->real_coordinates) {
1115                         pos = getRealCoordinateBasePos(false, v_pos);
1116                         geom = getRealCoordinateGeometry(v_geom);
1117                 } else {
1118                         pos = getElementBasePos(false, &v_pos);
1119                         pos -= padding;
1120
1121                         geom.X = (stof(v_geom[0]) * spacing.X) - (spacing.X - imgsize.X);
1122
1123                         pos.Y += (stof(v_geom[1]) * (float)imgsize.Y)/2;
1124                         pos.Y -= m_btn_height;
1125                         geom.Y = m_btn_height*2;
1126                 }
1127
1128                 core::rect<s32> rect = core::rect<s32>(pos.X, pos.Y, pos.X+geom.X, pos.Y+geom.Y);
1129
1130                 std::wstring wlabel = translate_string(utf8_to_wide(unescape_string(label)));
1131
1132                 FieldSpec spec(
1133                         name,
1134                         wlabel,
1135                         L"",
1136                         258+m_fields.size()
1137                         );
1138
1139                 spec.send = true;
1140                 gui::IGUIEditBox * e = Environment->addEditBox(0, rect, true, this, spec.fid);
1141
1142                 if (spec.fname == data->focused_fieldname) {
1143                         Environment->setFocus(e);
1144                 }
1145
1146                 if (label.length() >= 1) {
1147                         int font_height = g_fontengine->getTextHeight();
1148                         rect.UpperLeftCorner.Y -= font_height;
1149                         rect.LowerRightCorner.Y = rect.UpperLeftCorner.Y + font_height;
1150                         gui::StaticText::add(Environment, spec.flabel.c_str(), rect, false, true,
1151                                 this, 0);
1152                 }
1153
1154                 e->setPasswordBox(true,L'*');
1155
1156                 auto style = getStyleForElement("pwdfield", name, "field");
1157                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
1158                 e->setDrawBorder(style.getBool(StyleSpec::BORDER, true));
1159                 e->setOverrideColor(style.getColor(StyleSpec::TEXTCOLOR, video::SColor(0xFFFFFFFF)));
1160
1161                 irr::SEvent evt;
1162                 evt.EventType            = EET_KEY_INPUT_EVENT;
1163                 evt.KeyInput.Key         = KEY_END;
1164                 evt.KeyInput.Char        = 0;
1165                 evt.KeyInput.Control     = false;
1166                 evt.KeyInput.Shift       = false;
1167                 evt.KeyInput.PressedDown = true;
1168                 e->OnEvent(evt);
1169
1170                 if (parts.size() >= 5) {
1171                         // TODO: remove after 2016-11-03
1172                         warningstream << "pwdfield: use field_close_on_enter[name, enabled]" <<
1173                                         " instead of the 5th param" << std::endl;
1174                         field_close_on_enter[name] = is_yes(parts[4]);
1175                 }
1176
1177                 m_fields.push_back(spec);
1178                 return;
1179         }
1180         errorstream<< "Invalid pwdfield element(" << parts.size() << "): '" << element << "'"  << std::endl;
1181 }
1182
1183 void GUIFormSpecMenu::createTextField(parserData *data, FieldSpec &spec,
1184         core::rect<s32> &rect, bool is_multiline)
1185 {
1186         bool is_editable = !spec.fname.empty();
1187         if (!is_editable && !is_multiline) {
1188                 // spec field id to 0, this stops submit searching for a value that isn't there
1189                 gui::StaticText::add(Environment, spec.flabel.c_str(), rect, false, true,
1190                         this, spec.fid);
1191                 return;
1192         }
1193
1194         if (is_editable) {
1195                 spec.send = true;
1196         } else if (is_multiline &&
1197                         spec.fdefault.empty() && !spec.flabel.empty()) {
1198                 // Multiline textareas: swap default and label for backwards compat
1199                 spec.flabel.swap(spec.fdefault);
1200         }
1201
1202         gui::IGUIEditBox *e = nullptr;
1203         static constexpr bool use_intl_edit_box = USE_FREETYPE &&
1204                 IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR < 9;
1205
1206         if (use_intl_edit_box && g_settings->getBool("freetype")) {
1207                 e = new gui::intlGUIEditBox(spec.fdefault.c_str(),
1208                         true, Environment, this, spec.fid, rect, is_editable, is_multiline);
1209                 e->drop();
1210         } else {
1211                 if (is_multiline)
1212                         e = new GUIEditBoxWithScrollBar(spec.fdefault.c_str(), true,
1213                                 Environment, this, spec.fid, rect, is_editable, true);
1214                 else if (is_editable)
1215                         e = Environment->addEditBox(spec.fdefault.c_str(), rect, true,
1216                                 this, spec.fid);
1217         }
1218
1219         if (e) {
1220                 if (is_editable && spec.fname == data->focused_fieldname)
1221                         Environment->setFocus(e);
1222
1223                 if (is_multiline) {
1224                         e->setMultiLine(true);
1225                         e->setWordWrap(true);
1226                         e->setTextAlignment(gui::EGUIA_UPPERLEFT, gui::EGUIA_UPPERLEFT);
1227                 } else {
1228                         irr::SEvent evt;
1229                         evt.EventType            = EET_KEY_INPUT_EVENT;
1230                         evt.KeyInput.Key         = KEY_END;
1231                         evt.KeyInput.Char        = 0;
1232                         evt.KeyInput.Control     = 0;
1233                         evt.KeyInput.Shift       = 0;
1234                         evt.KeyInput.PressedDown = true;
1235                         e->OnEvent(evt);
1236                 }
1237
1238                 auto style = getStyleForElement(is_multiline ? "textarea" : "field", spec.fname);
1239                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
1240                 e->setDrawBorder(style.getBool(StyleSpec::BORDER, true));
1241                 e->setOverrideColor(style.getColor(StyleSpec::TEXTCOLOR, video::SColor(0xFFFFFFFF)));
1242                 if (style.get(StyleSpec::BGCOLOR, "") == "transparent") {
1243                         e->setDrawBackground(false);
1244                 }
1245         }
1246
1247         if (!spec.flabel.empty()) {
1248                 int font_height = g_fontengine->getTextHeight();
1249                 rect.UpperLeftCorner.Y -= font_height;
1250                 rect.LowerRightCorner.Y = rect.UpperLeftCorner.Y + font_height;
1251                 gui::StaticText::add(Environment, spec.flabel.c_str(), rect, false, true,
1252                         this, 0);
1253         }
1254 }
1255
1256 void GUIFormSpecMenu::parseSimpleField(parserData* data,
1257                 std::vector<std::string> &parts)
1258 {
1259         std::string name = parts[0];
1260         std::string label = parts[1];
1261         std::string default_val = parts[2];
1262
1263         core::rect<s32> rect;
1264
1265         if(data->explicit_size)
1266                 warningstream<<"invalid use of unpositioned \"field\" in inventory"<<std::endl;
1267
1268         v2s32 pos = getElementBasePos(false, nullptr);
1269         pos.Y = ((m_fields.size()+2)*60);
1270         v2s32 size = DesiredRect.getSize();
1271
1272         rect = core::rect<s32>(size.X / 2 - 150, pos.Y,
1273                         (size.X / 2 - 150) + 300, pos.Y + (m_btn_height*2));
1274
1275
1276         if(m_form_src)
1277                 default_val = m_form_src->resolveText(default_val);
1278
1279
1280         std::wstring wlabel = translate_string(utf8_to_wide(unescape_string(label)));
1281
1282         FieldSpec spec(
1283                 name,
1284                 wlabel,
1285                 utf8_to_wide(unescape_string(default_val)),
1286                 258+m_fields.size()
1287         );
1288
1289         createTextField(data, spec, rect, false);
1290
1291         if (parts.size() >= 4) {
1292                 // TODO: remove after 2016-11-03
1293                 warningstream << "field/simple: use field_close_on_enter[name, enabled]" <<
1294                                 " instead of the 4th param" << std::endl;
1295                 field_close_on_enter[name] = is_yes(parts[3]);
1296         }
1297
1298         m_fields.push_back(spec);
1299 }
1300
1301 void GUIFormSpecMenu::parseTextArea(parserData* data, std::vector<std::string>& parts,
1302                 const std::string &type)
1303 {
1304
1305         std::vector<std::string> v_pos = split(parts[0],',');
1306         std::vector<std::string> v_geom = split(parts[1],',');
1307         std::string name = parts[2];
1308         std::string label = parts[3];
1309         std::string default_val = parts[4];
1310
1311         MY_CHECKPOS(type,0);
1312         MY_CHECKGEOM(type,1);
1313
1314         v2s32 pos;
1315         v2s32 geom;
1316
1317         if (data->real_coordinates) {
1318                 pos = getRealCoordinateBasePos(false, v_pos);
1319                 geom = getRealCoordinateGeometry(v_geom);
1320         } else {
1321                 pos = getElementBasePos(false, &v_pos);
1322                 pos -= padding;
1323
1324                 geom.X = (stof(v_geom[0]) * spacing.X) - (spacing.X - imgsize.X);
1325
1326                 if (type == "textarea")
1327                 {
1328                         geom.Y = (stof(v_geom[1]) * (float)imgsize.Y) - (spacing.Y-imgsize.Y);
1329                         pos.Y += m_btn_height;
1330                 }
1331                 else
1332                 {
1333                         pos.Y += (stof(v_geom[1]) * (float)imgsize.Y)/2;
1334                         pos.Y -= m_btn_height;
1335                         geom.Y = m_btn_height*2;
1336                 }
1337         }
1338
1339         core::rect<s32> rect = core::rect<s32>(pos.X, pos.Y, pos.X+geom.X, pos.Y+geom.Y);
1340
1341         if(!data->explicit_size)
1342                 warningstream<<"invalid use of positioned "<<type<<" without a size[] element"<<std::endl;
1343
1344         if(m_form_src)
1345                 default_val = m_form_src->resolveText(default_val);
1346
1347
1348         std::wstring wlabel = translate_string(utf8_to_wide(unescape_string(label)));
1349
1350         FieldSpec spec(
1351                 name,
1352                 wlabel,
1353                 utf8_to_wide(unescape_string(default_val)),
1354                 258+m_fields.size()
1355         );
1356
1357         createTextField(data, spec, rect, type == "textarea");
1358
1359         if (parts.size() >= 6) {
1360                 // TODO: remove after 2016-11-03
1361                 warningstream << "field/textarea: use field_close_on_enter[name, enabled]" <<
1362                                 " instead of the 6th param" << std::endl;
1363                 field_close_on_enter[name] = is_yes(parts[5]);
1364         }
1365
1366         m_fields.push_back(spec);
1367 }
1368
1369 void GUIFormSpecMenu::parseField(parserData* data, const std::string &element,
1370                 const std::string &type)
1371 {
1372         std::vector<std::string> parts = split(element,';');
1373
1374         if (parts.size() == 3 || parts.size() == 4) {
1375                 parseSimpleField(data,parts);
1376                 return;
1377         }
1378
1379         if ((parts.size() == 5) || (parts.size() == 6) ||
1380                 ((parts.size() > 6) && (m_formspec_version > FORMSPEC_API_VERSION)))
1381         {
1382                 parseTextArea(data,parts,type);
1383                 return;
1384         }
1385         errorstream<< "Invalid field element(" << parts.size() << "): '" << element << "'"  << std::endl;
1386 }
1387
1388 void GUIFormSpecMenu::parseLabel(parserData* data, const std::string &element)
1389 {
1390         std::vector<std::string> parts = split(element,';');
1391
1392         if ((parts.size() == 2) ||
1393                 ((parts.size() > 2) && (m_formspec_version > FORMSPEC_API_VERSION)))
1394         {
1395                 std::vector<std::string> v_pos = split(parts[0],',');
1396                 std::string text = parts[1];
1397
1398                 MY_CHECKPOS("label",0);
1399
1400                 if(!data->explicit_size)
1401                         warningstream<<"invalid use of label without a size[] element"<<std::endl;
1402
1403                 std::vector<std::string> lines = split(text, '\n');
1404
1405                 for (unsigned int i = 0; i != lines.size(); i++) {
1406                         std::wstring wlabel = unescape_translate(unescape_string(
1407                                 utf8_to_wide(lines[i])));
1408
1409                         core::rect<s32> rect;
1410
1411                         if (data->real_coordinates) {
1412                                 // Lines are spaced at the distance of 1/2 imgsize.
1413                                 // This alows lines that line up with the new elements
1414                                 // easily without sacrificing good line distance.  If
1415                                 // it was one whole imgsize, it would have too much
1416                                 // spacing.
1417                                 v2s32 pos = getRealCoordinateBasePos(false, v_pos);
1418
1419                                 // Labels are positioned by their center, not their top.
1420                                 pos.Y += (((float) imgsize.Y) / -2) + (((float) imgsize.Y) * i / 2);
1421
1422                                 rect = core::rect<s32>(
1423                                         pos.X, pos.Y,
1424                                         pos.X + m_font->getDimension(wlabel.c_str()).Width,
1425                                         pos.Y + imgsize.Y);
1426
1427                         } else {
1428                                 // Lines are spaced at the nominal distance of
1429                                 // 2/5 inventory slot, even if the font doesn't
1430                                 // quite match that.  This provides consistent
1431                                 // form layout, at the expense of sometimes
1432                                 // having sub-optimal spacing for the font.
1433                                 // We multiply by 2 and then divide by 5, rather
1434                                 // than multiply by 0.4, to get exact results
1435                                 // in the integer cases: 0.4 is not exactly
1436                                 // representable in binary floating point.
1437
1438                                 v2s32 pos = getElementBasePos(false, nullptr);
1439                                 pos.X += stof(v_pos[0]) * spacing.X;
1440                                 pos.Y += (stof(v_pos[1]) + 7.0f / 30.0f) * spacing.Y;
1441
1442                                 pos.Y += ((float) i) * spacing.Y * 2.0 / 5.0;
1443
1444                                 rect = core::rect<s32>(
1445                                         pos.X, pos.Y - m_btn_height,
1446                                         pos.X + m_font->getDimension(wlabel.c_str()).Width,
1447                                         pos.Y + m_btn_height);
1448                         }
1449
1450                         FieldSpec spec(
1451                                 "",
1452                                 wlabel,
1453                                 L"",
1454                                 258+m_fields.size()
1455                         );
1456                         gui::IGUIStaticText *e = gui::StaticText::add(Environment,
1457                                 spec.flabel.c_str(), rect, false, false, this, spec.fid);
1458                         e->setTextAlignment(gui::EGUIA_UPPERLEFT, gui::EGUIA_CENTER);
1459
1460                         auto style = getStyleForElement("label", spec.fname);
1461                         e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
1462                         e->setOverrideColor(style.getColor(StyleSpec::TEXTCOLOR, video::SColor(0xFFFFFFFF)));
1463
1464                         m_fields.push_back(spec);
1465                 }
1466
1467                 return;
1468         }
1469         errorstream << "Invalid label element(" << parts.size() << "): '" << element
1470                 << "'"  << std::endl;
1471 }
1472
1473 void GUIFormSpecMenu::parseVertLabel(parserData* data, const std::string &element)
1474 {
1475         std::vector<std::string> parts = split(element,';');
1476
1477         if ((parts.size() == 2) ||
1478                 ((parts.size() > 2) && (m_formspec_version > FORMSPEC_API_VERSION)))
1479         {
1480                 std::vector<std::string> v_pos = split(parts[0],',');
1481                 std::wstring text = unescape_translate(
1482                         unescape_string(utf8_to_wide(parts[1])));
1483
1484                 MY_CHECKPOS("vertlabel",1);
1485
1486                 v2s32 pos;
1487                 core::rect<s32> rect;
1488
1489                 if (data->real_coordinates) {
1490                         pos = getRealCoordinateBasePos(false, v_pos);
1491
1492                         // Vertlabels are positioned by center, not left.
1493                         pos.X -= imgsize.X / 2;
1494
1495                         // We use text.length + 1 because without it, the rect
1496                         // isn't quite tall enough and cuts off the text.
1497                         rect = core::rect<s32>(pos.X, pos.Y,
1498                                 pos.X + imgsize.X,
1499                                 pos.Y + font_line_height(m_font) *
1500                                 (text.length() + 1));
1501
1502                 } else {
1503                         pos = getElementBasePos(false, &v_pos);
1504
1505                         // As above, the length must be one longer. The width of
1506                         // the rect (15 pixels) seems rather arbitrary, but
1507                         // changing it might break something.
1508                         rect = core::rect<s32>(
1509                                 pos.X, pos.Y+((imgsize.Y/2) - m_btn_height),
1510                                 pos.X+15, pos.Y +
1511                                         font_line_height(m_font) *
1512                                         (text.length() + 1) +
1513                                         ((imgsize.Y/2) - m_btn_height));
1514                 }
1515
1516                 if(!data->explicit_size)
1517                         warningstream<<"invalid use of label without a size[] element"<<std::endl;
1518
1519                 std::wstring label;
1520
1521                 for (wchar_t i : text) {
1522                         label += i;
1523                         label += L"\n";
1524                 }
1525
1526                 FieldSpec spec(
1527                         "",
1528                         label,
1529                         L"",
1530                         258+m_fields.size()
1531                 );
1532                 gui::IGUIStaticText *e = gui::StaticText::add(Environment, spec.flabel.c_str(),
1533                         rect, false, false, this, spec.fid);
1534                 e->setTextAlignment(gui::EGUIA_CENTER, gui::EGUIA_CENTER);
1535
1536                 auto style = getStyleForElement("vertlabel", spec.fname, "label");
1537                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
1538                 e->setOverrideColor(style.getColor(StyleSpec::TEXTCOLOR, video::SColor(0xFFFFFFFF)));
1539
1540                 m_fields.push_back(spec);
1541                 return;
1542         }
1543         errorstream<< "Invalid vertlabel element(" << parts.size() << "): '" << element << "'"  << std::endl;
1544 }
1545
1546 void GUIFormSpecMenu::parseImageButton(parserData* data, const std::string &element,
1547                 const std::string &type)
1548 {
1549         std::vector<std::string> parts = split(element,';');
1550
1551         if ((((parts.size() >= 5) && (parts.size() <= 8)) && (parts.size() != 6)) ||
1552                 ((parts.size() > 8) && (m_formspec_version > FORMSPEC_API_VERSION)))
1553         {
1554                 std::vector<std::string> v_pos = split(parts[0],',');
1555                 std::vector<std::string> v_geom = split(parts[1],',');
1556                 std::string image_name = parts[2];
1557                 std::string name = parts[3];
1558                 std::string label = parts[4];
1559
1560                 MY_CHECKPOS("imagebutton",0);
1561                 MY_CHECKGEOM("imagebutton",1);
1562
1563                 bool noclip     = false;
1564                 bool drawborder = true;
1565                 std::string pressed_image_name;
1566
1567                 if (parts.size() >= 7) {
1568                         if (parts[5] == "true")
1569                                 noclip = true;
1570                         if (parts[6] == "false")
1571                                 drawborder = false;
1572                 }
1573
1574                 if (parts.size() >= 8) {
1575                         pressed_image_name = parts[7];
1576                 }
1577
1578                 v2s32 pos;
1579                 v2s32 geom;
1580
1581                 if (data->real_coordinates) {
1582                         pos = getRealCoordinateBasePos(false, v_pos);
1583                         geom = getRealCoordinateGeometry(v_geom);
1584                 } else {
1585                         pos = getElementBasePos(false, &v_pos);
1586                         geom.X = (stof(v_geom[0]) * spacing.X) - (spacing.X - imgsize.X);
1587                         geom.Y = (stof(v_geom[1]) * spacing.Y) - (spacing.Y - imgsize.Y);
1588                 }
1589
1590                 core::rect<s32> rect = core::rect<s32>(pos.X, pos.Y, pos.X+geom.X,
1591                         pos.Y+geom.Y);
1592
1593                 if (!data->explicit_size)
1594                         warningstream<<"invalid use of image_button without a size[] element"<<std::endl;
1595
1596                 image_name = unescape_string(image_name);
1597                 pressed_image_name = unescape_string(pressed_image_name);
1598
1599                 std::wstring wlabel = utf8_to_wide(unescape_string(label));
1600
1601                 FieldSpec spec(
1602                         name,
1603                         wlabel,
1604                         utf8_to_wide(image_name),
1605                         258+m_fields.size()
1606                 );
1607                 spec.ftype = f_Button;
1608                 if (type == "image_button_exit")
1609                         spec.is_exit = true;
1610
1611                 video::ITexture *texture = 0;
1612                 video::ITexture *pressed_texture = 0;
1613                 texture = m_tsrc->getTexture(image_name);
1614                 if (!pressed_image_name.empty())
1615                         pressed_texture = m_tsrc->getTexture(pressed_image_name);
1616                 else
1617                         pressed_texture = texture;
1618
1619                 gui::IGUIButton *e = Environment->addButton(rect, this, spec.fid, spec.flabel.c_str());
1620
1621                 if (spec.fname == data->focused_fieldname) {
1622                         Environment->setFocus(e);
1623                 }
1624
1625                 auto style = getStyleForElement("image_button", spec.fname);
1626
1627                 e->setUseAlphaChannel(style.getBool(StyleSpec::ALPHA, true));
1628                 e->setImage(guiScalingImageButton(
1629                         Environment->getVideoDriver(), texture, geom.X, geom.Y));
1630                 e->setPressedImage(guiScalingImageButton(
1631                         Environment->getVideoDriver(), pressed_texture, geom.X, geom.Y));
1632                 e->setScaleImage(true);
1633                 if (parts.size() >= 7) {
1634                         e->setNotClipped(noclip);
1635                         e->setDrawBorder(drawborder);
1636                 } else {
1637                         e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
1638                         e->setDrawBorder(style.getBool(StyleSpec::BORDER, true));
1639                 }
1640
1641                 m_fields.push_back(spec);
1642                 return;
1643         }
1644
1645         errorstream<< "Invalid imagebutton element(" << parts.size() << "): '" << element << "'"  << std::endl;
1646 }
1647
1648 void GUIFormSpecMenu::parseTabHeader(parserData* data, const std::string &element)
1649 {
1650         std::vector<std::string> parts = split(element, ';');
1651
1652         if (((parts.size() == 4) || (parts.size() == 6)) || (parts.size() == 7 &&
1653                 data->real_coordinates) || ((parts.size() > 6) &&
1654                 (m_formspec_version > FORMSPEC_API_VERSION)))
1655         {
1656                 std::vector<std::string> v_pos = split(parts[0],',');
1657
1658                 // If we're using real coordinates, add an extra field for height.
1659                 // Width is not here because tabs are the width of the text, and
1660                 // there's no reason to change that.
1661                 unsigned int i = 0;
1662                 std::vector<std::string> v_geom = {"1", "0.75"}; // Dummy width and default height
1663                 bool auto_width = true;
1664                 if (parts.size() == 7) {
1665                         i++;
1666
1667                         v_geom = split(parts[1], ',');
1668                         if (v_geom.size() == 1)
1669                                 v_geom.insert(v_geom.begin(), "1"); // Dummy value
1670                         else
1671                                 auto_width = false;
1672                 }
1673
1674                 std::string name = parts[i+1];
1675                 std::vector<std::string> buttons = split(parts[i+2], ',');
1676                 std::string str_index = parts[i+3];
1677                 bool show_background = true;
1678                 bool show_border = true;
1679                 int tab_index = stoi(str_index) - 1;
1680
1681                 MY_CHECKPOS("tabheader", 0);
1682
1683                 if (parts.size() == 6 + i) {
1684                         if (parts[4+i] == "true")
1685                                 show_background = false;
1686                         if (parts[5+i] == "false")
1687                                 show_border = false;
1688                 }
1689
1690                 FieldSpec spec(
1691                         name,
1692                         L"",
1693                         L"",
1694                         258+m_fields.size()
1695                 );
1696
1697                 spec.ftype = f_TabHeader;
1698
1699                 v2s32 pos;
1700                 v2s32 geom;
1701
1702                 if (data->real_coordinates) {
1703                         pos = getRealCoordinateBasePos(false, v_pos);
1704
1705                         geom = getRealCoordinateGeometry(v_geom);
1706                         pos.Y -= geom.Y; // TabHeader base pos is the bottom, not the top.
1707                         if (auto_width)
1708                                 geom.X = DesiredRect.getWidth(); // Set automatic width
1709
1710                         MY_CHECKGEOM("tabheader", 1);
1711                 } else {
1712                         v2f32 pos_f = pos_offset * spacing;
1713                         pos_f.X += stof(v_pos[0]) * spacing.X;
1714                         pos_f.Y += stof(v_pos[1]) * spacing.Y - m_btn_height * 2;
1715                         pos = v2s32(pos_f.X, pos_f.Y);
1716
1717                         geom.Y = m_btn_height * 2;
1718                         geom.X = DesiredRect.getWidth();
1719                 }
1720
1721                 core::rect<s32> rect = core::rect<s32>(pos.X, pos.Y, pos.X+geom.X,
1722                                 pos.Y+geom.Y);
1723
1724                 gui::IGUITabControl *e = Environment->addTabControl(rect, this,
1725                                 show_background, show_border, spec.fid);
1726                 e->setAlignment(irr::gui::EGUIA_UPPERLEFT, irr::gui::EGUIA_UPPERLEFT,
1727                                 irr::gui::EGUIA_UPPERLEFT, irr::gui::EGUIA_LOWERRIGHT);
1728                 e->setTabHeight(geom.Y);
1729
1730                 if (spec.fname == data->focused_fieldname) {
1731                         Environment->setFocus(e);
1732                 }
1733
1734                 auto style = getStyleForElement("tabheader", name);
1735                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, true));
1736
1737                 for (const std::string &button : buttons) {
1738                         auto tab = e->addTab(unescape_translate(unescape_string(
1739                                 utf8_to_wide(button))).c_str(), -1);
1740                         if (style.isNotDefault(StyleSpec::BGCOLOR))
1741                                 tab->setBackgroundColor(style.getColor(StyleSpec::BGCOLOR));
1742
1743                         tab->setTextColor(style.getColor(StyleSpec::TEXTCOLOR, video::SColor(0xFFFFFFFF)));
1744                 }
1745
1746                 if ((tab_index >= 0) &&
1747                                 (buttons.size() < INT_MAX) &&
1748                                 (tab_index < (int) buttons.size()))
1749                         e->setActiveTab(tab_index);
1750
1751                 m_fields.push_back(spec);
1752                 return;
1753         }
1754         errorstream << "Invalid TabHeader element(" << parts.size() << "): '"
1755                         << element << "'"  << std::endl;
1756 }
1757
1758 void GUIFormSpecMenu::parseItemImageButton(parserData* data, const std::string &element)
1759 {
1760
1761         if (m_client == 0) {
1762                 warningstream << "invalid use of item_image_button with m_client==0"
1763                         << std::endl;
1764                 return;
1765         }
1766
1767         std::vector<std::string> parts = split(element,';');
1768
1769         if ((parts.size() == 5) ||
1770                 ((parts.size() > 5) && (m_formspec_version > FORMSPEC_API_VERSION)))
1771         {
1772                 std::vector<std::string> v_pos = split(parts[0],',');
1773                 std::vector<std::string> v_geom = split(parts[1],',');
1774                 std::string item_name = parts[2];
1775                 std::string name = parts[3];
1776                 std::string label = parts[4];
1777
1778                 label = unescape_string(label);
1779                 item_name = unescape_string(item_name);
1780
1781                 MY_CHECKPOS("itemimagebutton",0);
1782                 MY_CHECKGEOM("itemimagebutton",1);
1783
1784                 v2s32 pos;
1785                 v2s32 geom;
1786
1787                 if (data->real_coordinates) {
1788                         pos = getRealCoordinateBasePos(false, v_pos);
1789                         geom = getRealCoordinateGeometry(v_geom);
1790                 } else {
1791                         pos = getElementBasePos(false, &v_pos);
1792                         geom.X = (stof(v_geom[0]) * spacing.X) - (spacing.X - imgsize.X);
1793                         geom.Y = (stof(v_geom[1]) * spacing.Y) - (spacing.Y - imgsize.Y);
1794                 }
1795
1796                 core::rect<s32> rect = core::rect<s32>(pos.X, pos.Y, pos.X+geom.X, pos.Y+geom.Y);
1797
1798                 if(!data->explicit_size)
1799                         warningstream<<"invalid use of item_image_button without a size[] element"<<std::endl;
1800
1801                 IItemDefManager *idef = m_client->idef();
1802                 ItemStack item;
1803                 item.deSerialize(item_name, idef);
1804
1805                 m_tooltips[name] =
1806                         TooltipSpec(utf8_to_wide(item.getDefinition(idef).description),
1807                                                 m_default_tooltip_bgcolor,
1808                                                 m_default_tooltip_color);
1809
1810                 FieldSpec spec(
1811                         name,
1812                         utf8_to_wide(label),
1813                         utf8_to_wide(item_name),
1814                         258 + m_fields.size()
1815                 );
1816
1817                 gui::IGUIButton *e = Environment->addButton(rect, this, spec.fid, L"");
1818
1819                 auto style = getStyleForElement("item_image_button", spec.fname, "image_button");
1820                 e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
1821                 e->setDrawBorder(style.getBool(StyleSpec::BORDER, true));
1822
1823                 if (spec.fname == data->focused_fieldname) {
1824                         Environment->setFocus(e);
1825                 }
1826
1827                 spec.ftype = f_Button;
1828                 rect+=data->basepos-padding;
1829                 spec.rect=rect;
1830                 m_fields.push_back(spec);
1831
1832                 if (data->real_coordinates)
1833                         pos = getRealCoordinateBasePos(true, v_pos);
1834                 else
1835                         pos = getElementBasePos(true, &v_pos);
1836
1837                 m_itemimages.emplace_back("", item_name, e, pos, geom);
1838                 m_static_texts.emplace_back(utf8_to_wide(label), rect, e);
1839                 return;
1840         }
1841         errorstream<< "Invalid ItemImagebutton element(" << parts.size() << "): '" << element << "'"  << std::endl;
1842 }
1843
1844 void GUIFormSpecMenu::parseBox(parserData* data, const std::string &element)
1845 {
1846         std::vector<std::string> parts = split(element,';');
1847
1848         if ((parts.size() == 3) ||
1849                 ((parts.size() > 3) && (m_formspec_version > FORMSPEC_API_VERSION)))
1850         {
1851                 std::vector<std::string> v_pos = split(parts[0],',');
1852                 std::vector<std::string> v_geom = split(parts[1],',');
1853
1854                 MY_CHECKPOS("box",0);
1855                 MY_CHECKGEOM("box",1);
1856
1857                 v2s32 pos;
1858                 v2s32 geom;
1859
1860                 if (data->real_coordinates) {
1861                         pos = getRealCoordinateBasePos(true, v_pos);
1862                         geom = getRealCoordinateGeometry(v_geom);
1863                 } else {
1864                         pos = getElementBasePos(true, &v_pos);
1865                         geom.X = stof(v_geom[0]) * spacing.X;
1866                         geom.Y = stof(v_geom[1]) * spacing.Y;
1867                 }
1868
1869                 video::SColor tmp_color;
1870
1871                 if (parseColorString(parts[2], tmp_color, false, 0x8C)) {
1872                         BoxDrawSpec spec(pos, geom, tmp_color);
1873
1874                         m_boxes.push_back(spec);
1875                 }
1876                 else {
1877                         errorstream<< "Invalid Box element(" << parts.size() << "): '" << element << "'  INVALID COLOR"  << std::endl;
1878                 }
1879                 return;
1880         }
1881         errorstream<< "Invalid Box element(" << parts.size() << "): '" << element << "'"  << std::endl;
1882 }
1883
1884 void GUIFormSpecMenu::parseBackgroundColor(parserData *data, const std::string &element)
1885 {
1886         std::vector<std::string> parts = split(element,';');
1887
1888         if (((parts.size() == 1) || (parts.size() == 2)) ||
1889                         ((parts.size() > 2) && (m_formspec_version > FORMSPEC_API_VERSION))) {
1890                 if (parts.size() == 1) {
1891                         parseColorString(parts[0], m_bgcolor, false);
1892                 } else if (parts.size() == 2) {
1893                         parseColorString(parts[0], m_fullscreen_bgcolor, false);
1894                         m_bgfullscreen = is_yes(parts[1]);
1895                 }
1896
1897                 return;
1898         }
1899
1900         errorstream << "Invalid bgcolor element(" << parts.size() << "): '" << element << "'"
1901                         << std::endl;
1902 }
1903
1904 void GUIFormSpecMenu::parseListColors(parserData* data, const std::string &element)
1905 {
1906         std::vector<std::string> parts = split(element,';');
1907
1908         if (((parts.size() == 2) || (parts.size() == 3) || (parts.size() == 5)) ||
1909                 ((parts.size() > 5) && (m_formspec_version > FORMSPEC_API_VERSION)))
1910         {
1911                 parseColorString(parts[0], m_slotbg_n, false);
1912                 parseColorString(parts[1], m_slotbg_h, false);
1913
1914                 if (parts.size() >= 3) {
1915                         if (parseColorString(parts[2], m_slotbordercolor, false)) {
1916                                 m_slotborder = true;
1917                         }
1918                 }
1919                 if (parts.size() == 5) {
1920                         video::SColor tmp_color;
1921
1922                         if (parseColorString(parts[3], tmp_color, false))
1923                                 m_default_tooltip_bgcolor = tmp_color;
1924                         if (parseColorString(parts[4], tmp_color, false))
1925                                 m_default_tooltip_color = tmp_color;
1926                 }
1927                 return;
1928         }
1929         errorstream<< "Invalid listcolors element(" << parts.size() << "): '" << element << "'"  << std::endl;
1930 }
1931
1932 void GUIFormSpecMenu::parseTooltip(parserData* data, const std::string &element)
1933 {
1934         std::vector<std::string> parts = split(element,';');
1935         if (parts.size() < 2) {
1936                 errorstream << "Invalid tooltip element(" << parts.size() << "): '"
1937                                 << element << "'"  << std::endl;
1938                 return;
1939         }
1940
1941         // Get mode and check size
1942         bool rect_mode = parts[0].find(',') != std::string::npos;
1943         size_t base_size = rect_mode ? 3 : 2;
1944         if (parts.size() != base_size && parts.size() != base_size + 2) {
1945                 errorstream << "Invalid tooltip element(" << parts.size() << "): '"
1946                                 << element << "'"  << std::endl;
1947                 return;
1948         }
1949
1950         // Read colors
1951         video::SColor bgcolor = m_default_tooltip_bgcolor;
1952         video::SColor color   = m_default_tooltip_color;
1953         if (parts.size() == base_size + 2 &&
1954                         (!parseColorString(parts[base_size], bgcolor, false) ||
1955                                 !parseColorString(parts[base_size + 1], color, false))) {
1956                 errorstream << "Invalid color in tooltip element(" << parts.size()
1957                                 << "): '" << element << "'"  << std::endl;
1958                 return;
1959         }
1960
1961         // Make tooltip spec
1962         std::string text = unescape_string(parts[rect_mode ? 2 : 1]);
1963         TooltipSpec spec(utf8_to_wide(text), bgcolor, color);
1964
1965         // Add tooltip
1966         if (rect_mode) {
1967                 std::vector<std::string> v_pos  = split(parts[0], ',');
1968                 std::vector<std::string> v_geom = split(parts[1], ',');
1969
1970                 MY_CHECKPOS("tooltip", 0);
1971                 MY_CHECKGEOM("tooltip", 1);
1972
1973                 v2s32 pos;
1974                 v2s32 geom;
1975
1976                 if (data->real_coordinates) {
1977                         pos = getRealCoordinateBasePos(true, v_pos);
1978                         geom = getRealCoordinateGeometry(v_geom);
1979                 } else {
1980                         pos = getElementBasePos(true, &v_pos);
1981                         geom.X = stof(v_geom[0]) * spacing.X;
1982                         geom.Y = stof(v_geom[1]) * spacing.Y;
1983                 }
1984
1985                 irr::core::rect<s32> rect(pos, pos + geom);
1986                 m_tooltip_rects.emplace_back(rect, spec);
1987         } else {
1988                 m_tooltips[parts[0]] = spec;
1989         }
1990 }
1991
1992 bool GUIFormSpecMenu::parseVersionDirect(const std::string &data)
1993 {
1994         //some prechecks
1995         if (data.empty())
1996                 return false;
1997
1998         std::vector<std::string> parts = split(data,'[');
1999
2000         if (parts.size() < 2) {
2001                 return false;
2002         }
2003
2004         if (parts[0] != "formspec_version") {
2005                 return false;
2006         }
2007
2008         if (is_number(parts[1])) {
2009                 m_formspec_version = mystoi(parts[1]);
2010                 return true;
2011         }
2012
2013         return false;
2014 }
2015
2016 bool GUIFormSpecMenu::parseSizeDirect(parserData* data, const std::string &element)
2017 {
2018         if (element.empty())
2019                 return false;
2020
2021         std::vector<std::string> parts = split(element,'[');
2022
2023         if (parts.size() < 2)
2024                 return false;
2025
2026         std::string type = trim(parts[0]);
2027         std::string description = trim(parts[1]);
2028
2029         if (type != "size" && type != "invsize")
2030                 return false;
2031
2032         if (type == "invsize")
2033                 log_deprecated("Deprecated formspec element \"invsize\" is used");
2034
2035         parseSize(data, description);
2036
2037         return true;
2038 }
2039
2040 bool GUIFormSpecMenu::parsePositionDirect(parserData *data, const std::string &element)
2041 {
2042         if (element.empty())
2043                 return false;
2044
2045         std::vector<std::string> parts = split(element, '[');
2046
2047         if (parts.size() != 2)
2048                 return false;
2049
2050         std::string type = trim(parts[0]);
2051         std::string description = trim(parts[1]);
2052
2053         if (type != "position")
2054                 return false;
2055
2056         parsePosition(data, description);
2057
2058         return true;
2059 }
2060
2061 void GUIFormSpecMenu::parsePosition(parserData *data, const std::string &element)
2062 {
2063         std::vector<std::string> parts = split(element, ',');
2064
2065         if (parts.size() == 2) {
2066                 data->offset.X = stof(parts[0]);
2067                 data->offset.Y = stof(parts[1]);
2068                 return;
2069         }
2070
2071         errorstream << "Invalid position element (" << parts.size() << "): '" << element << "'" << std::endl;
2072 }
2073
2074 bool GUIFormSpecMenu::parseAnchorDirect(parserData *data, const std::string &element)
2075 {
2076         if (element.empty())
2077                 return false;
2078
2079         std::vector<std::string> parts = split(element, '[');
2080
2081         if (parts.size() != 2)
2082                 return false;
2083
2084         std::string type = trim(parts[0]);
2085         std::string description = trim(parts[1]);
2086
2087         if (type != "anchor")
2088                 return false;
2089
2090         parseAnchor(data, description);
2091
2092         return true;
2093 }
2094
2095 void GUIFormSpecMenu::parseAnchor(parserData *data, const std::string &element)
2096 {
2097         std::vector<std::string> parts = split(element, ',');
2098
2099         if (parts.size() == 2) {
2100                 data->anchor.X = stof(parts[0]);
2101                 data->anchor.Y = stof(parts[1]);
2102                 return;
2103         }
2104
2105         errorstream << "Invalid anchor element (" << parts.size() << "): '" << element
2106                         << "'" << std::endl;
2107 }
2108
2109 bool GUIFormSpecMenu::parseStyle(parserData *data, const std::string &element, bool style_type)
2110 {
2111         std::vector<std::string> parts = split(element, ';');
2112
2113         if (parts.size() < 2) {
2114                 errorstream << "Invalid style element (" << parts.size() << "): '" << element
2115                                         << "'" << std::endl;
2116                 return false;
2117         }
2118
2119         std::string selector = trim(parts[0]);
2120         if (selector.empty()) {
2121                 errorstream << "Invalid style element (Selector required): '" << element
2122                                         << "'" << std::endl;
2123                 return false;
2124         }
2125
2126         StyleSpec spec;
2127
2128         for (size_t i = 1; i < parts.size(); i++) {
2129                 size_t equal_pos = parts[i].find('=');
2130                 if (equal_pos == std::string::npos) {
2131                         errorstream << "Invalid style element (Property missing value): '" << element
2132                                                 << "'" << std::endl;
2133                         return false;
2134                 }
2135
2136                 std::string propname = trim(parts[i].substr(0, equal_pos));
2137                 std::string value    = trim(unescape_string(parts[i].substr(equal_pos + 1)));
2138
2139                 std::transform(propname.begin(), propname.end(), propname.begin(), ::tolower);
2140
2141                 StyleSpec::Property prop = StyleSpec::GetPropertyByName(propname);
2142                 if (prop == StyleSpec::NONE) {
2143                         if (property_warned.find(propname) != property_warned.end()) {
2144                                 warningstream << "Invalid style element (Unknown property " << propname << "): '"
2145                                                 << element
2146                                                 << "'" << std::endl;
2147                                 property_warned.insert(propname);
2148                         }
2149                         return false;
2150                 }
2151
2152                 spec.set(prop, value);
2153         }
2154
2155         if (style_type) {
2156                 theme_by_type[selector] |= spec;
2157         } else {
2158                 theme_by_name[selector] |= spec;
2159         }
2160
2161         return true;
2162 }
2163
2164 void GUIFormSpecMenu::parseElement(parserData* data, const std::string &element)
2165 {
2166         //some prechecks
2167         if (element.empty())
2168                 return;
2169
2170         if (parseVersionDirect(element))
2171                 return;
2172
2173         std::vector<std::string> parts = split(element,'[');
2174
2175         // ugly workaround to keep compatibility
2176         if (parts.size() > 2) {
2177                 if (trim(parts[0]) == "image") {
2178                         for (unsigned int i=2;i< parts.size(); i++) {
2179                                 parts[1] += "[" + parts[i];
2180                         }
2181                 }
2182                 else { return; }
2183         }
2184
2185         if (parts.size() < 2) {
2186                 return;
2187         }
2188
2189         std::string type = trim(parts[0]);
2190         std::string description = trim(parts[1]);
2191
2192         if (type == "container") {
2193                 parseContainer(data, description);
2194                 return;
2195         }
2196
2197         if (type == "container_end") {
2198                 parseContainerEnd(data);
2199                 return;
2200         }
2201
2202         if (type == "list") {
2203                 parseList(data, description);
2204                 return;
2205         }
2206
2207         if (type == "listring") {
2208                 parseListRing(data, description);
2209                 return;
2210         }
2211
2212         if (type == "checkbox") {
2213                 parseCheckbox(data, description);
2214                 return;
2215         }
2216
2217         if (type == "image") {
2218                 parseImage(data, description);
2219                 return;
2220         }
2221
2222         if (type == "item_image") {
2223                 parseItemImage(data, description);
2224                 return;
2225         }
2226
2227         if (type == "button" || type == "button_exit") {
2228                 parseButton(data, description, type);
2229                 return;
2230         }
2231
2232         if (type == "background") {
2233                 parseBackground(data,description);
2234                 return;
2235         }
2236
2237         if (type == "tableoptions"){
2238                 parseTableOptions(data,description);
2239                 return;
2240         }
2241
2242         if (type == "tablecolumns"){
2243                 parseTableColumns(data,description);
2244                 return;
2245         }
2246
2247         if (type == "table"){
2248                 parseTable(data,description);
2249                 return;
2250         }
2251
2252         if (type == "textlist"){
2253                 parseTextList(data,description);
2254                 return;
2255         }
2256
2257         if (type == "dropdown"){
2258                 parseDropDown(data,description);
2259                 return;
2260         }
2261
2262         if (type == "field_close_on_enter") {
2263                 parseFieldCloseOnEnter(data, description);
2264                 return;
2265         }
2266
2267         if (type == "pwdfield") {
2268                 parsePwdField(data,description);
2269                 return;
2270         }
2271
2272         if ((type == "field") || (type == "textarea")){
2273                 parseField(data,description,type);
2274                 return;
2275         }
2276
2277         if (type == "label") {
2278                 parseLabel(data,description);
2279                 return;
2280         }
2281
2282         if (type == "vertlabel") {
2283                 parseVertLabel(data,description);
2284                 return;
2285         }
2286
2287         if (type == "item_image_button") {
2288                 parseItemImageButton(data,description);
2289                 return;
2290         }
2291
2292         if ((type == "image_button") || (type == "image_button_exit")) {
2293                 parseImageButton(data,description,type);
2294                 return;
2295         }
2296
2297         if (type == "tabheader") {
2298                 parseTabHeader(data,description);
2299                 return;
2300         }
2301
2302         if (type == "box") {
2303                 parseBox(data,description);
2304                 return;
2305         }
2306
2307         if (type == "bgcolor") {
2308                 parseBackgroundColor(data,description);
2309                 return;
2310         }
2311
2312         if (type == "listcolors") {
2313                 parseListColors(data,description);
2314                 return;
2315         }
2316
2317         if (type == "tooltip") {
2318                 parseTooltip(data,description);
2319                 return;
2320         }
2321
2322         if (type == "scrollbar") {
2323                 parseScrollBar(data, description);
2324                 return;
2325         }
2326
2327         if (type == "real_coordinates") {
2328                 data->real_coordinates = is_yes(description);
2329                 return;
2330         }
2331
2332         if (type == "style") {
2333                 parseStyle(data, description, false);
2334                 return;
2335         }
2336
2337         if (type == "style_type") {
2338                 parseStyle(data, description, true);
2339                 return;
2340         }
2341
2342         // Ignore others
2343         infostream << "Unknown DrawSpec: type=" << type << ", data=\"" << description << "\""
2344                         << std::endl;
2345 }
2346
2347 void GUIFormSpecMenu::regenerateGui(v2u32 screensize)
2348 {
2349         /* useless to regenerate without a screensize */
2350         if ((screensize.X <= 0) || (screensize.Y <= 0)) {
2351                 return;
2352         }
2353
2354         parserData mydata;
2355
2356         //preserve tables
2357         for (auto &m_table : m_tables) {
2358                 std::string tablename = m_table.first.fname;
2359                 GUITable *table = m_table.second;
2360                 mydata.table_dyndata[tablename] = table->getDynamicData();
2361         }
2362
2363         //set focus
2364         if (!m_focused_element.empty())
2365                 mydata.focused_fieldname = m_focused_element;
2366
2367         //preserve focus
2368         gui::IGUIElement *focused_element = Environment->getFocus();
2369         if (focused_element && focused_element->getParent() == this) {
2370                 s32 focused_id = focused_element->getID();
2371                 if (focused_id > 257) {
2372                         for (const GUIFormSpecMenu::FieldSpec &field : m_fields) {
2373                                 if (field.fid == focused_id) {
2374                                         mydata.focused_fieldname = field.fname;
2375                                         break;
2376                                 }
2377                         }
2378                 }
2379         }
2380
2381         // Remove children
2382         removeChildren();
2383
2384         for (auto &table_it : m_tables) {
2385                 table_it.second->drop();
2386         }
2387
2388         mydata.size= v2s32(100,100);
2389         mydata.screensize = screensize;
2390         mydata.offset = v2f32(0.5f, 0.5f);
2391         mydata.anchor = v2f32(0.5f, 0.5f);
2392
2393         // Base position of contents of form
2394         mydata.basepos = getBasePos();
2395
2396         /* Convert m_init_draw_spec to m_inventorylists */
2397
2398         m_inventorylists.clear();
2399         m_images.clear();
2400         m_backgrounds.clear();
2401         m_itemimages.clear();
2402         m_tables.clear();
2403         m_checkboxes.clear();
2404         m_scrollbars.clear();
2405         m_fields.clear();
2406         m_boxes.clear();
2407         m_tooltips.clear();
2408         m_tooltip_rects.clear();
2409         m_inventory_rings.clear();
2410         m_static_texts.clear();
2411         m_dropdowns.clear();
2412         theme_by_name.clear();
2413         theme_by_type.clear();
2414
2415         m_bgfullscreen = false;
2416
2417         {
2418                 v3f formspec_bgcolor = g_settings->getV3F("formspec_default_bg_color");
2419                 m_bgcolor = video::SColor(
2420                         (u8) clamp_u8(g_settings->getS32("formspec_default_bg_opacity")),
2421                         clamp_u8(myround(formspec_bgcolor.X)),
2422                         clamp_u8(myround(formspec_bgcolor.Y)),
2423                         clamp_u8(myround(formspec_bgcolor.Z))
2424                 );
2425         }
2426
2427         {
2428                 v3f formspec_bgcolor = g_settings->getV3F("formspec_fullscreen_bg_color");
2429                 m_fullscreen_bgcolor = video::SColor(
2430                         (u8) clamp_u8(g_settings->getS32("formspec_fullscreen_bg_opacity")),
2431                         clamp_u8(myround(formspec_bgcolor.X)),
2432                         clamp_u8(myround(formspec_bgcolor.Y)),
2433                         clamp_u8(myround(formspec_bgcolor.Z))
2434                 );
2435         }
2436
2437         m_slotbg_n = video::SColor(255,128,128,128);
2438         m_slotbg_h = video::SColor(255,192,192,192);
2439
2440         m_default_tooltip_bgcolor = video::SColor(255,110,130,60);
2441         m_default_tooltip_color = video::SColor(255,255,255,255);
2442
2443         m_slotbordercolor = video::SColor(200,0,0,0);
2444         m_slotborder = false;
2445
2446         // Add tooltip
2447         {
2448                 assert(!m_tooltip_element);
2449                 // Note: parent != this so that the tooltip isn't clipped by the menu rectangle
2450                 m_tooltip_element = gui::StaticText::add(Environment, L"",
2451                         core::rect<s32>(0, 0, 110, 18));
2452                 m_tooltip_element->enableOverrideColor(true);
2453                 m_tooltip_element->setBackgroundColor(m_default_tooltip_bgcolor);
2454                 m_tooltip_element->setDrawBackground(true);
2455                 m_tooltip_element->setDrawBorder(true);
2456                 m_tooltip_element->setOverrideColor(m_default_tooltip_color);
2457                 m_tooltip_element->setTextAlignment(gui::EGUIA_CENTER, gui::EGUIA_CENTER);
2458                 m_tooltip_element->setWordWrap(false);
2459                 //we're not parent so no autograb for this one!
2460                 m_tooltip_element->grab();
2461         }
2462
2463         std::vector<std::string> elements = split(m_formspec_string,']');
2464         unsigned int i = 0;
2465
2466         /* try to read version from first element only */
2467         if (!elements.empty()) {
2468                 if (parseVersionDirect(elements[0])) {
2469                         i++;
2470                 }
2471         }
2472
2473         /* we need size first in order to calculate image scale */
2474         mydata.explicit_size = false;
2475         for (; i< elements.size(); i++) {
2476                 if (!parseSizeDirect(&mydata, elements[i])) {
2477                         break;
2478                 }
2479         }
2480
2481         /* "position" element is always after "size" element if it used */
2482         for (; i< elements.size(); i++) {
2483                 if (!parsePositionDirect(&mydata, elements[i])) {
2484                         break;
2485                 }
2486         }
2487
2488         /* "anchor" element is always after "position" (or  "size" element) if it used */
2489         for (; i< elements.size(); i++) {
2490                 if (!parseAnchorDirect(&mydata, elements[i])) {
2491                         break;
2492                 }
2493         }
2494
2495         /* "no_prepend" element is always after "position" (or  "size" element) if it used */
2496         bool enable_prepends = true;
2497         for (; i < elements.size(); i++) {
2498                 if (elements[i].empty())
2499                         break;
2500
2501                 std::vector<std::string> parts = split(elements[i], '[');
2502                 if (trim(parts[0]) == "no_prepend")
2503                         enable_prepends = false;
2504                 else
2505                         break;
2506         }
2507
2508         /* Copy of the "real_coordinates" element for after the form size. */
2509         mydata.real_coordinates = m_formspec_version >= 2;
2510         for (; i < elements.size(); i++) {
2511                 std::vector<std::string> parts = split(elements[i], '[');
2512                 std::string name = trim(parts[0]);
2513                 if (name != "real_coordinates" || parts.size() != 2)
2514                         break; // Invalid format
2515
2516                 mydata.real_coordinates = is_yes(trim(parts[1]));
2517         }
2518
2519         if (mydata.explicit_size) {
2520                 // compute scaling for specified form size
2521                 if (m_lock) {
2522                         v2u32 current_screensize = RenderingEngine::get_video_driver()->getScreenSize();
2523                         v2u32 delta = current_screensize - m_lockscreensize;
2524
2525                         if (current_screensize.Y > m_lockscreensize.Y)
2526                                 delta.Y /= 2;
2527                         else
2528                                 delta.Y = 0;
2529
2530                         if (current_screensize.X > m_lockscreensize.X)
2531                                 delta.X /= 2;
2532                         else
2533                                 delta.X = 0;
2534
2535                         offset = v2s32(delta.X,delta.Y);
2536
2537                         mydata.screensize = m_lockscreensize;
2538                 } else {
2539                         offset = v2s32(0,0);
2540                 }
2541
2542                 double gui_scaling = g_settings->getFloat("gui_scaling");
2543                 double screen_dpi = RenderingEngine::getDisplayDensity() * 96;
2544
2545                 double use_imgsize;
2546                 if (m_lock) {
2547                         // In fixed-size mode, inventory image size
2548                         // is 0.53 inch multiplied by the gui_scaling
2549                         // config parameter.  This magic size is chosen
2550                         // to make the main menu (15.5 inventory images
2551                         // wide, including border) just fit into the
2552                         // default window (800 pixels wide) at 96 DPI
2553                         // and default scaling (1.00).
2554                         use_imgsize = 0.5555 * screen_dpi * gui_scaling;
2555                 } else {
2556                         // In variable-size mode, we prefer to make the
2557                         // inventory image size 1/15 of screen height,
2558                         // multiplied by the gui_scaling config parameter.
2559                         // If the preferred size won't fit the whole
2560                         // form on the screen, either horizontally or
2561                         // vertically, then we scale it down to fit.
2562                         // (The magic numbers in the computation of what
2563                         // fits arise from the scaling factors in the
2564                         // following stanza, including the form border,
2565                         // help text space, and 0.1 inventory slot spare.)
2566                         // However, a minimum size is also set, that
2567                         // the image size can't be less than 0.3 inch
2568                         // multiplied by gui_scaling, even if this means
2569                         // the form doesn't fit the screen.
2570 #ifdef __ANDROID__
2571                         // For mobile devices these magic numbers are
2572                         // different and forms should always use the
2573                         // maximum screen space available.
2574                         double prefer_imgsize = mydata.screensize.Y / 10 * gui_scaling;
2575                         double fitx_imgsize = mydata.screensize.X /
2576                                 ((12.0 / 8.0) * (0.5 + mydata.invsize.X));
2577                         double fity_imgsize = mydata.screensize.Y /
2578                                 ((15.0 / 11.0) * (0.85 + mydata.invsize.Y));
2579                         use_imgsize = MYMIN(prefer_imgsize,
2580                                         MYMIN(fitx_imgsize, fity_imgsize));
2581 #else
2582                         double prefer_imgsize = mydata.screensize.Y / 15 * gui_scaling;
2583                         double fitx_imgsize = mydata.screensize.X /
2584                                 ((5.0 / 4.0) * (0.5 + mydata.invsize.X));
2585                         double fity_imgsize = mydata.screensize.Y /
2586                                 ((15.0 / 13.0) * (0.85 * mydata.invsize.Y));
2587                         double screen_dpi = RenderingEngine::getDisplayDensity() * 96;
2588                         double min_imgsize = 0.3 * screen_dpi * gui_scaling;
2589                         use_imgsize = MYMAX(min_imgsize, MYMIN(prefer_imgsize,
2590                                 MYMIN(fitx_imgsize, fity_imgsize)));
2591 #endif
2592                 }
2593
2594                 // Everything else is scaled in proportion to the
2595                 // inventory image size.  The inventory slot spacing
2596                 // is 5/4 image size horizontally and 15/13 image size
2597                 // vertically.  The padding around the form (incorporating
2598                 // the border of the outer inventory slots) is 3/8
2599                 // image size.  Font height (baseline to baseline)
2600                 // is 2/5 vertical inventory slot spacing, and button
2601                 // half-height is 7/8 of font height.
2602                 imgsize = v2s32(use_imgsize, use_imgsize);
2603                 spacing = v2f32(use_imgsize*5.0/4, use_imgsize*15.0/13);
2604                 padding = v2s32(use_imgsize*3.0/8, use_imgsize*3.0/8);
2605                 m_btn_height = use_imgsize*15.0/13 * 0.35;
2606
2607                 m_font = g_fontengine->getFont();
2608
2609                 if (mydata.real_coordinates) {
2610                         mydata.size = v2s32(
2611                                 mydata.invsize.X*imgsize.X,
2612                                 mydata.invsize.Y*imgsize.Y
2613                         );
2614                 } else {
2615                         mydata.size = v2s32(
2616                                 padding.X*2+spacing.X*(mydata.invsize.X-1.0)+imgsize.X,
2617                                 padding.Y*2+spacing.Y*(mydata.invsize.Y-1.0)+imgsize.Y + m_btn_height*2.0/3.0
2618                         );
2619                 }
2620
2621                 DesiredRect = mydata.rect = core::rect<s32>(
2622                                 (s32)((f32)mydata.screensize.X * mydata.offset.X) - (s32)(mydata.anchor.X * (f32)mydata.size.X) + offset.X,
2623                                 (s32)((f32)mydata.screensize.Y * mydata.offset.Y) - (s32)(mydata.anchor.Y * (f32)mydata.size.Y) + offset.Y,
2624                                 (s32)((f32)mydata.screensize.X * mydata.offset.X) + (s32)((1.0 - mydata.anchor.X) * (f32)mydata.size.X) + offset.X,
2625                                 (s32)((f32)mydata.screensize.Y * mydata.offset.Y) + (s32)((1.0 - mydata.anchor.Y) * (f32)mydata.size.Y) + offset.Y
2626                 );
2627         } else {
2628                 // Non-size[] form must consist only of text fields and
2629                 // implicit "Proceed" button.  Use default font, and
2630                 // temporary form size which will be recalculated below.
2631                 m_font = g_fontengine->getFont();
2632                 m_btn_height = font_line_height(m_font) * 0.875;
2633                 DesiredRect = core::rect<s32>(
2634                         (s32)((f32)mydata.screensize.X * mydata.offset.X) - (s32)(mydata.anchor.X * 580.0),
2635                         (s32)((f32)mydata.screensize.Y * mydata.offset.Y) - (s32)(mydata.anchor.Y * 300.0),
2636                         (s32)((f32)mydata.screensize.X * mydata.offset.X) + (s32)((1.0 - mydata.anchor.X) * 580.0),
2637                         (s32)((f32)mydata.screensize.Y * mydata.offset.Y) + (s32)((1.0 - mydata.anchor.Y) * 300.0)
2638                 );
2639         }
2640         recalculateAbsolutePosition(false);
2641         mydata.basepos = getBasePos();
2642         m_tooltip_element->setOverrideFont(m_font);
2643
2644         gui::IGUISkin *skin = Environment->getSkin();
2645         sanity_check(skin);
2646         gui::IGUIFont *old_font = skin->getFont();
2647         skin->setFont(m_font);
2648
2649         pos_offset = v2f32();
2650
2651         if (enable_prepends) {
2652                 // Backup the coordinates so that prepends can use the coordinates of choice.
2653                 bool rc_backup = mydata.real_coordinates;
2654                 u16 version_backup = m_formspec_version;
2655                 mydata.real_coordinates = false; // Old coordinates by default.
2656
2657                 std::vector<std::string> prepend_elements = split(m_formspec_prepend, ']');
2658                 for (const auto &element : prepend_elements)
2659                         parseElement(&mydata, element);
2660
2661                 m_formspec_version = version_backup;
2662                 mydata.real_coordinates = rc_backup; // Restore coordinates
2663         }
2664
2665         for (; i< elements.size(); i++) {
2666                 parseElement(&mydata, elements[i]);
2667         }
2668
2669         if (!container_stack.empty()) {
2670                 errorstream << "Invalid formspec string: container was never closed!"
2671                         << std::endl;
2672         }
2673
2674         // If there are fields without explicit size[], add a "Proceed"
2675         // button and adjust size to fit all the fields.
2676         if (!m_fields.empty() && !mydata.explicit_size) {
2677                 mydata.rect = core::rect<s32>(
2678                                 mydata.screensize.X/2 - 580/2,
2679                                 mydata.screensize.Y/2 - 300/2,
2680                                 mydata.screensize.X/2 + 580/2,
2681                                 mydata.screensize.Y/2 + 240/2+(m_fields.size()*60)
2682                 );
2683                 DesiredRect = mydata.rect;
2684                 recalculateAbsolutePosition(false);
2685                 mydata.basepos = getBasePos();
2686
2687                 {
2688                         v2s32 pos = mydata.basepos;
2689                         pos.Y = ((m_fields.size()+2)*60);
2690
2691                         v2s32 size = DesiredRect.getSize();
2692                         mydata.rect =
2693                                         core::rect<s32>(size.X/2-70, pos.Y,
2694                                                         (size.X/2-70)+140, pos.Y + (m_btn_height*2));
2695                         const wchar_t *text = wgettext("Proceed");
2696                         Environment->addButton(mydata.rect, this, 257, text);
2697                         delete[] text;
2698                 }
2699
2700         }
2701
2702         //set initial focus if parser didn't set it
2703         focused_element = Environment->getFocus();
2704         if (!focused_element
2705                         || !isMyChild(focused_element)
2706                         || focused_element->getType() == gui::EGUIET_TAB_CONTROL)
2707                 setInitialFocus();
2708
2709         skin->setFont(old_font);
2710 }
2711
2712 #ifdef __ANDROID__
2713 bool GUIFormSpecMenu::getAndroidUIInput()
2714 {
2715         if (!hasAndroidUIInput())
2716                 return false;
2717
2718         std::string fieldname = m_jni_field_name;
2719         m_jni_field_name.clear();
2720
2721         for(std::vector<FieldSpec>::iterator iter =  m_fields.begin();
2722                         iter != m_fields.end(); ++iter) {
2723
2724                 if (iter->fname != fieldname) {
2725                         continue;
2726                 }
2727                 IGUIElement* tochange = getElementFromId(iter->fid);
2728
2729                 if (tochange == 0) {
2730                         return false;
2731                 }
2732
2733                 if (tochange->getType() != irr::gui::EGUIET_EDIT_BOX) {
2734                         return false;
2735                 }
2736
2737                 std::string text = porting::getInputDialogValue();
2738
2739                 ((gui::IGUIEditBox *)tochange)->setText(utf8_to_wide(text).c_str());
2740         }
2741         return false;
2742 }
2743 #endif
2744
2745 GUIFormSpecMenu::ItemSpec GUIFormSpecMenu::getItemAtPos(v2s32 p) const
2746 {
2747         core::rect<s32> imgrect(0,0,imgsize.X,imgsize.Y);
2748
2749         for (const GUIFormSpecMenu::ListDrawSpec &s : m_inventorylists) {
2750                 for(s32 i=0; i<s.geom.X*s.geom.Y; i++) {
2751                         s32 item_i = i + s.start_item_i;
2752
2753                         s32 x;
2754                         s32 y;
2755                         if (s.real_coordinates) {
2756                                 x = (i%s.geom.X) * (imgsize.X * 1.25);
2757                                 y = (i/s.geom.X) * (imgsize.Y * 1.25);
2758                         } else {
2759                                 x = (i%s.geom.X) * spacing.X;
2760                                 y = (i/s.geom.X) * spacing.Y;
2761                         }
2762                         v2s32 p0(x,y);
2763                         core::rect<s32> rect = imgrect + s.pos + p0;
2764                         if(rect.isPointInside(p))
2765                         {
2766                                 return ItemSpec(s.inventoryloc, s.listname, item_i);
2767                         }
2768                 }
2769         }
2770
2771         return ItemSpec(InventoryLocation(), "", -1);
2772 }
2773
2774 void GUIFormSpecMenu::drawList(const ListDrawSpec &s, int layer,
2775                 bool &item_hovered)
2776 {
2777         video::IVideoDriver* driver = Environment->getVideoDriver();
2778
2779         Inventory *inv = m_invmgr->getInventory(s.inventoryloc);
2780         if(!inv){
2781                 warningstream<<"GUIFormSpecMenu::drawList(): "
2782                                 <<"The inventory location "
2783                                 <<"\""<<s.inventoryloc.dump()<<"\" doesn't exist"
2784                                 <<std::endl;
2785                 return;
2786         }
2787         InventoryList *ilist = inv->getList(s.listname);
2788         if(!ilist){
2789                 warningstream<<"GUIFormSpecMenu::drawList(): "
2790                                 <<"The inventory list \""<<s.listname<<"\" @ \""
2791                                 <<s.inventoryloc.dump()<<"\" doesn't exist"
2792                                 <<std::endl;
2793                 return;
2794         }
2795
2796         core::rect<s32> imgrect(0,0,imgsize.X,imgsize.Y);
2797
2798         for (s32 i = 0; i < s.geom.X * s.geom.Y; i++) {
2799                 s32 item_i = i + s.start_item_i;
2800                 if (item_i >= (s32)ilist->getSize())
2801                         break;
2802
2803                 s32 x;
2804                 s32 y;
2805                 if (s.real_coordinates) {
2806                         x = (i%s.geom.X) * (imgsize.X * 1.25);
2807                         y = (i/s.geom.X) * (imgsize.Y * 1.25);
2808                 } else {
2809                         x = (i%s.geom.X) * spacing.X;
2810                         y = (i/s.geom.X) * spacing.Y;
2811                 }
2812                 v2s32 p(x,y);
2813                 core::rect<s32> rect = imgrect + s.pos + p;
2814                 ItemStack item = ilist->getItem(item_i);
2815
2816                 bool selected = m_selected_item
2817                         && m_invmgr->getInventory(m_selected_item->inventoryloc) == inv
2818                         && m_selected_item->listname == s.listname
2819                         && m_selected_item->i == item_i;
2820                 bool hovering = rect.isPointInside(m_pointer);
2821                 ItemRotationKind rotation_kind = selected ? IT_ROT_SELECTED :
2822                         (hovering ? IT_ROT_HOVERED : IT_ROT_NONE);
2823
2824                 if (layer == 0) {
2825                         if (hovering) {
2826                                 item_hovered = true;
2827                                 driver->draw2DRectangle(m_slotbg_h, rect, &AbsoluteClippingRect);
2828                         } else {
2829                                 driver->draw2DRectangle(m_slotbg_n, rect, &AbsoluteClippingRect);
2830                         }
2831                 }
2832
2833                 //Draw inv slot borders
2834                 if (m_slotborder) {
2835                         s32 x1 = rect.UpperLeftCorner.X;
2836                         s32 y1 = rect.UpperLeftCorner.Y;
2837                         s32 x2 = rect.LowerRightCorner.X;
2838                         s32 y2 = rect.LowerRightCorner.Y;
2839                         s32 border = 1;
2840                         driver->draw2DRectangle(m_slotbordercolor,
2841                                 core::rect<s32>(v2s32(x1 - border, y1 - border),
2842                                                                 v2s32(x2 + border, y1)), NULL);
2843                         driver->draw2DRectangle(m_slotbordercolor,
2844                                 core::rect<s32>(v2s32(x1 - border, y2),
2845                                                                 v2s32(x2 + border, y2 + border)), NULL);
2846                         driver->draw2DRectangle(m_slotbordercolor,
2847                                 core::rect<s32>(v2s32(x1 - border, y1),
2848                                                                 v2s32(x1, y2)), NULL);
2849                         driver->draw2DRectangle(m_slotbordercolor,
2850                                 core::rect<s32>(v2s32(x2, y1),
2851                                                                 v2s32(x2 + border, y2)), NULL);
2852                 }
2853
2854                 if (layer == 1) {
2855                         if (selected)
2856                                 item.takeItem(m_selected_amount);
2857
2858                         if (!item.empty()) {
2859                                 // Draw item stack
2860                                 drawItemStack(driver, m_font, item,
2861                                         rect, &AbsoluteClippingRect, m_client,
2862                                         rotation_kind);
2863                                 // Draw tooltip
2864                                 if (hovering && !m_selected_item) {
2865                                         std::string tooltip = item.getDescription(m_client->idef());
2866                                         if (m_tooltip_append_itemname)
2867                                                 tooltip += "\n[" + item.name + "]";
2868                                         showTooltip(utf8_to_wide(tooltip), m_default_tooltip_color,
2869                                                         m_default_tooltip_bgcolor);
2870                                 }
2871                         }
2872                 }
2873         }
2874 }
2875
2876 void GUIFormSpecMenu::drawSelectedItem()
2877 {
2878         video::IVideoDriver* driver = Environment->getVideoDriver();
2879
2880         if (!m_selected_item) {
2881                 drawItemStack(driver, m_font, ItemStack(),
2882                         core::rect<s32>(v2s32(0, 0), v2s32(0, 0)),
2883                         NULL, m_client, IT_ROT_DRAGGED);
2884                 return;
2885         }
2886
2887         Inventory *inv = m_invmgr->getInventory(m_selected_item->inventoryloc);
2888         sanity_check(inv);
2889         InventoryList *list = inv->getList(m_selected_item->listname);
2890         sanity_check(list);
2891         ItemStack stack = list->getItem(m_selected_item->i);
2892         stack.count = m_selected_amount;
2893
2894         core::rect<s32> imgrect(0,0,imgsize.X,imgsize.Y);
2895         core::rect<s32> rect = imgrect + (m_pointer - imgrect.getCenter());
2896         rect.constrainTo(driver->getViewPort());
2897         drawItemStack(driver, m_font, stack, rect, NULL, m_client, IT_ROT_DRAGGED);
2898 }
2899
2900 void GUIFormSpecMenu::drawMenu()
2901 {
2902         if (m_form_src) {
2903                 const std::string &newform = m_form_src->getForm();
2904                 if (newform != m_formspec_string) {
2905                         m_formspec_string = newform;
2906                         regenerateGui(m_screensize_old);
2907                 }
2908         }
2909
2910         gui::IGUISkin* skin = Environment->getSkin();
2911         sanity_check(skin != NULL);
2912         gui::IGUIFont *old_font = skin->getFont();
2913         skin->setFont(m_font);
2914
2915         updateSelectedItem();
2916
2917         video::IVideoDriver* driver = Environment->getVideoDriver();
2918
2919         v2u32 screenSize = driver->getScreenSize();
2920         core::rect<s32> allbg(0, 0, screenSize.X, screenSize.Y);
2921
2922         if (m_bgfullscreen)
2923                 driver->draw2DRectangle(m_fullscreen_bgcolor, allbg, &allbg);
2924         driver->draw2DRectangle(m_bgcolor, AbsoluteRect, &AbsoluteClippingRect);
2925
2926         m_tooltip_element->setVisible(false);
2927
2928         for (const auto &pair : m_tooltip_rects) {
2929                 if (pair.first.isPointInside(m_pointer)) {
2930                         const std::wstring &text = pair.second.tooltip;
2931                         if (!text.empty()) {
2932                                 showTooltip(text, pair.second.color, pair.second.bgcolor);
2933                                 break;
2934                         }
2935                 }
2936         }
2937
2938         /*
2939                 Draw backgrounds
2940         */
2941         for (const GUIFormSpecMenu::ImageDrawSpec &spec : m_backgrounds) {
2942                 video::ITexture *texture = m_tsrc->getTexture(spec.name);
2943
2944                 if (texture != 0) {
2945                         // Image size on screen
2946                         core::rect<s32> imgrect(0, 0, spec.geom.X, spec.geom.Y);
2947                         // Image rectangle on screen
2948                         core::rect<s32> rect = imgrect + spec.pos;
2949                         // Middle rect for 9-slicing
2950                         core::rect<s32> middle = spec.middle;
2951
2952                         if (spec.clip) {
2953                                 core::dimension2d<s32> absrec_size = AbsoluteRect.getSize();
2954                                 rect = core::rect<s32>(AbsoluteRect.UpperLeftCorner.X - spec.pos.X,
2955                                                                         AbsoluteRect.UpperLeftCorner.Y - spec.pos.Y,
2956                                                                         AbsoluteRect.UpperLeftCorner.X + absrec_size.Width + spec.pos.X,
2957                                                                         AbsoluteRect.UpperLeftCorner.Y + absrec_size.Height + spec.pos.Y);
2958                         }
2959
2960                         if (middle.getArea() == 0) {
2961                                 const video::SColor color(255, 255, 255, 255);
2962                                 const video::SColor colors[] = {color, color, color, color};
2963                                 draw2DImageFilterScaled(driver, texture, rect,
2964                                                 core::rect<s32>(core::position2d<s32>(0, 0),
2965                                                                 core::dimension2di(texture->getOriginalSize())),
2966                                                 NULL/*&AbsoluteClippingRect*/, colors, true);
2967                         } else {
2968                                 // `-x` is interpreted as `w - x`
2969                                 if (middle.LowerRightCorner.X < 0) {
2970                                         middle.LowerRightCorner.X += texture->getOriginalSize().Width;
2971                                 }
2972                                 if (middle.LowerRightCorner.Y < 0) {
2973                                         middle.LowerRightCorner.Y += texture->getOriginalSize().Height;
2974                                 }
2975                                 draw2DImage9Slice(driver, texture, rect, middle);
2976                         }
2977                 } else {
2978                         errorstream << "GUIFormSpecMenu::drawMenu() Draw backgrounds unable to load texture:" << std::endl;
2979                         errorstream << "\t" << spec.name << std::endl;
2980                 }
2981         }
2982
2983         /*
2984                 Draw Boxes
2985         */
2986         for (const GUIFormSpecMenu::BoxDrawSpec &spec : m_boxes) {
2987                 irr::video::SColor todraw = spec.color;
2988
2989                 core::rect<s32> rect(spec.pos.X,spec.pos.Y,
2990                                                         spec.pos.X + spec.geom.X,spec.pos.Y + spec.geom.Y);
2991
2992                 driver->draw2DRectangle(todraw, rect, 0);
2993         }
2994
2995         /*
2996                 Call base class
2997         */
2998         gui::IGUIElement::draw();
2999
3000         /*
3001                 Draw images
3002         */
3003         for (const GUIFormSpecMenu::ImageDrawSpec &spec : m_images) {
3004                 video::ITexture *texture = m_tsrc->getTexture(spec.name);
3005
3006                 if (texture != 0) {
3007                         const core::dimension2d<u32>& img_origsize = texture->getOriginalSize();
3008                         // Image size on screen
3009                         core::rect<s32> imgrect;
3010
3011                         if (spec.scale)
3012                                 imgrect = core::rect<s32>(0,0,spec.geom.X, spec.geom.Y);
3013                         else {
3014
3015                                 imgrect = core::rect<s32>(0,0,img_origsize.Width,img_origsize.Height);
3016                         }
3017                         // Image rectangle on screen
3018                         core::rect<s32> rect = imgrect + spec.pos;
3019                         const video::SColor color(255,255,255,255);
3020                         const video::SColor colors[] = {color,color,color,color};
3021                         draw2DImageFilterScaled(driver, texture, rect,
3022                                 core::rect<s32>(core::position2d<s32>(0,0),img_origsize),
3023                                 NULL/*&AbsoluteClippingRect*/, colors, true);
3024                 }
3025                 else {
3026                         errorstream << "GUIFormSpecMenu::drawMenu() Draw images unable to load texture:" << std::endl;
3027                         errorstream << "\t" << spec.name << std::endl;
3028                 }
3029         }
3030
3031         /*
3032                 Draw item images
3033         */
3034         for (const GUIFormSpecMenu::ImageDrawSpec &spec : m_itemimages) {
3035                 if (m_client == 0)
3036                         break;
3037
3038                 IItemDefManager *idef = m_client->idef();
3039                 ItemStack item;
3040                 item.deSerialize(spec.item_name, idef);
3041                 core::rect<s32> imgrect(0, 0, spec.geom.X, spec.geom.Y);
3042                 // Viewport rectangle on screen
3043                 core::rect<s32> rect = imgrect + spec.pos;
3044                 if (spec.parent_button && spec.parent_button->isPressed()) {
3045 #if (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR < 8)
3046                         rect += core::dimension2d<s32>(
3047                                 0.05 * (float)rect.getWidth(), 0.05 * (float)rect.getHeight());
3048 #else
3049                         rect += core::dimension2d<s32>(
3050                                 skin->getSize(irr::gui::EGDS_BUTTON_PRESSED_IMAGE_OFFSET_X),
3051                                 skin->getSize(irr::gui::EGDS_BUTTON_PRESSED_IMAGE_OFFSET_Y));
3052 #endif
3053                 }
3054                 drawItemStack(driver, m_font, item, rect, &AbsoluteClippingRect,
3055                                 m_client, IT_ROT_NONE);
3056         }
3057
3058         /*
3059                 Draw items
3060                 Layer 0: Item slot rectangles
3061                 Layer 1: Item images; prepare tooltip
3062         */
3063         bool item_hovered = false;
3064         for (int layer = 0; layer < 2; layer++) {
3065                 for (const GUIFormSpecMenu::ListDrawSpec &spec : m_inventorylists) {
3066                         drawList(spec, layer, item_hovered);
3067                 }
3068         }
3069         if (!item_hovered) {
3070                 drawItemStack(driver, m_font, ItemStack(),
3071                         core::rect<s32>(v2s32(0, 0), v2s32(0, 0)),
3072                         NULL, m_client, IT_ROT_HOVERED);
3073         }
3074
3075 /* TODO find way to show tooltips on touchscreen */
3076 #ifndef HAVE_TOUCHSCREENGUI
3077         m_pointer = RenderingEngine::get_raw_device()->getCursorControl()->getPosition();
3078 #endif
3079
3080         /*
3081                 Draw static text elements
3082         */
3083         for (const GUIFormSpecMenu::StaticTextSpec &spec : m_static_texts) {
3084                 core::rect<s32> rect = spec.rect;
3085                 if (spec.parent_button && spec.parent_button->isPressed()) {
3086 #if (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR < 8)
3087                         rect += core::dimension2d<s32>(
3088                                 0.05 * (float)rect.getWidth(), 0.05 * (float)rect.getHeight());
3089 #else
3090                         // Use image offset instead of text's because its a bit smaller
3091                         // and fits better, also TEXT_OFFSET_X is always 0
3092                         rect += core::dimension2d<s32>(
3093                                 skin->getSize(irr::gui::EGDS_BUTTON_PRESSED_IMAGE_OFFSET_X),
3094                                 skin->getSize(irr::gui::EGDS_BUTTON_PRESSED_IMAGE_OFFSET_Y));
3095 #endif
3096                 }
3097                 video::SColor color(255, 255, 255, 255);
3098                 m_font->draw(spec.text.c_str(), rect, color, true, true, &rect);
3099         }
3100
3101         /*
3102                 Draw fields/buttons tooltips
3103         */
3104         gui::IGUIElement *hovered =
3105                         Environment->getRootGUIElement()->getElementFromPoint(m_pointer);
3106
3107         if (hovered != NULL) {
3108                 s32 id = hovered->getID();
3109
3110                 u64 delta = 0;
3111                 if (id == -1) {
3112                         m_old_tooltip_id = id;
3113                 } else {
3114                         if (id == m_old_tooltip_id) {
3115                                 delta = porting::getDeltaMs(m_hovered_time, porting::getTimeMs());
3116                         } else {
3117                                 m_hovered_time = porting::getTimeMs();
3118                                 m_old_tooltip_id = id;
3119                         }
3120                 }
3121
3122                 // Find and update the current tooltip
3123                 if (id != -1 && delta >= m_tooltip_show_delay) {
3124                         for (const FieldSpec &field : m_fields) {
3125
3126                                 if (field.fid != id)
3127                                         continue;
3128
3129                                 const std::wstring &text = m_tooltips[field.fname].tooltip;
3130                                 if (!text.empty())
3131                                         showTooltip(text, m_tooltips[field.fname].color,
3132                                                 m_tooltips[field.fname].bgcolor);
3133
3134                                 break;
3135                         }
3136                 }
3137         }
3138
3139         m_tooltip_element->draw();
3140
3141         /*
3142                 Draw dragged item stack
3143         */
3144         drawSelectedItem();
3145
3146         skin->setFont(old_font);
3147 }
3148
3149
3150 void GUIFormSpecMenu::showTooltip(const std::wstring &text,
3151         const irr::video::SColor &color, const irr::video::SColor &bgcolor)
3152 {
3153         const std::wstring ntext = translate_string(text);
3154         m_tooltip_element->setOverrideColor(color);
3155         m_tooltip_element->setBackgroundColor(bgcolor);
3156         setStaticText(m_tooltip_element, ntext.c_str());
3157
3158         // Tooltip size and offset
3159         s32 tooltip_width = m_tooltip_element->getTextWidth() + m_btn_height;
3160 #if (IRRLICHT_VERSION_MAJOR <= 1 && IRRLICHT_VERSION_MINOR <= 8 && IRRLICHT_VERSION_REVISION < 2) || USE_FREETYPE == 1
3161         std::vector<std::wstring> text_rows = str_split(ntext, L'\n');
3162         s32 tooltip_height = m_tooltip_element->getTextHeight() * text_rows.size() + 5;
3163 #else
3164         s32 tooltip_height = m_tooltip_element->getTextHeight() + 5;
3165 #endif
3166         v2u32 screenSize = Environment->getVideoDriver()->getScreenSize();
3167         int tooltip_offset_x = m_btn_height;
3168         int tooltip_offset_y = m_btn_height;
3169 #ifdef __ANDROID__
3170         tooltip_offset_x *= 3;
3171         tooltip_offset_y  = 0;
3172         if (m_pointer.X > (s32)screenSize.X / 2)
3173                 tooltip_offset_x = -(tooltip_offset_x + tooltip_width);
3174 #endif
3175
3176         // Calculate and set the tooltip position
3177         s32 tooltip_x = m_pointer.X + tooltip_offset_x;
3178         s32 tooltip_y = m_pointer.Y + tooltip_offset_y;
3179         if (tooltip_x + tooltip_width > (s32)screenSize.X)
3180                 tooltip_x = (s32)screenSize.X - tooltip_width  - m_btn_height;
3181         if (tooltip_y + tooltip_height > (s32)screenSize.Y)
3182                 tooltip_y = (s32)screenSize.Y - tooltip_height - m_btn_height;
3183
3184         m_tooltip_element->setRelativePosition(
3185                 core::rect<s32>(
3186                         core::position2d<s32>(tooltip_x, tooltip_y),
3187                         core::dimension2d<s32>(tooltip_width, tooltip_height)
3188                 )
3189         );
3190
3191         // Display the tooltip
3192         m_tooltip_element->setVisible(true);
3193         bringToFront(m_tooltip_element);
3194 }
3195
3196 void GUIFormSpecMenu::updateSelectedItem()
3197 {
3198         verifySelectedItem();
3199
3200         // If craftresult is nonempty and nothing else is selected, select it now.
3201         if (!m_selected_item) {
3202                 for (const GUIFormSpecMenu::ListDrawSpec &s : m_inventorylists) {
3203                         if (s.listname != "craftpreview")
3204                                 continue;
3205
3206                         Inventory *inv = m_invmgr->getInventory(s.inventoryloc);
3207                         if (!inv)
3208                                 continue;
3209
3210                         InventoryList *list = inv->getList("craftresult");
3211
3212                         if (!list || list->getSize() == 0)
3213                                 continue;
3214
3215                         const ItemStack &item = list->getItem(0);
3216                         if (item.empty())
3217                                 continue;
3218
3219                         // Grab selected item from the crafting result list
3220                         m_selected_item = new ItemSpec;
3221                         m_selected_item->inventoryloc = s.inventoryloc;
3222                         m_selected_item->listname = "craftresult";
3223                         m_selected_item->i = 0;
3224                         m_selected_amount = item.count;
3225                         m_selected_dragging = false;
3226                         break;
3227                 }
3228         }
3229
3230         // If craftresult is selected, keep the whole stack selected
3231         if (m_selected_item && m_selected_item->listname == "craftresult")
3232                 m_selected_amount = verifySelectedItem().count;
3233 }
3234
3235 ItemStack GUIFormSpecMenu::verifySelectedItem()
3236 {
3237         // If the selected stack has become empty for some reason, deselect it.
3238         // If the selected stack has become inaccessible, deselect it.
3239         // If the selected stack has become smaller, adjust m_selected_amount.
3240         // Return the selected stack.
3241
3242         if(m_selected_item)
3243         {
3244                 if(m_selected_item->isValid())
3245                 {
3246                         Inventory *inv = m_invmgr->getInventory(m_selected_item->inventoryloc);
3247                         if(inv)
3248                         {
3249                                 InventoryList *list = inv->getList(m_selected_item->listname);
3250                                 if(list && (u32) m_selected_item->i < list->getSize())
3251                                 {
3252                                         ItemStack stack = list->getItem(m_selected_item->i);
3253                                         if (!m_selected_swap.empty()) {
3254                                                 if (m_selected_swap.name == stack.name &&
3255                                                                 m_selected_swap.count == stack.count)
3256                                                         m_selected_swap.clear();
3257                                         } else {
3258                                                 m_selected_amount = std::min(m_selected_amount, stack.count);
3259                                         }
3260
3261                                         if (!stack.empty())
3262                                                 return stack;
3263                                 }
3264                         }
3265                 }
3266
3267                 // selection was not valid
3268                 delete m_selected_item;
3269                 m_selected_item = NULL;
3270                 m_selected_amount = 0;
3271                 m_selected_dragging = false;
3272         }
3273         return ItemStack();
3274 }
3275
3276 void GUIFormSpecMenu::acceptInput(FormspecQuitMode quitmode=quit_mode_no)
3277 {
3278         if(m_text_dst)
3279         {
3280                 StringMap fields;
3281
3282                 if (quitmode == quit_mode_accept) {
3283                         fields["quit"] = "true";
3284                 }
3285
3286                 if (quitmode == quit_mode_cancel) {
3287                         fields["quit"] = "true";
3288                         m_text_dst->gotText(fields);
3289                         return;
3290                 }
3291
3292                 if (current_keys_pending.key_down) {
3293                         fields["key_down"] = "true";
3294                         current_keys_pending.key_down = false;
3295                 }
3296
3297                 if (current_keys_pending.key_up) {
3298                         fields["key_up"] = "true";
3299                         current_keys_pending.key_up = false;
3300                 }
3301
3302                 if (current_keys_pending.key_enter) {
3303                         fields["key_enter"] = "true";
3304                         current_keys_pending.key_enter = false;
3305                 }
3306
3307                 if (!current_field_enter_pending.empty()) {
3308                         fields["key_enter_field"] = current_field_enter_pending;
3309                         current_field_enter_pending = "";
3310                 }
3311
3312                 if (current_keys_pending.key_escape) {
3313                         fields["key_escape"] = "true";
3314                         current_keys_pending.key_escape = false;
3315                 }
3316
3317                 for (const GUIFormSpecMenu::FieldSpec &s : m_fields) {
3318                         if(s.send) {
3319                                 std::string name = s.fname;
3320                                 if (s.ftype == f_Button) {
3321                                         fields[name] = wide_to_utf8(s.flabel);
3322                                 } else if (s.ftype == f_Table) {
3323                                         GUITable *table = getTable(s.fname);
3324                                         if (table) {
3325                                                 fields[name] = table->checkEvent();
3326                                         }
3327                                 }
3328                                 else if(s.ftype == f_DropDown) {
3329                                         // no dynamic cast possible due to some distributions shipped
3330                                         // without rtti support in irrlicht
3331                                         IGUIElement * element = getElementFromId(s.fid);
3332                                         gui::IGUIComboBox *e = NULL;
3333                                         if ((element) && (element->getType() == gui::EGUIET_COMBO_BOX)) {
3334                                                 e = static_cast<gui::IGUIComboBox*>(element);
3335                                         }
3336                                         s32 selected = e->getSelected();
3337                                         if (selected >= 0) {
3338                                                 std::vector<std::string> *dropdown_values =
3339                                                         getDropDownValues(s.fname);
3340                                                 if (dropdown_values && selected < (s32)dropdown_values->size()) {
3341                                                         fields[name] = (*dropdown_values)[selected];
3342                                                 }
3343                                         }
3344                                 }
3345                                 else if (s.ftype == f_TabHeader) {
3346                                         // no dynamic cast possible due to some distributions shipped
3347                                         // without rttzi support in irrlicht
3348                                         IGUIElement * element = getElementFromId(s.fid);
3349                                         gui::IGUITabControl *e = NULL;
3350                                         if ((element) && (element->getType() == gui::EGUIET_TAB_CONTROL)) {
3351                                                 e = static_cast<gui::IGUITabControl *>(element);
3352                                         }
3353
3354                                         if (e != 0) {
3355                                                 std::stringstream ss;
3356                                                 ss << (e->getActiveTab() +1);
3357                                                 fields[name] = ss.str();
3358                                         }
3359                                 }
3360                                 else if (s.ftype == f_CheckBox) {
3361                                         // no dynamic cast possible due to some distributions shipped
3362                                         // without rtti support in irrlicht
3363                                         IGUIElement * element = getElementFromId(s.fid);
3364                                         gui::IGUICheckBox *e = NULL;
3365                                         if ((element) && (element->getType() == gui::EGUIET_CHECK_BOX)) {
3366                                                 e = static_cast<gui::IGUICheckBox*>(element);
3367                                         }
3368
3369                                         if (e != 0) {
3370                                                 if (e->isChecked())
3371                                                         fields[name] = "true";
3372                                                 else
3373                                                         fields[name] = "false";
3374                                         }
3375                                 }
3376                                 else if (s.ftype == f_ScrollBar) {
3377                                         // no dynamic cast possible due to some distributions shipped
3378                                         // without rtti support in irrlicht
3379                                         IGUIElement * element = getElementFromId(s.fid);
3380                                         gui::IGUIScrollBar *e = NULL;
3381                                         if ((element) && (element->getType() == gui::EGUIET_SCROLL_BAR)) {
3382                                                 e = static_cast<gui::IGUIScrollBar*>(element);
3383                                         }
3384
3385                                         if (e != 0) {
3386                                                 std::stringstream os;
3387                                                 os << e->getPos();
3388                                                 if (s.fdefault == L"Changed")
3389                                                         fields[name] = "CHG:" + os.str();
3390                                                 else
3391                                                         fields[name] = "VAL:" + os.str();
3392                                         }
3393                                 }
3394                                 else
3395                                 {
3396                                         IGUIElement* e = getElementFromId(s.fid);
3397                                         if(e != NULL) {
3398                                                 fields[name] = wide_to_utf8(e->getText());
3399                                         }
3400                                 }
3401                         }
3402                 }
3403
3404                 m_text_dst->gotText(fields);
3405         }
3406 }
3407
3408 static bool isChild(gui::IGUIElement * tocheck, gui::IGUIElement * parent)
3409 {
3410         while(tocheck != NULL) {
3411                 if (tocheck == parent) {
3412                         return true;
3413                 }
3414                 tocheck = tocheck->getParent();
3415         }
3416         return false;
3417 }
3418
3419 bool GUIFormSpecMenu::preprocessEvent(const SEvent& event)
3420 {
3421         // The IGUITabControl renders visually using the skin's selected
3422         // font, which we override for the duration of form drawing,
3423         // but computes tab hotspots based on how it would have rendered
3424         // using the font that is selected at the time of button release.
3425         // To make these two consistent, temporarily override the skin's
3426         // font while the IGUITabControl is processing the event.
3427         if (event.EventType == EET_MOUSE_INPUT_EVENT &&
3428                         event.MouseInput.Event == EMIE_LMOUSE_LEFT_UP) {
3429                 s32 x = event.MouseInput.X;
3430                 s32 y = event.MouseInput.Y;
3431                 gui::IGUIElement *hovered =
3432                         Environment->getRootGUIElement()->getElementFromPoint(
3433                                 core::position2d<s32>(x, y));
3434                 if (hovered && isMyChild(hovered) &&
3435                                 hovered->getType() == gui::EGUIET_TAB_CONTROL) {
3436                         gui::IGUISkin* skin = Environment->getSkin();
3437                         sanity_check(skin != NULL);
3438                         gui::IGUIFont *old_font = skin->getFont();
3439                         skin->setFont(m_font);
3440                         bool retval = hovered->OnEvent(event);
3441                         skin->setFont(old_font);
3442                         return retval;
3443                 }
3444         }
3445
3446         // Fix Esc/Return key being eaten by checkboxen and tables
3447         if(event.EventType==EET_KEY_INPUT_EVENT) {
3448                 KeyPress kp(event.KeyInput);
3449                 if (kp == EscapeKey || kp == CancelKey
3450                                 || kp == getKeySetting("keymap_inventory")
3451                                 || event.KeyInput.Key==KEY_RETURN) {
3452                         gui::IGUIElement *focused = Environment->getFocus();
3453                         if (focused && isMyChild(focused) &&
3454                                         (focused->getType() == gui::EGUIET_LIST_BOX ||
3455                                         focused->getType() == gui::EGUIET_CHECK_BOX) &&
3456                                         (focused->getParent()->getType() != gui::EGUIET_COMBO_BOX ||
3457                                         event.KeyInput.Key != KEY_RETURN)) {
3458                                 OnEvent(event);
3459                                 return true;
3460                         }
3461                 }
3462         }
3463         // Mouse wheel events: send to hovered element instead of focused
3464         if(event.EventType==EET_MOUSE_INPUT_EVENT
3465                         && event.MouseInput.Event == EMIE_MOUSE_WHEEL) {
3466                 s32 x = event.MouseInput.X;
3467                 s32 y = event.MouseInput.Y;
3468                 gui::IGUIElement *hovered =
3469                         Environment->getRootGUIElement()->getElementFromPoint(
3470                                 core::position2d<s32>(x, y));
3471                 if (hovered && isMyChild(hovered)) {
3472                         hovered->OnEvent(event);
3473                         return true;
3474                 }
3475         }
3476
3477         if (event.EventType == EET_MOUSE_INPUT_EVENT) {
3478                 s32 x = event.MouseInput.X;
3479                 s32 y = event.MouseInput.Y;
3480                 gui::IGUIElement *hovered =
3481                         Environment->getRootGUIElement()->getElementFromPoint(
3482                                 core::position2d<s32>(x, y));
3483                 if (event.MouseInput.Event == EMIE_LMOUSE_PRESSED_DOWN) {
3484                         m_old_tooltip_id = -1;
3485                 }
3486                 if (!isChild(hovered,this)) {
3487                         if (DoubleClickDetection(event)) {
3488                                 return true;
3489                         }
3490                 }
3491         }
3492
3493         if (event.EventType == irr::EET_JOYSTICK_INPUT_EVENT) {
3494                 /* TODO add a check like:
3495                 if (event.JoystickEvent != joystick_we_listen_for)
3496                         return false;
3497                 */
3498                 bool handled = m_joystick->handleEvent(event.JoystickEvent);
3499                 if (handled) {
3500                         if (m_joystick->wasKeyDown(KeyType::ESC)) {
3501                                 tryClose();
3502                         } else if (m_joystick->wasKeyDown(KeyType::JUMP)) {
3503                                 if (m_allowclose) {
3504                                         acceptInput(quit_mode_accept);
3505                                         quitMenu();
3506                                 }
3507                         }
3508                 }
3509                 return handled;
3510         }
3511
3512         return GUIModalMenu::preprocessEvent(event);
3513 }
3514
3515 /******************************************************************************/
3516 bool GUIFormSpecMenu::DoubleClickDetection(const SEvent event)
3517 {
3518         /* The following code is for capturing double-clicks of the mouse button
3519          * and translating the double-click into an EET_KEY_INPUT_EVENT event
3520          * -- which closes the form -- under some circumstances.
3521          *
3522          * There have been many github issues reporting this as a bug even though it
3523          * was an intended feature.  For this reason, remapping the double-click as
3524          * an ESC must be explicitly set when creating this class via the
3525          * /p remap_dbl_click parameter of the constructor.
3526          */
3527
3528         if (!m_remap_dbl_click)
3529                 return false;
3530
3531         if (event.MouseInput.Event == EMIE_LMOUSE_PRESSED_DOWN) {
3532                 m_doubleclickdetect[0].pos  = m_doubleclickdetect[1].pos;
3533                 m_doubleclickdetect[0].time = m_doubleclickdetect[1].time;
3534
3535                 m_doubleclickdetect[1].pos  = m_pointer;
3536                 m_doubleclickdetect[1].time = porting::getTimeMs();
3537         }
3538         else if (event.MouseInput.Event == EMIE_LMOUSE_LEFT_UP) {
3539                 u64 delta = porting::getDeltaMs(m_doubleclickdetect[0].time, porting::getTimeMs());
3540                 if (delta > 400) {
3541                         return false;
3542                 }
3543
3544                 double squaredistance =
3545                                 m_doubleclickdetect[0].pos
3546                                 .getDistanceFromSQ(m_doubleclickdetect[1].pos);
3547
3548                 if (squaredistance > (30*30)) {
3549                         return false;
3550                 }
3551
3552                 SEvent* translated = new SEvent();
3553                 assert(translated != 0);
3554                 //translate doubleclick to escape
3555                 memset(translated, 0, sizeof(SEvent));
3556                 translated->EventType = irr::EET_KEY_INPUT_EVENT;
3557                 translated->KeyInput.Key         = KEY_ESCAPE;
3558                 translated->KeyInput.Control     = false;
3559                 translated->KeyInput.Shift       = false;
3560                 translated->KeyInput.PressedDown = true;
3561                 translated->KeyInput.Char        = 0;
3562                 OnEvent(*translated);
3563
3564                 // no need to send the key up event as we're already deleted
3565                 // and no one else did notice this event
3566                 delete translated;
3567                 return true;
3568         }
3569
3570         return false;
3571 }
3572
3573 void GUIFormSpecMenu::tryClose()
3574 {
3575         if (m_allowclose) {
3576                 doPause = false;
3577                 acceptInput(quit_mode_cancel);
3578                 quitMenu();
3579         } else {
3580                 m_text_dst->gotText(L"MenuQuit");
3581         }
3582 }
3583
3584 enum ButtonEventType : u8
3585 {
3586         BET_LEFT,
3587         BET_RIGHT,
3588         BET_MIDDLE,
3589         BET_WHEEL_UP,
3590         BET_WHEEL_DOWN,
3591         BET_UP,
3592         BET_DOWN,
3593         BET_MOVE,
3594         BET_OTHER
3595 };
3596
3597 bool GUIFormSpecMenu::OnEvent(const SEvent& event)
3598 {
3599         if (event.EventType==EET_KEY_INPUT_EVENT) {
3600                 KeyPress kp(event.KeyInput);
3601                 if (event.KeyInput.PressedDown && (
3602                                 (kp == EscapeKey) || (kp == CancelKey) ||
3603                                 ((m_client != NULL) && (kp == getKeySetting("keymap_inventory"))))) {
3604                         tryClose();
3605                         return true;
3606                 }
3607
3608                 if (m_client != NULL && event.KeyInput.PressedDown &&
3609                                 (kp == getKeySetting("keymap_screenshot"))) {
3610                         m_client->makeScreenshot();
3611                 }
3612                 if (event.KeyInput.PressedDown &&
3613                         (event.KeyInput.Key==KEY_RETURN ||
3614                          event.KeyInput.Key==KEY_UP ||
3615                          event.KeyInput.Key==KEY_DOWN)
3616                         ) {
3617                         switch (event.KeyInput.Key) {
3618                                 case KEY_RETURN:
3619                                         current_keys_pending.key_enter = true;
3620                                         break;
3621                                 case KEY_UP:
3622                                         current_keys_pending.key_up = true;
3623                                         break;
3624                                 case KEY_DOWN:
3625                                         current_keys_pending.key_down = true;
3626                                         break;
3627                                 break;
3628                                 default:
3629                                         //can't happen at all!
3630                                         FATAL_ERROR("Reached a source line that can't ever been reached");
3631                                         break;
3632                         }
3633                         if (current_keys_pending.key_enter && m_allowclose) {
3634                                 acceptInput(quit_mode_accept);
3635                                 quitMenu();
3636                         } else {
3637                                 acceptInput();
3638                         }
3639                         return true;
3640                 }
3641
3642         }
3643
3644         /* Mouse event other than movement, or crossing the border of inventory
3645           field while holding right mouse button
3646          */
3647         if (event.EventType == EET_MOUSE_INPUT_EVENT &&
3648                         (event.MouseInput.Event != EMIE_MOUSE_MOVED ||
3649                          (event.MouseInput.Event == EMIE_MOUSE_MOVED &&
3650                           event.MouseInput.isRightPressed() &&
3651                           getItemAtPos(m_pointer).i != getItemAtPos(m_old_pointer).i))) {
3652
3653                 // Get selected item and hovered/clicked item (s)
3654
3655                 m_old_tooltip_id = -1;
3656                 updateSelectedItem();
3657                 ItemSpec s = getItemAtPos(m_pointer);
3658
3659                 Inventory *inv_selected = NULL;
3660                 Inventory *inv_s = NULL;
3661                 InventoryList *list_s = NULL;
3662
3663                 if (m_selected_item) {
3664                         inv_selected = m_invmgr->getInventory(m_selected_item->inventoryloc);
3665                         sanity_check(inv_selected);
3666                         sanity_check(inv_selected->getList(m_selected_item->listname) != NULL);
3667                 }
3668
3669                 u32 s_count = 0;
3670
3671                 if (s.isValid())
3672                 do { // breakable
3673                         inv_s = m_invmgr->getInventory(s.inventoryloc);
3674
3675                         if (!inv_s) {
3676                                 errorstream << "InventoryMenu: The selected inventory location "
3677                                                 << "\"" << s.inventoryloc.dump() << "\" doesn't exist"
3678                                                 << std::endl;
3679                                 s.i = -1;  // make it invalid again
3680                                 break;
3681                         }
3682
3683                         list_s = inv_s->getList(s.listname);
3684                         if (list_s == NULL) {
3685                                 verbosestream << "InventoryMenu: The selected inventory list \""
3686                                                 << s.listname << "\" does not exist" << std::endl;
3687                                 s.i = -1;  // make it invalid again
3688                                 break;
3689                         }
3690
3691                         if ((u32)s.i >= list_s->getSize()) {
3692                                 infostream << "InventoryMenu: The selected inventory list \""
3693                                                 << s.listname << "\" is too small (i=" << s.i << ", size="
3694                                                 << list_s->getSize() << ")" << std::endl;
3695                                 s.i = -1;  // make it invalid again
3696                                 break;
3697                         }
3698
3699                         s_count = list_s->getItem(s.i).count;
3700                 } while(0);
3701
3702                 bool identical = m_selected_item && s.isValid() &&
3703                         (inv_selected == inv_s) &&
3704                         (m_selected_item->listname == s.listname) &&
3705                         (m_selected_item->i == s.i);
3706
3707                 ButtonEventType button = BET_LEFT;
3708                 ButtonEventType updown = BET_OTHER;
3709                 switch (event.MouseInput.Event) {
3710                 case EMIE_LMOUSE_PRESSED_DOWN:
3711                         button = BET_LEFT; updown = BET_DOWN;
3712                         break;
3713                 case EMIE_RMOUSE_PRESSED_DOWN:
3714                         button = BET_RIGHT; updown = BET_DOWN;
3715                         break;
3716                 case EMIE_MMOUSE_PRESSED_DOWN:
3717                         button = BET_MIDDLE; updown = BET_DOWN;
3718                         break;
3719                 case EMIE_MOUSE_WHEEL:
3720                         button = (event.MouseInput.Wheel > 0) ?
3721                                 BET_WHEEL_UP : BET_WHEEL_DOWN;
3722                         updown = BET_DOWN;
3723                         break;
3724                 case EMIE_LMOUSE_LEFT_UP:
3725                         button = BET_LEFT; updown = BET_UP;
3726                         break;
3727                 case EMIE_RMOUSE_LEFT_UP:
3728                         button = BET_RIGHT; updown = BET_UP;
3729                         break;
3730                 case EMIE_MMOUSE_LEFT_UP:
3731                         button = BET_MIDDLE; updown = BET_UP;
3732                         break;
3733                 case EMIE_MOUSE_MOVED:
3734                         updown = BET_MOVE;
3735                         break;
3736                 default:
3737                         break;
3738                 }
3739
3740                 // Set this number to a positive value to generate a move action
3741                 // from m_selected_item to s.
3742                 u32 move_amount = 0;
3743
3744                 // Set this number to a positive value to generate a move action
3745                 // from s to the next inventory ring.
3746                 u32 shift_move_amount = 0;
3747
3748                 // Set this number to a positive value to generate a drop action
3749                 // from m_selected_item.
3750                 u32 drop_amount = 0;
3751
3752                 // Set this number to a positive value to generate a craft action at s.
3753                 u32 craft_amount = 0;
3754
3755                 switch (updown) {
3756                 case BET_DOWN:
3757                         // Some mouse button has been pressed
3758
3759                         //infostream<<"Mouse button "<<button<<" pressed at p=("
3760                         //      <<p.X<<","<<p.Y<<")"<<std::endl;
3761
3762                         m_selected_dragging = false;
3763
3764                         if (s.isValid() && s.listname == "craftpreview") {
3765                                 // Craft preview has been clicked: craft
3766                                 craft_amount = (button == BET_MIDDLE ? 10 : 1);
3767                         } else if (!m_selected_item) {
3768                                 if (s_count && button != BET_WHEEL_UP) {
3769                                         // Non-empty stack has been clicked: select or shift-move it
3770                                         m_selected_item = new ItemSpec(s);
3771
3772                                         u32 count;
3773                                         if (button == BET_RIGHT)
3774                                                 count = (s_count + 1) / 2;
3775                                         else if (button == BET_MIDDLE)
3776                                                 count = MYMIN(s_count, 10);
3777                                         else if (button == BET_WHEEL_DOWN)
3778                                                 count = 1;
3779                                         else  // left
3780                                                 count = s_count;
3781
3782                                         if (!event.MouseInput.Shift) {
3783                                                 // no shift: select item
3784                                                 m_selected_amount = count;
3785                                                 m_selected_dragging = button != BET_WHEEL_DOWN;
3786                                                 m_auto_place = false;
3787                                         } else {
3788                                                 // shift pressed: move item, right click moves 1
3789                                                 shift_move_amount = button == BET_RIGHT ? 1 : count;
3790                                         }
3791                                 }
3792                         } else { // m_selected_item != NULL
3793                                 assert(m_selected_amount >= 1);
3794
3795                                 if (s.isValid()) {
3796                                         // Clicked a slot: move
3797                                         if (button == BET_RIGHT || button == BET_WHEEL_UP)
3798                                                 move_amount = 1;
3799                                         else if (button == BET_MIDDLE)
3800                                                 move_amount = MYMIN(m_selected_amount, 10);
3801                                         else if (button == BET_LEFT)
3802                                                 move_amount = m_selected_amount;
3803                                         // else wheeldown
3804
3805                                         if (identical) {
3806                                                 if (button == BET_WHEEL_DOWN) {
3807                                                         if (m_selected_amount < s_count)
3808                                                                 ++m_selected_amount;
3809                                                 } else {
3810                                                         if (move_amount >= m_selected_amount)
3811                                                                 m_selected_amount = 0;
3812                                                         else
3813                                                                 m_selected_amount -= move_amount;
3814                                                         move_amount = 0;
3815                                                 }
3816                                         }
3817                                 } else if (!getAbsoluteClippingRect().isPointInside(m_pointer)
3818                                                 && button != BET_WHEEL_DOWN) {
3819                                         // Clicked outside of the window: drop
3820                                         if (button == BET_RIGHT || button == BET_WHEEL_UP)
3821                                                 drop_amount = 1;
3822                                         else if (button == BET_MIDDLE)
3823                                                 drop_amount = MYMIN(m_selected_amount, 10);
3824                                         else  // left
3825                                                 drop_amount = m_selected_amount;
3826                                 }
3827                         }
3828                 break;
3829                 case BET_UP:
3830                         // Some mouse button has been released
3831
3832                         //infostream<<"Mouse button "<<button<<" released at p=("
3833                         //      <<p.X<<","<<p.Y<<")"<<std::endl;
3834
3835                         if (m_selected_dragging && m_selected_item) {
3836                                 if (s.isValid()) {
3837                                         if (!identical) {
3838                                                 // Dragged to different slot: move all selected
3839                                                 move_amount = m_selected_amount;
3840                                         }
3841                                 } else if (!getAbsoluteClippingRect().isPointInside(m_pointer)) {
3842                                         // Dragged outside of window: drop all selected
3843                                         drop_amount = m_selected_amount;
3844                                 }
3845                         }
3846
3847                         m_selected_dragging = false;
3848                         // Keep track of whether the mouse button be released
3849                         // One click is drag without dropping. Click + release
3850                         // + click changes to drop item when moved mode
3851                         if (m_selected_item)
3852                                 m_auto_place = true;
3853                 break;
3854                 case BET_MOVE:
3855                         // Mouse has been moved and rmb is down and mouse pointer just
3856                         // entered a new inventory field (checked in the entry-if, this
3857                         // is the only action here that is generated by mouse movement)
3858                         if (m_selected_item && s.isValid() && s.listname != "craftpreview") {
3859                                 // Move 1 item
3860                                 // TODO: middle mouse to move 10 items might be handy
3861                                 if (m_auto_place) {
3862                                         // Only move an item if the destination slot is empty
3863                                         // or contains the same item type as what is going to be
3864                                         // moved
3865                                         InventoryList *list_from = inv_selected->getList(m_selected_item->listname);
3866                                         InventoryList *list_to = list_s;
3867                                         assert(list_from && list_to);
3868                                         ItemStack stack_from = list_from->getItem(m_selected_item->i);
3869                                         ItemStack stack_to = list_to->getItem(s.i);
3870                                         if (stack_to.empty() || stack_to.name == stack_from.name)
3871                                                 move_amount = 1;
3872                                 }
3873                         }
3874                 break;
3875                 default:
3876                         break;
3877                 }
3878
3879                 // Possibly send inventory action to server
3880                 if (move_amount > 0) {
3881                         // Send IAction::Move
3882
3883                         assert(m_selected_item && m_selected_item->isValid());
3884                         assert(s.isValid());
3885
3886                         assert(inv_selected && inv_s);
3887                         InventoryList *list_from = inv_selected->getList(m_selected_item->listname);
3888                         InventoryList *list_to = list_s;
3889                         assert(list_from && list_to);
3890                         ItemStack stack_from = list_from->getItem(m_selected_item->i);
3891                         ItemStack stack_to = list_to->getItem(s.i);
3892
3893                         // Check how many items can be moved
3894                         move_amount = stack_from.count = MYMIN(move_amount, stack_from.count);
3895                         ItemStack leftover = stack_to.addItem(stack_from, m_client->idef());
3896                         bool move = true;
3897                         // If source stack cannot be added to destination stack at all,
3898                         // they are swapped
3899                         if (leftover.count == stack_from.count &&
3900                                         leftover.name == stack_from.name) {
3901
3902                                 if (m_selected_swap.empty()) {
3903                                         m_selected_amount = stack_to.count;
3904                                         m_selected_dragging = false;
3905
3906                                         // WARNING: BLACK MAGIC, BUT IN A REDUCED SET
3907                                         // Skip next validation checks due async inventory calls
3908                                         m_selected_swap = stack_to;
3909                                 } else {
3910                                         move = false;
3911                                 }
3912                         }
3913                         // Source stack goes fully into destination stack
3914                         else if (leftover.empty()) {
3915                                 m_selected_amount -= move_amount;
3916                         }
3917                         // Source stack goes partly into destination stack
3918                         else {
3919                                 move_amount -= leftover.count;
3920                                 m_selected_amount -= move_amount;
3921                         }
3922
3923                         if (move) {
3924                                 infostream << "Handing IAction::Move to manager" << std::endl;
3925                                 IMoveAction *a = new IMoveAction();
3926                                 a->count = move_amount;
3927                                 a->from_inv = m_selected_item->inventoryloc;
3928                                 a->from_list = m_selected_item->listname;
3929                                 a->from_i = m_selected_item->i;
3930                                 a->to_inv = s.inventoryloc;
3931                                 a->to_list = s.listname;
3932                                 a->to_i = s.i;
3933                                 m_invmgr->inventoryAction(a);
3934                         }
3935                 } else if (shift_move_amount > 0) {
3936                         u32 mis = m_inventory_rings.size();
3937                         u32 i = 0;
3938                         for (; i < mis; i++) {
3939                                 const ListRingSpec &sp = m_inventory_rings[i];
3940                                 if (sp.inventoryloc == s.inventoryloc
3941                                                 && sp.listname == s.listname)
3942                                         break;
3943                         }
3944                         do {
3945                                 if (i >= mis) // if not found
3946                                         break;
3947                                 u32 to_inv_ind = (i + 1) % mis;
3948                                 const ListRingSpec &to_inv_sp = m_inventory_rings[to_inv_ind];
3949                                 InventoryList *list_from = list_s;
3950                                 if (!s.isValid())
3951                                         break;
3952                                 Inventory *inv_to = m_invmgr->getInventory(to_inv_sp.inventoryloc);
3953                                 if (!inv_to)
3954                                         break;
3955                                 InventoryList *list_to = inv_to->getList(to_inv_sp.listname);
3956                                 if (!list_to)
3957                                         break;
3958                                 ItemStack stack_from = list_from->getItem(s.i);
3959                                 assert(shift_move_amount <= stack_from.count);
3960
3961                                 infostream << "Handing IAction::Move to manager" << std::endl;
3962                                 IMoveAction *a = new IMoveAction();
3963                                 a->count = shift_move_amount;
3964                                 a->from_inv = s.inventoryloc;
3965                                 a->from_list = s.listname;
3966                                 a->from_i = s.i;
3967                                 a->to_inv = to_inv_sp.inventoryloc;
3968                                 a->to_list = to_inv_sp.listname;
3969                                 a->move_somewhere = true;
3970                                 m_invmgr->inventoryAction(a);
3971                         } while (0);
3972                 } else if (drop_amount > 0) {
3973                         // Send IAction::Drop
3974
3975                         assert(m_selected_item && m_selected_item->isValid());
3976                         assert(inv_selected);
3977                         InventoryList *list_from = inv_selected->getList(m_selected_item->listname);
3978                         assert(list_from);
3979                         ItemStack stack_from = list_from->getItem(m_selected_item->i);
3980
3981                         // Check how many items can be dropped
3982                         drop_amount = stack_from.count = MYMIN(drop_amount, stack_from.count);
3983                         assert(drop_amount > 0 && drop_amount <= m_selected_amount);
3984                         m_selected_amount -= drop_amount;
3985
3986                         infostream << "Handing IAction::Drop to manager" << std::endl;
3987                         IDropAction *a = new IDropAction();
3988                         a->count = drop_amount;
3989                         a->from_inv = m_selected_item->inventoryloc;
3990                         a->from_list = m_selected_item->listname;
3991                         a->from_i = m_selected_item->i;
3992                         m_invmgr->inventoryAction(a);
3993                 } else if (craft_amount > 0) {
3994                         assert(s.isValid());
3995
3996                         // if there are no items selected or the selected item
3997                         // belongs to craftresult list, proceed with crafting
3998                         if (m_selected_item == NULL ||
3999                                         !m_selected_item->isValid() || m_selected_item->listname == "craftresult") {
4000
4001                                 assert(inv_s);
4002
4003                                 // Send IACTION_CRAFT
4004                                 infostream << "Handing IACTION_CRAFT to manager" << std::endl;
4005                                 ICraftAction *a = new ICraftAction();
4006                                 a->count = craft_amount;
4007                                 a->craft_inv = s.inventoryloc;
4008                                 m_invmgr->inventoryAction(a);
4009                         }
4010                 }
4011
4012                 // If m_selected_amount has been decreased to zero, deselect
4013                 if (m_selected_amount == 0) {
4014                         m_selected_swap.clear();
4015                         delete m_selected_item;
4016                         m_selected_item = NULL;
4017                         m_selected_amount = 0;
4018                         m_selected_dragging = false;
4019                 }
4020                 m_old_pointer = m_pointer;
4021         }
4022         if (event.EventType == EET_GUI_EVENT) {
4023
4024                 if (event.GUIEvent.EventType == gui::EGET_TAB_CHANGED
4025                                 && isVisible()) {
4026                         // find the element that was clicked
4027                         for (GUIFormSpecMenu::FieldSpec &s : m_fields) {
4028                                 if ((s.ftype == f_TabHeader) &&
4029                                                 (s.fid == event.GUIEvent.Caller->getID())) {
4030                                         s.send = true;
4031                                         acceptInput();
4032                                         s.send = false;
4033                                         return true;
4034                                 }
4035                         }
4036                 }
4037                 if (event.GUIEvent.EventType == gui::EGET_ELEMENT_FOCUS_LOST
4038                                 && isVisible()) {
4039                         if (!canTakeFocus(event.GUIEvent.Element)) {
4040                                 infostream<<"GUIFormSpecMenu: Not allowing focus change."
4041                                                 <<std::endl;
4042                                 // Returning true disables focus change
4043                                 return true;
4044                         }
4045                 }
4046                 if ((event.GUIEvent.EventType == gui::EGET_BUTTON_CLICKED) ||
4047                                 (event.GUIEvent.EventType == gui::EGET_CHECKBOX_CHANGED) ||
4048                                 (event.GUIEvent.EventType == gui::EGET_COMBO_BOX_CHANGED) ||
4049                                 (event.GUIEvent.EventType == gui::EGET_SCROLL_BAR_CHANGED)) {
4050                         unsigned int btn_id = event.GUIEvent.Caller->getID();
4051
4052                         if (btn_id == 257) {
4053                                 if (m_allowclose) {
4054                                         acceptInput(quit_mode_accept);
4055                                         quitMenu();
4056                                 } else {
4057                                         acceptInput();
4058                                         m_text_dst->gotText(L"ExitButton");
4059                                 }
4060                                 // quitMenu deallocates menu
4061                                 return true;
4062                         }
4063
4064                         // find the element that was clicked
4065                         for (GUIFormSpecMenu::FieldSpec &s : m_fields) {
4066                                 // if its a button, set the send field so
4067                                 // lua knows which button was pressed
4068                                 if ((s.ftype == f_Button || s.ftype == f_CheckBox) &&
4069                                                 s.fid == event.GUIEvent.Caller->getID()) {
4070                                         s.send = true;
4071                                         if (s.is_exit) {
4072                                                 if (m_allowclose) {
4073                                                         acceptInput(quit_mode_accept);
4074                                                         quitMenu();
4075                                                 } else {
4076                                                         m_text_dst->gotText(L"ExitButton");
4077                                                 }
4078                                                 return true;
4079                                         }
4080
4081                                         acceptInput(quit_mode_no);
4082                                         s.send = false;
4083                                         return true;
4084
4085                                 } else if ((s.ftype == f_DropDown) &&
4086                                                 (s.fid == event.GUIEvent.Caller->getID())) {
4087                                         // only send the changed dropdown
4088                                         for (GUIFormSpecMenu::FieldSpec &s2 : m_fields) {
4089                                                 if (s2.ftype == f_DropDown) {
4090                                                         s2.send = false;
4091                                                 }
4092                                         }
4093                                         s.send = true;
4094                                         acceptInput(quit_mode_no);
4095
4096                                         // revert configuration to make sure dropdowns are sent on
4097                                         // regular button click
4098                                         for (GUIFormSpecMenu::FieldSpec &s2 : m_fields) {
4099                                                 if (s2.ftype == f_DropDown) {
4100                                                         s2.send = true;
4101                                                 }
4102                                         }
4103                                         return true;
4104                                 } else if ((s.ftype == f_ScrollBar) &&
4105                                                 (s.fid == event.GUIEvent.Caller->getID())) {
4106                                         s.fdefault = L"Changed";
4107                                         acceptInput(quit_mode_no);
4108                                         s.fdefault = L"";
4109                                 }
4110                         }
4111                 }
4112
4113                 if (event.GUIEvent.EventType == gui::EGET_EDITBOX_ENTER) {
4114                         if (event.GUIEvent.Caller->getID() > 257) {
4115                                 bool close_on_enter = true;
4116                                 for (GUIFormSpecMenu::FieldSpec &s : m_fields) {
4117                                         if (s.ftype == f_Unknown &&
4118                                                         s.fid == event.GUIEvent.Caller->getID()) {
4119                                                 current_field_enter_pending = s.fname;
4120                                                 std::unordered_map<std::string, bool>::const_iterator it =
4121                                                         field_close_on_enter.find(s.fname);
4122                                                 if (it != field_close_on_enter.end())
4123                                                         close_on_enter = (*it).second;
4124
4125                                                 break;
4126                                         }
4127                                 }
4128
4129                                 if (m_allowclose && close_on_enter) {
4130                                         current_keys_pending.key_enter = true;
4131                                         acceptInput(quit_mode_accept);
4132                                         quitMenu();
4133                                 } else {
4134                                         current_keys_pending.key_enter = true;
4135                                         acceptInput();
4136                                 }
4137                                 // quitMenu deallocates menu
4138                                 return true;
4139                         }
4140                 }
4141
4142                 if (event.GUIEvent.EventType == gui::EGET_TABLE_CHANGED) {
4143                         int current_id = event.GUIEvent.Caller->getID();
4144                         if (current_id > 257) {
4145                                 // find the element that was clicked
4146                                 for (GUIFormSpecMenu::FieldSpec &s : m_fields) {
4147                                         // if it's a table, set the send field
4148                                         // so lua knows which table was changed
4149                                         if ((s.ftype == f_Table) && (s.fid == current_id)) {
4150                                                 s.send = true;
4151                                                 acceptInput();
4152                                                 s.send=false;
4153                                         }
4154                                 }
4155                                 return true;
4156                         }
4157                 }
4158         }
4159
4160         return Parent ? Parent->OnEvent(event) : false;
4161 }
4162
4163 /**
4164  * get name of element by element id
4165  * @param id of element
4166  * @return name string or empty string
4167  */
4168 std::string GUIFormSpecMenu::getNameByID(s32 id)
4169 {
4170         for (FieldSpec &spec : m_fields) {
4171                 if (spec.fid == id) {
4172                         return spec.fname;
4173                 }
4174         }
4175         return "";
4176 }
4177
4178 /**
4179  * get label of element by id
4180  * @param id of element
4181  * @return label string or empty string
4182  */
4183 std::wstring GUIFormSpecMenu::getLabelByID(s32 id)
4184 {
4185         for (FieldSpec &spec : m_fields) {
4186                 if (spec.fid == id) {
4187                         return spec.flabel;
4188                 }
4189         }
4190         return L"";
4191 }
4192
4193 StyleSpec GUIFormSpecMenu::getStyleForElement(const std::string &type,
4194                 const std::string &name, const std::string &parent_type) {
4195         StyleSpec ret;
4196
4197         if (!parent_type.empty()) {
4198                 auto it = theme_by_type.find(parent_type);
4199                 if (it != theme_by_type.end()) {
4200                         ret |= it->second;
4201                 }
4202         }
4203
4204         auto it = theme_by_type.find(type);
4205         if (it != theme_by_type.end()) {
4206                 ret |= it->second;
4207         }
4208
4209         it = theme_by_name.find(name);
4210         if (it != theme_by_name.end()) {
4211                 ret |= it->second;
4212         }
4213
4214         return ret;
4215 }