-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpre_random_move.java
217 lines (188 loc) · 3.9 KB
/
pre_random_move.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
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
import java.util.Random;
public class pre_random_move {
public Board AI_first_move(Board board) throws CloneNotSupportedException {
int[][] first_moves = {{3,3}, {3,4}, {4,3}, {4,4}};
Random rand = new Random();
int steps = rand.nextInt(4);
board = board.generateSuccessor('X', first_moves[steps][0], first_moves[steps][1]);
System.out.println("-------- AI -------");
board.printBoard();
System.out.println("AI move: " + ((char)(first_moves[steps][0]+97)) + (first_moves[steps][1]+1));
System.out.println();
return board;
}
public Board AI_second_move(Board board) throws CloneNotSupportedException {
int Xx=0, Xy=0, Ox=0, Oy=0;
int decision_X = 0, decision_Y = 0;
for(int i=0; i<8; i++) {
for(int j=0; j<8; j++) {
if(board.board[i][j] == 'X') {
Xx = i;
Xy = j;
}
if(board.board[i][j] == 'O') {
Ox = i;
Oy = j;
}
}
}
if(Xx==Ox) {
decision_Y = Xy;
if(Xx <= 3) {
decision_X = Xx+1;
}
else {
decision_X = Xx-1;
}
}
if(Xy==Oy) {
decision_X = Xx;
if(Xy <= 3) {
decision_Y = Xy+1;
}
else {
decision_Y = Xy-1;
}
}
// section 1
if(Xx > Ox && Xy > Oy) {
if(Xx == 3 && Xy == 3) {
decision_X = 3;
decision_Y = 4;
}
if(Xx == 3 && Xy == 4) {
decision_X = 4;
decision_Y = 4;
}
if(Xx == 4 && Xy == 3) {
decision_X = 4;
decision_Y = 4;
}
if(Xx == 4 && Xy == 4) {
decision_X = 4;
decision_Y = 3;
}
}
// section 2
if(Xx > Ox && Xy < Oy) {
if(Xx == 3 && Xy == 3) {
decision_X = 4;
decision_Y = 3;
}
if(Xx == 3 && Xy == 4) {
decision_X = 3;
decision_Y = 3;
}
if(Xx == 4 && Xy == 3) {
decision_X = 4;
decision_Y = 4;
}
if(Xx == 4 && Xy == 4) {
decision_X = 4;
decision_Y = 3;
}
}
// section 3
if(Xx < Ox && Xy > Oy) {
if(Xx == 3 && Xy == 3) {
decision_X = 3;
decision_Y = 4;
}
if(Xx == 3 && Xy == 4) {
decision_X = 3;
decision_Y = 3;
}
if(Xx == 4 && Xy == 3) {
decision_X = 4;
decision_Y = 4;
}
if(Xx == 4 && Xy == 4) {
decision_X = 3;
decision_Y = 4;
}
}
// section 4
if(Xx < Ox && Xy < Oy) {
if(Xx == 3 && Xy == 3) {
decision_X = 3;
decision_Y = 4;
}
if(Xx == 3 && Xy == 4) {
decision_X = 3;
decision_Y = 3;
}
if(Xx == 4 && Xy == 3) {
decision_X = 3;
decision_Y = 3;
}
if(Xx == 4 && Xy == 4) {
decision_X = 3;
decision_Y = 4;
}
}
board = board.generateSuccessor('X', decision_X, decision_Y);
System.out.println("-------- AI -------");
board.printBoard();
System.out.println("AI move: " + ((char)(decision_X+97)) + (decision_Y+1));
System.out.println();
return board;
}
public Board AI_connect_move(Board board) throws CloneNotSupportedException {
int Xx=0, Xy=0, Ox=0, Oy=0;
int decision_X = 0, decision_Y = 0;
for(int i=0; i<8; i++) {
for(int j=0; j<8; j++) {
if(board.board[i][j] == 'O') {
Ox = i;
Oy = j;
}
}
}
if(Ox < 4 && Oy < 4) {
if(7-Ox > 7-Oy) {
decision_X = Ox+1;
decision_Y = Oy;
}
else {
decision_X = Ox;
decision_Y = Oy+1;
}
}
else if(Ox < 4 && Oy >= 4) {
if(7-Ox > Oy) {
decision_X = Ox+1;
decision_Y = Oy;
}
else {
decision_X = Ox;
decision_Y = Oy-1;
}
}
else if(Ox >= 4 && Oy < 4) {
if(Ox > 7-Oy) {
decision_X = Ox-1;
decision_Y = Oy;
}
else {
decision_X = Ox;
decision_Y = Oy+1;
}
}
else if(Ox >= 4 && Oy >= 4) {
if(Ox > Oy) {
decision_X = Ox-1;
decision_Y = Oy;
}
else {
decision_X = Ox;
decision_Y = Oy-1;
}
}
board = board.generateSuccessor('X', decision_X, decision_Y);
System.out.println("-------- AI -------");
board.printBoard();
System.out.println("AI move: " + ((char)(decision_X+97)) + (decision_Y+1));
System.out.println();
return board;
}
}