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