-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBlock.swift
355 lines (293 loc) · 9.73 KB
/
Block.swift
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
//
// Block.swift
// Tetris Engine
//
// Created by Martin Kiss on 17 Jan 2017.
// https://github.com/Tricertops/TetrisEngine
//
// The MIT License (MIT)
// Copyright © 2017 Martin Kiss
//
import Foundation
public struct Block {
public enum Shape: String {
case O
case I
case S
case Z
case L
case J
case T
}
public let shape: Shape
public enum Orientation: String {
case north = "N"
case east = "E"
case west = "W"
case south = "S"
}
public internal(set) var orientation: Orientation = .north
public internal(set) var anchor: Position = Position(x: 0, y: 0)
public internal(set) var relativePositions: [Position] = []
public var absolutePositions: [Position] {
return relativePositions.map {
return Position(x: $0.x + anchor.x,
y: $0.y + anchor.y)
}
}
public var rectangle: (x: Int, y: Int, width: Int, height: Int) {
return calculateRectangle()
}
public init (shape: Shape = .T, orientation: Orientation = .north) {
self.shape = shape
self.orientation = orientation
let indices = Block.matrixIndices(shape: shape, orientation: orientation)
relativePositions = indices.map(Position.init(matrixIndex:))
}
var cell: Cell = .empty
}
extension Block {
func calculateRectangle() -> (x: Int, y: Int, width: Int, height: Int) {
var top = 0
var left = 0
var right = 0
var bottom = 0
for position in relativePositions {
if top < position.y { top = position.y }
if left > position.x { left = position.x }
if right < position.x { right = position.x }
if bottom > position.y { bottom = position.y }
}
return (x: left,
y: bottom,
width: right - left + 1,
height: top - bottom + 1)
}
mutating func rotate(clockwise: Bool) {
let newOrientation = (clockwise ? orientation.clockwise : orientation.counterClockwise)
let indices = Block.matrixIndices(shape: shape, orientation: newOrientation)
relativePositions = indices.map(Position.init(matrixIndex:))
}
func placed(above: Int, in board: Board) -> Block {
var block = self
let middle = Int(floor(Double(board.width) / 2))
block.setInitialAnchor(above: above, middle: middle)
block.makeFalling()
return block
}
mutating func setInitialAnchor(above: Int, middle: Int) {
var bottom = 0
var left = 0
var right = 0
for position in relativePositions {
if bottom > position.y { bottom = position.y }
if left > position.x { left = position.x }
if right < position.x { right = position.x }
}
let width = right - left + 1
var centering = 0
if width == 2 && left == 0 { centering = -1 }
if width == 4 { centering = -1 }
anchor = Position(
x: middle + centering,
y: above - bottom)
}
func canFall(in board: Board) -> Bool {
return isFalling && canBePlaced(in: board) { $0.below }
}
func canBePlaced(in board: Board, using: (Position) -> Position = {$0}) -> Bool {
for position in absolutePositions {
if board.cell(at: using(position)).isFree.not {
return no
}
}
return yes
}
mutating func fall() {
anchor = anchor.below
}
mutating func makeFalling() {
cell = .falling(shape: shape)
}
mutating func makeFrozen() {
cell = .frozen(shape: shape)
}
var isFalling: Bool {
switch cell {
case .falling: return yes
default: return no
}
}
func canMoveLeft(in board: Board) -> Bool {
return isFalling && canBePlaced(in: board) { $0.left }
}
mutating func moveLeft() {
anchor = anchor.left
}
func canMoveRight(in board: Board) -> Bool {
return isFalling && canBePlaced(in: board) { $0.right }
}
mutating func moveRight() {
anchor = anchor.right
}
mutating func rotate(in board: Board) -> Bool {
var rotated = self
rotated.orientation = orientation.clockwise
let indices = Block.matrixIndices(shape: rotated.shape, orientation: rotated.orientation)
rotated.relativePositions = indices.map(Position.init(matrixIndex:))
let canBeRotated = rotated.attemptToFit(in: board)
if canBeRotated {
self = rotated
}
return canBeRotated
}
mutating func attemptToFit(in board: Board) -> Bool {
if canBePlaced(in: board) {
return yes
}
if canMoveLeft(in: board) {
moveLeft()
return yes
}
else if canMoveRight(in: board) {
moveRight()
return yes
}
if shape != .I {
return no
}
// “I” shape is so long it makes sens to move by 2 cells.
if orientation == .east || orientation == .west {
moveLeft()
if canMoveLeft(in: board) {
moveLeft()
return yes
}
}
return no
}
}
extension Block: Serializable {
typealias Representation = [String: Any]
func serialize() -> Representation {
var dict: [String: Any] = [:]
dict["shape"] = shape.serialize()
dict["orientation"] = orientation.serialize()
dict["anchor"] = anchor.serialize()
dict["relativePositions"] = relativePositions.map { $0.serialize() }
dict["cell"] = cell.serialize()
return dict
}
static func deserialize(_ dict: Representation) -> Block? {
guard let shape = Shape.deserialize(dict["shape"]) else { return nil }
guard let orientation = Orientation.deserialize(dict["orientation"]) else { return nil }
guard let anchor = Position.deserialize(dict["anchor"]) else { return nil }
guard let cell = Cell.deserialize(dict["cell"]) else { return nil }
guard let positionStrings = dict["relativePositions"] as? [[Int]] else { return nil }
var block = Block(shape: shape, orientation: orientation)
block.anchor = anchor
block.cell = cell
var positions: [Position] = []
for s in positionStrings {
guard let position = Position.deserialize(s) else { return nil }
positions.append(position)
}
block.relativePositions = positions
return block
}
}
extension Block.Shape: Serializable {
public static let all: [Block.Shape] = [.O, .I, .S, .Z, .L, .J, .T]
typealias Representation = String
func serialize() -> String {
return rawValue
}
static func deserialize(_ string: String) -> Block.Shape? {
return Block.Shape(rawValue: string.uppercased())
}
}
extension Block.Orientation: Serializable {
public static let all: [Block.Orientation] = [.north, .east, .west, .south]
public var clockwise: Block.Orientation {
switch self {
case .north: return .east
case .east: return .south
case .south: return .west
case .west: return .north
}
}
public var counterClockwise: Block.Orientation {
switch self {
case .north: return .west
case .west: return .south
case .south: return .east
case .east: return .north
}
}
typealias Representation = String
func serialize() -> String {
return rawValue
}
static func deserialize(_ string: String) -> Block.Orientation? {
return Block.Orientation(rawValue: string.uppercased())
}
}
extension Position {
init(matrixIndex: Int) {
let x = matrixIndex / 10
let y = matrixIndex % 10
self.init(x: x - Block.relativeAnchor, y: y - Block.relativeAnchor)
}
}
extension Block {
// Matrix:
//
// 13
// 02 12 22
// 01 11 21 31
// 00 10 20
//
// 11 is anchor point
static let relativeAnchor = 1
static func matrixIndices(shape: Shape, orientation: Orientation) -> [Int] {
switch shape {
case .O: return [10,(11),01,00,]
case .I:
switch orientation {
case .north, .south: return [10,(11),12,13]
case .west, .east: return [01,(11),21,31]
}
case .S:
switch orientation {
case .north, .south: return [21,(11),10,00]
case .west, .east: return [10,(11),01,02]
}
case .Z:
switch orientation {
case .north, .south: return [01,(11),10,20]
case .west, .east: return [12,(11),01,00]
}
case .L:
switch orientation {
case .north: return [12,(11),10,20]
case .west: return [01,(11),21,22]
case .south: return [10,(11),12,02]
case .east: return [21,(11),01,00]
}
case .J:
switch orientation {
case .north: return [12,(11),10,00]
case .west: return [01,(11),21,20]
case .south: return [10,(11),12,22]
case .east: return [21,(11),01,02]
}
case .T:
switch orientation {
case .north: return [01,(11),21,10]
case .west: return [10,(11),12,21]
case .south: return [01,(11),21,12]
case .east: return [10,(11),12,01]
}
}
}
}