-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSlotMachine.java
387 lines (278 loc) · 10.1 KB
/
SlotMachine.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
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
import java.text.DecimalFormat;
import javax.swing.JOptionPane;
//coded by Jean and Anh
public class SlotMachine {
//format for money ammounts
DecimalFormat df = new DecimalFormat("#,###,###$");
//format for quantity ammounts
DecimalFormat df1 = new DecimalFormat("#,###,###");
private String name;
private int machineBalance;
private int jackpotOdds;
private int jackpotPayout;
private int regularOdds;
private int regularPayouts;
private int numJackpots;
private int numRegs;
public SlotMachine() {
makeSlotMachine();
}
public SlotMachine(String name, int machineBalance, int jackpotOdds, int jackpotPayout, int regularOdds, int regularPayouts, int numJackpots, int numRegs) {
setName(name);
setMachineBalance(machineBalance);
setJackpotOdds(jackpotOdds);
setJackpotPayout(jackpotPayout);
setRegularOdds(regularOdds);
setRegularPayouts(regularPayouts);
setNumJackpots(numJackpots);
setNumRegs(numRegs);
}
public SlotMachine(String name, int machineBalance, int jackpotOdds, int jackpotPayout, int regularOdds, int regularPayouts) {
setName(name);
setMachineBalance(machineBalance);
setJackpotOdds(jackpotOdds);
setJackpotPayout(jackpotPayout);
setRegularOdds(regularOdds);
setRegularPayouts(regularPayouts);
}
public String getName() {
return name;
}
public void setName(String name) {
//capitalize the first letter of name and leave the rest in lower case
name = name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase();
this.name = name;
}
public int getMachineBalance() {
return machineBalance;
}
public void setMachineBalance(int machineBalance) {
String prompt = "Type Here";
//ask machine balance again if user enter a negative number
while(machineBalance <= 0) {
try {//makes sure input is valid
machineBalance = Integer.parseInt(JOptionPane.showInputDialog("Enter a POSITIVE value for Machine balance:",prompt));
if(machineBalance < 1) {
JOptionPane.showMessageDialog(null, "Please enter a Positive integer.");
}
}catch(java.lang.NumberFormatException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid integer");
}
}
this.machineBalance = machineBalance;
}
public int getJackpotOdds() {
return jackpotOdds;
}
public void setJackpotOdds(int jackpotOdds) {
String prompt = "Type Here";
//ask machine balance again if user enter a negative number
while(jackpotOdds < 1) {
try {//makes sure input is valid
jackpotOdds = Integer.parseInt(JOptionPane.showInputDialog("Enter a POSITIVE value for jackpot odds:",prompt));
}catch(java.lang.NumberFormatException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid integer");
}
}
this.jackpotOdds = jackpotOdds;
}
public int getJackpotPayout() {
return jackpotPayout;
}
public void setJackpotPayout(int jackpotPayout) {
String prompt = "Type Here";
while(jackpotPayout < 1) {
try {//makes sure input is valid
jackpotPayout = Integer.parseInt(JOptionPane.showInputDialog("Enter a POSITIVE value for jackpot payout:",prompt));
}catch(java.lang.NumberFormatException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid integer");
}
}
this.jackpotPayout = jackpotPayout;
}
public int getRegularOdds() {
return regularOdds;
}
public void setRegularOdds(int regularOdds) {
String prompt = "Type Here";
while(regularOdds < 1) {
try {//makes sure input is valid
regularOdds = Integer.parseInt(JOptionPane.showInputDialog("Enter a POSITIVE value for regular odds:",prompt));
}catch(java.lang.NumberFormatException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid integer");
}
}
this.regularOdds = regularOdds;
}
public int getRegularPayouts() {
return regularPayouts;
}
public void setRegularPayouts(int regularPayouts) {
String prompt = "Type Here";
while(regularPayouts < 1) {
try {//makes sure input is valid
regularPayouts = Integer.parseInt(JOptionPane.showInputDialog("Enter a POSITIVE value for regular payout:",prompt));
}catch(java.lang.NumberFormatException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid integer");
}
}
this.regularPayouts = regularPayouts;
}
public int getNumJackpots() {
return numJackpots;
}
public void setNumJackpots(int numJackpots) {
this.numJackpots = numJackpots;
}
public int getNumRegs() {
return numRegs;
}
public void setNumRegs(int numRegs) {
this.numRegs = numRegs;
}
public String toString() {
String message = "";
message += "Slot Machine's name: "+name+"\n";
message += "Slot Machine's Balance: "+df.format(machineBalance)+"\n";
message += "Slot Machine's Jackpot Odds: 1 in "+df1.format(jackpotOdds)+"\n";
message += "Slot Machine's Jackpot Payout: "+df.format(jackpotPayout)+"\n";
message += "Slot Machine's Regular Odds: 1 in "+df1.format(regularOdds)+"\n";
message += "Slot Machine's Regular Payout: "+df.format(regularPayouts)+"\n";
return message;
}
public void makeSlotMachine() {
//validation is not neccesary for name
name = validateName(name);
setName(name);
//enter valid machine balance
machineBalance = validateMachineBalance(machineBalance);
setMachineBalance(machineBalance);
//enter valid jackpot odds value
jackpotOdds = validateJackpotOdds(jackpotOdds);
setJackpotOdds(jackpotOdds);
//enter valid jackpot payout value
jackpotPayout = validateJackpotPayout(jackpotPayout);
setJackpotPayout(jackpotPayout);
//enter valid regular odds value
regularOdds = validateRegularOdds(regularOdds);
setRegularOdds(regularOdds);
//enter valid regular payout value
regularPayouts = validateRegularPayout(regularPayouts);
setRegularPayouts(regularPayouts);
}//end of makeSlotMachine
//checks every char in a string with the regex expression and makes sure all of them are alphanumeric characters
public static boolean isStringOnlyAlphanumeric(String name) {
return ((!name.equals("")) && (name != null) && (name.matches("^[a-zA-Z0-9]*$")));
}
//make sure the name of the slot machine is alphanumeric
public String validateName(String name) {
String propmt = "Type here";
String message = "Enter the name of the Slot Machine:";
boolean isOnlyAlphanumeric;
boolean error = false;
do {
try {
name = JOptionPane.showInputDialog(message, propmt);
//checks for only alphanumeric values
isOnlyAlphanumeric = isStringOnlyAlphanumeric(name);
//if only alphanumeric is entered, move on if not let the user know
if(isOnlyAlphanumeric == false) {
JOptionPane.showMessageDialog(null, "Please enter a name that contains only letters and numbers.");
error = true;
}
else {
error = false;
}
}catch(java.lang.NullPointerException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid selection");
error = true;
}
}while(error == true);
return name;
}
//validate machine balance
public int validateMachineBalance(int machineBalance) {
String propmt = "Type here";
String message = "Enter the money balance of the Slot Machine:";
boolean error = false;
//handle format mismatch exception
do {
try {
machineBalance = Integer.parseInt(JOptionPane.showInputDialog(message, propmt));
error = false;
}catch(java.lang.NumberFormatException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid integer.");
error = true;
}
}while(error == true);
return machineBalance;
}
//validate jackpot odds
public int validateJackpotOdds(int jackpotOdds) {
String propmt = "Type here";
String message = "Enter the jackpot Odds of the Slot Machine:";
boolean error = false;
do {
//handle format mismatch exception
try {
jackpotOdds = Integer.parseInt(JOptionPane.showInputDialog(message, propmt));
error = false;
}catch(java.lang.NumberFormatException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid integer.");
error = true;
}
}while(error == true);
return jackpotOdds;
}
//validate jackpot payouts
public int validateJackpotPayout(int jackpotPayout) {
String propmt = "Type here";
String message = "Enter the jackpot payout of the Slot Machine:";
boolean error = false;
do {
//handle format mismatch exception
try {
jackpotPayout = Integer.parseInt(JOptionPane.showInputDialog(message, propmt));
error = false;
}catch(java.lang.NumberFormatException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid integer.");
error = true;
}
}while(error == true);
return jackpotPayout;
}
//validate regular odds
public int validateRegularOdds(int regularOdds) {
String propmt = "Type here";
String message = "Enter the regular Odds of the Slot Machine:";
boolean error = false;
do {
//handle format mismatch exception
try {
regularOdds = Integer.parseInt(JOptionPane.showInputDialog(message, propmt));
error = false;
}catch(java.lang.NumberFormatException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid integer.");
error = true;
}
}while(error == true);
return regularOdds;
}
//validate regular payouts
public int validateRegularPayout(int regularPayout) {
String propmt = "Type here";
String message = "Enter the regular payout of the Slot Machine:";
boolean error = false;
do {
//handle format mismatch exception
try {
regularPayout = Integer.parseInt(JOptionPane.showInputDialog(message, propmt));
error = false;
}catch(java.lang.NumberFormatException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid integer.");
error = true;
}
}while(error == true);
return regularPayout;
}
}//end of SlotMachine