forked from boskee/Minecraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
globals.py
361 lines (284 loc) · 8.7 KB
/
globals.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
"""
Global variables.
WARNING: Never use `from globals import *`!
Since these global variables are modified during runtime, using `import *`
would lead to unpredictable consequences.
"""
# Imports, sorted alphabetically.
# Python packages
from configparser import ConfigParser, NoSectionError, NoOptionError
import argparse
import getpass
from math import pi
import os
# Third-party packages
import pyglet
from pyglet.resource import get_settings_path
# Modules from this project
# Nothing for now...
APP_NAME = 'pyCraft' # should I stay or should I go?
APP_VERSION = 0.1
DEBUG = False
LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR, LOG_FATAL = list(range(5))
LOG_LEVEL = LOG_INFO
IP_ADDRESS = "neb.nebtown.info" # The IP Address to connect to
USERNAME = getpass.getuser() # Default to system username
CLIENT = None # Becomes the instance of PacketReceiver if running the client
SERVER = None # Becomes the instance of Server if running the server
# Game modes
SURVIVAL_MODE = 'survival'
CREATIVE_MODE = 'creative'
GAME_MODE_CHOICES = (SURVIVAL_MODE, CREATIVE_MODE)
GAME_MODE = CREATIVE_MODE
SINGLEPLAYER = False
# User input
# Movement
MOVE_FORWARD_KEY = 'W'
MOVE_BACKWARD_KEY = 'S'
MOVE_LEFT_KEY = 'A'
MOVE_RIGHT_KEY = 'D'
JUMP_KEY = 'SPACE'
CROUCH_KEY = 'LSHIFT'
FLY_KEY = 'TAB'
# Action
INVENTORY_KEY = 'E'
INVENTORY_SORT_KEY = 'M'
INVENTORY_1_KEY = '1'
INVENTORY_2_KEY = '2'
INVENTORY_3_KEY = '3'
INVENTORY_4_KEY = '4'
INVENTORY_5_KEY = '5'
INVENTORY_6_KEY = '6'
INVENTORY_7_KEY = '7'
INVENTORY_8_KEY = '8'
INVENTORY_9_KEY = '9'
INVENTORY_10_KEY = '0'
TALK_KEY = 'T'
VALIDATE_KEY = 'ENTER'
# Settings
SOUND_UP_KEY = 'PAGEUP'
SOUND_DOWN_KEY = 'PAGEDOWN'
TOGGLE_HUD_KEY = 'F1'
SCREENCAP_KEY = 'F2'
TOGGLE_DEBUG_TEXT_KEY = 'F3'
SHOWMAP_KEY = 'F4'
# Various
ESCAPE_KEY = 'ESCAPE'
KEY_BINDINGS = dict(
(k.lower()[:-4], v) for k, v in list(locals().items()) if k[-4:] == '_KEY'
)
# Saves
DISABLE_SAVE = True
SAVE_FILENAME = None
DB_NAME = 'world.db'
# Game engine
SECTOR_SIZE = 8
TILESET_SIZE = 16 # The tileset therefore contains TILESET_SIZE ** 2 tiles.
# Game logic
BLOCKS_DIR = {} # Block ID => block object
ITEMS_DIR = {} # Item ID => item object
VERTEX_CUBE = 'cube'
VERTEX_CROSS = 'cross'
VERTEX_GRID = 'grid'
VERTEX_MODES = (
VERTEX_CUBE,
VERTEX_CROSS,
VERTEX_GRID,
)
# items and blocks share a common id table
# ids of items should be >= ITEM_ID_MIN
ITEM_ID_MIN = 256
TIME_RATE = 240 * 10 # Rate of change (steps per hour).
SPREADING_MUTATION_DELAY = 4 # in seconds
# Terrain generation
TERRAIN_CHOICES = { # hill_height & max_trees mandatory for the moment.
'plains': {
'hill_height': 2,
'max_trees': 700,
},
'desert': {
'hill_height': 5,
'max_trees': 50,
},
'island': {
'hill_height': 8,
'max_trees': 700,
},
'mountains': {
'hill_height': 12,
'max_trees': 4000,
},
'snow': {
'hill_height': 4,
'max_trees': 1500,
},
'nether': {
'hill_height': 1,
'max_trees': 0,
}
}
SEED = None
TREE_CHANCE = 0.006
WILDFOOD_CHANCE = 0.0005
GRASS_CHANCE = 0.05
# Biome
DESERT, PLAINS, MOUNTAINS, SNOW, FOREST, ISLAND, NETHER = list(range(7))
# Direction
EAST, SOUTH, WEST, NORTH = list(range(4))
# Graphical rendering
FULLSCREEN = False
WINDOW_WIDTH = 850 # Screen width (in pixels)
WINDOW_HEIGHT = 480 # Screen height (in pixels)
MAX_FPS = 60 # Maximum frames per second.
#Maximum time to process the queue
QUEUE_PROCESS_SPEED = 0.5 / MAX_FPS #Try shrinking this if chunk loading is laggy, higher loads chunks faster
VISIBLE_SECTORS_RADIUS = 8
DELOAD_SECTORS_RADIUS = 12
DRAW_DISTANCE_CHOICES = {
'short': 60.0,
'medium': 60.0 * 1.5,
'long': 60.0 * 2.0
}
DEFAULT_DRAW_DISTANCE_CHOICE = 'short'
DRAW_DISTANCE_CHOICE = DEFAULT_DRAW_DISTANCE_CHOICE
DRAW_DISTANCE = DRAW_DISTANCE_CHOICES[DRAW_DISTANCE_CHOICE]
FOV = 65.0 # TODO: add menu option to change FOV
NEAR_CLIP_DISTANCE = 0.1 # TODO: make min and max clip distance dynamic
FAR_CLIP_DISTANCE = 200.0 # Maximum render distance,
# ignoring effects of sector_size
MOTION_BLUR = False
FOG_ENABLED = False
TEXTURE_PACK = 'default'
texture_pack_list = None
HUD_ENABLED = True
DEBUG_TEXT_ENABLED = True
# Sound
EFFECT_VOLUME = 0.0 # disabled due to... segfaults?
# Tool types
WOODEN_TOOL, STONE_TOOL, IRON_TOOL, DIAMOND_TOOL, GOLDEN_TOOL = list(range(5))
PICKAXE, AXE, SHOVEL, HOE, SWORD = list(range(5))
HELMET, CHESTPLATE, LEGGINGS, BOOTS = list(range(4))
# Static aliases
DEG_RAD = pi / 180.0
HALF_PI = pi / 2.0 # 90 degrees
# Recipes
recipes = None
smelting_recipes = None
# Timer
TIMER_INTERVAL = 1
main_timer = None
CHAT_FADE_TIME = 8
# Localization
LANGUAGE = 'default'
_ = lambda x:x
# Global files & directories
game_dir = get_settings_path(APP_NAME)
if not os.path.exists(game_dir):
os.makedirs(game_dir)
worlds_dir = os.path.join(game_dir, 'worlds')
config = ConfigParser()
config_file = os.path.join(game_dir, 'game.cfg')
config.read(config_file)
LAUNCH_OPTIONS = argparse.Namespace()
ANCHOR_NONE = 0
ANCHOR_LEFT = 1
ANCHOR_TOP = 1 << 1
ANCHOR_RIGHT = 1 << 2
ANCHOR_BOTTOM = 1 << 3
ICONS_PATH = os.path.join('resources', 'textures', 'icons')
TEXTURES_PATH = os.path.join('resources', 'textures')
DEFAULT_FONT = 'ChunkFive Roman'
CHAT_FONT = 'Silkscreen'
class InvalidChoice(Exception):
pass
class InvalidKey(Exception):
pass
def get_key(key_name):
key_code = getattr(pyglet.window.key, key_name, None)
if key_code is None:
# Handles cases like pyglet.window.key._1
key_code = getattr(pyglet.window.key, '_' + key_name, None)
if key_code is None:
raise InvalidKey('%s is not a valid key.' % key_name)
return key_code
def get_or_update_config(section, option, default_value, conv=str, choices=()):
user_value = False
try:
if conv is bool:
user_value = config.getboolean(section, option)
else:
user_value = conv(config.get(section, option))
except NoSectionError:
config.add_section(section)
except NoOptionError:
pass
if not user_value:
user_value = default_value
# If the option is already set:
if choices and user_value not in choices:
raise InvalidChoice('"%s" %s.%s must be in %s' %
(user_value, section, option, repr(tuple(choices))))
config.set(section, option, str(user_value))
return user_value
def save_config():
config.set("General","username", USERNAME)
config.set("General","ip_address", IP_ADDRESS)
with open(config_file, 'w') as handle:
config.write(handle)
def initialize_config():
#
# General
#
global DEBUG, FULLSCREEN, WINDOW_WIDTH, WINDOW_HEIGHT, DRAW_DISTANCE_CHOICE, DRAW_DISTANCE_CHOICES, DRAW_DISTANCE, MOTION_BLUR, FOG_ENABLED, TEXTURE_PACK, USERNAME, IP_ADDRESS, LANGUAGE
general = 'General'
DEBUG = get_or_update_config(
general, 'debug', DEBUG, conv=bool)
USERNAME = get_or_update_config(
general, 'username', USERNAME, conv=str)
IP_ADDRESS = get_or_update_config(
general, 'ip_address', IP_ADDRESS, conv=str)
#
# Graphics
#
graphics = 'Graphics'
FULLSCREEN = get_or_update_config(
graphics, 'fullscreen', FULLSCREEN, conv=bool)
WINDOW_WIDTH = get_or_update_config(
graphics, 'width', WINDOW_WIDTH, conv=int)
WINDOW_HEIGHT = get_or_update_config(
graphics, 'height', WINDOW_HEIGHT, conv=int)
DRAW_DISTANCE_CHOICE = get_or_update_config(
graphics, 'draw_distance', DRAW_DISTANCE_CHOICE,
choices=DRAW_DISTANCE_CHOICES)
DRAW_DISTANCE = DRAW_DISTANCE_CHOICES[DRAW_DISTANCE_CHOICE]
MOTION_BLUR = get_or_update_config(
graphics, 'motion_blur', MOTION_BLUR, conv=bool)
TEXTURE_PACK = get_or_update_config(
graphics, 'texture_pack', TEXTURE_PACK, conv=str)
#
# World
#
world = 'World'
# TODO: This setting must be removed when terrain generation will improve.
get_or_update_config(world, 'size', 64, conv=int)
#
# Controls
#
controls = 'Controls'
# Adds missing keys to configuration file and converts to pyglet keys.
for control, default_key_name in list(KEY_BINDINGS.items()):
key_name = get_or_update_config(controls, control, default_key_name)
try:
pyglet_key = get_key(key_name)
except InvalidKey:
pyglet_key = get_key(default_key_name)
config.set(controls, control, default_key_name)
globals()[control.upper() + '_KEY'] = pyglet_key
#
# Localization
#
localization = 'Localization'
LANGUAGE = get_or_update_config(
localization, 'language', LANGUAGE, conv=str)
save_config()
initialize_config()