aboutsummaryrefslogtreecommitdiff
path: root/src/serialization.cpp
Commit message (Expand)AuthorAge
* better graphics, zlib to work on vc++Perttu Ahola2010-12-14
* commit before content-tile separationPerttu Ahola2010-12-13
* license stuffPerttu Ahola2010-11-29
* Initial filesPerttu Ahola2010-11-27
d='n46' href='#n46'>46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
/*
Minetest-c55
Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(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
GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#include "utility.h"

extern Settings g_settings;

void set_default_settings()
{
	// Client stuff
	g_settings.setDefault("wanted_fps", "30");
	g_settings.setDefault("fps_max", "60");
	g_settings.setDefault("viewing_range_nodes_max", "300");
	g_settings.setDefault("viewing_range_nodes_min", "35");
	g_settings.setDefault("screenW", "800");
	g_settings.setDefault("screenH", "600");
	g_settings.setDefault("host_game", "");
	g_settings.setDefault("port", "");
	g_settings.setDefault("address", "");
	g_settings.setDefault("name", "");
	g_settings.setDefault("random_input", "false");
	g_settings.setDefault("client_delete_unused_sectors_timeout", "1200");
	g_settings.setDefault("enable_fog", "true");

	// Server stuff
	g_settings.setDefault("creative_mode", "false");
	g_settings.setDefault("haxmode", "false");
	g_settings.setDefault("plants_amount", "1.0");
	g_settings.setDefault("ravines_amount", "0");
	g_settings.setDefault("coal_amount", "1.0");

	g_settings.setDefault("objectdata_interval", "0.2");