]> git.lizzy.rs Git - dragonfireclient.git/blob - src/game.h
clientmap, clientmedia: code modernization
[dragonfireclient.git] / src / game.h
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 #ifndef GAME_HEADER
21 #define GAME_HEADER
22
23 #include "irrlichttypes.h"
24 #include <string>
25
26 class InputHandler;
27 class ChatBackend;  /* to avoid having to include chat.h */
28 struct SubgameSpec;
29
30 // Flags that can, or may, change during main game loop
31 struct GameUIFlags
32 {
33         bool show_chat;
34         bool show_hud;
35         bool show_minimap;
36         bool force_fog_off;
37         bool show_debug;
38         bool show_profiler_graph;
39         bool disable_camera_update;
40 };
41
42 void the_game(bool *kill,
43                 bool random_input,
44                 InputHandler *input,
45                 const std::string &map_dir,
46                 const std::string &playername,
47                 const std::string &password,
48                 const std::string &address, // If "", local server is used
49                 u16 port,
50                 std::string &error_message,
51                 ChatBackend &chat_backend,
52                 bool *reconnect_requested,
53                 const SubgameSpec &gamespec, // Used for local game
54                 bool simple_singleplayer_mode);
55
56 #endif