2010-11-26 18:02:21 -05:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2010-11-29 13:05:30 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04: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
|
2010-11-29 13:05:30 -05: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 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2010-11-29 13:05:30 -05:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2010-11-29 13:05:30 -05:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2010-11-26 18:02:21 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MAIN_HEADER
|
|
|
|
#define MAIN_HEADER
|
|
|
|
|
2013-08-10 22:09:45 -04:00
|
|
|
#include <string>
|
|
|
|
|
2010-11-29 03:52:07 -05:00
|
|
|
// Settings
|
2011-10-12 06:53:38 -04:00
|
|
|
class Settings;
|
|
|
|
extern Settings *g_settings;
|
2013-08-10 22:09:45 -04:00
|
|
|
extern std::string g_settings_path;
|
2010-11-29 03:52:07 -05:00
|
|
|
|
2011-05-30 17:15:43 -04:00
|
|
|
// Global profiler
|
2011-10-12 06:53:38 -04:00
|
|
|
class Profiler;
|
|
|
|
extern Profiler *g_profiler;
|
2011-05-30 17:15:43 -04:00
|
|
|
|
2013-05-09 12:23:48 -04:00
|
|
|
// Menu clouds
|
|
|
|
class Clouds;
|
|
|
|
extern Clouds *g_menuclouds;
|
|
|
|
|
|
|
|
// Scene manager used for menu clouds
|
|
|
|
namespace irr{namespace scene{class ISceneManager;}}
|
|
|
|
extern irr::scene::ISceneManager *g_menucloudsmgr;
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
// Debug streams
|
2010-12-21 11:08:24 -05:00
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
extern std::ostream *dout_con_ptr;
|
|
|
|
extern std::ostream *derr_con_ptr;
|
|
|
|
extern std::ostream *dout_client_ptr;
|
|
|
|
extern std::ostream *derr_client_ptr;
|
|
|
|
extern std::ostream *dout_server_ptr;
|
|
|
|
extern std::ostream *derr_server_ptr;
|
|
|
|
|
|
|
|
#define dout_con (*dout_con_ptr)
|
|
|
|
#define derr_con (*derr_con_ptr)
|
|
|
|
#define dout_client (*dout_client_ptr)
|
|
|
|
#define derr_client (*derr_client_ptr)
|
|
|
|
#define dout_server (*dout_server_ptr)
|
|
|
|
#define derr_server (*derr_server_ptr)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|