forked from chadrockey/TGC-Designer-Tools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtgc_definitions.py
More file actions
91 lines (84 loc) · 1.73 KB
/
Copy pathtgc_definitions.py
File metadata and controls
91 lines (84 loc) · 1.73 KB
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
# Record types of surfaces
surfaces = {
0: "bunker",
1: "green",
2: "fairway",
3: "rough",
4: "heavyrough",
5: "clearobjects",
6: "cleartrees",
7: "surface1",
8: "surface2",
9: "water",
10: "surface3"
}
featuresToSurfaces = {
"bunker": 0,
"green": 1,
"fairway": 2,
"rough": 3,
"heavyrough": 4,
"clearobjects": 5,
"cleartrees": 6,
"surface1": 7,
"surface2": 8,
"water": 9,
"surface3": 10,
"cartpath": 10,
}
brushes = {
8: "firm_circle",
9: "medium_circle",
10: "soft_circle",
15: "soft_square",
54: "very_soft_circle",
72: "hard_square",
73: "hard_circle"
}
themes = {
2: "desert",
5: "boreal",
6: "tropical",
7: "countryside",
8: "harvest",
10: "delta",
11: "rustic",
12: "swiss",
13: "steppe",
14: "autumn",
15: "highlands",
}
normal_trees = {
2: [0, 1, 2, 3, 9],
5: [0, 1],
6: [0, 1, 2, 3, 4, 5, 6, 7],
7: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16],
8: [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
10: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12],
11: [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12],
12: [0, 1, 3, 4, 7, 8, 10],
13: [0, 1, 2, 3, 4, 5, 6, 7],
14: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
15: [0, 1, 6, 7],
}
skinny_trees = {
2: [10, 11, 12, 13, 14, 15, 16],
5: [3, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16],
6: [8, 9, 13, 14, 15, 16, 17, 18, 19],
7: [13, 14],
8: [0, 1, 2],
10: [],
11: [13, 14, 16],
12: [2, 5, 9],
13: [8, 9, 10, 11, 12, 13, 14, 15],
14: [12, 15],
15: [2, 3, 8, 9, 10, 22],
}
tee_colors = {
4: "red",
0: "green",
3: "white",
2: "blue",
1: "black",
5: "gold"
}