-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboard.rb
executable file
·59 lines (49 loc) · 1.24 KB
/
board.rb
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
class ConnectFourBoard
HEIGHT = 6
WIDTH = 7
DIRECTIONS = [[-1,1],[0,1],[1,1],
[-1,0],[1,0],
[-1,-1],[0,-1],[1,-1]]
def initialize
# 2D array: each array is a column
@board = Array.new(WIDTH) { Array.new() {nil}}
end
def place(piece, col_num)
@board[col_num].push(piece)
@last_play = [piece, @board[col_num].length - 1, col_num]
end
def to_s
get_rows.map do |row|
row.map {|col| col ? col : " " }.join(" ").reverse
end.join("\n").reverse
end
def win?
piece, row, col = @last_play
DIRECTIONS.each do |col_dir, row_dir|
return true if check_direction(piece, col, row, col_dir, row_dir)
end
false
end
def check_direction(piece, col, row, col_dir, row_dir)
3.times do
col += col_dir
row += row_dir
return false if out_of_bounds?(row, col) || @board[col][row] != piece
end
true
end
def out_of_bounds?(row, col)
row < 0 || row >= HEIGHT || col < 0 || col >= WIDTH
end
def get_rows
(0..HEIGHT-1).map do |row|
@board.map { |col| col[row] ? col[row] : nil }
end
end
def col_full?(col)
@board[col].length >= HEIGHT
end
def board_full?
@board.all? { |col| col.length >= HEIGHT }
end
end