2011-01-23 10:29:15 -05:00
|
|
|
/*
|
|
|
|
Minetest-c55
|
|
|
|
Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "guiMainMenu.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "serialization.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
GUIMainMenu::GUIMainMenu(gui::IGUIEnvironment* env,
|
|
|
|
gui::IGUIElement* parent, s32 id,
|
|
|
|
IMenuManager *menumgr,
|
|
|
|
MainMenuData *data,
|
|
|
|
IGameCallback *gamecallback
|
|
|
|
):
|
|
|
|
GUIModalMenu(env, parent, id, menumgr),
|
|
|
|
m_data(data),
|
|
|
|
m_accepted(false),
|
|
|
|
m_gamecallback(gamecallback)
|
|
|
|
{
|
|
|
|
assert(m_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
GUIMainMenu::~GUIMainMenu()
|
|
|
|
{
|
|
|
|
removeChildren();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GUIMainMenu::removeChildren()
|
|
|
|
{
|
|
|
|
const core::list<gui::IGUIElement*> &children = getChildren();
|
|
|
|
core::list<gui::IGUIElement*> children_copy;
|
|
|
|
for(core::list<gui::IGUIElement*>::ConstIterator
|
|
|
|
i = children.begin(); i != children.end(); i++)
|
|
|
|
{
|
|
|
|
children_copy.push_back(*i);
|
|
|
|
}
|
|
|
|
for(core::list<gui::IGUIElement*>::Iterator
|
|
|
|
i = children_copy.begin();
|
|
|
|
i != children_copy.end(); i++)
|
|
|
|
{
|
|
|
|
(*i)->remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GUIMainMenu::regenerateGui(v2u32 screensize)
|
|
|
|
{
|
|
|
|
std::wstring text_name;
|
|
|
|
std::wstring text_address;
|
|
|
|
std::wstring text_port;
|
|
|
|
bool creative_mode;
|
2011-04-23 17:11:23 -04:00
|
|
|
bool enable_damage;
|
2011-04-24 08:37:41 -04:00
|
|
|
bool fancy_trees;
|
|
|
|
bool smooth_lighting;
|
|
|
|
|
|
|
|
// Client options
|
2011-01-23 10:29:15 -05:00
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(258);
|
|
|
|
if(e != NULL)
|
|
|
|
text_name = e->getText();
|
|
|
|
else
|
|
|
|
text_name = m_data->name;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(256);
|
|
|
|
if(e != NULL)
|
|
|
|
text_address = e->getText();
|
|
|
|
else
|
|
|
|
text_address = m_data->address;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(257);
|
|
|
|
if(e != NULL)
|
|
|
|
text_port = e->getText();
|
|
|
|
else
|
|
|
|
text_port = m_data->port;
|
|
|
|
}
|
2011-04-24 08:37:41 -04:00
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(263);
|
|
|
|
if(e != NULL && e->getType() == gui::EGUIET_CHECK_BOX)
|
|
|
|
fancy_trees = ((gui::IGUICheckBox*)e)->isChecked();
|
|
|
|
else
|
|
|
|
fancy_trees = m_data->fancy_trees;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(262);
|
|
|
|
if(e != NULL && e->getType() == gui::EGUIET_CHECK_BOX)
|
|
|
|
smooth_lighting = ((gui::IGUICheckBox*)e)->isChecked();
|
|
|
|
else
|
|
|
|
smooth_lighting = m_data->smooth_lighting;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Server options
|
2011-01-23 10:29:15 -05:00
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(259);
|
|
|
|
if(e != NULL && e->getType() == gui::EGUIET_CHECK_BOX)
|
|
|
|
creative_mode = ((gui::IGUICheckBox*)e)->isChecked();
|
|
|
|
else
|
|
|
|
creative_mode = m_data->creative_mode;
|
|
|
|
}
|
2011-04-23 17:11:23 -04:00
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(261);
|
|
|
|
if(e != NULL && e->getType() == gui::EGUIET_CHECK_BOX)
|
|
|
|
enable_damage = ((gui::IGUICheckBox*)e)->isChecked();
|
|
|
|
else
|
|
|
|
enable_damage = m_data->enable_damage;
|
|
|
|
}
|
2011-01-23 10:29:15 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Remove stuff
|
|
|
|
*/
|
|
|
|
removeChildren();
|
|
|
|
|
|
|
|
/*
|
|
|
|
Calculate new sizes and positions
|
|
|
|
*/
|
2011-04-23 17:11:23 -04:00
|
|
|
|
|
|
|
v2s32 size(620, 430);
|
|
|
|
|
2011-01-23 10:29:15 -05:00
|
|
|
core::rect<s32> rect(
|
2011-04-23 17:11:23 -04:00
|
|
|
screensize.X/2 - size.X/2,
|
|
|
|
screensize.Y/2 - size.Y/2,
|
|
|
|
screensize.X/2 + size.X/2,
|
|
|
|
screensize.Y/2 + size.Y/2
|
2011-01-23 10:29:15 -05:00
|
|
|
);
|
2011-04-23 17:11:23 -04:00
|
|
|
|
2011-01-23 10:29:15 -05:00
|
|
|
DesiredRect = rect;
|
|
|
|
recalculateAbsolutePosition(false);
|
|
|
|
|
2011-04-23 17:11:23 -04:00
|
|
|
//v2s32 size = rect.getSize();
|
2011-01-23 10:29:15 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Add stuff
|
|
|
|
*/
|
|
|
|
|
2011-04-23 17:11:23 -04:00
|
|
|
/*
|
|
|
|
Client section
|
|
|
|
*/
|
|
|
|
|
|
|
|
v2s32 topleft_client(40, 0);
|
|
|
|
v2s32 size_client = size - v2s32(40, 0);
|
|
|
|
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 20, 125);
|
|
|
|
rect += topleft_client + v2s32(-15, 60);
|
|
|
|
const wchar_t *text = L"C\nL\nI\nE\nN\nT";
|
|
|
|
//gui::IGUIStaticText *t =
|
|
|
|
Environment->addStaticText(text, rect, false, true, this, -1);
|
|
|
|
//t->setTextAlignment(gui::EGUIA_CENTER, gui::EGUIA_UPPERLEFT);
|
|
|
|
}
|
|
|
|
|
2011-01-23 10:29:15 -05:00
|
|
|
// Nickname
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 100, 20);
|
2011-04-23 17:11:23 -04:00
|
|
|
rect += topleft_client + v2s32(40, 50+6);
|
2011-01-23 10:29:15 -05:00
|
|
|
const wchar_t *text = L"Nickname";
|
|
|
|
Environment->addStaticText(text, rect, false, true, this, -1);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 250, 30);
|
2011-04-23 17:11:23 -04:00
|
|
|
rect += topleft_client + v2s32(160, 50);
|
2011-01-23 10:29:15 -05:00
|
|
|
gui::IGUIElement *e =
|
|
|
|
Environment->addEditBox(text_name.c_str(), rect, true, this, 258);
|
|
|
|
if(text_name == L"")
|
|
|
|
Environment->setFocus(e);
|
|
|
|
}
|
|
|
|
// Address + port
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 100, 20);
|
2011-04-23 17:11:23 -04:00
|
|
|
rect += topleft_client + v2s32(40, 100+6);
|
2011-01-23 10:29:15 -05:00
|
|
|
const wchar_t *text = L"Address + Port";
|
|
|
|
Environment->addStaticText(text, rect, false, true, this, -1);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 250, 30);
|
2011-04-23 17:11:23 -04:00
|
|
|
rect += topleft_client + v2s32(160, 100);
|
2011-01-23 10:29:15 -05:00
|
|
|
gui::IGUIElement *e =
|
|
|
|
Environment->addEditBox(text_address.c_str(), rect, true, this, 256);
|
|
|
|
if(text_name != L"")
|
|
|
|
Environment->setFocus(e);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 100, 30);
|
2011-04-23 17:11:23 -04:00
|
|
|
//rect += topleft_client + v2s32(160+250+20, 125);
|
|
|
|
rect += topleft_client + v2s32(size_client.X-40-100, 100);
|
2011-01-23 10:29:15 -05:00
|
|
|
Environment->addEditBox(text_port.c_str(), rect, true, this, 257);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 400, 20);
|
2011-04-23 17:11:23 -04:00
|
|
|
rect += topleft_client + v2s32(160, 100+35);
|
2011-01-23 10:29:15 -05:00
|
|
|
const wchar_t *text = L"Leave address blank to start a local server.";
|
|
|
|
Environment->addStaticText(text, rect, false, true, this, -1);
|
|
|
|
}
|
2011-04-24 08:37:41 -04:00
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 250, 30);
|
|
|
|
rect += topleft_client + v2s32(40, 150);
|
|
|
|
Environment->addCheckBox(fancy_trees, rect, this, 263,
|
|
|
|
L"Fancy trees");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 250, 30);
|
|
|
|
rect += topleft_client + v2s32(40, 150+30);
|
|
|
|
Environment->addCheckBox(smooth_lighting, rect, this, 262,
|
|
|
|
L"Smooth Lighting");
|
|
|
|
}
|
2011-04-23 17:11:23 -04:00
|
|
|
// Start game button
|
2011-01-23 10:29:15 -05:00
|
|
|
{
|
2011-04-23 17:11:23 -04:00
|
|
|
core::rect<s32> rect(0, 0, 180, 30);
|
|
|
|
//rect += topleft_client + v2s32(size_client.X/2-180/2, 225-30/2);
|
|
|
|
rect += topleft_client + v2s32(size_client.X-180-40, 150+25);
|
|
|
|
Environment->addButton(rect, this, 257, L"Start Game / Connect");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Server section
|
|
|
|
*/
|
|
|
|
|
|
|
|
v2s32 topleft_server(40, 250);
|
|
|
|
v2s32 size_server = size - v2s32(40, 0);
|
|
|
|
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 20, 125);
|
|
|
|
rect += topleft_server + v2s32(-15, 40);
|
|
|
|
const wchar_t *text = L"S\nE\nR\nV\nE\nR";
|
|
|
|
//gui::IGUIStaticText *t =
|
2011-01-23 10:29:15 -05:00
|
|
|
Environment->addStaticText(text, rect, false, true, this, -1);
|
2011-04-23 17:11:23 -04:00
|
|
|
//t->setTextAlignment(gui::EGUIA_CENTER, gui::EGUIA_UPPERLEFT);
|
2011-01-23 10:29:15 -05:00
|
|
|
}
|
2011-04-23 17:11:23 -04:00
|
|
|
|
|
|
|
// Server parameters
|
2011-01-23 10:29:15 -05:00
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 250, 30);
|
2011-04-23 17:11:23 -04:00
|
|
|
rect += topleft_server + v2s32(40, 30);
|
2011-01-23 10:29:15 -05:00
|
|
|
Environment->addCheckBox(creative_mode, rect, this, 259, L"Creative Mode");
|
|
|
|
}
|
|
|
|
{
|
2011-04-23 17:11:23 -04:00
|
|
|
core::rect<s32> rect(0, 0, 250, 30);
|
|
|
|
rect += topleft_server + v2s32(40, 60);
|
|
|
|
Environment->addCheckBox(enable_damage, rect, this, 261, L"Enable Damage");
|
2011-01-23 10:29:15 -05:00
|
|
|
}
|
2011-01-25 17:40:33 -05:00
|
|
|
// Map delete button
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 130, 30);
|
2011-04-23 17:11:23 -04:00
|
|
|
//rect += topleft_server + v2s32(size_server.X-40-130, 100+25);
|
|
|
|
rect += topleft_server + v2s32(40, 100+25);
|
2011-01-25 17:40:33 -05:00
|
|
|
Environment->addButton(rect, this, 260, L"Delete map");
|
|
|
|
}
|
2011-01-23 10:29:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void GUIMainMenu::drawMenu()
|
|
|
|
{
|
|
|
|
gui::IGUISkin* skin = Environment->getSkin();
|
|
|
|
if (!skin)
|
|
|
|
return;
|
|
|
|
video::IVideoDriver* driver = Environment->getVideoDriver();
|
|
|
|
|
2011-04-23 17:11:23 -04:00
|
|
|
/*video::SColor bgcolor(140,0,0,0);
|
|
|
|
driver->draw2DRectangle(bgcolor, AbsoluteRect, &AbsoluteClippingRect);*/
|
|
|
|
|
2011-01-23 10:29:15 -05:00
|
|
|
video::SColor bgcolor(140,0,0,0);
|
2011-04-23 17:11:23 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 0, 620, 230);
|
|
|
|
rect += AbsoluteRect.UpperLeftCorner;
|
|
|
|
driver->draw2DRectangle(bgcolor, rect, &AbsoluteClippingRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
core::rect<s32> rect(0, 250, 620, 430);
|
|
|
|
rect += AbsoluteRect.UpperLeftCorner;
|
|
|
|
driver->draw2DRectangle(bgcolor, rect, &AbsoluteClippingRect);
|
|
|
|
}
|
2011-01-23 10:29:15 -05:00
|
|
|
|
|
|
|
gui::IGUIElement::draw();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GUIMainMenu::acceptInput()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(258);
|
|
|
|
if(e != NULL)
|
|
|
|
m_data->name = e->getText();
|
|
|
|
}
|
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(256);
|
|
|
|
if(e != NULL)
|
|
|
|
m_data->address = e->getText();
|
|
|
|
}
|
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(257);
|
|
|
|
if(e != NULL)
|
|
|
|
m_data->port = e->getText();
|
|
|
|
}
|
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(259);
|
|
|
|
if(e != NULL && e->getType() == gui::EGUIET_CHECK_BOX)
|
|
|
|
m_data->creative_mode = ((gui::IGUICheckBox*)e)->isChecked();
|
|
|
|
}
|
2011-04-23 17:11:23 -04:00
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(261);
|
|
|
|
if(e != NULL && e->getType() == gui::EGUIET_CHECK_BOX)
|
|
|
|
m_data->enable_damage = ((gui::IGUICheckBox*)e)->isChecked();
|
|
|
|
}
|
2011-04-24 08:37:41 -04:00
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(262);
|
|
|
|
if(e != NULL && e->getType() == gui::EGUIET_CHECK_BOX)
|
|
|
|
m_data->smooth_lighting = ((gui::IGUICheckBox*)e)->isChecked();
|
|
|
|
}
|
|
|
|
{
|
|
|
|
gui::IGUIElement *e = getElementFromId(263);
|
|
|
|
if(e != NULL && e->getType() == gui::EGUIET_CHECK_BOX)
|
|
|
|
m_data->fancy_trees = ((gui::IGUICheckBox*)e)->isChecked();
|
|
|
|
}
|
2011-01-23 10:29:15 -05:00
|
|
|
|
|
|
|
m_accepted = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GUIMainMenu::OnEvent(const SEvent& event)
|
|
|
|
{
|
|
|
|
if(event.EventType==EET_KEY_INPUT_EVENT)
|
|
|
|
{
|
|
|
|
if(event.KeyInput.Key==KEY_ESCAPE && event.KeyInput.PressedDown)
|
|
|
|
{
|
|
|
|
m_gamecallback->exitToOS();
|
|
|
|
quitMenu();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if(event.KeyInput.Key==KEY_RETURN && event.KeyInput.PressedDown)
|
|
|
|
{
|
|
|
|
acceptInput();
|
|
|
|
quitMenu();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(event.EventType==EET_GUI_EVENT)
|
|
|
|
{
|
|
|
|
if(event.GUIEvent.EventType==gui::EGET_ELEMENT_FOCUS_LOST
|
|
|
|
&& isVisible())
|
|
|
|
{
|
|
|
|
if(!canTakeFocus(event.GUIEvent.Element))
|
|
|
|
{
|
|
|
|
dstream<<"GUIMainMenu: Not allowing focus change."
|
|
|
|
<<std::endl;
|
|
|
|
// Returning true disables focus change
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(event.GUIEvent.EventType==gui::EGET_BUTTON_CLICKED)
|
|
|
|
{
|
|
|
|
switch(event.GUIEvent.Caller->getID())
|
|
|
|
{
|
2011-01-25 17:40:33 -05:00
|
|
|
case 257: // Start game
|
2011-01-23 10:29:15 -05:00
|
|
|
acceptInput();
|
|
|
|
quitMenu();
|
2011-02-07 18:12:55 -05:00
|
|
|
return true;
|
2011-01-25 17:40:33 -05:00
|
|
|
case 260: // Delete map
|
|
|
|
// Don't accept input data, just set deletion request
|
|
|
|
m_data->delete_map = true;
|
|
|
|
m_accepted = true;
|
|
|
|
quitMenu();
|
2011-02-07 18:12:55 -05:00
|
|
|
return true;
|
2011-01-23 10:29:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(event.GUIEvent.EventType==gui::EGET_EDITBOX_ENTER)
|
|
|
|
{
|
|
|
|
switch(event.GUIEvent.Caller->getID())
|
|
|
|
{
|
|
|
|
case 256: case 257: case 258:
|
|
|
|
acceptInput();
|
|
|
|
quitMenu();
|
2011-02-07 18:12:55 -05:00
|
|
|
return true;
|
2011-01-23 10:29:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Parent ? Parent->OnEvent(event) : false;
|
|
|
|
}
|
|
|
|
|