-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblocks.py
97 lines (90 loc) · 4.18 KB
/
blocks.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
from block import Block
from position import Position
class LBlock(Block):
def __init__(self):
# initialize the L-shaped block with its specific rotations
super().__init__(id = 1)
# define the block's shape for each rotation state (0 to 3)
self.cells = {
0:[Position(0,2),Position(1,0),Position(1,1),Position(1,2)],
1:[Position(0,1),Position(1,1),Position(2,1),Position(2,2)],
2:[Position(1,0),Position(1,1),Position(1,2),Position(2,0)],
3:[Position(0,0),Position(0,1),Position(1,1),Position(2,1)]
}
# initial position adjustment for the LBlock
self.move(0,3)
class JBlock(Block):
def __init__(self):
# initialize the J-shaped block with its specific rotations
super().__init__(id = 2)
# define the block's shape for each rotation state (0 to 3)
self.cells = {
0:[Position(0,0),Position(1,0),Position(1,1),Position(1,2)],
1:[Position(0,1),Position(0,2),Position(1,1),Position(2,1)],
2:[Position(1,0),Position(1,1),Position(1,2),Position(2,2)],
3:[Position(0,1),Position(1,1),Position(2,0),Position(2,1)]
}
# initial position adjustment for the JBlock
self.move(0, 3)
class IBlock(Block):
def __init__(self):
# initialize the I-shaped block with its specific rotations
super().__init__(id = 3)
# define the block's shape for each rotation state (0 to 3)
self.cells = {
0:[Position(1,0),Position(1,1),Position(1,2),Position(1,3)],
1: [Position(0, 2), Position(1, 2), Position(2, 2), Position(3, 2)],
2: [Position(2, 0), Position(2, 1), Position(2, 2), Position(2, 3)],
3: [Position(0, 1), Position(1, 1), Position(2, 1), Position(3, 1)]
}
# initial position adjustment for the IBlock
self.move(-1, 3)
class OBlock(Block):
def __init__(self):
# initialize the O-shaped block with its specific rotations (only one)
super().__init__(id = 4)
# define the block's shape for the single rotation state
self.cells = {
0:[Position(0,0),Position(0,1),Position(1,0),Position(1,1)]
}
# initial position adjustment for the OBlock
self.move(0, 4)
class SBlock(Block):
def __init__(self):
# initialize the S-shaped block with its specific rotations
super().__init__(id = 5)
# define the block's shape for each rotation state (0 to 3)
self.cells = {
0:[Position(0,1),Position(0,2),Position(1,0),Position(1,1)],
1:[Position(0,1),Position(1,1),Position(1,2),Position(2,2)],
2:[Position(1,1),Position(1,2),Position(2,0),Position(2,1)],
3:[Position(0,0),Position(1,0),Position(1,1),Position(2,1)]
}
# initial position adjustment for the SBlock
self.move(0, 3)
class TBlock(Block):
def __init__(self):
# initialize the T-shaped block with its specific rotations
super().__init__(id = 6)
# define the block's shape for each rotation state (0 to 3)
self.cells = {
0:[Position(0,1),Position(1,0),Position(1,1),Position(1,2)],
1:[Position(0,1),Position(1,1),Position(1,2),Position(2,1)],
2:[Position(1,0),Position(1,1),Position(1,2),Position(2,1)],
3:[Position(0,1),Position(1,0),Position(1,1),Position(2,1)]
}
# initial position adjustment for the TBlock
self.move(0, 3)
class ZBlock(Block):
def __init__(self):
# initialize the Z-shaped block with its specific rotations
super().__init__(id = 7)
# define the block's shape for each rotation state (0 to 3)
self.cells = {
0:[Position(0,0),Position(0,1),Position(1,1),Position(1,2)],
1:[Position(0,2),Position(1,1),Position(1,2),Position(2,1)],
2:[Position(1,0),Position(1,1),Position(2,1),Position(2,2)],
3:[Position(0,1),Position(1,0),Position(1,1),Position(2,0)]
}
# initial position adjustment for the ZBlock
self.move(0, 3)