]> git.lizzy.rs Git - dragonfireclient.git/blob - src/gui/guiFormSpecMenu.h
Make sure relevant std::stringstreams are set to binary
[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 GUIScrollContainer;
42 class ISoundManager;
43
44 enum FormspecFieldType {
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 };
57
58 enum FormspecQuitMode {
59         quit_mode_no,
60         quit_mode_accept,
61         quit_mode_cancel
62 };
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                 std::string sound;
132         };
133
134         struct TooltipSpec
135         {
136                 TooltipSpec() = default;
137                 TooltipSpec(const std::wstring &a_tooltip, irr::video::SColor a_bgcolor,
138                                 irr::video::SColor a_color):
139                         tooltip(translate_string(a_tooltip)),
140                         bgcolor(a_bgcolor),
141                         color(a_color)
142                 {
143                 }
144
145                 std::wstring tooltip;
146                 irr::video::SColor bgcolor;
147                 irr::video::SColor color;
148         };
149
150 public:
151         GUIFormSpecMenu(JoystickController *joystick,
152                         gui::IGUIElement* parent, s32 id,
153                         IMenuManager *menumgr,
154                         Client *client,
155                         gui::IGUIEnvironment *guienv,
156                         ISimpleTextureSource *tsrc,
157                         ISoundManager *sound_manager,
158                         IFormSource* fs_src,
159                         TextDest* txt_dst,
160                         const std::string &formspecPrepend,
161                         bool remap_dbl_click = true);
162
163         ~GUIFormSpecMenu();
164
165         static void create(GUIFormSpecMenu *&cur_formspec, Client *client,
166                 gui::IGUIEnvironment *guienv, JoystickController *joystick, IFormSource *fs_src,
167                 TextDest *txt_dest, const std::string &formspecPrepend,
168                 ISoundManager *sound_manager);
169
170         void setFormSpec(const std::string &formspec_string,
171                         const InventoryLocation &current_inventory_location)
172         {
173                 m_formspec_string = formspec_string;
174                 m_current_inventory_location = current_inventory_location;
175                 m_is_form_regenerated = false;
176                 regenerateGui(m_screensize_old);
177         }
178
179         const InventoryLocation &getFormspecLocation()
180         {
181                 return m_current_inventory_location;
182         }
183
184         void setFormspecPrepend(const std::string &formspecPrepend)
185         {
186                 m_formspec_prepend = formspecPrepend;
187         }
188
189         // form_src is deleted by this GUIFormSpecMenu
190         void setFormSource(IFormSource *form_src)
191         {
192                 delete m_form_src;
193                 m_form_src = form_src;
194         }
195
196         // text_dst is deleted by this GUIFormSpecMenu
197         void setTextDest(TextDest *text_dst)
198         {
199                 delete m_text_dst;
200                 m_text_dst = text_dst;
201         }
202
203         void allowClose(bool value)
204         {
205                 m_allowclose = value;
206         }
207
208         void lockSize(bool lock,v2u32 basescreensize=v2u32(0,0))
209         {
210                 m_lock = lock;
211                 m_lockscreensize = basescreensize;
212         }
213
214         void removeChildren();
215         void setInitialFocus();
216
217         void setFocus(const std::string &elementname)
218         {
219                 m_focused_element = elementname;
220         }
221
222         Client *getClient() const
223         {
224                 return m_client;
225         }
226
227         const GUIInventoryList::ItemSpec *getSelectedItem() const
228         {
229                 return m_selected_item;
230         }
231
232         const u16 getSelectedAmount() const
233         {
234                 return m_selected_amount;
235         }
236
237         bool doTooltipAppendItemname() const
238         {
239                 return m_tooltip_append_itemname;
240         }
241
242         void addHoveredItemTooltip(const std::string &name)
243         {
244                 m_hovered_item_tooltips.emplace_back(name);
245         }
246
247         /*
248                 Remove and re-add (or reposition) stuff
249         */
250         void regenerateGui(v2u32 screensize);
251
252         GUIInventoryList::ItemSpec getItemAtPos(v2s32 p) const;
253         void drawSelectedItem();
254         void drawMenu();
255         void updateSelectedItem();
256         ItemStack verifySelectedItem();
257
258         void acceptInput(FormspecQuitMode quitmode=quit_mode_no);
259         bool preprocessEvent(const SEvent& event);
260         bool OnEvent(const SEvent& event);
261         bool doPause;
262         bool pausesGame() { return doPause; }
263
264         GUITable* getTable(const std::string &tablename);
265         std::vector<std::string>* getDropDownValues(const std::string &name);
266
267 #ifdef __ANDROID__
268         bool getAndroidUIInput();
269 #endif
270
271 protected:
272         v2s32 getBasePos() const
273         {
274                         return padding + offset + AbsoluteRect.UpperLeftCorner;
275         }
276         std::wstring getLabelByID(s32 id);
277         std::string getNameByID(s32 id);
278         const FieldSpec *getSpecByID(s32 id);
279         v2s32 getElementBasePos(const std::vector<std::string> *v_pos);
280         v2s32 getRealCoordinateBasePos(const std::vector<std::string> &v_pos);
281         v2s32 getRealCoordinateGeometry(const std::vector<std::string> &v_geom);
282
283         std::unordered_map<std::string, std::vector<StyleSpec>> theme_by_type;
284         std::unordered_map<std::string, std::vector<StyleSpec>> theme_by_name;
285         std::unordered_set<std::string> property_warned;
286
287         StyleSpec getDefaultStyleForElement(const std::string &type,
288                         const std::string &name="", const std::string &parent_type="");
289         std::array<StyleSpec, StyleSpec::NUM_STATES> getStyleForElement(const std::string &type,
290                         const std::string &name="", const std::string &parent_type="");
291
292         v2s32 padding;
293         v2f32 spacing;
294         v2s32 imgsize;
295         v2s32 offset;
296         v2f32 pos_offset;
297         std::stack<v2f32> container_stack;
298
299         InventoryManager *m_invmgr;
300         ISimpleTextureSource *m_tsrc;
301         ISoundManager *m_sound_manager;
302         Client *m_client;
303
304         std::string m_formspec_string;
305         std::string m_formspec_prepend;
306         InventoryLocation m_current_inventory_location;
307
308         // Default true because we can't control regeneration on resizing, but
309         // we can control cases when the formspec is shown intentionally.
310         bool m_is_form_regenerated = true;
311
312         std::vector<GUIInventoryList *> m_inventorylists;
313         std::vector<ListRingSpec> m_inventory_rings;
314         std::vector<gui::IGUIElement *> m_backgrounds;
315         std::unordered_map<std::string, bool> field_close_on_enter;
316         std::unordered_map<std::string, bool> m_dropdown_index_event;
317         std::vector<FieldSpec> m_fields;
318         std::vector<std::pair<FieldSpec, GUITable *>> m_tables;
319         std::vector<std::pair<FieldSpec, gui::IGUICheckBox *>> m_checkboxes;
320         std::map<std::string, TooltipSpec> m_tooltips;
321         std::vector<std::pair<gui::IGUIElement *, TooltipSpec>> m_tooltip_rects;
322         std::vector<std::pair<FieldSpec, GUIScrollBar *>> m_scrollbars;
323         std::vector<std::pair<FieldSpec, std::vector<std::string>>> m_dropdowns;
324         std::vector<gui::IGUIElement *> m_clickthrough_elements;
325         std::vector<std::pair<std::string, GUIScrollContainer *>> m_scroll_containers;
326
327         GUIInventoryList::ItemSpec *m_selected_item = nullptr;
328         u16 m_selected_amount = 0;
329         bool m_selected_dragging = false;
330         ItemStack m_selected_swap;
331
332         gui::IGUIStaticText *m_tooltip_element = nullptr;
333
334         u64 m_tooltip_show_delay;
335         bool m_tooltip_append_itemname;
336         u64 m_hovered_time = 0;
337         s32 m_old_tooltip_id = -1;
338
339         bool m_auto_place = false;
340
341         bool m_allowclose = true;
342         bool m_lock = false;
343         v2u32 m_lockscreensize;
344
345         bool m_bgnonfullscreen;
346         bool m_bgfullscreen;
347         video::SColor m_bgcolor;
348         video::SColor m_fullscreen_bgcolor;
349         video::SColor m_default_tooltip_bgcolor;
350         video::SColor m_default_tooltip_color;
351
352 private:
353         IFormSource        *m_form_src;
354         TextDest           *m_text_dst;
355         std::string         m_last_formname;
356         u16                 m_formspec_version = 1;
357         std::string         m_focused_element = "";
358         JoystickController *m_joystick;
359         bool m_show_debug = false;
360
361         struct parserData {
362                 bool explicit_size;
363                 bool real_coordinates;
364                 u8 simple_field_count;
365                 v2f invsize;
366                 v2s32 size;
367                 v2f32 offset;
368                 v2f32 anchor;
369                 core::rect<s32> rect;
370                 v2s32 basepos;
371                 v2u32 screensize;
372                 GUITable::TableOptions table_options;
373                 GUITable::TableColumns table_columns;
374                 gui::IGUIElement *current_parent = nullptr;
375
376                 GUIInventoryList::Options inventorylist_options;
377
378                 struct {
379                         s32 max = 1000;
380                         s32 min = 0;
381                         s32 small_step = 10;
382                         s32 large_step = 100;
383                         s32 thumb_size = 1;
384                         GUIScrollBar::ArrowVisibility arrow_visiblity = GUIScrollBar::DEFAULT;
385                 } scrollbar_options;
386
387                 // used to restore table selection/scroll/treeview state
388                 std::unordered_map<std::string, GUITable::DynamicData> table_dyndata;
389         };
390
391         struct fs_key_pending {
392                 bool key_up;
393                 bool key_down;
394                 bool key_enter;
395                 bool key_escape;
396         };
397
398         fs_key_pending current_keys_pending;
399         std::string current_field_enter_pending = "";
400         std::vector<std::string> m_hovered_item_tooltips;
401
402         void parseElement(parserData* data, const std::string &element);
403
404         void parseSize(parserData* data, const std::string &element);
405         void parseContainer(parserData* data, const std::string &element);
406         void parseContainerEnd(parserData* data);
407         void parseScrollContainer(parserData *data, const std::string &element);
408         void parseScrollContainerEnd(parserData *data);
409         void parseList(parserData* data, const std::string &element);
410         void parseListRing(parserData* data, const std::string &element);
411         void parseCheckbox(parserData* data, const std::string &element);
412         void parseImage(parserData* data, const std::string &element);
413         void parseAnimatedImage(parserData *data, const std::string &element);
414         void parseItemImage(parserData* data, const std::string &element);
415         void parseButton(parserData* data, const std::string &element,
416                         const std::string &typ);
417         void parseBackground(parserData* data, const std::string &element);
418         void parseTableOptions(parserData* data, const std::string &element);
419         void parseTableColumns(parserData* data, const std::string &element);
420         void parseTable(parserData* data, const std::string &element);
421         void parseTextList(parserData* data, const std::string &element);
422         void parseDropDown(parserData* data, const std::string &element);
423         void parseFieldCloseOnEnter(parserData *data, const std::string &element);
424         void parsePwdField(parserData* data, const std::string &element);
425         void parseField(parserData* data, const std::string &element, const std::string &type);
426         void createTextField(parserData *data, FieldSpec &spec,
427                 core::rect<s32> &rect, bool is_multiline);
428         void parseSimpleField(parserData* data,std::vector<std::string> &parts);
429         void parseTextArea(parserData* data,std::vector<std::string>& parts,
430                         const std::string &type);
431         void parseHyperText(parserData *data, const std::string &element);
432         void parseLabel(parserData* data, const std::string &element);
433         void parseVertLabel(parserData* data, const std::string &element);
434         void parseImageButton(parserData* data, const std::string &element,
435                         const std::string &type);
436         void parseItemImageButton(parserData* data, const std::string &element);
437         void parseTabHeader(parserData* data, const std::string &element);
438         void parseBox(parserData* data, const std::string &element);
439         void parseBackgroundColor(parserData* data, const std::string &element);
440         void parseListColors(parserData* data, const std::string &element);
441         void parseTooltip(parserData* data, const std::string &element);
442         bool parseVersionDirect(const std::string &data);
443         bool parseSizeDirect(parserData* data, const std::string &element);
444         void parseScrollBar(parserData* data, const std::string &element);
445         void parseScrollBarOptions(parserData *data, const std::string &element);
446         bool parsePositionDirect(parserData *data, const std::string &element);
447         void parsePosition(parserData *data, const std::string &element);
448         bool parseAnchorDirect(parserData *data, const std::string &element);
449         void parseAnchor(parserData *data, const std::string &element);
450         bool parseStyle(parserData *data, const std::string &element, bool style_type);
451         void parseSetFocus(const std::string &element);
452         void parseModel(parserData *data, const std::string &element);
453
454         void tryClose();
455
456         void showTooltip(const std::wstring &text, const irr::video::SColor &color,
457                 const irr::video::SColor &bgcolor);
458
459         /**
460          * In formspec version < 2 the elements were not ordered properly. Some element
461          * types were drawn before others.
462          * This function sorts the elements in the old order for backwards compatibility.
463          */
464         void legacySortElements(core::list<IGUIElement *>::Iterator from);
465
466         int m_btn_height;
467         gui::IGUIFont *m_font = nullptr;
468 };
469
470 class FormspecFormSource: public IFormSource
471 {
472 public:
473         FormspecFormSource(const std::string &formspec):
474                 m_formspec(formspec)
475         {
476         }
477
478         ~FormspecFormSource() = default;
479
480         void setForm(const std::string &formspec)
481         {
482                 m_formspec = formspec;
483         }
484
485         const std::string &getForm() const
486         {
487                 return m_formspec;
488         }
489
490         std::string m_formspec;
491 };