-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSlotMachineTwoController.java
More file actions
671 lines (489 loc) · 17.3 KB
/
SlotMachineTwoController.java
File metadata and controls
671 lines (489 loc) · 17.3 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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package slotmachinetwo;
import javafx.application.Application;
import javafx.fxml.FXML;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.control.Button;
import javafx.scene.control.TextField;
import javafx.scene.control.Label;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.HBox;
import javafx.scene.text.Font;
import javafx.scene.Scene;
import java.util.Random;
import javafx.scene.control.Separator;
import javafx.scene.shape.Rectangle;
import javafx.scene.media.MediaPlayer;
import javafx.scene.media.Media;
import javafx.scene.paint.Color;
import javax.swing.JOptionPane;
import java.util.*;
public class SlotMachineTwoController {
@FXML
private Button buttonBet5;
@FXML
private Button buttonDeposit;
@FXML
private TextField textFieldTotalBets;
@FXML
private Label labelBet;
@FXML
private Button buttonSpin;
@FXML
private Label labelYourBalance;
@FXML
private Button buttonMaxBet;
@FXML
private AnchorPane anchorPane1;
@FXML
private Label labelMain;
@FXML
private Rectangle rectangle01;
@FXML
private Button buttonBet500;
@FXML
private Button buttonBet100;
@FXML
private Button buttonBet50;
@FXML
private Button buttonBet10;
@FXML
private TextField textFieldDeposit;
@FXML
private ImageView imageViewRight;
@FXML
private Label labelTotalWins;
@FXML
private Label labelDeposit;
@FXML
private Label labelYouWon;
@FXML
private TextField textFieldBalance;
@FXML
private ImageView imageViewCenterRight;
@FXML
private TextField textFieldTotalLosses;
@FXML
private TextField textFieldBet;
@FXML
private Button buttonBet2X;
@FXML
private ImageView imageViewCenterLeft;
@FXML
private Label labelTotalLosses;
@FXML
private Button buttonCashOut;
@FXML
private Separator separator03;
@FXML
private TextField textFieldTotalWins;
@FXML
private ImageView imageViewLeft;
@FXML
private Font x1;
@FXML
private HBox hboxMain;
@FXML
private TextField textFieldYouWon;
@FXML
private Button buttonQuit;
@FXML
private Separator separator01;
@FXML
private Label labelTotalBets;
@FXML
private Button buttonReset;
private final int ROWS = 1;
private final int COLS = 3;
private final int SIZE = 15;
private final int ZERO = 0;
private final int DOUBLE = 2;
private final int TRIPLE = 3;
private final int FOUR = 4;
private final int MAXBET = 1000;
private int fruit1;
private int fruit2;
private int fruit3;
private int fruit4;
private Image[]fruitImage;
private Image blankImage;
private int amountBet;
private int amountWon;
private int amountTotalWins;
private int amountTotalLoss;
private int amountDeposit;
private int amountTotalDeposit;
private int amountBalance;
private int amountTotalBets;
private int buttonBet;
private int customButtonBet;
private boolean validBet=true;
private boolean validDeposit=true;
private String str1 = new String("Welcome to Slot Machine Two");
private String str2 = new String("YOU WON!!");
private String str3 = new String("Sorry, You lost");
public void initialize()
{
//Console message
System.out.println("Slot Machine initialization");
//label
labelMain.setText(str1);
//image
blankImage = new Image("file:C:\\SlotMachineOne\\img\\blank.jpg");
//spin images
fruitImage = new Image[SIZE];
fruitImage[0]=new Image("file:C:\\SlotMachineOne\\img\\bigwatermelon.jpg");
fruitImage[1]=new Image("file:C:\\SlotMachineOne\\img\\blackberries.jpg");
fruitImage[2]=new Image("file:C:\\SlotMachineOne\\img\\classiccherries.jpg");
fruitImage[3]=new Image("file:C:\\SlotMachineOne\\img\\lychee.jpg");
fruitImage[4]=new Image("file:C:\\SlotMachineOne\\img\\peach.jpg");
fruitImage[5]=new Image("file:C:\\SlotMachineOne\\img\\orangeberries.jpg");
fruitImage[6]=new Image("file:C:\\SlotMachineOne\\img\\pomegranate.jpg");
fruitImage[7]=new Image("file:C:\\SlotMachineOne\\img\\purplegrapes.jpg");
fruitImage[8]=new Image("file:C:\\SlotMachineOne\\img\\blueberries.jpg");
fruitImage[9]=new Image("file:C:\\SlotMachineOne\\img\\strawberries.jpg");
fruitImage[10]=new Image("file:C:\\SlotMachineOne\\img\\redgrapes.jpg");
fruitImage[11]=new Image("file:C:\\SlotMachineOne\\img\\redcherries.jpg");
fruitImage[12]=new Image("file:C:\\SlotMachineOne\\img\\supercherries.jpg");
fruitImage[13]=new Image("file:C:\\SlotMachineOne\\img\\superberries.jpg");
fruitImage[14]=new Image("file:C:\\SlotMachineOne\\img\\yellowcherries.jpg");
//ImageView
imageViewRight.setImage(blankImage);
imageViewLeft.setImage(blankImage);
imageViewCenterRight.setImage(blankImage);
imageViewCenterLeft.setImage(blankImage);
//TextField
textFieldYouWon.setText("0");
textFieldBet.setText("");
textFieldTotalLosses.setText("0");
textFieldTotalWins.setText("0");
textFieldDeposit.setText("");
textFieldBalance.setText("0");
amountBalance = 0;
amountDeposit = 0;
amountTotalLoss =0;
amountTotalWins = 0;
amountTotalBets = 0;
amountWon = 0;
amountBet = 0;
// Media soundWon = new Media("file:C:\\soundyouwon.mp3");
// Media soundLost = new Media("file:C:\\soundyoulost.mp3");
//instantiate media
// Media soundSpin = new Media("C:\\soundSpin.mp3");
//MediaPlayer soundPlayer = new MediaPlayer(soundSpin);
//soundPlayer.setAutoPlay(true);
}
//random generator
public int spin()
{
//create random number
int spinSlot;
Random randomSpin = new Random();
spinSlot = randomSpin.nextInt(14);
return spinSlot;
}
//This method checks that the bet is a numeric value
public boolean readBet()
{
try
{
textFieldBet.focusedProperty().addListener((arg0, oldValue, newValue) -> {
if (!newValue)
{ // when focus lost
if (!textFieldBet.getText().matches("[0-9]*"))
{
textFieldBet.setText("");
labelMain.setText("Your Bet is not valid!");
}
validBet=false;
}}
);
amountBet=Integer.parseInt(textFieldBet.getText());
validBet=true;
}
catch (InputMismatchException e)
{
System.out.println(e.getMessage());
textFieldBet.clear();
textFieldBet.setText("0");
validBet=false;
labelMain.setText("Your Bet is not valid!");
}
return validBet;
}
public boolean readDeposit()
{
try
{
textFieldDeposit.focusedProperty().addListener((arg0, oldValue, newValue) -> {
if (!newValue)
{ // when focus lost
if (!textFieldDeposit.getText().matches("[0-9]*"))
{
textFieldDeposit.setText("");
labelMain.setText("Your Deposit Amount is not valid!");
}
validDeposit=false;
}}
);
amountDeposit=Integer.parseInt(textFieldDeposit.getText());
validDeposit=true;
}
catch (InputMismatchException e)
{
System.out.println(e.getMessage());
textFieldDeposit.clear();
textFieldDeposit.setText("0");
validDeposit=false;
labelMain.setText("Your Deposit Amount is not valid!");
}
return validDeposit;
}
//method to calculate wins, losses and cumulatives
public void slotNumbers()
{
//console message
//If 4 fruits same, 4x
if ((fruit1 == fruit2)&&(fruit3 == fruit4)&&(fruit1 == fruit3))
{
amountWon = FOUR*amountBet;
amountWon = TRIPLE*amountBet;
textFieldYouWon.setText(Integer.toString(amountWon));
labelMain.setText(str2);
amountBalance = amountBalance+ amountWon-amountBet;
}
if ( ((fruit1 == fruit2) && (fruit2 == fruit3) && (fruit1 !=fruit4)) || ((fruit1 == fruit2) && (fruit1 == fruit4) && (fruit1!=fruit3)) || ((fruit2==fruit3)&&(fruit2==fruit4)&&(fruit2!=fruit1)) ||((fruit1==fruit3)&&(fruit1==fruit4)&&(fruit1!=fruit2)))
//3 fruits are the same
{
amountWon = TRIPLE*amountBet;
textFieldYouWon.setText(Integer.toString(amountWon));
labelMain.setText(str2);
amountBalance = amountBalance+ amountWon-amountBet;
}
//case when no fruits are same
if ((fruit1 != fruit2) && (fruit3 != fruit4) && (fruit1 != fruit3) && (fruit2!=fruit3) && (fruit1!=fruit4) && (fruit2!=fruit4))
{
amountWon = ZERO;
textFieldYouWon.setText(Integer.toString(amountWon));
labelMain.setText(str3);
amountBalance = amountBalance - amountBet;
}
//case when 2 fruits are same (Default)
else
{
amountWon = DOUBLE*amountBet;
textFieldYouWon.setText(Integer.toString(amountWon));
labelMain.setText(str2);
amountBalance = amountBalance + amountWon - amountBet;
}
//cumulative wins
amountTotalWins +=amountWon;
textFieldTotalWins.setText(Integer.toString(amountTotalWins));
//total losses
amountTotalLoss = amountTotalDeposit - amountBalance;
textFieldTotalLosses.setText(Integer.toString(amountTotalLoss));
textFieldBalance.setText(Integer.toString(amountBalance));
// Your balance
textFieldTotalBets.setText(Integer.toString(amountTotalBets));
}
public void setCustomBet(int customBet)
{
customButtonBet = customBet;
//command check
System.out.println("Button amount is $"+customButtonBet);
}
public void buttonBet2XListener()
{
//console message
System.out.println("Button Bet 2X pressed");
buttonBet = 2*amountBet;
setCustomBet(buttonBet);
buttonSpinListener();
}
public void buttonBet5Listener()
{
//console message
System.out.println("Button Bet $5 pressed");
buttonBet = 5;
setCustomBet(buttonBet);
buttonSpinListener();
}
public void buttonBet10Listener()
{
//console message
System.out.println("Button Bet $10 pressed");
buttonBet = 10;
setCustomBet(buttonBet);
buttonSpinListener();
}
public void buttonBet50Listener()
{
//console message
System.out.println("Button Bet $50 pressed");
buttonBet = 50;
setCustomBet(buttonBet);
buttonSpinListener();
}
public void buttonBet100Listener()
{
//console message
System.out.println("Button Bet $100 pressed");
buttonBet = 100;
setCustomBet(buttonBet);
buttonSpinListener();
}
public void buttonBet500Listener()
{
//console message
System.out.println("Button Bet $500 pressed");
buttonBet = 500;
setCustomBet(buttonBet);
buttonSpinListener();
}
public void buttonMaxListener()
{
//console message
System.out.println("Button Max Bet pressed");
if (amountBalance>MAXBET)
buttonBet = MAXBET;
else
buttonBet = amountBalance;
setCustomBet(buttonBet);
buttonSpinListener();
}
public int getButtonBet()
{
return customButtonBet;
}
public void keyResetListener()
{
int confirm;
confirm = JOptionPane.showConfirmDialog(null, "Do you want to Reset the game?", "Please confirm.",JOptionPane.YES_NO_OPTION);
if (confirm == JOptionPane.YES_OPTION)
{
initialize();
}
}
public void keyQuitListener()
{
int confirm;
confirm = JOptionPane.showConfirmDialog(null, "Do you want to Quit the game?", "Please confirm.",JOptionPane.YES_NO_OPTION);
if (confirm == JOptionPane.YES_OPTION)
{
buttonCashOutListener();
System.exit(0);
}
}
public void buttonCashOutListener()
{
//console message
System.out.println("Button CASH OUT pressed");
System.out.println("Amount to cash out $"+amountBalance);
if (amountBalance>=1)
{
labelMain.setText("Cashing Out");
textFieldBet.setText("");
textFieldDeposit.setText("");
textFieldYouWon.setText("");
for(int i = amountBalance;i>0;i--)
{
amountBalance--;
textFieldBalance.setText(Integer.toString(amountBalance));
}
}
else
{
labelMain.setText("Nothing to cash Out");
}
}
public void buttonDepositListener()
{
// console message
System.out.println("DEPOSIT CASH");
readDeposit();
System.out.println("Deposit $"+amountDeposit);
if (amountDeposit<1)
{
validDeposit = false;
labelMain.setText("The minimum deposit is $1");
textFieldDeposit.setText("");
}
else if(amountDeposit>10000)
{
validDeposit = false;
labelMain.setText("Maximum Single deposit is $10,000");
textFieldDeposit.setText("");
}
else validDeposit=true;
if (validDeposit==true)
{
//add to balance
amountBalance+=amountDeposit;
textFieldBalance.setText(Integer.toString(amountBalance));
labelMain.setText("You deposited $"+amountDeposit);
}
amountTotalDeposit+=amountDeposit;
textFieldDeposit.setText("");
}
public void buttonSpinListener()
{
//console message
System.out.println("SPINNING");
if (0 <getButtonBet())
{
amountBet = getButtonBet();
}
else
readBet();
System.out.println("Betting $" +amountBet);
//check for the bet value to be correct
if(amountBet<1)
{
validBet = false;
labelMain.setText("Incorrect Bet! Minimum Bet is $1");
textFieldBet.setText("");
}
else if(amountBet>MAXBET)
{
validBet = false;
labelMain.setText("Incorrect Bet! Maximum Bet is $1000");
textFieldBet.setText("");
}
else validBet = true;
//if bet value is correct, then spin
if (validBet == true)
{
if (amountBalance <amountBet)
{
labelMain.setText("Reduce your bet or Deposit more funds");
}
else
{
//spinning left fruit
fruit1 = spin();
System.out.println(fruit1);
imageViewLeft.setImage(fruitImage[fruit1]);
//spinning Center left fruit
fruit2 = spin();
System.out.println(fruit2);
imageViewCenterLeft.setImage(fruitImage[fruit2]);
//spinning Center right fruit
fruit3 = spin();
System.out.println(fruit3);
imageViewCenterRight.setImage(fruitImage[fruit3]);
//spinning right fruit
fruit4 = spin();
System.out.println(fruit4);
imageViewRight.setImage(fruitImage[fruit4]);
//calculate win, loss, cumulative
buttonBet = 0;
slotNumbers();
}
}
}
}