]> git.lizzy.rs Git - dragonfireclient.git/blob - src/gui/guiFormSpecMenu.h
Android: Fix ConfirmRegistration and PasswordChange input and scale size (#10182)
[dragonfireclient.git] / src / gui / guiFormSpecMenu.h
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 #pragma once
21
22 #include <utility>
23 #include <stack>
24 #include <unordered_set>
25
26 #include "irrlichttypes_extrabloated.h"
27 #include "inventorymanager.h"
28 #include "modalMenu.h"
29 #include "guiInventoryList.h"
30 #include "guiScrollBar.h"
31 #include "guiTable.h"
32 #include "network/networkprotocol.h"
33 #include "client/joystick_controller.h"
34 #include "util/string.h"
35 #include "util/enriched_string.h"
36 #include "StyleSpec.h"
37
38 class InventoryManager;
39 class ISimpleTextureSource;
40 class Client;
41 class TexturePool;
42 class GUIScrollContainer;
43
44 typedef enum {
45         f_Button,
46         f_Table,
47         f_TabHeader,
48         f_CheckBox,
49         f_DropDown,
50         f_ScrollBar,
51         f_Box,
52         f_ItemImage,
53         f_HyperText,
54         f_AnimatedImage,
55         f_Unknown
56 } FormspecFieldType;
57
58 typedef enum {
59         quit_mode_no,
60         quit_mode_accept,
61         quit_mode_cancel
62 } FormspecQuitMode;
63
64 struct TextDest
65 {
66         virtual ~TextDest() = default;
67
68         // This is deprecated I guess? -celeron55
69         virtual void gotText(const std::wstring &text) {}
70         virtual void gotText(const StringMap &fields) = 0;
71
72         std::string m_formname;
73 };
74
75 class IFormSource
76 {
77 public:
78         virtual ~IFormSource() = default;
79         virtual const std::string &getForm() const = 0;
80         // Fill in variables in field text
81         virtual std::string resolveText(const std::string &str) { return str; }
82 };
83
84 class GUIFormSpecMenu : public GUIModalMenu
85 {
86         struct ListRingSpec
87         {
88                 ListRingSpec() = default;
89
90                 ListRingSpec(const InventoryLocation &a_inventoryloc,
91                                 const std::string &a_listname):
92                         inventoryloc(a_inventoryloc),
93                         listname(a_listname)
94                 {
95                 }
96
97                 InventoryLocation inventoryloc;
98                 std::string listname;
99         };
100
101         struct FieldSpec
102         {
103                 FieldSpec() = default;
104
105                 FieldSpec(const std::string &name, const std::wstring &label,
106                                 const std::wstring &default_text, s32 id, int priority = 0,
107                                 gui::ECURSOR_ICON cursor_icon = ECI_NORMAL) :
108                         fname(name),
109                         flabel(label),
110                         fdefault(unescape_enriched(translate_string(default_text))),
111                         fid(id),
112                         send(false),
113                         ftype(f_Unknown),
114                         is_exit(false),
115                         priority(priority),
116                         fcursor_icon(cursor_icon)
117                 {
118                 }
119
120                 std::string fname;
121                 std::wstring flabel;
122                 std::wstring fdefault;
123                 s32 fid;
124                 bool send;
125                 FormspecFieldType ftype;
126                 bool is_exit;
127                 // Draw priority for formspec version < 3
128                 int priority;
129                 core::rect<s32> rect;
130                 gui::ECURSOR_ICON fcursor_icon;
131         };
132
133         struct TooltipSpec
134         {
135                 TooltipSpec() = default;
136                 TooltipSpec(const std::wstring &a_tooltip, irr::video::SColor a_bgcolor,
137                                 irr::video::SColor a_color):
138                         tooltip(translate_string(a_tooltip)),
139                         bgcolor(a_bgcolor),
140                         color(a_color)
141                 {
142                 }
143
144                 std::wstring tooltip;
145                 irr::video::SColor bgcolor;
146                 irr::video::SColor color;
147         };
148
149 public:
150         GUIFormSpecMenu(JoystickController *joystick,
151                         gui::IGUIElement* parent, s32 id,
152                         IMenuManager *menumgr,
153                         Client *client,
154                         ISimpleTextureSource *tsrc,
155                         IFormSource* fs_src,
156                         TextDest* txt_dst,
157                         const std::string &formspecPrepend,
158                         bool remap_dbl_click = true);
159
160         ~GUIFormSpecMenu();
161
162         static void create(GUIFormSpecMenu *&cur_formspec, Client *client,
163                 JoystickController *joystick, IFormSource *fs_src, TextDest *txt_dest,
164                 const std::string &formspecPrepend);
165
166         void setFormSpec(const std::string &formspec_string,
167                         const InventoryLocation &current_inventory_location)
168         {
169                 m_formspec_string = formspec_string;
170                 m_current_inventory_location = current_inventory_location;
171                 m_is_form_regenerated = false;
172                 regenerateGui(m_screensize_old);
173         }
174
175         const InventoryLocation &getFormspecLocation()
176         {
177                 return m_current_inventory_location;
178         }
179
180         void setFormspecPrepend(const std::string &formspecPrepend)
181         {
182                 m_formspec_prepend = formspecPrepend;
183         }
184
185         // form_src is deleted by this GUIFormSpecMenu
186         void setFormSource(IFormSource *form_src)
187         {
188                 delete m_form_src;
189                 m_form_src = form_src;
190         }
191
192         // text_dst is deleted by this GUIFormSpecMenu
193         void setTextDest(TextDest *text_dst)
194         {
195                 delete m_text_dst;
196                 m_text_dst = text_dst;
197         }
198
199         void allowClose(bool value)
200         {
201                 m_allowclose = value;
202         }
203
204         void lockSize(bool lock,v2u32 basescreensize=v2u32(0,0))
205         {
206                 m_lock = lock;
207                 m_lockscreensize = basescreensize;
208         }
209
210         void removeChildren();
211         void setInitialFocus();
212
213         void setFocus(const std::string &elementname)
214         {
215                 m_focused_element = elementname;
216         }
217
218         Client *getClient() const
219         {
220                 return m_client;
221         }
222
223         const GUIInventoryList::ItemSpec *getSelectedItem() const
224         {
225                 return m_selected_item;
226         }
227
228         const u16 getSelectedAmount() const
229         {
230                 return m_selected_amount;
231         }
232
233         bool doTooltipAppendItemname() const
234         {
235                 return m_tooltip_append_itemname;
236         }
237
238         void addHoveredItemTooltip(const std::string &name)
239         {
240                 m_hovered_item_tooltips.emplace_back(name);
241         }
242
243         /*
244                 Remove and re-add (or reposition) stuff
245         */
246         void regenerateGui(v2u32 screensize);
247
248         GUIInventoryList::ItemSpec getItemAtPos(v2s32 p) const;
249         void drawSelectedItem();
250         void drawMenu();
251         void updateSelectedItem();
252         ItemStack verifySelectedItem();
253
254         void acceptInput(FormspecQuitMode quitmode);
255         bool preprocessEvent(const SEvent& event);
256         bool OnEvent(const SEvent& event);
257         bool doPause;
258         bool pausesGame() { return doPause; }
259
260         GUITable* getTable(const std::string &tablename);
261         std::vector<std::string>* getDropDownValues(const std::string &name);
262
263 #ifdef __ANDROID__
264         bool getAndroidUIInput();
265 #endif
266
267 protected:
268         v2s32 getBasePos() const
269         {
270                         return padding + offset + AbsoluteRect.UpperLeftCorner;
271         }
272         std::wstring getLabelByID(s32 id);
273         std::string getNameByID(s32 id);
274         const FieldSpec *getSpecByID(s32 id);
275         v2s32 getElementBasePos(const std::vector<std::string> *v_pos);
276         v2s32 getRealCoordinateBasePos(const std::vector<std::string> &v_pos);
277         v2s32 getRealCoordinateGeometry(const std::vector<std::string> &v_geom);
278
279         std::unordered_map<std::string, std::vector<StyleSpec>> theme_by_type;
280         std::unordered_map<std::string, std::vector<StyleSpec>> theme_by_name;
281         std::unordered_set<std::string> property_warned;
282
283         StyleSpec getDefaultStyleForElement(const std::string &type,
284                         const std::string &name="", const std::string &parent_type="");
285         std::array<StyleSpec, StyleSpec::NUM_STATES> getStyleForElement(const std::string &type,
286                         const std::string &name="", const std::string &parent_type="");
287
288         v2s32 padding;
289         v2f32 spacing;
290         v2s32 imgsize;
291         v2s32 offset;
292         v2f32 pos_offset;
293         std::stack<v2f32> container_stack;
294
295         InventoryManager *m_invmgr;
296         ISimpleTextureSource *m_tsrc;
297         Client *m_client;
298
299         std::string m_formspec_string;
300         std::string m_formspec_prepend;
301         InventoryLocation m_current_inventory_location;
302
303         // Default true because we can't control regeneration on resizing, but
304         // we can control cases when the formspec is shown intentionally.
305         bool m_is_form_regenerated = true;
306
307         std::vector<GUIInventoryList *> m_inventorylists;
308         std::vector<ListRingSpec> m_inventory_rings;
309         std::vector<gui::IGUIElement *> m_backgrounds;
310         std::unordered_map<std::string, bool> field_close_on_enter;
311         std::unordered_map<std::string, bool> m_dropdown_index_event;
312         std::vector<FieldSpec> m_fields;
313         std::vector<std::pair<FieldSpec, GUITable *>> m_tables;
314         std::vector<std::pair<FieldSpec, gui::IGUICheckBox *>> m_checkboxes;
315         std::map<std::string, TooltipSpec> m_tooltips;
316         std::vector<std::pair<gui::IGUIElement *, TooltipSpec>> m_tooltip_rects;
317         std::vector<std::pair<FieldSpec, GUIScrollBar *>> m_scrollbars;
318         std::vector<std::pair<FieldSpec, std::vector<std::string>>> m_dropdowns;
319         std::vector<gui::IGUIElement *> m_clickthrough_elements;
320         std::vector<std::pair<std::string, GUIScrollContainer *>> m_scroll_containers;
321
322         GUIInventoryList::ItemSpec *m_selected_item = nullptr;
323         u16 m_selected_amount = 0;
324         bool m_selected_dragging = false;
325         ItemStack m_selected_swap;
326
327         gui::IGUIStaticText *m_tooltip_element = nullptr;
328
329         u64 m_tooltip_show_delay;
330         bool m_tooltip_append_itemname;
331         u64 m_hovered_time = 0;
332         s32 m_old_tooltip_id = -1;
333
334         bool m_auto_place = false;
335
336         bool m_allowclose = true;
337         bool m_lock = false;
338         v2u32 m_lockscreensize;
339
340         bool m_bgnonfullscreen;
341         bool m_bgfullscreen;
342         video::SColor m_bgcolor;
343         video::SColor m_fullscreen_bgcolor;
344         video::SColor m_default_tooltip_bgcolor;
345         video::SColor m_default_tooltip_color;
346
347 private:
348         IFormSource        *m_form_src;
349         TextDest           *m_text_dst;
350         std::string         m_last_formname;
351         u16                 m_formspec_version = 1;
352         std::string         m_focused_element = "";
353         JoystickController *m_joystick;
354         bool m_show_debug = false;
355
356         typedef struct {
357                 bool explicit_size;
358                 bool real_coordinates;
359                 u8 simple_field_count;
360                 v2f invsize;
361                 v2s32 size;
362                 v2f32 offset;
363                 v2f32 anchor;
364                 core::rect<s32> rect;
365                 v2s32 basepos;
366                 v2u32 screensize;
367                 GUITable::TableOptions table_options;
368                 GUITable::TableColumns table_columns;
369                 gui::IGUIElement *current_parent = nullptr;
370
371                 GUIInventoryList::Options inventorylist_options;
372
373                 struct {
374                         s32 max = 1000;
375                         s32 min = 0;
376                         s32 small_step = 10;
377                         s32 large_step = 100;
378                         s32 thumb_size = 1;
379                         GUIScrollBar::ArrowVisibility arrow_visiblity = GUIScrollBar::DEFAULT;
380                 } scrollbar_options;
381
382                 // used to restore table selection/scroll/treeview state
383                 std::unordered_map<std::string, GUITable::DynamicData> table_dyndata;
384         } parserData;
385
386         typedef struct {
387                 bool key_up;
388                 bool key_down;
389                 bool key_enter;
390                 bool key_escape;
391         } fs_key_pendig;
392
393         fs_key_pendig current_keys_pending;
394         std::string current_field_enter_pending = "";
395         std::vector<std::string> m_hovered_item_tooltips;
396
397         void parseElement(parserData* data, const std::string &element);
398
399         void parseSize(parserData* data, const std::string &element);
400         void parseContainer(parserData* data, const std::string &element);
401         void parseContainerEnd(parserData* data);
402         void parseScrollContainer(parserData *data, const std::string &element);
403         void parseScrollContainerEnd(parserData *data);
404         void parseList(parserData* data, const std::string &element);
405         void parseListRing(parserData* data, const std::string &element);
406         void parseCheckbox(parserData* data, const std::string &element);
407         void parseImage(parserData* data, const std::string &element);
408         void parseAnimatedImage(parserData *data, const std::string &element);
409         void parseItemImage(parserData* data, const std::string &element);
410         void parseButton(parserData* data, const std::string &element,
411                         const std::string &typ);
412         void parseBackground(parserData* data, const std::string &element);
413         void parseTableOptions(parserData* data, const std::string &element);
414         void parseTableColumns(parserData* data, const std::string &element);
415         void parseTable(parserData* data, const std::string &element);
416         void parseTextList(parserData* data, const std::string &element);
417         void parseDropDown(parserData* data, const std::string &element);
418         void parseFieldCloseOnEnter(parserData *data, const std::string &element);
419         void parsePwdField(parserData* data, const std::string &element);
420         void parseField(parserData* data, const std::string &element, const std::string &type);
421         void createTextField(parserData *data, FieldSpec &spec,
422                 core::rect<s32> &rect, bool is_multiline);
423         void parseSimpleField(parserData* data,std::vector<std::string> &parts);
424         void parseTextArea(parserData* data,std::vector<std::string>& parts,
425                         const std::string &type);
426         void parseHyperText(parserData *data, const std::string &element);
427         void parseLabel(parserData* data, const std::string &element);
428         void parseVertLabel(parserData* data, const std::string &element);
429         void parseImageButton(parserData* data, const std::string &element,
430                         const std::string &type);
431         void parseItemImageButton(parserData* data, const std::string &element);
432         void parseTabHeader(parserData* data, const std::string &element);
433         void parseBox(parserData* data, const std::string &element);
434         void parseBackgroundColor(parserData* data, const std::string &element);
435         void parseListColors(parserData* data, const std::string &element);
436         void parseTooltip(parserData* data, const std::string &element);
437         bool parseVersionDirect(const std::string &data);
438         bool parseSizeDirect(parserData* data, const std::string &element);
439         void parseScrollBar(parserData* data, const std::string &element);
440         void parseScrollBarOptions(parserData *data, const std::string &element);
441         bool parsePositionDirect(parserData *data, const std::string &element);
442         void parsePosition(parserData *data, const std::string &element);
443         bool parseAnchorDirect(parserData *data, const std::string &element);
444         void parseAnchor(parserData *data, const std::string &element);
445         bool parseStyle(parserData *data, const std::string &element, bool style_type);
446         void parseSetFocus(const std::string &element);
447
448         void tryClose();
449
450         void showTooltip(const std::wstring &text, const irr::video::SColor &color,
451                 const irr::video::SColor &bgcolor);
452
453         /**
454          * In formspec version < 2 the elements were not ordered properly. Some element
455          * types were drawn before others.
456          * This function sorts the elements in the old order for backwards compatibility.
457          */
458         void legacySortElements(core::list<IGUIElement *>::Iterator from);
459
460         int m_btn_height;
461         gui::IGUIFont *m_font = nullptr;
462 };
463
464 class FormspecFormSource: public IFormSource
465 {
466 public:
467         FormspecFormSource(const std::string &formspec):
468                 m_formspec(formspec)
469         {
470         }
471
472         ~FormspecFormSource() = default;
473
474         void setForm(const std::string &formspec)
475         {
476                 m_formspec = formspec;
477         }
478
479         const std::string &getForm() const
480         {
481                 return m_formspec;
482         }
483
484         std::string m_formspec;
485 };