-
Notifications
You must be signed in to change notification settings - Fork 0
/
Board.java
137 lines (127 loc) · 2.53 KB
/
Board.java
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
public class Board {
String[][] board = new String[6][7];
public Board() {
for (int i = 0; i < board.length; i++) {
for (int j = 0; j < board[i].length; j++) {
board[i][j] = "+";
}
}
}
public boolean select(int col, String player) {
for (int i = board.length - 1; i >= 0; i--) {
if (board[i][col].equals("+")) {
board[i][col] = player;
return true;
}
}
return false;
}
public boolean isWin(String player) {
for (int i = 0; i < board.length; i++) {
int count = 0;
for (int j = 0; j < board[i].length; j++) {
if (board[i][j].equals(player)) {
count++;
}
else {
count = 0;
}
if (count == 4) {
return true;
}
}
}
for (int i = 0; i < board[0].length; i++) {
int count = 0;
for (int j = 0; j < board.length; j++) {
if (board[j][i].equals(player)) {
count++;
}
else {
count = 0;
}
if (count == 4) {
return true;
}
}
}
for (int i = 0; i < 4; i++) {
int count = 0;
for (int j = 0; j < board.length-i+1; j++) {
if (!(i == 0 && j == 6)) {
if (board[j][j+i].equals(player)) {
count++;
}
else {
count = 0;
}
if (count == 4) {
return true;
}
}
}
}
for (int i = 0; i < 2; i++) {
int count = 0;
for (int j = 0; j < board.length-i; j++) {
if (!(i == 0 && j == 5)) {
if (board[j+1][j].equals(player)) {
count++;
}
else {
count = 0;
}
if (count == 4) {
return true;
}
}
}
}
for (int i = 0; i < 4; i++) {
int count = 0;
for (int j = 0; j < board.length-i+1; j++) {
if (!(i == 0 && j==6)) {
if (board[board.length-1-j][j+i].equals(player)) {
count++;
}
else {
count = 0;
}
if (count == 4) {
return true;
}
}
}
}
for (int i = 0; i < 3; i++) {
int count = 0;
for (int j = 0; j < board.length-i; j++) {
if (board[board.length-1-j-i][j].equals(player)) {
count++;
}
else {
count = 0;
}
if (count == 4) {
return true;
}
}
}
return false;
}
public String toString() {
String phrase = "";
for (int i = 0; i < board.length+1; i++) {
for (int j = 0; j < board[0].length; j++) {
if (i == board.length) {
phrase += " " + j;
}
else {
phrase += " " + board[i][j];
}
}
phrase += "\n";
}
return phrase;
}
}