-
Notifications
You must be signed in to change notification settings - Fork 0
/
Set.java
59 lines (53 loc) · 1.92 KB
/
Set.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
package prg.esamiPassati.es5;
import java.util.HashMap;
import java.util.Map;
public class Set{
private int numeroGiochi = 6;
private Giocatore first, second;
public Set(Giocatore first, Giocatore second){
this.first = first;
this.second = second;
}
public Giocatore simulaSet(){ //output vincitore
first.resetPoints();
second.resetPoints();
this.printPoints();
while(first.getPoints() != numeroGiochi || second.getPoints() != numeroGiochi){
int random = (int)(Math.random() * 2);
if(random == 0){
first.incrementPoints();
} else {
second.incrementPoints();
}
this.printPoints();
if(first.getPoints() == 7 && second.getPoints() <= 5){
System.out.println("Set vinto da " + first.incrementSetsWon() + ". Risultato: " + stringPoints() + ". Set: " + first + " " + first.getSetsWon() + " - " + second.getSetsWon() + " " + second);
return first;
}
if(second.getPoints() == 7 && first.getPoints() <= 5){
System.out.println("Set vinto da " + second.incrementSetsWon() + ". Risultato: " + stringPoints() + ". Set: " + first + " " + first.getSetsWon() + " - " + second.getSetsWon() + " " + second);
return first;
}
}
Giocatore winner = null;
while(Math.abs(first.getPoints() - second.getPoints()) < 2){
int random = (int)(Math.random() * 2);
if(random == 0){
winner = first.incrementPoints();
} else {
winner = second.incrementPoints();
}
this.printPoints();
}
System.out.println("Set vinto da " + winner.incrementSetsWon() + ". Risultato: " + stringPoints() + ". Set: " + first + " " + first.getSetsWon() + " - " + second.getSetsWon() + " " + second);
return winner;
}
private Set printPoints(){
System.out.println(this.stringPoints());
return this;
}
private String stringPoints(){
String res = first + " " + first.getPoints() + " - " + second.getPoints() + " " + second;
return res;
}
}