projet-genie-logiciel-systeme/runtime-workspace/fr.n7.game.examples/src-gen/Objet.java

36 lines
896 B
Java
Raw Normal View History

2021-12-09 17:54:08 +00:00
import java.util.List;
public class Objet {
String nom;
int taille;
Condition visible;
List<Description> descriptions;
public Objet(
String nom,
int taille,
Condition visible,
List<Description> descriptions) {
this.nom = nom;
this.taille = taille;
this.visible = visible;
this.descriptions = descriptions;
}
@Override
public String toString() {
for (Description d : this.descriptions) {
if (d.condition.evaluer()) {
2022-01-18 18:49:37 +00:00
return this.nom + " (" + d + ")";
2021-12-09 17:54:08 +00:00
}
}
2022-01-18 18:49:37 +00:00
return "(no description)";
2021-12-09 17:54:08 +00:00
}
2022-01-18 18:49:37 +00:00
public static Objet search(List<Objet> list, String name) {
return list.stream().filter(o -> o.nom.equals(name)).findFirst()
.orElseThrow(() -> new IllegalArgumentException("No data found"));
}
2021-12-09 17:54:08 +00:00
}