122 lines
3.9 KiB
Java
122 lines
3.9 KiB
Java
import java.io.InputStreamReader;
|
|
import java.io.BufferedReader;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class Jeu {
|
|
public static Explorateur explorateur;
|
|
Territoire territoire;
|
|
List<Objet> objets;
|
|
List<Connaissance> connaissances;
|
|
List<Personne> personnes;
|
|
List<Transformation> transformations;
|
|
|
|
Lieu lieu = null;
|
|
Personne personne = null;
|
|
|
|
public Jeu(
|
|
Territoire territoire,
|
|
List<Objet> objets,
|
|
List<Connaissance> connaissances,
|
|
List<Personne> personnes,
|
|
List<Transformation> transformations) {
|
|
this.territoire = territoire;
|
|
this.objets = objets;
|
|
this.connaissances = connaissances;
|
|
this.personnes = personnes;
|
|
this.transformations = transformations;
|
|
}
|
|
|
|
public static void clearScreen() {
|
|
System.out.print("\033[H\033[2J");
|
|
System.out.flush();
|
|
}
|
|
|
|
void jouer() {
|
|
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
|
|
|
|
// on cherche le (premier) lieu de départ
|
|
for (Lieu l : territoire.lieux) {
|
|
if (l.depart.evaluer()) {
|
|
lieu = l;
|
|
break;
|
|
}
|
|
}
|
|
|
|
// tant qu'on est pas sur un lieu de fin
|
|
mainloop: while (!lieu.fin.evaluer()) {
|
|
|
|
int selection = 0;
|
|
List<Object> choix = new ArrayList<>();
|
|
clearScreen();
|
|
|
|
System.out.println("Lieu actuel: " + lieu + "\n");
|
|
System.out.println("Explorateur:\n" + Jeu.explorateur + "\n");
|
|
System.out.println("-".repeat(50));
|
|
|
|
for (Personne p : lieu.personnes) {
|
|
if (p.visible.evaluer() && p.obligatoire.evaluer() || p == personne) {
|
|
System.out.println(p + ":");
|
|
|
|
p.interragir(reader, lieu);
|
|
personne = null;
|
|
continue mainloop;
|
|
}
|
|
}
|
|
|
|
for (Chemin c : territoire.chemins) {
|
|
if (c.lieuIn == lieu) {
|
|
if (c.visible.evaluer() && c.obligatoire.evaluer() && c.ouvert.evaluer()) {
|
|
lieu = c.lieuOut;
|
|
continue mainloop;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (Chemin c : territoire.chemins) {
|
|
if (c.lieuIn == lieu) {
|
|
if (c.visible.evaluer()) {
|
|
if (c.ouvert.evaluer()) {
|
|
System.out.println("[" + choix.size() + "] " + c);
|
|
choix.add(c);
|
|
} else {
|
|
System.out.println("[X] " + c);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
for (Personne p : personnes) {
|
|
if (lieu.personnes.contains(p)) {
|
|
if (p.visible.evaluer()) {
|
|
System.out.println("[" + choix.size() + "] " + p);
|
|
choix.add(p);
|
|
}
|
|
}
|
|
}
|
|
|
|
try {
|
|
System.out.print("\nChoix : ");
|
|
selection = Integer.parseInt(reader.readLine());
|
|
Object choix_selection = choix.get(selection);
|
|
|
|
if (choix_selection instanceof Chemin) {
|
|
lieu = ((Chemin) choix_selection).emprunter();
|
|
} else if (choix_selection instanceof Personne) {
|
|
personne = (Personne) choix_selection;
|
|
} else {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
System.out.println("FIN : " + lieu.nom);
|
|
}
|
|
}
|
|
|
|
// TODO: faire le truc des dépots dans les lieux
|
|
// TODO: arreter de créer pleins d'objets et créer des objets anonymes que l'on
|
|
// place dans une hashmap avec son nom ? |