-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlsystem.py
255 lines (207 loc) · 5.71 KB
/
lsystem.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
import turtle
import time
import random
import math
from collections import defaultdict
seed = time.time()
tropism_angle = 0
tropism_amount = 0
angle_random_variation = 0
length_random_variation = 0
bud_symbols = []
default_pen_size = 2
line_length = 10
start_pos = (0, -380)
sub_chance = 1.0
def get_map(rules, char):
if char in rules and random.random() < sub_chance:
return rules[char]
else:
return char
def get_symbols(rules, axiom, iterations):
random.seed(seed)
symbols = axiom
for i in range(iterations):
symbols = "".join(get_map(rules, char) for char in symbols)
return symbols
def run(lindenmayer, symbols, dist, angle):
random.seed(seed)
stack = []
for char in symbols:
if char == "[":
stack.append((lindenmayer.heading(), lindenmayer.pos()))
elif char == "]":
(h, p) = stack.pop()
should_hide = lindenmayer.isvisible()
lindenmayer.hideturtle()
lindenmayer.penup()
lindenmayer.setheading(h)
lindenmayer.setpos(p)
lindenmayer.pendown()
if should_hide:
lindenmayer.showturtle()
elif char in "ABCDEFGHIJKLMNOPQRSTUVWXYZ":
lindenmayer.forward(dist)
if length_random_variation > 0:
lindenmayer.forward(random.gauss(dist, length_random_variation))
elif char == "+":
lindenmayer.right(angle)
elif char == "-":
lindenmayer.left(angle)
if char in bud_symbols:
lindenmayer.color(1, 1, 1)
lindenmayer.pensize(7)
lindenmayer.fd(1)
lindenmayer.pensize(default_pen_size)
lindenmayer.color(0.3, 0.5, 0.2)
# random variation
if angle_random_variation > 0:
lindenmayer.right(random.gauss(0, angle * angle_random_variation))
# tropism
hd = lindenmayer.heading()
if hd > 180:
hd = 180 - hd
tropism_delta = hd - tropism_angle
lindenmayer.right(tropism_delta * tropism_amount)
print("Available L-systems:")
for tree in ["1) Fern", "2) Binary Tree", "3) Cow Parsley (default)", "4) Hilbert Curve", "5) George bush"]:
print(" ↳", tree)
pickedSystem = input("\nWhich of the above? > ").lower()
# fern
if pickedSystem in ["1", "fern"]:
rules = {
"X": "Y+[[X]-X]-Y[-YX]+X",
"Y": "YY"
}
axiom = "X"
angle = 20
# binary tree
elif pickedSystem in ["2", "binary", "tree", "binary tree"]:
rules = {
"X": "XX",
"Y": "X[-Y][+Y]"
}
axiom = "Y"
angle = 30
line_length = 30
default_pen_size = 5
tropism_angle = 60
tropism_amount = 0.05
angle_random_variation = 0.05
length_random_variation = 3
# cow parsley
elif pickedSystem in ["3", "cow parsley", "cow", "parsley"]:
rules = {
# base growth and flowers
"F": "XY[++G][--G][G]",
"G": "XX[++G][--G][G]",
# leave shoot timing
"X": "XX",
"Y": "YZ",
"Z": "[++++L]X[----L]X",
# leaves
"L": "MM[+++L][---L]L",
"M": "MMM"
}
axiom = "F"
angle = 20
line_length = 2
tropism_angle = 70
tropism_amount = 0.01
angle_random_variation = 0.07
default_pen_size = 2
length_random_variation = 2
bud_symbols = "FG"
start_pos = (-100, -380)
# hilbert curve
elif pickedSystem in ["4", "hilbert curve", "hilbert", "curve"]:
rules = {
"a": "+bX-aXa-Xb+",
"b": "-aX+bXb+Xa-"
}
axiom = "a"
angle = 90
start_pos = (-350, -350)
default_pen_size = 2
line_length = 11
# George bush
elif pickedSystem in ["5", "george bush", "george", "bush"]:
rules = {
"X": "XX+[+X-X-X]-[-X+X+X]"
}
axiom = "X"
angle = 20
angle_random_variation = 0.07
default_pen_size = 1
line_length = 8
length_random_variation = 4
tropism_angle = 120
tropism_amount = 0.005
### Default, feel free to customise to make your own :) ├-------------------------------------
else:
print("running default")
rules = {
# base growth and flowers
"F": "XY[++G][--G][G]",
"G": "XX[++G][--G][G]",
# leave shoot timing
"X": "XX",
"Y": "YZ",
"Z": "[++++L]X[----L]X",
# leaves
"L": "MM[+++L][---L]L",
"M": "MMM"
}
axiom = "F"
angle = 20
line_length = 2
tropism_angle = 70
tropism_amount = 0.01
angle_random_variation = 0.07
default_pen_size = 2
length_random_variation = 2
bud_symbols = "FG"
start_pos = (-100, -380)
### the actual code ├-------------------------------------------------------------------------
print()
symbols = axiom
win = turtle.Screen()
win.title("L-Systems")
win.setup(800, 800)
win.bgcolor(0.9, 0.83, 0.7)
lindenmayer = turtle.Turtle()
lindenmayer.color(0.3, 0.5, 0.2)
lindenmayer.pensize(default_pen_size)
def fast_mode():
global win, lindenmayer
print("Fast mode")
win.tracer(0, 0)
lindenmayer.hideturtle()
lindenmayer.speed("fastest")
def slow_mode():
global win, lindenmayer
print("Slow mode")
win.tracer(1, 25)
lindenmayer.showturtle()
lindenmayer.turtlesize(2)
lindenmayer.speed("slow")
def iterate():
global symbols
lindenmayer.clear()
lindenmayer.penup()
lindenmayer.goto(start_pos)
lindenmayer.setheading(90)
lindenmayer.pendown()
run(lindenmayer, symbols, line_length, angle)
win.update()
symbols = get_symbols(rules, symbols, 1)
fast_mode()
iterate()
print("ENTER to advance")
print("UP for fast mode")
print("DOWN for slow mode")
win.onkey(iterate, "Return")
win.onkey(fast_mode, "Up")
win.onkey(slow_mode, "Down")
win.listen()
win.mainloop()