-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbricks.py
49 lines (38 loc) · 1.42 KB
/
bricks.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
from turtle import Turtle
import random
COLOR_LIST = ['light blue', 'royal blue', 'light steel blue', 'steel blue',
'light cyan', 'light sky blue', 'violet', 'salmon', 'tomato',
'sandy brown', 'purple', 'deep pink', 'medium sea green', 'khaki']
weights = [1, 2, 1, 1, 3, 2, 1, 4, 1, 3, 1, 1, 1, 4, 1, 3, 2, 2, 1, 2, 1, 2, 1, 2, 1]
class Brick(Turtle):
def __init__(self, x_cor, y_cor):
super().__init__()
self.penup()
self.shape('square')
self.shapesize(stretch_wid=1.5, stretch_len=3)
self.quantity = random.choice(weights)
self.color(random.choice(COLOR_LIST))
self.goto(x=x_cor, y=y_cor)
# Defining borders of the brick
self.left_wall = self.xcor() - 30
self.right_wall = self.xcor() + 30
self.upper_wall = self.ycor() + 15
self.bottom_wall = self.ycor() - 15
def brick_reset(self):
self.clear()
class Bricks:
def __init__(self):
self.y_start = 0
self.y_end = 200
self.bricks = []
self.create_all_lanes()
def create_lane(self, y_cor):
for i in range(-570, 570, 63):
brick = Brick(i, y_cor)
self.bricks.append(brick)
def create_all_lanes(self):
for i in range(self.y_start, self.y_end, 33):
self.create_lane(i)
def bricks_reset(self):
for brick in self.bricks:
brick.brick_reset()