2011-01-23 07:29:15 -08:00
|
|
|
/*
|
2013-02-24 09:40:43 -08:00
|
|
|
Minetest
|
2013-02-24 10:38:45 -08:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-01-23 07:29:15 -08:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 07:56:56 -07:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2011-01-23 07:29:15 -08:00
|
|
|
(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
|
2012-06-05 07:56:56 -07:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-01-23 07:29:15 -08:00
|
|
|
|
2012-06-05 07:56:56 -07:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-01-23 07:29:15 -08:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GUIMAINMENU_HEADER
|
|
|
|
#define GUIMAINMENU_HEADER
|
|
|
|
|
2012-06-16 18:00:31 -07:00
|
|
|
#include "irrlichttypes_extrabloated.h"
|
2011-01-23 07:29:15 -08:00
|
|
|
#include "modalMenu.h"
|
|
|
|
#include <string>
|
2012-03-11 11:45:14 -07:00
|
|
|
#include <list>
|
2013-03-30 10:09:38 -07:00
|
|
|
|
2015-07-17 07:40:41 -07:00
|
|
|
struct MainMenuDataForScript {
|
|
|
|
|
|
|
|
MainMenuDataForScript() :
|
|
|
|
reconnect_requested(false)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// Whether the server has requested a reconnect
|
|
|
|
bool reconnect_requested;
|
|
|
|
|
|
|
|
std::string errormessage;
|
2013-05-11 07:08:01 -07:00
|
|
|
};
|
|
|
|
|
2015-07-17 07:40:41 -07:00
|
|
|
struct MainMenuData {
|
2011-04-24 05:37:41 -07:00
|
|
|
// Client options
|
2012-12-25 03:20:51 -08:00
|
|
|
std::string servername;
|
|
|
|
std::string serverdescription;
|
2013-06-23 09:30:21 -07:00
|
|
|
std::string address;
|
|
|
|
std::string port;
|
|
|
|
std::string name;
|
|
|
|
std::string password;
|
2015-07-17 07:40:41 -07:00
|
|
|
// Whether to reconnect
|
|
|
|
bool do_reconnect;
|
2013-06-23 09:30:21 -07:00
|
|
|
|
2011-04-24 05:37:41 -07:00
|
|
|
// Server options
|
2013-02-21 14:00:44 -08:00
|
|
|
bool enable_public;
|
2012-03-11 11:45:14 -07:00
|
|
|
int selected_world;
|
2012-03-15 06:20:20 -07:00
|
|
|
bool simple_singleplayer_mode;
|
2012-12-25 03:20:51 -08:00
|
|
|
|
2015-07-17 07:40:41 -07:00
|
|
|
// Data to be passed to the script
|
|
|
|
MainMenuDataForScript script_data;
|
|
|
|
|
2012-03-12 15:06:37 -07:00
|
|
|
MainMenuData():
|
2015-07-17 07:40:41 -07:00
|
|
|
do_reconnect(false),
|
2013-02-21 14:00:44 -08:00
|
|
|
enable_public(false),
|
2012-03-15 06:20:20 -07:00
|
|
|
selected_world(0),
|
2015-07-17 07:40:41 -07:00
|
|
|
simple_singleplayer_mode(false)
|
2012-03-12 15:06:37 -07:00
|
|
|
{}
|
2011-01-23 07:29:15 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|