-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHumanClientController.java
350 lines (309 loc) · 11.2 KB
/
HumanClientController.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
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
import java.awt.*;
import java.io.IOException;
import java.net.ConnectException;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.Arrays;
import static java.lang.Thread.sleep;
public class HumanClientController {
private Socket server;
private HumanPlayerSend send;
private HumanPlayerReceive receive;
private int line;
private HumanClientGUI gui;
private boolean socketConnected;
private int mapWidth;
private boolean mapGridBuilt;
private boolean gameOver;
public HumanClientController() {
init();
}
private void init() {
line = 0;
socketConnected = false;
mapGridBuilt = false;
gameOver = false;
}
public void startConnectGUI() {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new ConnectToServerGUI(HumanClientController.this).createAndShowGUI();
}
});
}
public String attemptConnection(String hostName, String portNumber) {
if (hostName.equals("")) {
return "Enter a valid hostname";
} else if (!isValidPort(portNumber)) {
return "Enter a valid port";
}
try {
server = new Socket(hostName, Integer.parseInt(portNumber));
System.out.println("connected to server");
socketConnected = true;
send = new HumanPlayerSend(server);
receive = new HumanPlayerReceive(server, this);
String serverResponse = receive.readLineFromServer();
switch (serverResponse) {
case "Welcome to DOD":
gameInit();
return null;
case "Port unavailable":
return serverResponse;
default:
return "Unknown error";
}
} catch (UnknownHostException e) {
return "Unknown hostname";
} catch (ConnectException e) {
return "Unable to connect to server";
} catch (IOException e) {
return "Error";
}
}
private boolean isValidPort(String port) {
if (port == null) {
return false;
} else if (
port.equals("") ||
!port.matches("^[0-9]{1,6}+$") ||
Integer.parseInt(port) > 65536
) {
return false;
}
return true;
}
private void gameInit() {
startMainGUI();
new Thread(send).start();
new Thread(receive).start();
writeToServer("LOOK");
writeToServer("HELLO");
writeToServer("USERNAMES");
}
private void startMainGUI() {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
gui = new HumanClientGUI(HumanClientController.this);
gui.createAndShowGUI();
}
});
}
public void exitGame() {
writeToServer("QUIT");
gui.exit();
}
private void writeToServer(String output) {
if (socketConnected && !gameOver)
send.writeToServer(output);
}
public void processLookThreadAction() {
writeToServer("LOOK");
}
public void processChatMessageOutput(String message, String username) {
String output;
if (username == null)
output = "SHOUT ";
else
output = "WHISPER " + username + " ";
output += message;
writeToServer(output);
}
public void processMoveOutput(char direction) {
final char[] directions = {'N', 'E', 'S', 'W'};
if(Arrays.asList(direction).contains(direction)) {
writeToServer("MOVE " + direction);
writeToServer("LOOK");
}
}
public void processUpdateUsernameOutput(String newUsername) {
if (isValidUsername(newUsername)) {
writeToServer("USERNAME " + newUsername);
}
}
public void processPickupOutput() {
writeToServer("PICKUP");
}
public void processServerOutput(String input) {
System.out.println("from server: " + input);
if (processLookInputCommand(input)) {
} else if (processMessageInputCommand(input)) {
} else if (processUsernameUpdateInputCommand(input)) {
} else if (processPlayerUsernameUpdateInputCommand(input)) {
} else if (processNewPlayerInputCommand(input)) {
} else if (processPlayerLeftInputCommand(input)) {
} else if (processUsernamesInputCommand(input)) {
} else if (processHelloInputCommand(input)) {
} else if (processPickupInputCommand(input)) {
} else if (processQuitInputCommand(input)) {
} else if (gameOver) {
gui.addChatMessage(input, Color.red);
} else if (input.equals("FAIL")) {
gui.actionSuccessful(false);
} else if (input.equals("SUCCESS")) {
gui.actionSuccessful(true);
}
}
private boolean processLookInputCommand(String command) {
if (command.matches("^[HBGE.#]+$")) {
if (!mapGridBuilt && line == 0) {
gui.instantiateMapGrid(command.length());
mapWidth = command.length();
}
gui.updateRow(line, command.toCharArray());
if (!mapGridBuilt && line == 4)
mapGridBuilt = true;
line = (line == mapWidth - 1) ? 0 : ++line;
return true;
} else {
return false;
}
}
private boolean processMessageInputCommand(String command) {
String[] words = command.split(" ");
if (words.length < 4) {
return false;
} else if (
(isValidUsername(words[0]) || words[0].equals("YOU")) &&
words[1].equals("(TO") &&
(words[2].equals("YOU):") || words[2].equals("ALL):") || isValidUsername(words[2].replace("):", ""))) &&
!words[3].equals("")
) {
gui.addChatMessage(command);
return true;
} else {
return false;
}
}
private boolean processUsernameUpdateInputCommand(String command) {
String[] words = command.split(" ");
if (words.length == 5) {
if (
words[0].equals("USERNAME:") &&
isValidUsername(words[1]) &&
(words[2] + words[3]).equals("UPDATEDTO:") &&
isValidUsername(words[4])
) {
gui.updateUsername(words[1], words[4]);
gui.addChatMessage(command, Color.blue);
return true;
} else {
return false;
}
} else {
return false;
}
}
private boolean processPlayerUsernameUpdateInputCommand(String command) {
String[] words = command.split(" ");
if (
words.length == 3 &&
command.startsWith("USERNAME CHANGED: ") &&
isValidUsername(words[2])
) {
gui.addChatMessage(command, Color.blue);
return true;
} else if (
words.length == 3 &&
command.startsWith("USERNAME UNCHANGED: ") &&
isValidUsername(words[2])
) {
gui.addChatMessage(command, Color.blue);
return true;
} else if (
words.length == 3 && command.startsWith("INVALID USERNAME: ")) {
gui.addChatMessage(command, Color.blue);
return true;
} else if (command.equals("MAXIMUM USERNAME LENGTH 14")) {
gui.addChatMessage(command, Color.blue);
return true;
} else {
return false;
}
}
private boolean processNewPlayerInputCommand(String command) {
if (command.equals("NEW BOT ADDED!!")) {
gui.addChatMessage(command, Color.red);
return true;
}
String[] words = command.split(" ");
if (words.length == 3) {
if (command.startsWith("NEW PLAYER: ") && isValidUsername(words[2])) {
gui.addUsername(words[2]);
gui.addChatMessage(command, Color.green);
return true;
}
}
return false;
}
private boolean processPlayerLeftInputCommand(String command) {
if (command.equals("A BOT HAS LEFT THE GAME...")) {
gui.addChatMessage(command, Color.red);
return true;
}
String[] words = command.split(" ");
if (command.startsWith("PLAYER EXIT: ")) {
gui.removeUsername(words[2]);
gui.addChatMessage(command.replace("PLAYER EXIT: ", ""), Color.green);
return true;
}
return false;
}
private boolean processUsernamesInputCommand(String command) {
String[] outputLines = command.split("\t");
if (outputLines.length >= 1) {
if (outputLines[0].matches("^[0-9]+ OTHER PLAYERS?+ ACTIVE:$")) {
int numberOfUsernames = Integer.parseInt(outputLines[0].split(" ")[0]);
for (int i = 1; i < outputLines.length; i++) {
String line = outputLines[i];
String username = line.split("-")[1];
gui.addUsername(username);
}
return true;
}
}
return false;
}
private boolean processHelloInputCommand(String command) {
if (command.matches("^GOLD: [0-9]+$")) {
int gold = Integer.parseInt(command.replace("GOLD: ", ""));
gui.updateGoldRequired(gold);
return true;
}
return false;
}
private boolean processPickupInputCommand(String command) {
if (command.matches("^GOLD COINS: [0-9]+$")) {
gui.pickupGold();
gui.actionSuccessful(true);
return true;
} else if (command.equals("There is nothing to pick up...")) {
gui.actionSuccessful(false);
return true;
}
return false;
}
private boolean processQuitInputCommand(String command) {
if (command.equals("Server unexpectedly disconnected.") || command.equals("bye bye")) {
socketConnected = false;
gui.addChatMessage(command, Color.red);
gui.actionSuccessful(false);
gameOver = true;
gui.disconnectGUI();
return true;
}
return false;
}
private boolean isValidUsername(String username) {
if (username.matches("^[a-zA-Z]+[a-zA-Z0-9]*$") ||
username.matches("^PLAYER_[0-9]+$"))
return true;
else
return false;
}
public boolean getGameOver() {
return gameOver;
}
}