kit-programmieren-ws1920-fi.../src/edu/kit/informatik/model/Card.java

93 lines
2.1 KiB
Java
Raw Normal View History

2020-02-24 16:02:48 +00:00
package edu.kit.informatik.model;
public enum Card {
WOOD,
METAL,
PLASTIC,
SPIDER,
SNAKE,
TIGER,
THUNDERSTORM;
2020-02-24 16:39:27 +00:00
public boolean isResource() {
return this.equals(WOOD) || this.equals(METAL) || this.equals(PLASTIC);
}
2020-02-24 18:23:53 +00:00
public boolean needsDiceRoll() {
return this.equals(SPIDER) || this.equals(SNAKE) || this.equals(TIGER);
}
public int diceSizeNeeded() {
switch (this) {
case SPIDER:
return 4;
case SNAKE:
return 6;
case TIGER:
return 8;
default:
return 0;
}
}
public int minimumDiceRollNeeded() {
switch (this) {
case SPIDER:
return 3;
case SNAKE:
return 4;
case TIGER:
return 5;
default:
return 0;
}
}
public boolean isCatastrophe() {
return this.equals(THUNDERSTORM);
}
2020-02-24 16:02:48 +00:00
public static Card parse(String input) {
switch (input) {
case "wood":
return WOOD;
case "metal":
return METAL;
case "plastic":
return PLASTIC;
case "spider":
return SPIDER;
case "snake":
return SNAKE;
case "tiger":
return TIGER;
case "thunderstorm":
return THUNDERSTORM;
default:
return null;
}
}
2020-02-24 16:39:27 +00:00
@Override
public String toString() {
switch (this) {
case WOOD:
return "wood";
case METAL:
return "metal";
case PLASTIC:
return "plastic";
case SPIDER:
return "spider";
case SNAKE:
return "snake";
case TIGER:
return "tiger";
case THUNDERSTORM:
return "thunderstorm";
default:
return null;
}
}
2020-02-24 16:02:48 +00:00
}