d5959777435967835c6f8c363dab1c8a29a99b1c
[oweals/minetest.git] / src / constants.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 /*
21 (c) 2010 Perttu Ahola <celeron55@gmail.com>
22 */
23
24 #ifndef CONSTANTS_HEADER
25 #define CONSTANTS_HEADER
26
27 #define DEBUGFILE "debug.txt"
28
29 // Define for simulating the quirks of sending through internet
30 // WARNING: This disables unit testing of socket and connection
31 #define INTERNET_SIMULATOR 0
32
33 #define CONNECTION_TIMEOUT 30
34
35 #define RESEND_TIMEOUT_MIN 0.333
36 #define RESEND_TIMEOUT_MAX 3.0
37 // resend_timeout = avg_rtt * this
38 #define RESEND_TIMEOUT_FACTOR 4
39
40 #define PI 3.14159
41
42 #define SERVERMAP_DELETE_UNUSED_SECTORS_TIMEOUT (60*10)
43 #define SERVER_MAP_SAVE_INTERVAL (60)
44
45 #define FOV_ANGLE (PI/2.5)
46
47 // The absolute working limit is (2^15 - viewing_range).
48 #define MAP_GENERATION_LIMIT (31000)
49
50 //#define MAX_SIMULTANEOUS_BLOCK_SENDS 2
51
52 #define FULL_BLOCK_SEND_ENABLE_MIN_TIME_FROM_BUILDING 2.0
53 //#define LIMITED_MAX_SIMULTANEOUS_BLOCK_SENDS 1
54 #define LIMITED_MAX_SIMULTANEOUS_BLOCK_SENDS 0
55
56 // Override for the previous one when distance is low
57 #define BLOCK_SEND_DISABLE_LIMITS_MAX_D 1
58
59 //#define MAX_SIMULTANEOUS_BLOCK_SENDS_SERVER_TOTAL 4
60
61 // Viewing range stuff
62
63 //#define HEIGHTMAP_RANGE_NODES 300
64
65 //#define FREETIME_RATIO 0.2
66 #define FREETIME_RATIO 0.15
67
68 // Sectors are split to SECTOR_HEIGHTMAP_SPLIT^2 heightmaps
69 #define SECTOR_HEIGHTMAP_SPLIT 2
70
71 #define PLAYER_INVENTORY_SIZE (8*4)
72
73 #define SIGN_TEXT_MAX_LENGTH 50
74
75 // The distance of how far objects will be sent to client
76 //#define ACTIVE_OBJECT_D_BLOCKS 2
77
78 // Wether to catch all std::exceptions.
79 // Assert will be called on such an event.
80 #define CATCH_UNHANDLED_EXCEPTIONS 1
81
82 /*
83         Collecting active blocks is stopped after object data
84         size reaches this
85 */
86 #define MAX_OBJECTDATA_SIZE 450
87
88 //#define WATER_LEVEL (-5)
89 #define WATER_LEVEL (0)
90
91 #endif
92