-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
95 lines (85 loc) · 2.62 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import os
import sys
sys.path.insert(0, '')
import markers_config
WORLD_DIR = os.environ['MINECRAFT_WORLD_DIR']
OUTPUT_DIR = os.environ['MINECRAFT_MAP_DIR']
CLIENT_PATH = os.environ['MINECRAFT_CLIENT_PATH']
worlds["DQ Server"] = WORLD_DIR
outputdir = OUTPUT_DIR
renders["north_day"] = {
"world": "DQ Server",
"texturepath": CLIENT_PATH,
"northdirection": "upper-left",
"title": "Day",
"rendermode": "smooth_lighting",
"manualpois": markers_config.manualpois(),
"markers": markers_config.markers(),
}
renders["south_day"] = {
"world": "DQ Server",
"texturepath": CLIENT_PATH,
"northdirection": "lower-right",
"title": "Day (opposite view)",
"rendermode": "smooth_lighting",
"manualpois": markers_config.manualpois(),
"markers": markers_config.markers(),
}
renders["north_night"] = {
"world": "DQ Server",
"texturepath": CLIENT_PATH,
"northdirection": "upper-left",
"title": "Night",
"rendermode": "smooth_night",
"manualpois": markers_config.manualpois(),
"markers": markers_config.markers(),
}
renders["south_night"] = {
"world": "DQ Server",
"texturepath": CLIENT_PATH,
"northdirection": "lower-right",
"title": "Night (opposite view)",
"rendermode": "smooth_night",
"manualpois": markers_config.manualpois(),
"markers": markers_config.markers(),
}
renders["nether"] = {
"world": "DQ Server",
"texturepath": CLIENT_PATH,
"northdirection": "upper-left",
"title": "Nether",
"rendermode": "nether",
"dimension": "nether",
"manualpois": markers_config.manualpois("nether"),
"markers": markers_config.markers("nether"),
}
renders["nether_opposite"] = {
"world": "DQ Server",
"texturepath": CLIENT_PATH,
"northdirection": "lower-right",
"title": "Nether (opposite view)",
"rendermode": "nether",
"dimension": "nether",
"manualpois": markers_config.manualpois("nether"),
"markers": markers_config.markers("nether"),
}
renders["end"] = {
"world": "DQ Server",
"texturepath": CLIENT_PATH,
"northdirection": "upper-left",
"title": "End",
"rendermode": [Base(), EdgeLines(), SmoothLighting(strength=0.5)],
"dimension": "end",
"manualpois": markers_config.manualpois("end"),
"markers": markers_config.markers("end"),
}
renders["end_opposite"] = {
"world": "DQ Server",
"texturepath": CLIENT_PATH,
"northdirection": "lower-right",
"title": "End (opposite view)",
"rendermode": [Base(), EdgeLines(), SmoothLighting(strength=0.5)],
"dimension": "end",
"manualpois": markers_config.manualpois("end"),
"markers": markers_config.markers("end"),
}