-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
79 lines (41 loc) · 1.54 KB
/
config.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
import yaml
import os
config_file = open(os.path.dirname(__file__)+('/config/simple.yaml'))
config_map = yaml.safe_load(config_file)
config_file.close()
def grid_width():
return config_map['grid']['width']
def grid_height():
return config_map['grid']['height']
def cell_pixel_width():
return config_map['grid']['cell']['width']
def cell_pixel_height():
return config_map['grid']['cell']['height']
def single_obstacle_count():
return config_map['obstacles']['single']
def render_refresh_clock_ticks():
return int(config_map['clock']['ticks'])
def get_generation_size():
return int(config_map['clock']['generation_size'])
def predator_count():
return int(config_map['animats']['count']['predator'])
def easy_prey_count():
return int(config_map['animats']['count']['easy_prey'])
def hard_prey_count():
return int(config_map['animats']['count']['hard_prey'])
def best_predator_count():
return int(config_map['animats']['count']['best_predator'])
def grass_count():
return int(config_map['grass'])
def easy_prey_range():
return int(config_map['animats']['range']['easy_prey'])
def hard_prey_range():
return int(config_map['animats']['range']['hard_prey'])
def predator_range():
return int(config_map['animats']['range']['predator'])
def easy_prey_speed():
return int(config_map['animats']['speed']['easy_prey'])
def hard_prey_speed():
return int(config_map['animats']['speed']['hard_prey'])
def predator_speed():
return int(config_map['animats']['speed']['predator'])