]> git.lizzy.rs Git - dragonfireclient.git/blob - src/guiMessageMenu.cpp
Fix most walled-off caves
[dragonfireclient.git] / src / guiMessageMenu.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 #include "guiMessageMenu.h"
21 #include "debug.h"
22 #include "serialization.h"
23 #include <string>
24 #include <IGUICheckBox.h>
25 #include <IGUIEditBox.h>
26 #include <IGUIButton.h>
27 #include <IGUIStaticText.h>
28 #include <IGUIFont.h>
29
30 #include "gettext.h"
31
32 GUIMessageMenu::GUIMessageMenu(gui::IGUIEnvironment* env,
33                 gui::IGUIElement* parent, s32 id,
34                 IMenuManager *menumgr,
35                 std::wstring message_text
36 ):
37         GUIModalMenu(env, parent, id, menumgr),
38         m_message_text(message_text),
39         m_status(false)
40 {
41 }
42
43 GUIMessageMenu::~GUIMessageMenu()
44 {
45         removeChildren();
46 }
47
48 void GUIMessageMenu::removeChildren()
49 {
50         {
51                 gui::IGUIElement *e = getElementFromId(256);
52                 if(e != NULL)
53                         e->remove();
54         }
55         {
56                 gui::IGUIElement *e = getElementFromId(257);
57                 if(e != NULL)
58                         e->remove();
59         }
60 }
61
62 void GUIMessageMenu::regenerateGui(v2u32 screensize)
63 {
64         /*
65                 Remove stuff
66         */
67         removeChildren();
68         
69         /*
70                 Calculate new sizes and positions
71         */
72         core::rect<s32> rect(
73                         screensize.X/2 - 580/2,
74                         screensize.Y/2 - 300/2,
75                         screensize.X/2 + 580/2,
76                         screensize.Y/2 + 300/2
77         );
78         
79         DesiredRect = rect;
80         recalculateAbsolutePosition(false);
81
82         v2s32 size = rect.getSize();
83
84         gui::IGUISkin *skin = Environment->getSkin();
85         gui::IGUIFont *font = skin->getFont();
86         s32 msg_h = font->getDimension(m_message_text.c_str()).Height;
87         s32 msg_w = font->getDimension(m_message_text.c_str()).Width;
88         if(msg_h > 200)
89                 msg_h = 200;
90         if(msg_w > 540)
91                 msg_w = 540;
92
93         /*
94                 Add stuff
95         */
96         {
97                 core::rect<s32> rect(0, 0, msg_w, msg_h);
98                 rect += v2s32(size.X/2-msg_w/2, size.Y/2-30/2 - msg_h/2);
99                 Environment->addStaticText(m_message_text.c_str(),
100                         rect, false, true, this, -1);
101         }
102         changeCtype("");
103         int bw = 140;
104         {
105                 core::rect<s32> rect(0, 0, bw, 30);
106                 rect = rect + v2s32(size.X/2-bw/2, size.Y/2-30/2+5 + msg_h/2);
107                 gui::IGUIElement *e = 
108                 Environment->addButton(rect, this, 257,
109                         wgettext("Proceed"));
110                 Environment->setFocus(e);
111         }
112         changeCtype("C");
113 }
114
115 void GUIMessageMenu::drawMenu()
116 {
117         gui::IGUISkin* skin = Environment->getSkin();
118         if (!skin)
119                 return;
120         video::IVideoDriver* driver = Environment->getVideoDriver();
121         
122         video::SColor bgcolor(140,0,0,0);
123         driver->draw2DRectangle(bgcolor, AbsoluteRect, &AbsoluteClippingRect);
124
125         gui::IGUIElement::draw();
126 }
127
128 bool GUIMessageMenu::OnEvent(const SEvent& event)
129 {
130         if(event.EventType==EET_KEY_INPUT_EVENT)
131         {
132                 if(event.KeyInput.Key==KEY_ESCAPE && event.KeyInput.PressedDown)
133                 {
134                         m_status = true;
135                         quitMenu();
136                         return true;
137                 }
138                 if(event.KeyInput.Key==KEY_RETURN && event.KeyInput.PressedDown)
139                 {
140                         m_status = true;
141                         quitMenu();
142                         return true;
143                 }
144         }
145         if(event.EventType==EET_GUI_EVENT)
146         {
147                 if(event.GUIEvent.EventType==gui::EGET_ELEMENT_FOCUS_LOST
148                                 && isVisible())
149                 {
150                         if(!canTakeFocus(event.GUIEvent.Element))
151                         {
152                                 dstream<<"GUIMessageMenu: Not allowing focus change."
153                                                 <<std::endl;
154                                 // Returning true disables focus change
155                                 return true;
156                         }
157                 }
158                 if(event.GUIEvent.EventType==gui::EGET_BUTTON_CLICKED)
159                 {
160                         switch(event.GUIEvent.Caller->getID())
161                         {
162                         case 257:
163                                 m_status = true;
164                                 quitMenu();
165                                 return true;
166                         }
167                 }
168         }
169
170         return Parent ? Parent->OnEvent(event) : false;
171 }
172