6a4b5a09058ebcef2dc29d541d7e97d054190c43
[oweals/minetest.git] / src / main.h
1 /*
2 Minetest-c55
3 Copyright (C) 2010 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 General Public License as published by
7 the Free Software Foundation; either version 2 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 General Public License for more details.
14
15 You should have received a copy of the GNU 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 MAIN_HEADER
21 #define MAIN_HEADER
22
23 #include <string>
24 extern std::string getTimestamp();
25 #define DTIME (getTimestamp()+": ")
26
27 #include <jmutex.h>
28
29 extern JMutex g_range_mutex;
30 extern s16 g_viewing_range_nodes;
31 //extern s16 g_actual_viewing_range_nodes;
32 extern bool g_viewing_range_all;
33
34 // Settings
35 extern Settings g_settings;
36
37 #include <fstream>
38
39 // Debug streams
40 extern std::ostream *dout_con_ptr;
41 extern std::ostream *derr_con_ptr;
42 extern std::ostream *dout_client_ptr;
43 extern std::ostream *derr_client_ptr;
44 extern std::ostream *dout_server_ptr;
45 extern std::ostream *derr_server_ptr;
46
47 #define dout_con (*dout_con_ptr)
48 #define derr_con (*derr_con_ptr)
49 #define dout_client (*dout_client_ptr)
50 #define derr_client (*derr_client_ptr)
51 #define dout_server (*dout_server_ptr)
52 #define derr_server (*derr_server_ptr)
53
54 // TODO: Move somewhere else? materials.h?
55 // This header is only for MATERIALS_COUNT
56 //#include "mapnode.h"
57 //extern video::SMaterial g_materials[MATERIALS_COUNT];
58
59 #include "utility.h"
60 extern TextureCache g_texturecache;
61
62 extern IrrlichtDevice *g_device;
63
64 #endif
65