]> git.lizzy.rs Git - dragonfireclient.git/blob - src/guiFormSpecMenu.h
40be59b4660419532155fdcda50fc451358fe792
[dragonfireclient.git] / src / 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
21 #ifndef GUIINVENTORYMENU_HEADER
22 #define GUIINVENTORYMENU_HEADER
23
24 #include <utility>
25
26 #include "irrlichttypes_extrabloated.h"
27 #include "inventory.h"
28 #include "inventorymanager.h"
29 #include "modalMenu.h"
30 #include "guiTable.h"
31 #include "clientserver.h"
32
33 class IGameDef;
34 class InventoryManager;
35 class ISimpleTextureSource;
36 class Client;
37
38 typedef enum {
39         f_Button,
40         f_Table,
41         f_TabHeader,
42         f_CheckBox,
43         f_DropDown,
44         f_ScrollBar,
45         f_Unknown
46 } FormspecFieldType;
47
48 typedef enum {
49         quit_mode_no,
50         quit_mode_accept,
51         quit_mode_cancel
52 } FormspecQuitMode;
53
54 struct TextDest
55 {
56         virtual ~TextDest() {};
57         // This is deprecated I guess? -celeron55
58         virtual void gotText(std::wstring text){}
59         virtual void gotText(std::map<std::string, std::string> fields) = 0;
60         virtual void setFormName(std::string formname)
61         { m_formname = formname;};
62
63         std::string m_formname;
64 };
65
66 class IFormSource
67 {
68 public:
69         virtual ~IFormSource(){}
70         virtual std::string getForm() = 0;
71         // Fill in variables in field text
72         virtual std::string resolveText(std::string str){ return str; }
73 };
74
75 class GUIFormSpecMenu : public GUIModalMenu
76 {
77         struct ItemSpec
78         {
79                 ItemSpec()
80                 {
81                         i = -1;
82                 }
83                 ItemSpec(const InventoryLocation &a_inventoryloc,
84                                 const std::string &a_listname,
85                                 s32 a_i)
86                 {
87                         inventoryloc = a_inventoryloc;
88                         listname = a_listname;
89                         i = a_i;
90                 }
91                 bool isValid() const
92                 {
93                         return i != -1;
94                 }
95
96                 InventoryLocation inventoryloc;
97                 std::string listname;
98                 s32 i;
99         };
100
101         struct ListDrawSpec
102         {
103                 ListDrawSpec()
104                 {
105                 }
106                 ListDrawSpec(const InventoryLocation &a_inventoryloc,
107                                 const std::string &a_listname,
108                                 v2s32 a_pos, v2s32 a_geom, s32 a_start_item_i):
109                         inventoryloc(a_inventoryloc),
110                         listname(a_listname),
111                         pos(a_pos),
112                         geom(a_geom),
113                         start_item_i(a_start_item_i)
114                 {
115                 }
116
117                 InventoryLocation inventoryloc;
118                 std::string listname;
119                 v2s32 pos;
120                 v2s32 geom;
121                 s32 start_item_i;
122         };
123
124         struct ImageDrawSpec
125         {
126                 ImageDrawSpec()
127                 {
128                 }
129                 ImageDrawSpec(const std::string &a_name,
130                                 v2s32 a_pos, v2s32 a_geom):
131                         name(a_name),
132                         pos(a_pos),
133                         geom(a_geom)
134                 {
135                         scale = true;
136                 }
137                 ImageDrawSpec(const std::string &a_name,
138                                 v2s32 a_pos):
139                         name(a_name),
140                         pos(a_pos)
141                 {
142                         scale = false;
143                 }
144                 std::string name;
145                 v2s32 pos;
146                 v2s32 geom;
147                 bool scale;
148         };
149
150         struct FieldSpec
151         {
152                 FieldSpec()
153                 {
154                 }
155                 FieldSpec(const std::wstring &name, const std::wstring &label,
156                                 const std::wstring &fdeflt, int id) :
157                         fname(name),
158                         flabel(label),
159                         fdefault(fdeflt),
160                         fid(id)
161                 {
162                         send = false;
163                         ftype = f_Unknown;
164                         is_exit = false;
165                 }
166                 std::wstring fname;
167                 std::wstring flabel;
168                 std::wstring fdefault;
169                 int fid;
170                 bool send;
171                 FormspecFieldType ftype;
172                 bool is_exit;
173                 core::rect<s32> rect;
174         };
175
176         struct BoxDrawSpec {
177                 BoxDrawSpec(v2s32 a_pos, v2s32 a_geom,irr::video::SColor a_color):
178                         pos(a_pos),
179                         geom(a_geom),
180                         color(a_color)
181                 {
182                 }
183                 v2s32 pos;
184                 v2s32 geom;
185                 irr::video::SColor color;
186         };
187
188         struct TooltipSpec {
189                 TooltipSpec()
190                 {
191                 }
192                 TooltipSpec(std::string a_tooltip, irr::video::SColor a_bgcolor,
193                                 irr::video::SColor a_color):
194                         tooltip(a_tooltip),
195                         bgcolor(a_bgcolor),
196                         color(a_color)
197                 {
198                 }
199                 std::string tooltip;
200                 irr::video::SColor bgcolor;
201                 irr::video::SColor color;
202         };
203
204 public:
205         GUIFormSpecMenu(irr::IrrlichtDevice* dev,
206                         gui::IGUIElement* parent, s32 id,
207                         IMenuManager *menumgr,
208                         InventoryManager *invmgr,
209                         IGameDef *gamedef,
210                         ISimpleTextureSource *tsrc,
211                         IFormSource* fs_src,
212                         TextDest* txt_dst,
213                         GUIFormSpecMenu** ext_ptr,
214                         Client* client
215                         );
216
217         ~GUIFormSpecMenu();
218
219         void setFormSpec(const std::string &formspec_string,
220                         InventoryLocation current_inventory_location)
221         {
222                 m_formspec_string = formspec_string;
223                 m_current_inventory_location = current_inventory_location;
224                 regenerateGui(m_screensize_old);
225         }
226
227         // form_src is deleted by this GUIFormSpecMenu
228         void setFormSource(IFormSource *form_src)
229         {
230                 if (m_form_src != NULL) {
231                         delete m_form_src;
232                 }
233                 m_form_src = form_src;
234         }
235
236         // text_dst is deleted by this GUIFormSpecMenu
237         void setTextDest(TextDest *text_dst)
238         {
239                 if (m_text_dst != NULL) {
240                         delete m_text_dst;
241                 }
242                 m_text_dst = text_dst;
243         }
244
245         void allowClose(bool value)
246         {
247                 m_allowclose = value;
248         }
249
250         void lockSize(bool lock,v2u32 basescreensize=v2u32(0,0)) {
251                 m_lock = lock;
252                 m_lockscreensize = basescreensize;
253         }
254
255         void removeChildren();
256         void setInitialFocus();
257         /*
258                 Remove and re-add (or reposition) stuff
259         */
260         void regenerateGui(v2u32 screensize);
261
262         ItemSpec getItemAtPos(v2s32 p) const;
263         void drawList(const ListDrawSpec &s, int phase);
264         void drawSelectedItem();
265         void drawMenu();
266         void updateSelectedItem();
267         ItemStack verifySelectedItem();
268
269         void acceptInput(FormspecQuitMode quitmode);
270         bool preprocessEvent(const SEvent& event);
271         bool OnEvent(const SEvent& event);
272         bool doPause;
273         bool pausesGame() { return doPause; }
274
275         GUITable* getTable(std::wstring tablename);
276
277 #ifdef __ANDROID__
278         bool getAndroidUIInput();
279 #endif
280
281 protected:
282         v2s32 getBasePos() const
283         {
284                         return padding + offset + AbsoluteRect.UpperLeftCorner;
285         }
286
287         v2s32 padding;
288         v2s32 spacing;
289         v2s32 imgsize;
290         v2s32 offset;
291
292         irr::IrrlichtDevice* m_device;
293         InventoryManager *m_invmgr;
294         IGameDef *m_gamedef;
295         ISimpleTextureSource *m_tsrc;
296         Client *m_client;
297
298         std::string m_formspec_string;
299         InventoryLocation m_current_inventory_location;
300
301
302         std::vector<ListDrawSpec> m_inventorylists;
303         std::vector<ImageDrawSpec> m_backgrounds;
304         std::vector<ImageDrawSpec> m_images;
305         std::vector<ImageDrawSpec> m_itemimages;
306         std::vector<BoxDrawSpec> m_boxes;
307         std::vector<FieldSpec> m_fields;
308         std::vector<std::pair<FieldSpec,GUITable*> > m_tables;
309         std::vector<std::pair<FieldSpec,gui::IGUICheckBox*> > m_checkboxes;
310         std::map<std::wstring, TooltipSpec> m_tooltips;
311         std::vector<std::pair<FieldSpec,gui::IGUIScrollBar*> > m_scrollbars;
312
313         ItemSpec *m_selected_item;
314         u32 m_selected_amount;
315         bool m_selected_dragging;
316
317         // WARNING: BLACK MAGIC
318         // Used to guess and keep up with some special things the server can do.
319         // If name is "", no guess exists.
320         ItemStack m_selected_content_guess;
321         InventoryLocation m_selected_content_guess_inventory;
322
323         v2s32 m_pointer;
324         v2s32 m_old_pointer;  // Mouse position after previous mouse event
325         gui::IGUIStaticText *m_tooltip_element;
326
327         u32 m_tooltip_show_delay;
328         s32 m_hoovered_time;
329         s32 m_old_tooltip_id;
330         std::string m_old_tooltip;
331
332         bool m_allowclose;
333         bool m_lock;
334         v2u32 m_lockscreensize;
335
336         bool m_bgfullscreen;
337         bool m_slotborder;
338         bool m_clipbackground;
339         video::SColor m_bgcolor;
340         video::SColor m_slotbg_n;
341         video::SColor m_slotbg_h;
342         video::SColor m_slotbordercolor;
343         video::SColor m_default_tooltip_bgcolor;
344         video::SColor m_default_tooltip_color;
345
346 private:
347         IFormSource      *m_form_src;
348         TextDest         *m_text_dst;
349         GUIFormSpecMenu **m_ext_ptr;
350         gui::IGUIFont    *m_font;
351         unsigned int      m_formspec_version;
352
353         typedef struct {
354                 v2s32 size;
355                 core::rect<s32> rect;
356                 v2s32 basepos;
357                 int bp_set;
358                 v2u32 screensize;
359                 std::wstring focused_fieldname;
360                 GUITable::TableOptions table_options;
361                 GUITable::TableColumns table_columns;
362                 // used to restore table selection/scroll/treeview state
363                 std::map<std::wstring,GUITable::DynamicData> table_dyndata;
364         } parserData;
365
366         typedef struct {
367                 bool key_up;
368                 bool key_down;
369                 bool key_enter;
370                 bool key_escape;
371         } fs_key_pendig;
372
373         fs_key_pendig current_keys_pending;
374
375         void parseElement(parserData* data,std::string element);
376
377         void parseSize(parserData* data,std::string element);
378         void parseList(parserData* data,std::string element);
379         void parseCheckbox(parserData* data,std::string element);
380         void parseImage(parserData* data,std::string element);
381         void parseItemImage(parserData* data,std::string element);
382         void parseButton(parserData* data,std::string element,std::string typ);
383         void parseBackground(parserData* data,std::string element);
384         void parseTableOptions(parserData* data,std::string element);
385         void parseTableColumns(parserData* data,std::string element);
386         void parseTable(parserData* data,std::string element);
387         void parseTextList(parserData* data,std::string element);
388         void parseDropDown(parserData* data,std::string element);
389         void parsePwdField(parserData* data,std::string element);
390         void parseField(parserData* data,std::string element,std::string type);
391         void parseSimpleField(parserData* data,std::vector<std::string> &parts);
392         void parseTextArea(parserData* data,std::vector<std::string>& parts,
393                         std::string type);
394         void parseLabel(parserData* data,std::string element);
395         void parseVertLabel(parserData* data,std::string element);
396         void parseImageButton(parserData* data,std::string element,std::string type);
397         void parseItemImageButton(parserData* data,std::string element);
398         void parseTabHeader(parserData* data,std::string element);
399         void parseBox(parserData* data,std::string element);
400         void parseBackgroundColor(parserData* data,std::string element);
401         void parseListColors(parserData* data,std::string element);
402         void parseTooltip(parserData* data,std::string element);
403         bool parseVersionDirect(std::string data);
404         void parseScrollBar(parserData* data, std::string element);
405
406         /**
407          * check if event is part of a double click
408          * @param event event to evaluate
409          * @return true/false if a doubleclick was detected
410          */
411         bool DoubleClickDetection(const SEvent event);
412
413         struct clickpos
414         {
415                 v2s32 pos;
416                 s32 time;
417         };
418         clickpos m_doubleclickdetect[2];
419
420         int m_btn_height;
421
422         std::wstring getLabelByID(s32 id);
423         std::wstring getNameByID(s32 id);
424 #ifdef __ANDROID__
425         v2s32 m_down_pos;
426         std::wstring m_JavaDialogFieldName;
427 #endif
428
429 };
430
431 class FormspecFormSource: public IFormSource
432 {
433 public:
434         FormspecFormSource(std::string formspec)
435         {
436                 m_formspec = formspec;
437         }
438
439         ~FormspecFormSource()
440         {}
441
442         void setForm(std::string formspec) {
443                 m_formspec = FORMSPEC_VERSION_STRING + formspec;
444         }
445
446         std::string getForm()
447         {
448                 return m_formspec;
449         }
450
451         std::string m_formspec;
452 };
453
454 #endif
455