This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathboard.go
497 lines (456 loc) · 10.8 KB
/
board.go
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
package main
import (
"fmt"
"time"
"github.com/gdamore/tcell"
)
// NewBoard creates a new clear board
func NewBoard() {
board = &Board{}
board.Clear()
}
// ChangeBoardSize changes board size
func ChangeBoardSize(width int, height int) {
if board.width == width && board.height == height {
return
}
newBoard := &Board{width: width, height: height, boardsIndex: board.boardsIndex}
newBoard.colors = make([][]tcell.Color, width)
for i := 0; i < width; i++ {
newBoard.colors[i] = make([]tcell.Color, height)
for j := 0; j < height; j++ {
if i < board.width && j < board.height {
newBoard.colors[i][j] = board.colors[i][j]
} else {
newBoard.colors[i][j] = colorBlank
}
}
}
newBoard.rotation = make([][]int, width)
for i := 0; i < width; i++ {
newBoard.rotation[i] = make([]int, height)
for j := 0; j < height; j++ {
if i < board.width && j < board.height {
newBoard.rotation[i][j] = board.rotation[i][j]
} else {
break
}
}
}
board = newBoard
board.fullLinesY = make([]bool, board.height)
board.previewMino = NewMino()
board.currentMino = NewMino()
}
// Clear clears the board to original state
func (board *Board) Clear() {
board.width = len(boards[board.boardsIndex].colors)
board.height = len(boards[board.boardsIndex].colors[0])
board.colors = make([][]tcell.Color, board.width)
for i := 0; i < board.width; i++ {
board.colors[i] = make([]tcell.Color, board.height)
copy(board.colors[i], boards[board.boardsIndex].colors[i])
}
board.rotation = make([][]int, board.width)
for i := 0; i < board.width; i++ {
board.rotation[i] = make([]int, board.height)
copy(board.rotation[i], boards[board.boardsIndex].rotation[i])
}
board.fullLinesY = make([]bool, board.height)
board.previewMino = NewMino()
board.currentMino = NewMino()
}
// EmptyBoard removes all blocks/colors from the board
func (board *Board) EmptyBoard() {
for i := 0; i < board.width; i++ {
for j := 0; j < board.height; j++ {
board.colors[i][j] = colorBlank
}
}
for i := 0; i < board.width; i++ {
for j := 0; j < board.height; j++ {
board.rotation[i][j] = 0
}
}
}
// PreviousBoard switches to previous board
func (board *Board) PreviousBoard() {
board.boardsIndex--
if board.boardsIndex < 0 {
board.boardsIndex = len(boards) - 1
}
engine.PreviewBoard()
board.Clear()
}
// NextBoard switches to next board
func (board *Board) NextBoard() {
board.boardsIndex++
if board.boardsIndex == len(boards) {
board.boardsIndex = 0
}
engine.PreviewBoard()
board.Clear()
}
// MinoMoveLeft moves mino left
func (board *Board) MinoMoveLeft() {
board.dropDistance = 0
mino := board.currentMino.CloneMoveLeft()
if mino.ValidLocation(false) {
board.currentMino = mino
board.StartLockDelayIfBottom()
}
}
// MinoMoveRight moves mino right
func (board *Board) MinoMoveRight() {
board.dropDistance = 0
mino := board.currentMino.CloneMoveRight()
if mino.ValidLocation(false) {
board.currentMino = mino
board.StartLockDelayIfBottom()
}
}
// MinoRotateRight rotates mino right
func (board *Board) MinoRotateRight() {
board.dropDistance = 0
mino := board.currentMino.CloneRotateRight()
if mino.ValidLocation(false) {
board.currentMino = mino
board.StartLockDelayIfBottom()
return
}
mino.MoveLeft()
if mino.ValidLocation(false) {
board.currentMino = mino
board.StartLockDelayIfBottom()
return
}
mino.MoveRight()
mino.MoveRight()
if mino.ValidLocation(false) {
board.currentMino = mino
board.StartLockDelayIfBottom()
return
}
}
// MinoRotateLeft rotates mino right
func (board *Board) MinoRotateLeft() {
board.dropDistance = 0
mino := board.currentMino.CloneRotateLeft()
if mino.ValidLocation(false) {
board.currentMino = mino
board.StartLockDelayIfBottom()
return
}
mino.MoveLeft()
if mino.ValidLocation(false) {
board.currentMino = mino
board.StartLockDelayIfBottom()
return
}
mino.MoveRight()
mino.MoveRight()
if mino.ValidLocation(false) {
board.currentMino = mino
board.StartLockDelayIfBottom()
return
}
}
// MinoMoveDown moves mino down
func (board *Board) MinoMoveDown() {
mino := board.currentMino.CloneMoveDown()
if mino.ValidLocation(false) {
board.dropDistance = 0
board.currentMino = mino
if !board.StartLockDelayIfBottom() {
engine.ResetTimer(0)
}
return
}
if !board.currentMino.ValidLocation(true) {
engine.GameOver()
return
}
board.nextMino()
}
// MinoDrop dropps mino
func (board *Board) MinoDrop() {
board.dropDistance = 0
mino := board.currentMino.CloneMoveDown()
for mino.ValidLocation(false) {
board.dropDistance++
mino.MoveDown()
}
for i := 0; i < board.dropDistance; i++ {
board.currentMino.MoveDown()
}
if !board.currentMino.ValidLocation(true) {
engine.GameOver()
return
}
if board.dropDistance < 1 {
return
}
if !board.StartLockDelayIfBottom() {
engine.ResetTimer(0)
}
}
// StartLockDelayIfBottom if at bottom, starts lock delay
func (board *Board) StartLockDelayIfBottom() bool {
mino := board.currentMino.CloneMoveDown()
if mino.ValidLocation(false) {
return false
}
engine.ResetTimer(300 * time.Millisecond)
return true
}
// nextMino gets next mino
func (board *Board) nextMino() {
engine.AddScore(board.dropDistance)
board.currentMino.SetOnBoard()
board.deleteCheck()
if !board.previewMino.ValidLocation(false) {
board.previewMino.MoveUp()
if !board.previewMino.ValidLocation(false) {
engine.GameOver()
return
}
}
board.currentMino = board.previewMino
board.previewMino = NewMino()
engine.AiGetBestQueue()
engine.ResetTimer(0)
}
// deleteCheck checks if there are any lines on the board that can be deleted
func (board *Board) deleteCheck() {
lines := board.fullLines()
if len(lines) < 1 {
return
}
view.ShowDeleteAnimation(lines)
for _, line := range lines {
board.deleteLine(line)
}
engine.AddDeleteLines(len(lines))
}
// fullLines returns the line numbers that have full lines
func (board *Board) fullLines() []int {
fullLines := make([]int, 0, 1)
for j := 0; j < board.height; j++ {
if board.isFullLine(j) {
fullLines = append(fullLines, j)
}
}
return fullLines
}
// isFullLine checks if line is full
func (board *Board) isFullLine(j int) bool {
for i := 0; i < board.width; i++ {
if board.colors[i][j] == colorBlank {
return false
}
}
return true
}
// deleteLine deletes the line
func (board *Board) deleteLine(line int) {
for i := 0; i < board.width; i++ {
board.colors[i][line] = colorBlank
}
for j := line; j > 0; j-- {
for i := 0; i < board.width; i++ {
board.colors[i][j] = board.colors[i][j-1]
board.rotation[i][j] = board.rotation[i][j-1]
}
}
for i := 0; i < board.width; i++ {
board.colors[i][0] = colorBlank
}
}
// SetColor sets the color and rotation of board location
func (board *Board) SetColor(x int, y int, color tcell.Color, rotation int) {
board.colors[x][y] = color
if rotation < 0 {
return
}
board.rotation[x][y] = rotation
}
// RotateLeft rotates cell left
func (board *Board) RotateLeft(x int, y int) {
if board.rotation[x][y] == 0 {
board.rotation[x][y] = 3
return
}
board.rotation[x][y]--
}
// RotateRight rotates cell right
func (board *Board) RotateRight(x int, y int) {
if board.rotation[x][y] == 3 {
board.rotation[x][y] = 0
return
}
board.rotation[x][y]++
}
// ValidBlockLocation checks if block location is vaild
func (board *Board) ValidBlockLocation(x int, y int, mustBeOnBoard bool) bool {
if x < 0 || x >= board.width || y >= board.height {
return false
}
if mustBeOnBoard {
if y < 0 {
return false
}
} else {
if y < -2 {
return false
}
}
if y > -1 {
if board.colors[x][y] != colorBlank {
return false
}
}
return true
}
// ValidDisplayLocation checks if vaild display location
func ValidDisplayLocation(x int, y int) bool {
return x >= 0 && x < board.width && y >= 0 && y < board.height
}
// DrawBoard draws the board with help from view
func (board *Board) DrawBoard() {
for i := 0; i < board.width; i++ {
for j := 0; j < board.height; j++ {
if board.colors[i][j] != colorBlank {
view.DrawBlock(i, j, board.colors[i][j], board.rotation[i][j])
}
}
}
}
// DrawPreviewMino draws the preview mino
func (board *Board) DrawPreviewMino() {
board.previewMino.DrawMino(MinoPreview)
}
// DrawCurrentMino draws the current mino
func (board *Board) DrawCurrentMino() {
board.currentMino.DrawMino(MinoCurrent)
}
// DrawDropMino draws the drop mino
func (board *Board) DrawDropMino() {
mino := board.currentMino.CloneMoveDown()
if !mino.ValidLocation(false) {
return
}
for mino.ValidLocation(false) {
mino.MoveDown()
}
mino.MoveUp()
mino.DrawMino(MinoDrop)
}
// DrawCursor draws the edit cursor
func (board *Board) DrawCursor(x int, y int) {
view.DrawCursor(x, y, board.colors[x][y])
}
// printDebugBoard is for printing board in text for debuging
func (board *Board) printDebugBoard() {
for j := 0; j < board.height; j++ {
for i := 0; i < board.width; i++ {
switch board.colors[i][j] {
case colorBlank:
fmt.Print(".")
case colorBlue:
fmt.Print("B")
case colorCyan:
fmt.Print("C")
case colorGreen:
fmt.Print("G")
case colorMagenta:
fmt.Print("M")
case colorRed:
fmt.Print("R")
case colorWhite:
fmt.Print("W")
case colorYellow:
fmt.Print("Y")
default:
fmt.Print("U")
}
}
fmt.Println("")
}
}
// getDebugBoard returns board as string for debuging and testing
func (board *Board) getDebugBoard() []string {
lines := make([]string, board.height)
for j := 0; j < board.height; j++ {
for i := 0; i < board.width; i++ {
switch board.colors[i][j] {
case colorBlank:
lines[j] += "."
case colorBlue:
lines[j] += "B"
case colorCyan:
lines[j] += "C"
case colorGreen:
lines[j] += "G"
case colorMagenta:
lines[j] += "M"
case colorRed:
lines[j] += "R"
case colorWhite:
lines[j] += "W"
case colorYellow:
lines[j] += "Y"
default:
lines[j] += "U"
}
}
}
return lines
}
// getDebugBoardWithMino returns board with mino placed on it
func (board *Board) getDebugBoardWithMino(mino *Mino) []string {
lines := make([]string, board.height)
for j := 0; j < board.height; j++ {
for i := 0; i < board.width; i++ {
switch mino.getMinoColorAtLocation(i, j) {
case colorBlank:
switch board.colors[i][j] {
case colorBlank:
lines[j] += "."
case colorBlue:
lines[j] += "B"
case colorCyan:
lines[j] += "C"
case colorGreen:
lines[j] += "G"
case colorMagenta:
lines[j] += "M"
case colorRed:
lines[j] += "R"
case colorWhite:
lines[j] += "W"
case colorYellow:
lines[j] += "Y"
default:
lines[j] += "U"
}
case colorBlue:
lines[j] += "b"
case colorCyan:
lines[j] += "c"
case colorGreen:
lines[j] += "g"
case colorMagenta:
lines[j] += "m"
case colorRed:
lines[j] += "r"
case colorWhite:
lines[j] += "w"
case colorYellow:
lines[j] += "y"
default:
lines[j] += "u"
}
}
}
return lines
}