2011-07-23 18:17:39 +02: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-07-23 18:17:39 +02: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-07-23 18:17:39 +02: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-07-23 18:17:39 +02:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-07-23 18:17:39 +02:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2016-10-24 06:49:35 +02:00
|
|
|
// This would get rid of the console window
|
|
|
|
//#pragma comment(linker, "/subsystem:windows /ENTRY:mainCRTStartup")
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2011-10-12 12:53:38 +02:00
|
|
|
#include "irrlicht.h" // createDevice
|
|
|
|
|
|
|
|
#include "mainmenumanager.h"
|
2012-06-17 03:00:31 +02:00
|
|
|
#include "irrlichttypes_extrabloated.h"
|
2011-07-23 18:17:39 +02:00
|
|
|
#include "debug.h"
|
2015-04-26 07:24:19 +02:00
|
|
|
#include "unittest/test.h"
|
2011-07-23 18:17:39 +02:00
|
|
|
#include "server.h"
|
|
|
|
#include "filesys.h"
|
2013-09-25 04:29:07 +02:00
|
|
|
#include "version.h"
|
2011-07-23 18:17:39 +02:00
|
|
|
#include "guiMainMenu.h"
|
|
|
|
#include "game.h"
|
2011-10-12 12:53:38 +02:00
|
|
|
#include "defaultsettings.h"
|
2011-07-23 18:17:39 +02:00
|
|
|
#include "gettext.h"
|
2011-10-16 13:57:53 +02:00
|
|
|
#include "log.h"
|
2012-03-12 20:27:29 +01:00
|
|
|
#include "quicktune.h"
|
2013-08-29 05:04:56 +02:00
|
|
|
#include "httpfetch.h"
|
2013-06-23 18:30:21 +02:00
|
|
|
#include "guiEngine.h"
|
2015-02-27 08:24:07 +01:00
|
|
|
#include "map.h"
|
2015-07-25 07:43:32 +02:00
|
|
|
#include "player.h"
|
2013-09-10 17:49:53 +02:00
|
|
|
#include "mapsector.h"
|
2014-11-23 13:40:43 +01:00
|
|
|
#include "fontengine.h"
|
2015-02-10 21:14:24 +01:00
|
|
|
#include "gameparams.h"
|
2015-02-27 08:24:07 +01:00
|
|
|
#include "database.h"
|
2015-07-25 07:43:32 +02:00
|
|
|
#include "config.h"
|
|
|
|
#if USE_CURSES
|
|
|
|
#include "terminal_chat_console.h"
|
|
|
|
#endif
|
2015-02-10 21:14:24 +01:00
|
|
|
#ifndef SERVER
|
|
|
|
#include "client/clientlauncher.h"
|
|
|
|
#endif
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
#ifdef HAVE_TOUCHSCREENGUI
|
2015-11-09 05:08:53 +01:00
|
|
|
#include "touchscreengui.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(SERVER) && \
|
|
|
|
(IRRLICHT_VERSION_MAJOR == 1) && \
|
|
|
|
(IRRLICHT_VERSION_MINOR == 8) && \
|
|
|
|
(IRRLICHT_VERSION_REVISION == 2)
|
|
|
|
#error "Irrlicht 1.8.2 is known to be broken - please update Irrlicht to version >= 1.8.3"
|
2014-04-21 14:10:59 +02:00
|
|
|
#endif
|
2014-11-20 05:04:04 +01:00
|
|
|
|
|
|
|
#define DEBUGFILE "debug.txt"
|
|
|
|
#define DEFAULT_SERVER_PORT 30000
|
|
|
|
|
|
|
|
typedef std::map<std::string, ValueSpec> OptionList;
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Private functions
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
static bool get_cmdline_opts(int argc, char *argv[], Settings *cmd_args);
|
|
|
|
static void set_allowed_options(OptionList *allowed_options);
|
|
|
|
|
|
|
|
static void print_help(const OptionList &allowed_options);
|
|
|
|
static void print_allowed_options(const OptionList &allowed_options);
|
|
|
|
static void print_version();
|
|
|
|
static void print_worldspecs(const std::vector<WorldSpec> &worldspecs,
|
|
|
|
std::ostream &os);
|
|
|
|
static void print_modified_quicktune_values();
|
|
|
|
|
|
|
|
static void list_game_ids();
|
|
|
|
static void list_worlds();
|
|
|
|
static void setup_log_params(const Settings &cmd_args);
|
|
|
|
static bool create_userdata_path();
|
2015-10-13 09:57:44 +02:00
|
|
|
static bool init_common(const Settings &cmd_args, int argc, char *argv[]);
|
2014-11-20 05:04:04 +01:00
|
|
|
static void startup_message();
|
|
|
|
static bool read_config_file(const Settings &cmd_args);
|
2015-10-13 09:57:44 +02:00
|
|
|
static void init_log_streams(const Settings &cmd_args);
|
2014-11-20 05:04:04 +01:00
|
|
|
|
|
|
|
static bool game_configure(GameParams *game_params, const Settings &cmd_args);
|
|
|
|
static void game_configure_port(GameParams *game_params, const Settings &cmd_args);
|
|
|
|
|
|
|
|
static bool game_configure_world(GameParams *game_params, const Settings &cmd_args);
|
|
|
|
static bool get_world_from_cmdline(GameParams *game_params, const Settings &cmd_args);
|
|
|
|
static bool get_world_from_config(GameParams *game_params, const Settings &cmd_args);
|
|
|
|
static bool auto_select_world(GameParams *game_params);
|
|
|
|
static std::string get_clean_world_path(const std::string &path);
|
|
|
|
|
|
|
|
static bool game_configure_subgame(GameParams *game_params, const Settings &cmd_args);
|
|
|
|
static bool get_game_from_cmdline(GameParams *game_params, const Settings &cmd_args);
|
|
|
|
static bool determine_subgame(GameParams *game_params);
|
|
|
|
|
|
|
|
static bool run_dedicated_server(const GameParams &game_params, const Settings &cmd_args);
|
2015-02-27 08:24:07 +01:00
|
|
|
static bool migrate_database(const GameParams &game_params, const Settings &cmd_args);
|
2014-11-20 05:04:04 +01:00
|
|
|
|
|
|
|
/**********************************************************************/
|
|
|
|
|
2011-07-23 18:17:39 +02:00
|
|
|
/*
|
2012-03-10 15:46:19 +01:00
|
|
|
gettime.h implementation
|
2011-07-23 18:17:39 +02:00
|
|
|
*/
|
|
|
|
|
2012-03-10 15:46:19 +01:00
|
|
|
#ifdef SERVER
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2012-03-10 15:46:19 +01:00
|
|
|
u32 getTimeMs()
|
|
|
|
{
|
|
|
|
/* Use imprecise system calls directly (from porting.h) */
|
2013-03-29 21:51:57 +01:00
|
|
|
return porting::getTime(PRECISION_MILLI);
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 getTime(TimePrecision prec)
|
|
|
|
{
|
|
|
|
return porting::getTime(prec);
|
2012-03-10 15:46:19 +01:00
|
|
|
}
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2013-05-01 13:09:10 +02:00
|
|
|
#endif
|
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
FileLogOutput file_log_output;
|
2012-03-10 15:46:19 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static OptionList allowed_options;
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
int main(int argc, char *argv[])
|
2011-07-23 18:17:39 +02:00
|
|
|
{
|
2014-11-20 05:04:04 +01:00
|
|
|
int retval;
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2015-02-01 09:08:04 +01:00
|
|
|
debug_set_exception_handler();
|
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
g_logger.registerThread("Main");
|
|
|
|
g_logger.addOutputMaxLevel(&stderr_output, LL_ACTION);
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
Settings cmd_args;
|
|
|
|
bool cmd_args_ok = get_cmdline_opts(argc, argv, &cmd_args);
|
|
|
|
if (!cmd_args_ok
|
|
|
|
|| cmd_args.getFlag("help")
|
|
|
|
|| cmd_args.exists("nonopt1")) {
|
|
|
|
print_help(allowed_options);
|
|
|
|
return cmd_args_ok ? 0 : 1;
|
|
|
|
}
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
if (cmd_args.getFlag("version")) {
|
|
|
|
print_version();
|
|
|
|
return 0;
|
2011-07-23 18:17:39 +02:00
|
|
|
}
|
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
setup_log_params(cmd_args);
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
porting::signal_handler_init();
|
2015-08-24 23:00:06 +02:00
|
|
|
|
|
|
|
#ifdef __ANDROID__
|
|
|
|
porting::initAndroid();
|
|
|
|
porting::initializePathsAndroid();
|
|
|
|
#else
|
2014-11-20 05:04:04 +01:00
|
|
|
porting::initializePaths();
|
2015-08-24 23:00:06 +02:00
|
|
|
#endif
|
2014-11-20 05:04:04 +01:00
|
|
|
|
|
|
|
if (!create_userdata_path()) {
|
|
|
|
errorstream << "Cannot create user data directory" << std::endl;
|
|
|
|
return 1;
|
2011-07-23 18:17:39 +02:00
|
|
|
}
|
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
// Initialize debug stacks
|
2015-10-13 09:57:44 +02:00
|
|
|
DSTACK(FUNCTION_NAME);
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
// Debug handler
|
|
|
|
BEGIN_DEBUG_EXCEPTION_HANDLER
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
// List gameids if requested
|
|
|
|
if (cmd_args.exists("gameid") && cmd_args.get("gameid") == "list") {
|
|
|
|
list_game_ids();
|
|
|
|
return 0;
|
2011-07-23 18:17:39 +02:00
|
|
|
}
|
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
// List worlds if requested
|
|
|
|
if (cmd_args.exists("world") && cmd_args.get("world") == "list") {
|
|
|
|
list_worlds();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
if (!init_common(cmd_args, argc, argv))
|
2014-11-20 05:04:04 +01:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
#ifndef __ANDROID__
|
|
|
|
// Run unit tests
|
2015-02-24 08:56:52 +01:00
|
|
|
if (cmd_args.getFlag("run-unittests")) {
|
2015-10-26 04:13:27 +01:00
|
|
|
return run_tests();
|
2012-03-25 19:29:56 +02:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
#endif
|
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
GameParams game_params;
|
2014-11-20 05:04:04 +01:00
|
|
|
#ifdef SERVER
|
|
|
|
game_params.is_dedicated_server = true;
|
|
|
|
#else
|
|
|
|
game_params.is_dedicated_server = cmd_args.getFlag("server");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!game_configure(&game_params, cmd_args))
|
|
|
|
return 1;
|
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
sanity_check(!game_params.world_path.empty());
|
2014-11-20 05:04:04 +01:00
|
|
|
|
|
|
|
infostream << "Using commanded world path ["
|
|
|
|
<< game_params.world_path << "]" << std::endl;
|
|
|
|
|
|
|
|
//Run dedicated server if asked to or no other option
|
|
|
|
g_settings->set("server_dedicated",
|
|
|
|
game_params.is_dedicated_server ? "true" : "false");
|
|
|
|
|
|
|
|
if (game_params.is_dedicated_server)
|
|
|
|
return run_dedicated_server(game_params, cmd_args) ? 0 : 1;
|
|
|
|
|
|
|
|
#ifndef SERVER
|
|
|
|
ClientLauncher launcher;
|
|
|
|
retval = launcher.run(game_params, cmd_args) ? 0 : 1;
|
|
|
|
#else
|
|
|
|
retval = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Update configuration file
|
|
|
|
if (g_settings_path != "")
|
|
|
|
g_settings->updateConfigFile(g_settings_path.c_str());
|
|
|
|
|
|
|
|
print_modified_quicktune_values();
|
|
|
|
|
|
|
|
// Stop httpfetch thread (if started)
|
|
|
|
httpfetch_cleanup();
|
|
|
|
|
2015-10-14 08:33:04 +02:00
|
|
|
END_DEBUG_EXCEPTION_HANDLER
|
2014-11-20 05:04:04 +01:00
|
|
|
|
|
|
|
return retval;
|
2012-03-25 19:29:56 +02:00
|
|
|
}
|
|
|
|
|
2012-03-11 11:06:59 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Startup / Init
|
|
|
|
*****************************************************************************/
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2011-10-16 13:57:53 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static bool get_cmdline_opts(int argc, char *argv[], Settings *cmd_args)
|
|
|
|
{
|
|
|
|
set_allowed_options(&allowed_options);
|
|
|
|
|
|
|
|
return cmd_args->parseCommandLine(argc, argv, allowed_options);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void set_allowed_options(OptionList *allowed_options)
|
|
|
|
{
|
|
|
|
allowed_options->clear();
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("help", ValueSpec(VALUETYPE_FLAG,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Show allowed options"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("version", ValueSpec(VALUETYPE_FLAG,
|
2013-09-25 04:47:44 +02:00
|
|
|
_("Show version information"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("config", ValueSpec(VALUETYPE_STRING,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Load configuration from specified file"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("port", ValueSpec(VALUETYPE_STRING,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Set network port (UDP)"))));
|
2015-02-24 08:56:52 +01:00
|
|
|
allowed_options->insert(std::make_pair("run-unittests", ValueSpec(VALUETYPE_FLAG,
|
2015-02-19 09:38:01 +01:00
|
|
|
_("Run the unit tests and exit"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("map-dir", ValueSpec(VALUETYPE_STRING,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Same as --world (deprecated)"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("world", ValueSpec(VALUETYPE_STRING,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Set world path (implies local game) ('list' lists all)"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("worldname", ValueSpec(VALUETYPE_STRING,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Set world by name (implies local game)"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("quiet", ValueSpec(VALUETYPE_FLAG,
|
2014-05-08 00:58:00 +02:00
|
|
|
_("Print to console errors only"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("info", ValueSpec(VALUETYPE_FLAG,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Print more information to console"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("verbose", ValueSpec(VALUETYPE_FLAG,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Print even more information to console"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("trace", ValueSpec(VALUETYPE_FLAG,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Print enormous amounts of information to log and console"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("logfile", ValueSpec(VALUETYPE_STRING,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Set logfile path ('' = no logging)"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("gameid", ValueSpec(VALUETYPE_STRING,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Set gameid (\"--gameid list\" prints available ones)"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("migrate", ValueSpec(VALUETYPE_STRING,
|
2013-09-09 19:40:02 +02:00
|
|
|
_("Migrate from current map backend to another (Only works when using minetestserver or with --server)"))));
|
2015-07-25 07:43:32 +02:00
|
|
|
allowed_options->insert(std::make_pair("terminal", ValueSpec(VALUETYPE_FLAG,
|
|
|
|
_("Feature an interactive terminal (Only works when using minetestserver or with --server)"))));
|
2012-03-10 15:46:19 +01:00
|
|
|
#ifndef SERVER
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("videomodes", ValueSpec(VALUETYPE_FLAG,
|
2013-05-09 15:53:29 +02:00
|
|
|
_("Show available video modes"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("speedtests", ValueSpec(VALUETYPE_FLAG,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Run speed tests"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("address", ValueSpec(VALUETYPE_STRING,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Address to connect to. ('' = local game)"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("random-input", ValueSpec(VALUETYPE_FLAG,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Enable random user input, for testing"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("server", ValueSpec(VALUETYPE_FLAG,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Run dedicated server"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("name", ValueSpec(VALUETYPE_STRING,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Set player name"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("password", ValueSpec(VALUETYPE_STRING,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Set password"))));
|
2014-11-20 05:04:04 +01:00
|
|
|
allowed_options->insert(std::make_pair("go", ValueSpec(VALUETYPE_FLAG,
|
2012-12-20 18:19:49 +01:00
|
|
|
_("Disable main menu"))));
|
2012-03-10 15:46:19 +01:00
|
|
|
#endif
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static void print_help(const OptionList &allowed_options)
|
|
|
|
{
|
2015-11-01 23:10:09 +01:00
|
|
|
std::cout << _("Allowed options:") << std::endl;
|
2014-11-20 05:04:04 +01:00
|
|
|
print_allowed_options(allowed_options);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_allowed_options(const OptionList &allowed_options)
|
|
|
|
{
|
|
|
|
for (OptionList::const_iterator i = allowed_options.begin();
|
|
|
|
i != allowed_options.end(); ++i) {
|
|
|
|
std::ostringstream os1(std::ios::binary);
|
|
|
|
os1 << " --" << i->first;
|
|
|
|
if (i->second.type != VALUETYPE_FLAG)
|
|
|
|
os1 << _(" <value>");
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2015-11-01 23:10:09 +01:00
|
|
|
std::cout << padStringRight(os1.str(), 24);
|
2014-11-20 05:04:04 +01:00
|
|
|
|
|
|
|
if (i->second.help != NULL)
|
2015-11-01 23:10:09 +01:00
|
|
|
std::cout << i->second.help;
|
2014-11-20 05:04:04 +01:00
|
|
|
|
2015-11-01 23:10:09 +01:00
|
|
|
std::cout << std::endl;
|
2011-07-23 18:17:39 +02:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
2013-09-25 04:47:44 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static void print_version()
|
|
|
|
{
|
2016-05-11 09:15:41 +02:00
|
|
|
std::cout << PROJECT_NAME_C " " << g_version_hash
|
2016-05-11 15:20:20 +02:00
|
|
|
<< " (" << porting::getPlatformName() << ")" << std::endl;
|
2015-02-28 00:05:29 +01:00
|
|
|
#ifndef SERVER
|
2015-11-01 23:10:09 +01:00
|
|
|
std::cout << "Using Irrlicht " << IRRLICHT_SDK_VERSION << std::endl;
|
2013-09-25 04:47:44 +02:00
|
|
|
#endif
|
2015-11-01 23:10:09 +01:00
|
|
|
std::cout << "Build info: " << g_build_info << std::endl;
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void list_game_ids()
|
|
|
|
{
|
|
|
|
std::set<std::string> gameids = getAvailableGameIds();
|
|
|
|
for (std::set<std::string>::const_iterator i = gameids.begin();
|
2015-08-25 22:23:05 +02:00
|
|
|
i != gameids.end(); ++i)
|
2015-11-01 23:10:09 +01:00
|
|
|
std::cout << (*i) <<std::endl;
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void list_worlds()
|
|
|
|
{
|
2015-11-01 23:10:09 +01:00
|
|
|
std::cout << _("Available worlds:") << std::endl;
|
2014-11-20 05:04:04 +01:00
|
|
|
std::vector<WorldSpec> worldspecs = getAvailableWorlds();
|
2015-11-01 23:10:09 +01:00
|
|
|
print_worldspecs(worldspecs, std::cout);
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void print_worldspecs(const std::vector<WorldSpec> &worldspecs,
|
|
|
|
std::ostream &os)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < worldspecs.size(); i++) {
|
|
|
|
std::string name = worldspecs[i].name;
|
|
|
|
std::string path = worldspecs[i].path;
|
|
|
|
if (name.find(" ") != std::string::npos)
|
|
|
|
name = std::string("'") + name + "'";
|
|
|
|
path = std::string("'") + path + "'";
|
|
|
|
name = padStringRight(name, 14);
|
|
|
|
os << " " << name << " " << path << std::endl;
|
2013-09-25 04:47:44 +02:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static void print_modified_quicktune_values()
|
|
|
|
{
|
|
|
|
bool header_printed = false;
|
|
|
|
std::vector<std::string> names = getQuicktuneNames();
|
|
|
|
|
|
|
|
for (u32 i = 0; i < names.size(); i++) {
|
|
|
|
QuicktuneValue val = getQuicktuneValue(names[i]);
|
|
|
|
if (!val.modified)
|
|
|
|
continue;
|
|
|
|
if (!header_printed) {
|
|
|
|
dstream << "Modified quicktune values:" << std::endl;
|
|
|
|
header_printed = true;
|
|
|
|
}
|
|
|
|
dstream << names[i] << " = " << val.getString() << std::endl;
|
|
|
|
}
|
|
|
|
}
|
2014-05-20 19:04:57 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static void setup_log_params(const Settings &cmd_args)
|
|
|
|
{
|
2014-05-08 00:58:00 +02:00
|
|
|
// Quiet mode, print errors only
|
2014-06-01 00:55:23 +02:00
|
|
|
if (cmd_args.getFlag("quiet")) {
|
2015-10-13 09:57:44 +02:00
|
|
|
g_logger.removeOutput(&stderr_output);
|
|
|
|
g_logger.addOutputMaxLevel(&stderr_output, LL_ERROR);
|
2014-05-08 00:58:00 +02:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
|
2012-03-22 13:10:24 +01:00
|
|
|
// If trace is enabled, enable logging of certain things
|
2014-06-01 00:55:23 +02:00
|
|
|
if (cmd_args.getFlag("trace")) {
|
|
|
|
dstream << _("Enabling trace level debug output") << std::endl;
|
2015-10-13 09:57:44 +02:00
|
|
|
g_logger.setTraceEnabled(true);
|
|
|
|
dout_con_ptr = &verbosestream; // This is somewhat old
|
|
|
|
socket_enable_debug_output = true; // Sockets doesn't use log.h
|
2012-03-22 13:10:24 +01:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
|
2012-03-11 11:06:59 +01:00
|
|
|
// In certain cases, output info level on stderr
|
2014-06-01 00:55:23 +02:00
|
|
|
if (cmd_args.getFlag("info") || cmd_args.getFlag("verbose") ||
|
2012-03-22 13:10:24 +01:00
|
|
|
cmd_args.getFlag("trace") || cmd_args.getFlag("speedtests"))
|
2015-10-13 09:57:44 +02:00
|
|
|
g_logger.addOutput(&stderr_output, LL_INFO);
|
2014-11-20 05:04:04 +01:00
|
|
|
|
2012-03-22 13:10:24 +01:00
|
|
|
// In certain cases, output verbose level on stderr
|
2014-06-01 00:55:23 +02:00
|
|
|
if (cmd_args.getFlag("verbose") || cmd_args.getFlag("trace"))
|
2015-10-13 09:57:44 +02:00
|
|
|
g_logger.addOutput(&stderr_output, LL_VERBOSE);
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static bool create_userdata_path()
|
|
|
|
{
|
|
|
|
bool success;
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
#ifdef __ANDROID__
|
|
|
|
if (!fs::PathExists(porting::path_user)) {
|
2014-11-20 05:04:04 +01:00
|
|
|
success = fs::CreateDir(porting::path_user);
|
2014-11-24 08:01:30 +01:00
|
|
|
} else {
|
|
|
|
success = true;
|
2014-04-21 14:10:59 +02:00
|
|
|
}
|
|
|
|
porting::copyAssets();
|
|
|
|
#else
|
2011-07-23 18:17:39 +02:00
|
|
|
// Create user data directory
|
2014-11-20 05:04:04 +01:00
|
|
|
success = fs::CreateDir(porting::path_user);
|
2014-04-21 14:10:59 +02:00
|
|
|
#endif
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
return success;
|
|
|
|
}
|
2012-03-11 14:28:35 +01:00
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
static bool init_common(const Settings &cmd_args, int argc, char *argv[])
|
2014-11-20 05:04:04 +01:00
|
|
|
{
|
|
|
|
startup_message();
|
|
|
|
set_default_settings(g_settings);
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
// Initialize sockets
|
|
|
|
sockets_init();
|
|
|
|
atexit(sockets_cleanup);
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
if (!read_config_file(cmd_args))
|
|
|
|
return false;
|
2013-05-09 15:53:29 +02:00
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
init_log_streams(cmd_args);
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
// Initialize random seed
|
|
|
|
srand(time(0));
|
|
|
|
mysrand(time(0));
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
// Initialize HTTP fetcher
|
|
|
|
httpfetch_init(g_settings->getS32("curl_parallel_limit"));
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2015-08-24 20:32:15 +02:00
|
|
|
init_gettext(porting::path_locale.c_str(),
|
2014-11-20 05:04:04 +01:00
|
|
|
g_settings->get("language"), argc, argv);
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void startup_message()
|
|
|
|
{
|
|
|
|
infostream << PROJECT_NAME << " " << _("with")
|
|
|
|
<< " SER_FMT_VER_HIGHEST_READ="
|
|
|
|
<< (int)SER_FMT_VER_HIGHEST_READ << ", "
|
2015-02-28 00:05:29 +01:00
|
|
|
<< g_build_info << std::endl;
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static bool read_config_file(const Settings &cmd_args)
|
|
|
|
{
|
2011-07-23 18:17:39 +02:00
|
|
|
// Path of configuration file in use
|
2015-03-06 11:21:51 +01:00
|
|
|
sanity_check(g_settings_path == ""); // Sanity check
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-06-01 00:55:23 +02:00
|
|
|
if (cmd_args.exists("config")) {
|
2011-10-12 12:53:38 +02:00
|
|
|
bool r = g_settings->readConfigFile(cmd_args.get("config").c_str());
|
2014-11-20 05:04:04 +01:00
|
|
|
if (!r) {
|
2014-06-01 00:55:23 +02:00
|
|
|
errorstream << "Could not read configuration from \""
|
2014-11-20 05:04:04 +01:00
|
|
|
<< cmd_args.get("config") << "\"" << std::endl;
|
|
|
|
return false;
|
2011-07-23 18:17:39 +02:00
|
|
|
}
|
2013-08-11 04:09:45 +02:00
|
|
|
g_settings_path = cmd_args.get("config");
|
2014-06-01 00:55:23 +02:00
|
|
|
} else {
|
2012-12-20 18:19:49 +01:00
|
|
|
std::vector<std::string> filenames;
|
2014-11-20 05:04:04 +01:00
|
|
|
filenames.push_back(porting::path_user + DIR_DELIM + "minetest.conf");
|
2012-03-10 15:10:26 +01:00
|
|
|
// Legacy configuration file location
|
|
|
|
filenames.push_back(porting::path_user +
|
|
|
|
DIR_DELIM + ".." + DIR_DELIM + "minetest.conf");
|
2014-11-20 05:04:04 +01:00
|
|
|
|
2012-07-23 14:23:33 +02:00
|
|
|
#if RUN_IN_PLACE
|
2012-03-10 14:56:24 +01:00
|
|
|
// Try also from a lower level (to aid having the same configuration
|
|
|
|
// for many RUN_IN_PLACE installs)
|
|
|
|
filenames.push_back(porting::path_user +
|
2012-03-10 15:10:26 +01:00
|
|
|
DIR_DELIM + ".." + DIR_DELIM + ".." + DIR_DELIM + "minetest.conf");
|
2011-07-23 18:17:39 +02:00
|
|
|
#endif
|
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
for (size_t i = 0; i < filenames.size(); i++) {
|
2011-10-12 12:53:38 +02:00
|
|
|
bool r = g_settings->readConfigFile(filenames[i].c_str());
|
2014-06-01 00:55:23 +02:00
|
|
|
if (r) {
|
2013-08-11 04:09:45 +02:00
|
|
|
g_settings_path = filenames[i];
|
2011-07-23 18:17:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2011-07-23 18:17:39 +02:00
|
|
|
// If no path found, use the first one (menu creates the file)
|
2014-06-01 00:55:23 +02:00
|
|
|
if (g_settings_path == "")
|
2013-08-11 04:09:45 +02:00
|
|
|
g_settings_path = filenames[0];
|
2011-07-23 18:17:39 +02:00
|
|
|
}
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
static void init_log_streams(const Settings &cmd_args)
|
2014-11-20 05:04:04 +01:00
|
|
|
{
|
2013-02-09 03:52:23 +01:00
|
|
|
#if RUN_IN_PLACE
|
2015-10-13 09:57:44 +02:00
|
|
|
std::string log_filename = DEBUGFILE;
|
2013-02-09 03:52:23 +01:00
|
|
|
#else
|
2015-10-13 09:57:44 +02:00
|
|
|
std::string log_filename = porting::path_user + DIR_DELIM + DEBUGFILE;
|
2013-02-09 03:52:23 +01:00
|
|
|
#endif
|
2014-06-01 00:55:23 +02:00
|
|
|
if (cmd_args.exists("logfile"))
|
2015-10-13 09:57:44 +02:00
|
|
|
log_filename = cmd_args.get("logfile");
|
|
|
|
|
|
|
|
g_logger.removeOutput(&file_log_output);
|
|
|
|
std::string conf_loglev = g_settings->get("debug_log_level");
|
|
|
|
|
|
|
|
// Old integer format
|
|
|
|
if (std::isdigit(conf_loglev[0])) {
|
|
|
|
warningstream << "Deprecated use of debug_log_level with an "
|
|
|
|
"integer value; please update your configuration." << std::endl;
|
|
|
|
static const char *lev_name[] =
|
|
|
|
{"", "error", "action", "info", "verbose"};
|
|
|
|
int lev_i = atoi(conf_loglev.c_str());
|
|
|
|
if (lev_i < 0 || lev_i >= (int)ARRLEN(lev_name)) {
|
|
|
|
warningstream << "Supplied invalid debug_log_level!"
|
|
|
|
" Assuming action level." << std::endl;
|
|
|
|
lev_i = 2;
|
|
|
|
}
|
|
|
|
conf_loglev = lev_name[lev_i];
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
2013-02-09 03:52:23 +01:00
|
|
|
|
2015-10-19 05:47:14 +02:00
|
|
|
if (log_filename.empty() || conf_loglev.empty()) // No logging
|
2015-10-13 09:57:44 +02:00
|
|
|
return;
|
2014-11-20 05:04:04 +01:00
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
LogLevel log_level = Logger::stringToLevel(conf_loglev);
|
|
|
|
if (log_level == LL_MAX) {
|
|
|
|
warningstream << "Supplied unrecognized debug_log_level; "
|
|
|
|
"using maximum." << std::endl;
|
|
|
|
}
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
verbosestream << "log_filename = " << log_filename << std::endl;
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2015-10-13 09:57:44 +02:00
|
|
|
file_log_output.open(log_filename.c_str());
|
|
|
|
g_logger.addOutputMaxLevel(&file_log_output, log_level);
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static bool game_configure(GameParams *game_params, const Settings &cmd_args)
|
|
|
|
{
|
|
|
|
game_configure_port(game_params, cmd_args);
|
2013-08-29 05:04:56 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
if (!game_configure_world(game_params, cmd_args)) {
|
|
|
|
errorstream << "No world path specified or found." << std::endl;
|
|
|
|
return false;
|
2011-07-23 18:17:39 +02:00
|
|
|
}
|
2013-09-07 18:06:00 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
game_configure_subgame(game_params, cmd_args);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static void game_configure_port(GameParams *game_params, const Settings &cmd_args)
|
|
|
|
{
|
2014-06-01 00:55:23 +02:00
|
|
|
if (cmd_args.exists("port"))
|
2014-11-20 05:04:04 +01:00
|
|
|
game_params->socket_port = cmd_args.getU16("port");
|
|
|
|
else
|
|
|
|
game_params->socket_port = g_settings->getU16("port");
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
if (game_params->socket_port == 0)
|
|
|
|
game_params->socket_port = DEFAULT_SERVER_PORT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool game_configure_world(GameParams *game_params, const Settings &cmd_args)
|
|
|
|
{
|
|
|
|
if (get_world_from_cmdline(game_params, cmd_args))
|
|
|
|
return true;
|
|
|
|
if (get_world_from_config(game_params, cmd_args))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return auto_select_world(game_params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool get_world_from_cmdline(GameParams *game_params, const Settings &cmd_args)
|
|
|
|
{
|
2012-03-11 19:45:14 +01:00
|
|
|
std::string commanded_world = "";
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2012-03-25 19:29:56 +02:00
|
|
|
// World name
|
|
|
|
std::string commanded_worldname = "";
|
2014-06-01 00:55:23 +02:00
|
|
|
if (cmd_args.exists("worldname"))
|
2012-03-25 19:29:56 +02:00
|
|
|
commanded_worldname = cmd_args.get("worldname");
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2012-05-20 16:41:40 +02:00
|
|
|
// If a world name was specified, convert it to a path
|
2014-06-01 00:55:23 +02:00
|
|
|
if (commanded_worldname != "") {
|
2012-05-20 16:41:40 +02:00
|
|
|
// Get information about available worlds
|
|
|
|
std::vector<WorldSpec> worldspecs = getAvailableWorlds();
|
|
|
|
bool found = false;
|
2014-11-20 05:04:04 +01:00
|
|
|
for (u32 i = 0; i < worldspecs.size(); i++) {
|
2012-05-20 16:41:40 +02:00
|
|
|
std::string name = worldspecs[i].name;
|
2014-06-01 00:55:23 +02:00
|
|
|
if (name == commanded_worldname) {
|
2014-11-20 05:04:04 +01:00
|
|
|
dstream << _("Using world specified by --worldname on the "
|
|
|
|
"command line") << std::endl;
|
2012-05-20 16:41:40 +02:00
|
|
|
commanded_world = worldspecs[i].path;
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-06-01 00:55:23 +02:00
|
|
|
if (!found) {
|
2014-11-20 05:04:04 +01:00
|
|
|
dstream << _("World") << " '" << commanded_worldname
|
|
|
|
<< _("' not available. Available worlds:") << std::endl;
|
2012-05-20 16:41:40 +02:00
|
|
|
print_worldspecs(worldspecs, dstream);
|
2014-11-20 05:04:04 +01:00
|
|
|
return false;
|
2012-05-20 16:41:40 +02:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
|
|
|
|
game_params->world_path = get_clean_world_path(commanded_world);
|
|
|
|
return commanded_world != "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cmd_args.exists("world"))
|
|
|
|
commanded_world = cmd_args.get("world");
|
|
|
|
else if (cmd_args.exists("map-dir"))
|
|
|
|
commanded_world = cmd_args.get("map-dir");
|
|
|
|
else if (cmd_args.exists("nonopt0")) // First nameless argument
|
|
|
|
commanded_world = cmd_args.get("nonopt0");
|
|
|
|
|
|
|
|
game_params->world_path = get_clean_world_path(commanded_world);
|
|
|
|
return commanded_world != "";
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool get_world_from_config(GameParams *game_params, const Settings &cmd_args)
|
|
|
|
{
|
|
|
|
// World directory
|
|
|
|
std::string commanded_world = "";
|
|
|
|
|
|
|
|
if (g_settings->exists("map-dir"))
|
|
|
|
commanded_world = g_settings->get("map-dir");
|
|
|
|
|
|
|
|
game_params->world_path = get_clean_world_path(commanded_world);
|
|
|
|
|
|
|
|
return commanded_world != "";
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool auto_select_world(GameParams *game_params)
|
|
|
|
{
|
|
|
|
// No world was specified; try to select it automatically
|
|
|
|
// Get information about available worlds
|
|
|
|
|
|
|
|
verbosestream << _("Determining world path") << std::endl;
|
|
|
|
|
|
|
|
std::vector<WorldSpec> worldspecs = getAvailableWorlds();
|
|
|
|
std::string world_path;
|
|
|
|
|
|
|
|
// If there is only a single world, use it
|
|
|
|
if (worldspecs.size() == 1) {
|
|
|
|
world_path = worldspecs[0].path;
|
|
|
|
dstream <<_("Automatically selecting world at") << " ["
|
|
|
|
<< world_path << "]" << std::endl;
|
|
|
|
// If there are multiple worlds, list them
|
|
|
|
} else if (worldspecs.size() > 1 && game_params->is_dedicated_server) {
|
2015-10-13 09:57:44 +02:00
|
|
|
std::cerr << _("Multiple worlds are available.") << std::endl;
|
|
|
|
std::cerr << _("Please select one using --worldname <name>"
|
2014-11-20 05:04:04 +01:00
|
|
|
" or --world <path>") << std::endl;
|
2015-10-13 09:57:44 +02:00
|
|
|
print_worldspecs(worldspecs, std::cerr);
|
2014-11-20 05:04:04 +01:00
|
|
|
return false;
|
|
|
|
// If there are no worlds, automatically create a new one
|
|
|
|
} else {
|
|
|
|
// This is the ultimate default world path
|
|
|
|
world_path = porting::path_user + DIR_DELIM + "worlds" +
|
|
|
|
DIR_DELIM + "world";
|
|
|
|
infostream << "Creating default world at ["
|
|
|
|
<< world_path << "]" << std::endl;
|
|
|
|
}
|
|
|
|
|
2015-03-06 11:21:51 +01:00
|
|
|
assert(world_path != ""); // Post-condition
|
2014-11-20 05:04:04 +01:00
|
|
|
game_params->world_path = world_path;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string get_clean_world_path(const std::string &path)
|
|
|
|
{
|
|
|
|
const std::string worldmt = "world.mt";
|
|
|
|
std::string clean_path;
|
|
|
|
|
|
|
|
if (path.size() > worldmt.size()
|
|
|
|
&& path.substr(path.size() - worldmt.size()) == worldmt) {
|
|
|
|
dstream << _("Supplied world.mt file - stripping it off.") << std::endl;
|
|
|
|
clean_path = path.substr(0, path.size() - worldmt.size());
|
|
|
|
} else {
|
|
|
|
clean_path = path;
|
2012-05-20 16:41:40 +02:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2012-05-20 16:41:40 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static bool game_configure_subgame(GameParams *game_params, const Settings &cmd_args)
|
|
|
|
{
|
|
|
|
bool success;
|
|
|
|
|
|
|
|
success = get_game_from_cmdline(game_params, cmd_args);
|
|
|
|
if (!success)
|
|
|
|
success = determine_subgame(game_params);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool get_game_from_cmdline(GameParams *game_params, const Settings &cmd_args)
|
|
|
|
{
|
2012-03-11 19:45:14 +01:00
|
|
|
SubgameSpec commanded_gamespec;
|
2014-11-20 05:04:04 +01:00
|
|
|
|
2014-06-01 00:55:23 +02:00
|
|
|
if (cmd_args.exists("gameid")) {
|
2012-03-11 19:45:14 +01:00
|
|
|
std::string gameid = cmd_args.get("gameid");
|
|
|
|
commanded_gamespec = findSubgame(gameid);
|
2014-06-01 00:55:23 +02:00
|
|
|
if (!commanded_gamespec.isValid()) {
|
|
|
|
errorstream << "Game \"" << gameid << "\" not found" << std::endl;
|
2014-11-20 05:04:04 +01:00
|
|
|
return false;
|
2012-03-11 13:54:23 +01:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
dstream << _("Using game specified by --gameid on the command line")
|
|
|
|
<< std::endl;
|
|
|
|
game_params->game_spec = commanded_gamespec;
|
|
|
|
return true;
|
2012-03-11 13:54:23 +01:00
|
|
|
}
|
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-10-22 23:18:44 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
static bool determine_subgame(GameParams *game_params)
|
|
|
|
{
|
|
|
|
SubgameSpec gamespec;
|
|
|
|
|
2015-03-06 11:21:51 +01:00
|
|
|
assert(game_params->world_path != ""); // Pre-condition
|
2014-11-20 05:04:04 +01:00
|
|
|
|
|
|
|
verbosestream << _("Determining gameid/gamespec") << std::endl;
|
|
|
|
// If world doesn't exist
|
|
|
|
if (game_params->world_path != ""
|
|
|
|
&& !getWorldExists(game_params->world_path)) {
|
|
|
|
// Try to take gamespec from command line
|
|
|
|
if (game_params->game_spec.isValid()) {
|
|
|
|
gamespec = game_params->game_spec;
|
|
|
|
infostream << "Using commanded gameid [" << gamespec.id << "]" << std::endl;
|
|
|
|
} else { // Otherwise we will be using "minetest"
|
|
|
|
gamespec = findSubgame(g_settings->get("default_game"));
|
|
|
|
infostream << "Using default gameid [" << gamespec.id << "]" << std::endl;
|
2014-12-13 14:01:16 +01:00
|
|
|
if (!gamespec.isValid()) {
|
|
|
|
errorstream << "Subgame specified in default_game ["
|
|
|
|
<< g_settings->get("default_game")
|
|
|
|
<< "] is invalid." << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2012-03-15 17:15:12 +01:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
} else { // World exists
|
|
|
|
std::string world_gameid = getWorldGameId(game_params->world_path, false);
|
|
|
|
// If commanded to use a gameid, do so
|
|
|
|
if (game_params->game_spec.isValid()) {
|
|
|
|
gamespec = game_params->game_spec;
|
|
|
|
if (game_params->game_spec.id != world_gameid) {
|
2015-10-13 09:57:44 +02:00
|
|
|
warningstream << "Using commanded gameid ["
|
2014-11-20 05:04:04 +01:00
|
|
|
<< gamespec.id << "]" << " instead of world gameid ["
|
|
|
|
<< world_gameid << "]" << std::endl;
|
2012-03-25 19:29:56 +02:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
} else {
|
|
|
|
// If world contains an embedded game, use it;
|
|
|
|
// Otherwise find world from local system.
|
|
|
|
gamespec = findWorldSubgame(game_params->world_path);
|
|
|
|
infostream << "Using world gameid [" << gamespec.id << "]" << std::endl;
|
2012-03-25 19:29:56 +02:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
2012-10-22 23:18:44 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
if (!gamespec.isValid()) {
|
|
|
|
errorstream << "Subgame [" << gamespec.id << "] could not be found."
|
|
|
|
<< std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2012-10-22 23:18:44 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
game_params->game_spec = gamespec;
|
|
|
|
return true;
|
|
|
|
}
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Dedicated server
|
|
|
|
*****************************************************************************/
|
|
|
|
static bool run_dedicated_server(const GameParams &game_params, const Settings &cmd_args)
|
|
|
|
{
|
|
|
|
DSTACK("Dedicated server branch");
|
|
|
|
|
|
|
|
verbosestream << _("Using world path") << " ["
|
|
|
|
<< game_params.world_path << "]" << std::endl;
|
|
|
|
verbosestream << _("Using gameid") << " ["
|
|
|
|
<< game_params.game_spec.id << "]" << std::endl;
|
|
|
|
|
|
|
|
// Bind address
|
|
|
|
std::string bind_str = g_settings->get("bind_address");
|
|
|
|
Address bind_addr(0, 0, 0, 0, game_params.socket_port);
|
|
|
|
|
|
|
|
if (g_settings->getBool("ipv6_server")) {
|
|
|
|
bind_addr.setAddress((IPv6AddressBytes*) NULL);
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
bind_addr.Resolve(bind_str.c_str());
|
|
|
|
} catch (ResolveError &e) {
|
|
|
|
infostream << "Resolving bind address \"" << bind_str
|
|
|
|
<< "\" failed: " << e.what()
|
|
|
|
<< " -- Listening on all addresses." << std::endl;
|
|
|
|
}
|
|
|
|
if (bind_addr.isIPv6() && !g_settings->getBool("enable_ipv6")) {
|
|
|
|
errorstream << "Unable to listen on "
|
|
|
|
<< bind_addr.serializeString()
|
|
|
|
<< L" because IPv6 is disabled" << std::endl;
|
|
|
|
return false;
|
2011-07-23 18:17:39 +02:00
|
|
|
}
|
|
|
|
|
2015-02-27 08:24:07 +01:00
|
|
|
// Database migration
|
|
|
|
if (cmd_args.exists("migrate"))
|
|
|
|
return migrate_database(game_params, cmd_args);
|
|
|
|
|
2015-07-25 07:43:32 +02:00
|
|
|
if (cmd_args.exists("terminal")) {
|
|
|
|
#if USE_CURSES
|
|
|
|
bool name_ok = true;
|
|
|
|
std::string admin_nick = g_settings->get("name");
|
|
|
|
|
|
|
|
name_ok = name_ok && !admin_nick.empty();
|
|
|
|
name_ok = name_ok && string_allowed(admin_nick, PLAYERNAME_ALLOWED_CHARS);
|
|
|
|
|
|
|
|
if (!name_ok) {
|
|
|
|
if (admin_nick.empty()) {
|
|
|
|
errorstream << "No name given for admin. "
|
|
|
|
<< "Please check your minetest.conf that it "
|
|
|
|
<< "contains a 'name = ' to your main admin account."
|
|
|
|
<< std::endl;
|
|
|
|
} else {
|
|
|
|
errorstream << "Name for admin '"
|
|
|
|
<< admin_nick << "' is not valid. "
|
|
|
|
<< "Please check that it only contains allowed characters. "
|
|
|
|
<< "Valid characters are: " << PLAYERNAME_ALLOWED_CHARS_USER_EXPL
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ChatInterface iface;
|
2015-10-29 19:48:10 +01:00
|
|
|
bool &kill = *porting::signal_handler_killstatus();
|
2015-07-25 07:43:32 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
// Create server
|
|
|
|
Server server(game_params.world_path,
|
|
|
|
game_params.game_spec, false, bind_addr.isIPv6(), &iface);
|
|
|
|
|
|
|
|
g_term_console.setup(&iface, &kill, admin_nick);
|
|
|
|
|
|
|
|
g_term_console.start();
|
|
|
|
|
|
|
|
server.start(bind_addr);
|
|
|
|
// Run server
|
|
|
|
dedicated_server_loop(server, kill);
|
|
|
|
} catch (const ModError &e) {
|
|
|
|
g_term_console.stopAndWaitforThread();
|
|
|
|
errorstream << "ModError: " << e.what() << std::endl;
|
|
|
|
return false;
|
|
|
|
} catch (const ServerError &e) {
|
|
|
|
g_term_console.stopAndWaitforThread();
|
|
|
|
errorstream << "ServerError: " << e.what() << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tell the console to stop, and wait for it to finish,
|
|
|
|
// only then leave context and free iface
|
|
|
|
g_term_console.stop();
|
|
|
|
g_term_console.wait();
|
|
|
|
|
|
|
|
g_term_console.clearKillStatus();
|
|
|
|
} else {
|
|
|
|
#else
|
|
|
|
errorstream << "Cmd arg --terminal passed, but "
|
|
|
|
<< "compiled without ncurses. Ignoring." << std::endl;
|
|
|
|
} {
|
|
|
|
#endif
|
|
|
|
try {
|
|
|
|
// Create server
|
|
|
|
Server server(game_params.world_path, game_params.game_spec, false,
|
|
|
|
bind_addr.isIPv6());
|
|
|
|
server.start(bind_addr);
|
|
|
|
|
|
|
|
// Run server
|
|
|
|
bool &kill = *porting::signal_handler_killstatus();
|
|
|
|
dedicated_server_loop(server, kill);
|
|
|
|
|
|
|
|
} catch (const ModError &e) {
|
|
|
|
errorstream << "ModError: " << e.what() << std::endl;
|
|
|
|
return false;
|
|
|
|
} catch (const ServerError &e) {
|
|
|
|
errorstream << "ServerError: " << e.what() << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2015-10-29 19:48:10 +01:00
|
|
|
}
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
return true;
|
|
|
|
}
|
2011-07-23 18:17:39 +02:00
|
|
|
|
2015-02-27 08:24:07 +01:00
|
|
|
static bool migrate_database(const GameParams &game_params, const Settings &cmd_args)
|
2014-11-20 05:04:04 +01:00
|
|
|
{
|
2014-11-16 21:31:57 +01:00
|
|
|
std::string migrate_to = cmd_args.get("migrate");
|
2014-11-20 05:04:04 +01:00
|
|
|
Settings world_mt;
|
2014-11-16 21:31:57 +01:00
|
|
|
std::string world_mt_path = game_params.world_path + DIR_DELIM + "world.mt";
|
2015-02-27 08:24:07 +01:00
|
|
|
if (!world_mt.readConfigFile(world_mt_path.c_str())) {
|
|
|
|
errorstream << "Cannot read world.mt!" << std::endl;
|
|
|
|
return false;
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
|
|
|
if (!world_mt.exists("backend")) {
|
2014-11-16 21:31:57 +01:00
|
|
|
errorstream << "Please specify your current backend in world.mt:"
|
2015-02-27 08:24:07 +01:00
|
|
|
<< std::endl
|
|
|
|
<< " backend = {sqlite3|leveldb|redis|dummy}"
|
2014-11-16 21:31:57 +01:00
|
|
|
<< std::endl;
|
2015-02-27 08:24:07 +01:00
|
|
|
return false;
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
|
|
|
std::string backend = world_mt.get("backend");
|
|
|
|
if (backend == migrate_to) {
|
2014-11-16 21:31:57 +01:00
|
|
|
errorstream << "Cannot migrate: new backend is same"
|
2015-02-27 08:24:07 +01:00
|
|
|
<< " as the old one" << std::endl;
|
|
|
|
return false;
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
2015-02-27 08:24:07 +01:00
|
|
|
Database *old_db = ServerMap::createDatabase(backend, game_params.world_path, world_mt),
|
|
|
|
*new_db = ServerMap::createDatabase(migrate_to, game_params.world_path, world_mt);
|
|
|
|
|
|
|
|
u32 count = 0;
|
|
|
|
time_t last_update_time = 0;
|
|
|
|
bool &kill = *porting::signal_handler_killstatus();
|
2014-07-16 14:04:50 +02:00
|
|
|
|
2015-02-17 14:30:32 +01:00
|
|
|
std::vector<v3s16> blocks;
|
2015-02-27 08:24:07 +01:00
|
|
|
old_db->listAllLoadableBlocks(blocks);
|
2014-11-20 05:04:04 +01:00
|
|
|
new_db->beginSave();
|
2015-02-27 08:24:07 +01:00
|
|
|
for (std::vector<v3s16>::const_iterator it = blocks.begin(); it != blocks.end(); ++it) {
|
|
|
|
if (kill) return false;
|
|
|
|
|
2016-05-14 12:23:15 +02:00
|
|
|
std::string data;
|
|
|
|
old_db->loadBlock(*it, &data);
|
2015-02-27 08:24:07 +01:00
|
|
|
if (!data.empty()) {
|
|
|
|
new_db->saveBlock(*it, data);
|
|
|
|
} else {
|
|
|
|
errorstream << "Failed to load block " << PP(*it) << ", skipping it." << std::endl;
|
2015-02-17 14:30:32 +01:00
|
|
|
}
|
2015-02-27 08:24:07 +01:00
|
|
|
if (++count % 0xFF == 0 && time(NULL) - last_update_time >= 1) {
|
|
|
|
std::cerr << " Migrated " << count << " blocks, "
|
|
|
|
<< (100.0 * count / blocks.size()) << "% completed.\r";
|
|
|
|
new_db->endSave();
|
|
|
|
new_db->beginSave();
|
|
|
|
last_update_time = time(NULL);
|
2014-07-16 14:04:50 +02:00
|
|
|
}
|
2014-11-20 05:04:04 +01:00
|
|
|
}
|
2015-02-27 08:24:07 +01:00
|
|
|
std::cerr << std::endl;
|
2014-11-20 05:04:04 +01:00
|
|
|
new_db->endSave();
|
2015-02-27 08:24:07 +01:00
|
|
|
delete old_db;
|
2014-11-20 05:04:04 +01:00
|
|
|
delete new_db;
|
|
|
|
|
|
|
|
actionstream << "Successfully migrated " << count << " blocks" << std::endl;
|
|
|
|
world_mt.set("backend", migrate_to);
|
2014-11-16 21:31:57 +01:00
|
|
|
if (!world_mt.updateConfigFile(world_mt_path.c_str()))
|
2014-11-20 05:04:04 +01:00
|
|
|
errorstream << "Failed to update world.mt!" << std::endl;
|
|
|
|
else
|
|
|
|
actionstream << "world.mt updated" << std::endl;
|
2014-07-16 14:04:50 +02:00
|
|
|
|
2014-11-20 05:04:04 +01:00
|
|
|
return true;
|
|
|
|
}
|
2015-02-27 08:24:07 +01:00
|
|
|
|