-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathl_block.py
43 lines (35 loc) · 1.59 KB
/
l_block.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
from tetris_block import TetrisBlock
from turtle import Turtle
# indicating the position of tetris block segments
POSITION_LIST = [(24, 270), (2, 270), (2, 292), (2, 314)]
class LBlock(TetrisBlock):
def __init__(self):
super().__init__()
self.create()
self.set_up()
self.rotate_positions = [
[[-22, -22] , [-22, 0], [0, 0], [22, 0]],
[[-22, 22], [0, 22], [0, 0],[ 0, -22]],
[[22, 22], [22,0], [0, 0], [-22, 0]],
[[22, -22], [0, -22], [0, 0], [0, 22]]
]
def create(self):
"""
This method is to create segment of LBlock"""
for position in POSITION_LIST:
new_segment = Turtle("square")
new_segment.penup()
new_segment.color("yellow")
new_segment.speed("fastest")
new_segment.goto(position)
self.tetris_block_segments.append(new_segment)
def set_up(self):
"""
This method is to assign left, head, front, right segment of LBlock"""
self.front.extend([self.tetris_block_segments[0], self.tetris_block_segments[1]])
self.head.extend([self.tetris_block_segments[0], self.tetris_block_segments[3]])
self.left.extend([self.tetris_block_segments[3], self.tetris_block_segments[2], self.tetris_block_segments[1]])
self.right.extend([self.tetris_block_segments[3], self.tetris_block_segments[2], self.tetris_block_segments[0]])
self.center = self.tetris_block_segments[2]
for segment in self.tetris_block_segments:
segment.setheading(270)