56 lines
1.2 KiB
Java
56 lines
1.2 KiB
Java
package Domain;
|
|
|
|
public class FourPairs extends Category{
|
|
|
|
private int one = 0, two = 0, three = 0, four = 0, five = 0;
|
|
|
|
public FourPairs() {
|
|
super("Four Pairs", "Four times the same dice");
|
|
}
|
|
|
|
@Override
|
|
public boolean correctCategory(int[] values){
|
|
|
|
for(int i = 0; i < values.length; i++){
|
|
switch(i){
|
|
case 1:
|
|
one += 1;
|
|
case 2:
|
|
two += 1;
|
|
case 3:
|
|
three += 1;
|
|
case 4:
|
|
four += 1;
|
|
case 5:
|
|
five += 1;
|
|
break;
|
|
}
|
|
}
|
|
if(one == 4 || two == 4 || three == 4 || four == 4 || five == 4){
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public int getScore(int[] values){
|
|
if(one == 4){
|
|
return 4;
|
|
}
|
|
else if(two == 4){
|
|
return 8;
|
|
}
|
|
else if(three == 4){
|
|
return 12;
|
|
}
|
|
else if(four == 4){
|
|
return 16;
|
|
}
|
|
else if(five == 4){
|
|
return 20;
|
|
}
|
|
return 0;
|
|
}
|
|
}
|