-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyConnectFour.java
173 lines (160 loc) · 3.46 KB
/
MyConnectFour.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
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
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class MyConnectFour {
private BufferedReader input;
private char[][] board;
public MyConnectFour(){
board = new char[6][7];
input = new BufferedReader(new InputStreamReader(System.in));
playGame();
}
private void playGame(){
System.out.println("Welcome to Connect 4");
System.out.println("There are 2 players red and yellow");
System.out.println("Player 1 is Red, Player 2 is Yellow");
System.out.println("To play the game type in the number of the column you want to drop you counter in");
System.out.println("A player wins by connecting 4 counters in a row - vertically, horizontally or diagonally");
System.out.println("");
printBoard();
boolean win = false;
while(!win){
// player 1
String userInput = getUserInput();
int move = Integer.parseInt(userInput);
placeCounter('r',move);
boolean hasWon = false;
int count = 0;
// check horizontal
for(int i=0; i<board.length; i++){
for(int j=0; j<board[i].length; j++){
if(board[i][j] == 'r'){
count = count + 1;
if(count > 4){
hasWon = true;
}
}
else{
count = 0;
}
}
}
// check vertical
count = 0;
for(int i=0; i<board[0].length; i++){
for(int j=0; j<board.length; j++){
if(board[j][i] == 'r'){
count = count + 1;
if(count > 4){
hasWon = true;
}
}
else{
count = 0;
}
}
}
printBoard();
if(hasWon){
win = true;
}
else{
//player 2
userInput = getUserInput();
move = Integer.parseInt(userInput);
placeCounter('y',move);
hasWon = false;
count = 0;
// check horizontal
for(int i=0; i<board.length; i++){
for(int j=0; j<board[i].length; j++){
if(board[i][j] == 'y'){
count = count + 1;
if(count >= 4){
hasWon = true;
}
}
else{
}
}
count = 0;
}
// check vertical
count = 0;
for(int i=0; i<board[0].length; i++){
for(int j=0; j<board.length; j++){
if(board[j][i] == 'y'){
count = count + 1;
if(count >= 4){
hasWon = true;
}
}
else{
}
}
count = 0;
}
printBoard();
if(hasWon){
win = true;
}
}
System.out.println("You Have Won!!!");
}
}
private String getUserInput(){
String toReturn = null;
try{
toReturn = input.readLine();
}
catch(Exception e){
}
return toReturn;
}
private void printBoard(){
int i;
for(i=0; i<board.length-1; i++);{
for(int j=0; j<board[i].length-1; j++){
if(board[j][i] == 'r'){
System.out.print("| r ");
}
else if(board[j][i] == 'y'){
System.out.print("| y ");
}
else{
System.out.print("| ");
}
}
System.out.println("|");
}
System.out.println(" 1 2 3 4 5 6 7");
}
private void placeCounter(char player, int position){
boolean placed = false;
if(player == 'r'){
for(int i=board.length-1; i>=0; i++){
if(!placed){
if(board[i][position] == 'y'){
// skip
}
else if(board[i][position] != 'r'){
board[i][position] = 'r';
placed = true;
}
}
}
}
else{
for(int i=board.length-1; i>=0; i--){
if(!placed){
if(board[i][position-1] == 'r'){
// skip
}
else if(board[i][position-1] != 'y'){
board[i][position-1] = 'y';
placed = true;
}
}
}
}
}
}