[cleanup] remove useless conditions

This commit is contained in:
kleph 2016-05-12 23:37:02 +02:00
parent 71c95968bc
commit 767789458c

View file

@ -114,19 +114,13 @@ class Room:
def generate_tree():
# init tree
tree = [Leaf(0, 0, 30, 30, 0)]
# tree = [Leaf(0, 0, 10, 10, 0)]
# tree = [Leaf(0, 0, 5, 5, 0)]
# split leaves until none succeed
split_done = True
while split_done:
split_done = False
for l in tree:
if not l.left_leaf and not l.right_leaf:
if l.split():
tree.append(l.left_leaf)
tree.append(l.right_leaf)
split_done = True
# Lists are ordered. Tree will be created and travel from left to right
for l in tree:
if l.split():
tree.append(l.left_leaf)
tree.append(l.right_leaf)
# create rooms from partitions
tree[0].generate_rooms()
@ -166,6 +160,7 @@ def on_draw():
label.draw()
def draw_tree(t):
"""
:param t: each leave of t will be draw()