-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathRiskController.java
More file actions
397 lines (306 loc) · 11.4 KB
/
RiskController.java
File metadata and controls
397 lines (306 loc) · 11.4 KB
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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
import java.util.ArrayList;
import java.lang.Integer;
import java.io.File;
import java.io.FileInputStream;
import java.io.DataInputStream;
import java.io.ObjectInputStream;
import java.io.InputStreamReader;
import java.io.ObjectOutputStream;
import java.io.FileOutputStream;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JOptionPane;
import javax.swing.JFileChooser;
import javax.swing.filechooser.FileNameExtensionFilter;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
/**
* This class maps the user's actions in the RiskView to the data and methods in the model.
* @author Ted Mader
* @version Alpha
* @date 5/02/14
**/
public class RiskController implements ActionListener {
private RiskModel model;
private RiskModel loadedModel;
private RiskView view;
private JFileChooser fileChooser;
private ObjectInputStream objectReader;
private PlayerCountDialog playerCountDialog;
private BoardView boardView;
//Constructor
public RiskController(RiskModel model, RiskView view) {
System.out.println("Loaded Risk!");
this.model = model;
this.view = view;
//Add this class' actionListener to riskView's buttons
view.riskViewActionListeners(this);
}
//RiskView's controller
public void actionPerformed(ActionEvent evt) {
String actionEvent = evt.getActionCommand();
if (actionEvent.equals("newGameBtn")) {
System.out.println("Loading PlayerCountDialog...");
//Opens the playerCountDialog
playerCountDialog = new PlayerCountDialog(view, true);
playerCountDialog.addActionListeners(new PlayerCountController(model, playerCountDialog));
playerCountDialog.setVisible(true);
} else if (actionEvent.equals("loadGameBtn")) {
fileChooser = new JFileChooser();
FileNameExtensionFilter filter = new FileNameExtensionFilter("Java-Risk Save Files", "jrs");
fileChooser.setFileFilter(filter);
if (fileChooser.showOpenDialog(view) == JFileChooser.APPROVE_OPTION) {
try {
objectReader = new ObjectInputStream(new FileInputStream(fileChooser.getSelectedFile()));
loadedModel = (RiskModel)objectReader.readObject();
objectReader.close();
boardView = new BoardView(view, true, loadedModel);
boardView.addActionListeners(new BoardViewController(loadedModel, boardView), new RiskListController(loadedModel, boardView));
} catch (IOException e) {
System.out.println(e.getMessage());
} catch (ClassNotFoundException e) {
System.out.println(e.getMessage());
}
}
} else if (actionEvent.equals("quitBtn")) {
model.quitGame();
} else {
System.out.println("Error: " + actionEvent + " actionEvent not found!");
}
}
}
/**
* This class maps the user's actions in the PlayerCountDialog to the data and methods in
* the model.
* @author Ted Mader
* @version Alpha
* @date 5/02/14
**/
class PlayerCountController implements ActionListener {
private RiskModel model;
private PlayerCountDialog view;
private PlayerSettingsDialog playerSettingsDialog;
//Constructor
public PlayerCountController(RiskModel model, PlayerCountDialog view)
{
System.out.println("Loaded PlayerCountController!");
this.model = model;
this.view = view;
}
public void actionPerformed(ActionEvent evt) {
String actionEvent = evt.getActionCommand();
if (actionEvent.equals("threePlayersBtn")) {
model.setPlayerCount(3);
System.out.println("Loading PlayerSettingsDialog...");
playerSettingsDialog = new PlayerSettingsDialog(view, true, model.getPlayerCount());
playerSettingsDialog.addActionListeners(new PlayerSettingsController(model, playerSettingsDialog));
playerSettingsDialog.setVisible(true);
}
else if (actionEvent.equals("fourPlayersBtn")) {
model.setPlayerCount(4);
System.out.println("Loading PlayerSettingsDialog...");
playerSettingsDialog = new PlayerSettingsDialog(view, true, model.getPlayerCount());
playerSettingsDialog.addActionListeners(new PlayerSettingsController(model, playerSettingsDialog));
playerSettingsDialog.setVisible(true);
}
else if (actionEvent.equals("fivePlayersBtn"))
{
model.setPlayerCount(5);
System.out.println("Loading PlayerSettingsDialog...");
playerSettingsDialog = new PlayerSettingsDialog(view, true, model.getPlayerCount());
playerSettingsDialog.addActionListeners(new PlayerSettingsController(model, playerSettingsDialog));
playerSettingsDialog.setVisible(true);
}
else if (actionEvent.equals("sixPlayersBtn"))
{
model.setPlayerCount(6);
System.out.println("Loading PlayerSettingsDialog...");
playerSettingsDialog = new PlayerSettingsDialog(view, true, model.getPlayerCount());
playerSettingsDialog.addActionListeners(new PlayerSettingsController(model, playerSettingsDialog));
playerSettingsDialog.setVisible(true);
}
else if (actionEvent.equals("backBtn"))
{
view.dispose();
}
else
{
System.out.println("Error: " + actionEvent + " actionEvent not found!");
}
}
}
/**
* This class maps the user's actions in the PlayerSettingsDialog to the data and methods in
* the model.
* @author Ted Mader
* @version Alpha
* @date 5/02/14
**/
class PlayerSettingsController implements ActionListener {
private boolean isLoaded;
private ArrayList<String> playerNames;
private ArrayList<String> playerTypes;
private RiskModel model;
private PlayerSettingsDialog view;
private BoardView boardView;
public PlayerSettingsController(RiskModel model, PlayerSettingsDialog view) {
System.out.println("Loaded PlayerSettingsController!");
this.model = model;
this.view = view;
}
public void actionPerformed(ActionEvent evt) {
isLoaded = false;
String actionEvent = evt.getActionCommand();
playerNames = new ArrayList<String>();
playerTypes = new ArrayList<String>();
if (actionEvent.equals("startBtn")) {
System.out.println("Setting up player names and teams...");
playerNames.add(view.getPlayerTextField(1));
playerNames.add(view.getPlayerTextField(2));
playerNames.add(view.getPlayerTextField(3));
playerTypes.add(view.getPlayerComboBox(1));
playerTypes.add(view.getPlayerComboBox(2));
playerTypes.add(view.getPlayerComboBox(3));
//Gets player names based on playerCount
if (model.getPlayerCount() > 3) {
playerNames.add(view.getPlayerTextField(4));
playerTypes.add(view.getPlayerComboBox(4));
}
if (model.getPlayerCount() > 4) {
playerNames.add(view.getPlayerTextField(5));
playerTypes.add(view.getPlayerComboBox(5));
}
if (model.getPlayerCount() > 5) {
playerNames.add(view.getPlayerTextField(6));
playerTypes.add(view.getPlayerComboBox(6));
}
System.out.println("Initializing game...");
//Initializes values for a new game
try {
isLoaded = model.initializeGame(playerNames, playerTypes);
} catch (FileNotFoundException error) {
System.out.println(error.getMessage());
}
//Opens the Risk game board if properly loaded
if (isLoaded == true) {
System.out.println("Game setup complete!\nLoading BoardView...");
boardView = new BoardView(view, true, model);
boardView.addActionListeners(new BoardViewController(model, boardView), new RiskListController(model, boardView));
// boardView.addListSelectionListeners(new BoardViewListSelectionController(model, boardView));
boardView.setVisible(true);
}
} else if (actionEvent.equals("backBtn")) {
view.dispose();
} else {
System.out.println("Error: " + actionEvent + " actionEvent not found!");
}
}
}
/**
* This class maps the user's actions in the BoardView to the data and methods in the model.
* @author Ted Mader
* @version Alpha
* @date 5/02/14
**/
class BoardViewController implements ActionListener {
private RiskModel model;
private BoardView view;
private MenuDialog menuDialog;
public BoardViewController(RiskModel model, BoardView view) {
this.model = model;
this.view = view;
model.startGame();
}
public void actionPerformed(ActionEvent evt) {
String actionEvent = evt.getActionCommand();
if (actionEvent.equals("menuBtn")) {
//System.out.println("User pressed menuButton.");
menuDialog = new MenuDialog(view, true);
menuDialog.addActionListeners(new MenuController(model, menuDialog));
menuDialog.setVisible(true);
} else if (actionEvent.equals("turnInBtn")) {
//System.out.println("User pressed turnInButton.");
model.turnInCards(view.getCardsToRemove());
} else if (actionEvent.equals("reinforceBtn")) {
//System.out.println("User pressed reinforceButton.");view.getSelectedComboBox();
model.reinforce(view.getCountryA().replaceAll("[0-9]", "").replaceAll("\\-", ""));
} else if (actionEvent.equals("attackBtn")) {
//System.out.println("User pressed attackButton.");
model.attack(view.getCountryA().replaceAll("[0-9]", "").replaceAll("\\-", ""), view.getCountryB().replaceAll("[0-9]", "").replaceAll("\\-", ""));
} else if (actionEvent.equals("fortifyBtn")) {
//System.out.println("User pressed fortifyButton.");
model.fortify(view.getCountryA().replaceAll("[0-9]", "").replaceAll("\\-", ""), view.getCountryB().replaceAll("[0-9]", "").replaceAll("\\-", ""));
} else if (actionEvent.equals("endTurnBtn")) {
model.nextPlayer();
} else {
System.out.println("actionEvent not found: " + actionEvent);
}
}
}
/**
* This class maps the user's actions in RiskList objects to the data and methods in the
* model.
* @author Ted Mader
* @version Alpha
* @date 5/02/14
**/
class RiskListController implements ListSelectionListener {
private RiskModel model;
private BoardView view;
public RiskListController(RiskModel model, BoardView view) {
this.model = model;
this.view = view;
}
public void valueChanged(ListSelectionEvent evt) {
if (evt.getValueIsAdjusting() == false) {
if (view.getCountryAIndex() == -1) {
} else {
model.setCountryASelection(view.getCountryA().replaceAll("[0-9]", "").replaceAll("\\-", ""));
}
}
}
}
/**
* This class maps the user's actions in the MenuDialog to the data and methods in the model.
* @author Ted Mader
* @version Alpha
* @date 5/02/14
**/
class MenuController implements ActionListener {
private RiskModel model;
private MenuDialog view;
private JFileChooser fileChooser;
private ObjectOutputStream objectWriter;
private ObjectInputStream objectReader;
private BufferedReader reader;
public MenuController(RiskModel model, MenuDialog view) {
this.model = model;
this.view = view;
}
public void actionPerformed(ActionEvent evt) {
String actionEvent = evt.getActionCommand();
if (actionEvent.equals("returnBtn")) {
view.dispose();
} else if (actionEvent.equals("saveBtn")) {
fileChooser = new JFileChooser();
FileNameExtensionFilter filter = new FileNameExtensionFilter("Java-Risk Save Files", "jrs");
fileChooser.setFileFilter(filter);
if (fileChooser.showSaveDialog(view) == JFileChooser.APPROVE_OPTION) {
try {
objectWriter = new ObjectOutputStream(new FileOutputStream(fileChooser.getSelectedFile()));
objectWriter.writeObject(model);
objectWriter.close();
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
} else if (actionEvent.equals("quitBtn")) {
model.quitGame();
} else {
System.out.println("actionEvent not found: " + actionEvent);
}
}
}