3 Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
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.
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.
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.
20 #ifndef GUIMAINMENU_HEADER
21 #define GUIMAINMENU_HEADER
23 #include "irrlichttypes_extrabloated.h"
24 #include "modalMenu.h"
28 #include "serverlist.h"
34 // These are in the native format of the gui elements
38 std::string servername;
39 std::string serverdescription;
43 std::wstring password;
49 bool anisotropic_filter;
51 bool trilinear_filter;
53 bool preload_item_visuals;
54 bool enable_particles;
60 bool simple_singleplayer_mode;
62 std::wstring create_world_name;
63 std::string create_world_gameid;
66 bool serverlist_show_available; // if false show local favorites only
68 std::vector<WorldSpec> worlds;
69 std::vector<SubgameSpec> games;
70 std::vector<ServerListSpec> servers;
77 smooth_lighting(false),
83 simple_singleplayer_mode(false),
87 serverlist_show_available(false)
91 class GUIMainMenu : public GUIModalMenu
94 GUIMainMenu(gui::IGUIEnvironment* env,
95 gui::IGUIElement* parent, s32 id,
96 IMenuManager *menumgr,
98 IGameCallback *gamecallback);
101 void removeChildren();
102 // Remove and re-add (or reposition) stuff
103 void regenerateGui(v2u32 screensize);
105 void readInput(MainMenuData *dst);
108 { return m_accepted; }
109 bool OnEvent(const SEvent& event);
110 void createNewWorld(std::wstring name, std::string gameid);
111 void deleteWorld(const std::vector<std::string> &paths);
113 void displayMessageMenu(std::wstring msg);
116 MainMenuData *m_data;
118 IGameCallback *m_gamecallback;
120 gui::IGUIEnvironment* env;
121 gui::IGUIElement* parent;
123 IMenuManager *menumgr;
125 bool m_is_regenerating;
126 v2s32 m_topleft_client;
128 v2s32 m_topleft_server;
130 void updateGuiServerList();
131 void serverListOnSelected();
132 ServerListSpec getServerListSpec(std::string address, std::string port);