-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtetris.py
249 lines (203 loc) · 7.44 KB
/
tetris.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
from types import SimpleNamespace
from dataclasses import dataclass
from random import randrange
from time import time
import numpy as np
from numpy import ndarray as Array
import cv2 as cv
FIELD_WIDTH = 10
FIELD_HEIGHT = 20
DISPLAY_SCALE = 32
DROP_INTERVAL = 1 / 60
LINE_REMOVING_INTERVAL = 1 / 20
ROTATIONS = (
cv.ROTATE_90_COUNTERCLOCKWISE,
cv.ROTATE_180,
cv.ROTATE_90_CLOCKWISE,
)
PIECE_SHAPES = (
np.array([
[1, 1, 1, 1],
]),
np.array([
[1, 1, 1],
[0, 0, 1],
]),
np.array([
[1, 1, 1],
[1, 0, 0],
]),
np.array([
[1, 1, 1],
[0, 1, 0],
]),
np.array([
[1, 1, 0],
[0, 1, 1],
]),
np.array([
[0, 1, 1],
[1, 1, 0],
]),
np.array([
[1, 1],
[1, 1],
]),
)
class Color(SimpleNamespace):
BORDER = 0.4
FROZEN = 0.8
LINE = 1.0
SCORE = 1.0
class Keys(SimpleNamespace):
""" Keyboard keys. """
NONE = {-1}
# Linux: Windows:
LEFT = {ord('a'), 0xFF51, 0x250000} # Left arrow
RIGHT = {ord('d'), 0xFF53, 0x270000} # Right arrow
ROTATE = {ord('w'), 0xFF52, 0x260000} # Up arrow
DROP = {ord('s'), 0xFF54, 0x280000} # Down arrow
EXIT = {0x1B} # Esc
@dataclass(frozen=True)
class Piece:
""" Represents a piece with its position on the field. """
shape_index: int
rotation: int # 0..4, counter-clockwise
x: int
y: int
def get_piece_shape(shape_index: int, rotation: int) -> Array:
""" Returns rotated shape of the piece. """
shape = PIECE_SHAPES[shape_index]
if rotation > 0:
shape = cv.rotate(shape, ROTATIONS[rotation - 1])
return shape
def compose(field: Array, piece: Piece, color: float=1) -> Array:
""" Places the piece onto the field and returns the result. """
piece_shape = get_piece_shape(piece.shape_index, piece.rotation)
start = np.array([piece.y, piece.x])
end = start + piece_shape.shape
composed = field.copy()
composed[start[0]:end[0], start[1]:end[1]] += piece_shape * color
return composed
def is_enough_space(field: Array, piece: Piece) -> bool:
""" Checks whether the piece can be placed onto the field at its position. """
composed = compose(field, piece)
return np.max(composed) <= 1
class Tetris:
fall_interval: float
field: Array
piece: Piece|None
score: int
def __init__(self, fall_interval: float):
self.fall_interval = fall_interval
self.score = 0
# empty field with a border
self.field = np.full((FIELD_HEIGHT + 2, FIELD_WIDTH + 2), Color.BORDER)
self.field[1:FIELD_HEIGHT + 1, 1:FIELD_WIDTH + 1] = 0
self._place_new_piece()
def _place_new_piece(self) -> bool:
""" Creates a new random piece at the top.
Returns `True` if there is space for the new piece,
or `False` otherwise.
"""
shape_index = randrange(len(PIECE_SHAPES))
rotation = randrange(4)
_, piece_width = get_piece_shape(shape_index, rotation).shape
x = FIELD_WIDTH // 2 - (piece_width - 1) // 2
self.piece = Piece(shape_index, rotation, x, 1)
return is_enough_space(self.field, self.piece)
def _move_piece(self, dx: int=0, dy: int=0, rotate: bool=False) -> bool:
""" Moves or rotates the piece if it's possible and returns `True`,
or returns `False` if impossible.
"""
assert self.piece is not None
rotation, x, y = self.piece.rotation, self.piece.x, self.piece.y
if rotate:
height, width = get_piece_shape(self.piece.shape_index, rotation).shape
rotation = (rotation + 1) % 4
shift = (width - 1) // 2 - (height - 1) // 2
dx += shift
dy -= shift
piece = Piece(self.piece.shape_index, rotation, x + dx, max(1, y + dy))
if is_enough_space(self.field, piece):
self.piece = piece
return True
return False
def _freeze_piece(self) -> None:
""" Makes the fallen piece a part of the field. """
assert self.piece is not None
self.field = compose(self.field, self.piece, Color.FROZEN)
self.piece = None
def _remove_full_lines(self) -> None:
""" Finds full lines, highlights them,
then, moves down everything above them.
"""
line_minimums = np.min(self.field[1:-1, 1:-1], axis=1)
full_line_indices = 1 + np.nonzero(line_minimums)[0]
line_count = len(full_line_indices)
if line_count == 0:
return
# highlight full lines
for y in full_line_indices:
self.field[y, 1:-1] = Color.LINE
self._draw_and_wait(LINE_REMOVING_INTERVAL * 2)
self.score += line_count**2
# remove full lines one by one
for y in full_line_indices:
self.field[2:y + 1, 1:-1] = self.field[1:y, 1:-1]
self.field[1, 1:-1] = 0
self._draw_and_wait(LINE_REMOVING_INTERVAL)
def _draw_and_wait(self, interval: float) -> int:
""" Draws a frame.
Waits for the given time interval or a key press.
Returns the pressed key code (or `Key.None` if no key has been pressed).
"""
if self.piece is not None:
composed = compose(self.field, self.piece)
else:
composed = self.field
scaled = cv.resize(composed, None, fx=DISPLAY_SCALE, fy=DISPLAY_SCALE, interpolation=cv.INTER_NEAREST)
# display score
text = f'score: {self.score}'
text_location = (DISPLAY_SCALE, round(DISPLAY_SCALE * 0.8))
text_scale = DISPLAY_SCALE / 32
scaled = cv.putText(scaled, text, text_location, cv.FONT_HERSHEY_SIMPLEX, text_scale, Color.SCORE)
cv.imshow('Tetris', scaled)
return cv.waitKeyEx(max(1, round(interval * 1000)))
def play(self) -> None:
""" Starts the game. """
print(f'Game started (Fall interval: {self.fall_interval} s)')
old_time = time()
interval = self.fall_interval
while(True):
key_code = self._draw_and_wait(interval)
new_time = time()
interval -= new_time - old_time
old_time = new_time
freeze_piece = False
if key_code in Keys.LEFT:
self._move_piece(dx=-1)
elif key_code in Keys.RIGHT:
self._move_piece(dx=1)
elif key_code in Keys.ROTATE:
self._move_piece(rotate=True)
elif key_code in Keys.DROP:
while self._move_piece(dy=1):
self._draw_and_wait(DROP_INTERVAL)
freeze_piece = True
elif key_code in Keys.NONE:
freeze_piece = not self._move_piece(dy=1)
interval = self.fall_interval
elif key_code in Keys.EXIT:
print(f'Game aborted. Your score: {self.score}')
break
if freeze_piece:
self._freeze_piece()
self._remove_full_lines()
if not self._place_new_piece():
print(f'Game over. Your score: {self.score}')
break
old_time = time()
interval = self.fall_interval
if __name__ == '__main__':
Tetris(fall_interval=0.5).play()