fix: petites coquilles
This commit is contained in:
parent
4bea520e72
commit
97dd01d59f
|
@ -1,5 +1,3 @@
|
|||
import java.util.List;
|
||||
|
||||
public class Description {
|
||||
String texte;
|
||||
Condition condition;
|
||||
|
|
|
@ -27,8 +27,7 @@ Map<String, Objet> jeu_objets = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
),
|
||||
)),
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
true
|
||||
|
@ -37,16 +36,12 @@ Map<String, Objet> jeu_objets = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
),
|
||||
)),
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
List.of(
|
||||
new Description(
|
||||
"Description1",
|
||||
|
@ -57,14 +52,7 @@ Map<String, Objet> jeu_objets = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))))))),
|
||||
entry(
|
||||
"warpTicket",
|
||||
new Objet(
|
||||
|
@ -76,10 +64,7 @@ Map<String, Objet> jeu_objets = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
List.of(
|
||||
new Description(
|
||||
"Description1",
|
||||
|
@ -90,14 +75,7 @@ Map<String, Objet> jeu_objets = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))))))),
|
||||
entry(
|
||||
"warpReceipt",
|
||||
new Objet(
|
||||
|
@ -109,10 +87,7 @@ Map<String, Objet> jeu_objets = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
List.of(
|
||||
new Description(
|
||||
"Description1",
|
||||
|
@ -123,33 +98,20 @@ Map<String, Objet> jeu_objets = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
);
|
||||
)))))))));
|
||||
|
||||
// "Connaissances"
|
||||
Map<String, Connaissance> jeu_connaissances = Map.ofEntries(
|
||||
);
|
||||
Map<String, Connaissance> jeu_connaissances = Map.ofEntries();
|
||||
|
||||
// "Transformations"
|
||||
Map<String, Transformation> jeu_transformations = Map.ofEntries(
|
||||
);
|
||||
Map<String, Transformation> jeu_transformations = Map.ofEntries();
|
||||
|
||||
// "Explorateur"
|
||||
Jeu.explorateur = new Explorateur(
|
||||
5,
|
||||
new ArrayList<>(List.of()),
|
||||
new ArrayList<>(List.of(
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
jeu_objets.get("warpTicket")
|
||||
))
|
||||
);
|
||||
jeu_objets.get("warpTicket"))));
|
||||
|
||||
// "Personnes"
|
||||
Map<String, Personne> jeu_personnes = Map.ofEntries(
|
||||
|
@ -163,20 +125,14 @@ Map<String, Personne> jeu_personnes = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
List.of(
|
||||
new Interaction(
|
||||
"Parler",
|
||||
|
@ -186,16 +142,10 @@ Map<String, Personne> jeu_personnes = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
new ArrayList<>(List.of(
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
)), // TODO: inverser recu et conso
|
||||
new ArrayList<>(List.of(
|
||||
)),
|
||||
)))),
|
||||
List.of(),
|
||||
List.of(),
|
||||
List.of(),
|
||||
List.of(
|
||||
new Action(
|
||||
"Acheter",
|
||||
|
@ -203,32 +153,23 @@ Map<String, Personne> jeu_personnes = Map.ofEntries(
|
|||
List.of(
|
||||
List.of(
|
||||
new ConditionObjet(
|
||||
jeu_objets.get("warpTicket"),
|
||||
jeu_objets.get(
|
||||
"warpTicket"),
|
||||
"==",
|
||||
1
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
1)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
new ArrayList<>(List.of(
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
)))),
|
||||
List.of(),
|
||||
List.of(
|
||||
jeu_objets.get("warpToken"),
|
||||
jeu_objets.get("warpReceipt")
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
jeu_objets.get("warpTicket")
|
||||
)),
|
||||
jeu_objets.get("warpReceipt")),
|
||||
List.of(
|
||||
jeu_objets.get("warpTicket")),
|
||||
List.of(
|
||||
new Description(
|
||||
"Description1",
|
||||
|
@ -239,13 +180,7 @@ Map<String, Personne> jeu_personnes = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
))))))),
|
||||
new Action(
|
||||
"Quitter",
|
||||
new Condition(
|
||||
|
@ -254,26 +189,17 @@ Map<String, Personne> jeu_personnes = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
new ArrayList<>(List.of(
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
)),
|
||||
)))),
|
||||
List.of(),
|
||||
List.of(),
|
||||
List.of(),
|
||||
List.of(
|
||||
new Description(
|
||||
"Description1",
|
||||
|
@ -284,19 +210,7 @@ Map<String, Personne> jeu_personnes = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
);
|
||||
)))))))))))));
|
||||
|
||||
// "Lieux"
|
||||
Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
||||
|
@ -310,33 +224,23 @@ Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
List.of(
|
||||
jeu_personnes.get("cashier")
|
||||
),
|
||||
jeu_personnes.get("cashier")),
|
||||
List.of(
|
||||
new Description(
|
||||
"Description1",
|
||||
|
@ -347,18 +251,9 @@ Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
new ArrayList<>(List.of(
|
||||
)),
|
||||
List.of(
|
||||
)
|
||||
)
|
||||
),
|
||||
)))))),
|
||||
new ArrayList<>(List.of()),
|
||||
List.of())),
|
||||
entry(
|
||||
"postWarp",
|
||||
new Lieu(
|
||||
|
@ -369,32 +264,22 @@ Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
List.of(
|
||||
),
|
||||
)))),
|
||||
List.of(),
|
||||
List.of(
|
||||
new Description(
|
||||
"Description1",
|
||||
|
@ -405,18 +290,9 @@ Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
new ArrayList<>(List.of(
|
||||
)),
|
||||
List.of(
|
||||
)
|
||||
)
|
||||
),
|
||||
)))))),
|
||||
new ArrayList<>(List.of()),
|
||||
List.of())),
|
||||
entry(
|
||||
"END",
|
||||
new Lieu(
|
||||
|
@ -427,32 +303,22 @@ Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
List.of(
|
||||
),
|
||||
)))),
|
||||
List.of(),
|
||||
List.of(
|
||||
new Description(
|
||||
"Description1",
|
||||
|
@ -463,19 +329,9 @@ Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
new ArrayList<>(List.of(
|
||||
)),
|
||||
List.of(
|
||||
)
|
||||
)
|
||||
)
|
||||
);
|
||||
)))))),
|
||||
new ArrayList<>(List.of()),
|
||||
List.of())));
|
||||
|
||||
// "Chemins"
|
||||
Map<String, Chemin> territoire_chemins = Map.ofEntries(
|
||||
|
@ -491,38 +347,25 @@ Map<String, Chemin> territoire_chemins = Map.ofEntries(
|
|||
new ConditionObjet(
|
||||
jeu_objets.get("warpToken"),
|
||||
">",
|
||||
0
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
0)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
List.of(),
|
||||
List.of(),
|
||||
List.of(
|
||||
),
|
||||
List.of(
|
||||
),
|
||||
List.of(
|
||||
jeu_objets.get("warpToken")
|
||||
),
|
||||
jeu_objets.get("warpToken")),
|
||||
List.of(
|
||||
new Description(
|
||||
"DescriptionToken",
|
||||
|
@ -533,12 +376,7 @@ Map<String, Chemin> territoire_chemins = Map.ofEntries(
|
|||
new ConditionObjet(
|
||||
jeu_objets.get("warpToken"),
|
||||
"==",
|
||||
0
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
0))))),
|
||||
new Description(
|
||||
"DescriptionNoToken",
|
||||
"Warp description (token acquired)",
|
||||
|
@ -548,15 +386,7 @@ Map<String, Chemin> territoire_chemins = Map.ofEntries(
|
|||
new ConditionObjet(
|
||||
jeu_objets.get("warpToken"),
|
||||
"==",
|
||||
1
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
1)))))))),
|
||||
entry(
|
||||
"EndChemin",
|
||||
new Chemin(
|
||||
|
@ -569,36 +399,24 @@ Map<String, Chemin> territoire_chemins = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
)))),
|
||||
new Condition(
|
||||
List.of(
|
||||
List.of(
|
||||
new ConditionBoolean(
|
||||
false
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
),
|
||||
List.of(
|
||||
),
|
||||
List.of(
|
||||
),
|
||||
List.of(
|
||||
),
|
||||
)))),
|
||||
List.of(),
|
||||
List.of(),
|
||||
List.of(),
|
||||
List.of(
|
||||
new Description(
|
||||
"DescriptionToken",
|
||||
|
@ -609,15 +427,7 @@ Map<String, Chemin> territoire_chemins = Map.ofEntries(
|
|||
new ConditionBoolean(
|
||||
true
|
||||
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
);
|
||||
)))))))));
|
||||
|
||||
// Territoire
|
||||
Territoire jeu_territoire = new Territoire(territoire_lieux, territoire_chemins);
|
||||
|
@ -628,8 +438,7 @@ Jeu ze_GAME = new Jeu(
|
|||
jeu_objets,
|
||||
jeu_connaissances,
|
||||
jeu_personnes,
|
||||
jeu_transformations
|
||||
);
|
||||
jeu_transformations);
|
||||
|
||||
ze_GAME.jouer();
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -13,7 +13,7 @@ public class Prototype {
|
|||
public static void main(String['['/][']'/] args) {
|
||||
|
||||
[comment Objets /]
|
||||
// "Objets"
|
||||
// Objets
|
||||
Map<String, Objet> jeu_objets = Map.ofEntries(
|
||||
[for (o : Objet | jeu.objets)]
|
||||
entry(
|
||||
|
@ -29,7 +29,7 @@ Map<String, Objet> jeu_objets = Map.ofEntries(
|
|||
);
|
||||
|
||||
[comment Connaissances /]
|
||||
// "Connaissances"
|
||||
// Connaissances
|
||||
Map<String, Connaissance> jeu_connaissances = Map.ofEntries(
|
||||
[for (c : Connaissance | jeu.connaissances)]
|
||||
entry(
|
||||
|
@ -44,7 +44,7 @@ Map<String, Connaissance> jeu_connaissances = Map.ofEntries(
|
|||
);
|
||||
|
||||
[comment Transformations /]
|
||||
// "Transformations"
|
||||
// Transformations
|
||||
Map<String, Transformation> jeu_transformations = Map.ofEntries(
|
||||
[for (t : Transformation | jeu.transformations)]
|
||||
entry(
|
||||
|
@ -68,7 +68,7 @@ Map<String, Transformation> jeu_transformations = Map.ofEntries(
|
|||
);
|
||||
|
||||
[comment Explorateur /]
|
||||
// "Explorateur"
|
||||
// Explorateur
|
||||
Jeu.explorateur = new Explorateur(
|
||||
[jeu.explorateur.tailleInventaire/],
|
||||
new ArrayList<>(List.of(
|
||||
|
@ -84,7 +84,7 @@ Jeu.explorateur = new Explorateur(
|
|||
);
|
||||
|
||||
[comment Personnes /]
|
||||
// "Personnes"
|
||||
// Personnes
|
||||
Map<String, Personne> jeu_personnes = Map.ofEntries(
|
||||
[for (p : Personne | jeu.personnes)]
|
||||
entry(
|
||||
|
@ -100,7 +100,7 @@ Map<String, Personne> jeu_personnes = Map.ofEntries(
|
|||
);
|
||||
|
||||
[comment Lieux /]
|
||||
// "Lieux"
|
||||
// Lieux
|
||||
Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
||||
[for (l : Lieu | jeu.territoire.lieux)]
|
||||
entry(
|
||||
|
@ -132,7 +132,7 @@ Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
|||
);
|
||||
|
||||
[comment Chemins /]
|
||||
// "Chemins"
|
||||
// Chemins
|
||||
Map<String, Chemin> territoire_chemins = Map.ofEntries(
|
||||
[for (c : Chemin | jeu.territoire.chemins)]
|
||||
entry(
|
||||
|
@ -240,21 +240,21 @@ List.of(
|
|||
"[a.name/]",
|
||||
[print_condition(a.visible)/],
|
||||
[print_condition(a.finInteraction)/],
|
||||
new ArrayList<>(List.of(
|
||||
List.of(
|
||||
[for (co : Connaissance | a.connaissances)]
|
||||
jeu_connaissances.get("[co.name/]")[if (i <> a.connaissances->size())],[/if]
|
||||
[/for]
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
),
|
||||
List.of(
|
||||
[for (o : Objet | a.objetsRecus)]
|
||||
jeu_objets.get("[o.name/]")[if (i <> a.objetsRecus->size())],[/if]
|
||||
[/for]
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
),
|
||||
List.of(
|
||||
[for (o : Objet | a.objetsConso)]
|
||||
jeu_objets.get("[o.name/]")[if (i <> a.objetsConso->size())],[/if]
|
||||
[/for]
|
||||
)),
|
||||
),
|
||||
[print_descriptions(a.descriptions)/]
|
||||
)[if (i < as->size())],[/if]
|
||||
[/for]
|
||||
|
@ -267,21 +267,21 @@ List.of(
|
|||
new Interaction(
|
||||
"[it.name/]",
|
||||
[print_condition(it.visible)/],
|
||||
new ArrayList<>(List.of(
|
||||
List.of(
|
||||
[for (co : Connaissance | it.connaissances)]
|
||||
jeu_connaissances.get("[co.name/]")[if (i <> it.connaissances->size())],[/if]
|
||||
[/for]
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
[for (o : Objet | it.objetsConso)]
|
||||
jeu_objets.get("[o.name/]")[if (i <> it.objetsConso->size())],[/if]
|
||||
[/for]
|
||||
)), // TODO: inverser recu et conso
|
||||
new ArrayList<>(List.of(
|
||||
),
|
||||
List.of(
|
||||
[for (o : Objet | it.objetsRecus)]
|
||||
jeu_objets.get("[o.name/]")[if (i <> it.objetsRecus->size())],[/if]
|
||||
[/for]
|
||||
)),
|
||||
),
|
||||
List.of(
|
||||
[for (o : Objet | it.objetsConso)]
|
||||
jeu_objets.get("[o.name/]")[if (i <> it.objetsConso->size())],[/if]
|
||||
[/for]
|
||||
),
|
||||
[print_actions(it.actions)/]
|
||||
)[if (i < is->size())],[/if]
|
||||
[/for]
|
||||
|
|
|
@ -13,7 +13,7 @@ public class Prototype {
|
|||
public static void main(String['['/][']'/] args) {
|
||||
|
||||
[comment Objets /]
|
||||
// "Objets"
|
||||
// Objets
|
||||
Map<String, Objet> jeu_objets = Map.ofEntries(
|
||||
[for (o : Objet | jeu.objets)]
|
||||
entry(
|
||||
|
@ -29,7 +29,7 @@ Map<String, Objet> jeu_objets = Map.ofEntries(
|
|||
);
|
||||
|
||||
[comment Connaissances /]
|
||||
// "Connaissances"
|
||||
// Connaissances
|
||||
Map<String, Connaissance> jeu_connaissances = Map.ofEntries(
|
||||
[for (c : Connaissance | jeu.connaissances)]
|
||||
entry(
|
||||
|
@ -44,7 +44,7 @@ Map<String, Connaissance> jeu_connaissances = Map.ofEntries(
|
|||
);
|
||||
|
||||
[comment Transformations /]
|
||||
// "Transformations"
|
||||
// Transformations
|
||||
Map<String, Transformation> jeu_transformations = Map.ofEntries(
|
||||
[for (t : Transformation | jeu.transformations)]
|
||||
entry(
|
||||
|
@ -68,7 +68,7 @@ Map<String, Transformation> jeu_transformations = Map.ofEntries(
|
|||
);
|
||||
|
||||
[comment Explorateur /]
|
||||
// "Explorateur"
|
||||
// Explorateur
|
||||
Jeu.explorateur = new Explorateur(
|
||||
[jeu.explorateur.tailleInventaire/],
|
||||
new ArrayList<>(List.of(
|
||||
|
@ -84,7 +84,7 @@ Jeu.explorateur = new Explorateur(
|
|||
);
|
||||
|
||||
[comment Personnes /]
|
||||
// "Personnes"
|
||||
// Personnes
|
||||
Map<String, Personne> jeu_personnes = Map.ofEntries(
|
||||
[for (p : Personne | jeu.personnes)]
|
||||
entry(
|
||||
|
@ -100,7 +100,7 @@ Map<String, Personne> jeu_personnes = Map.ofEntries(
|
|||
);
|
||||
|
||||
[comment Lieux /]
|
||||
// "Lieux"
|
||||
// Lieux
|
||||
Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
||||
[for (l : Lieu | jeu.territoire.lieux)]
|
||||
entry(
|
||||
|
@ -132,7 +132,7 @@ Map<String, Lieu> territoire_lieux = Map.ofEntries(
|
|||
);
|
||||
|
||||
[comment Chemins /]
|
||||
// "Chemins"
|
||||
// Chemins
|
||||
Map<String, Chemin> territoire_chemins = Map.ofEntries(
|
||||
[for (c : Chemin | jeu.territoire.chemins)]
|
||||
entry(
|
||||
|
@ -240,21 +240,21 @@ List.of(
|
|||
"[a.name/]",
|
||||
[print_condition(a.visible)/],
|
||||
[print_condition(a.finInteraction)/],
|
||||
new ArrayList<>(List.of(
|
||||
List.of(
|
||||
[for (co : Connaissance | a.connaissances)]
|
||||
jeu_connaissances.get("[co.name/]")[if (i <> a.connaissances->size())],[/if]
|
||||
[/for]
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
),
|
||||
List.of(
|
||||
[for (o : Objet | a.objetsRecus)]
|
||||
jeu_objets.get("[o.name/]")[if (i <> a.objetsRecus->size())],[/if]
|
||||
[/for]
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
),
|
||||
List.of(
|
||||
[for (o : Objet | a.objetsConso)]
|
||||
jeu_objets.get("[o.name/]")[if (i <> a.objetsConso->size())],[/if]
|
||||
[/for]
|
||||
)),
|
||||
),
|
||||
[print_descriptions(a.descriptions)/]
|
||||
)[if (i < as->size())],[/if]
|
||||
[/for]
|
||||
|
@ -267,21 +267,21 @@ List.of(
|
|||
new Interaction(
|
||||
"[it.name/]",
|
||||
[print_condition(it.visible)/],
|
||||
new ArrayList<>(List.of(
|
||||
List.of(
|
||||
[for (co : Connaissance | it.connaissances)]
|
||||
jeu_connaissances.get("[co.name/]")[if (i <> it.connaissances->size())],[/if]
|
||||
[/for]
|
||||
)),
|
||||
new ArrayList<>(List.of(
|
||||
[for (o : Objet | it.objetsConso)]
|
||||
jeu_objets.get("[o.name/]")[if (i <> it.objetsConso->size())],[/if]
|
||||
[/for]
|
||||
)), // TODO: inverser recu et conso
|
||||
new ArrayList<>(List.of(
|
||||
),
|
||||
List.of(
|
||||
[for (o : Objet | it.objetsRecus)]
|
||||
jeu_objets.get("[o.name/]")[if (i <> it.objetsRecus->size())],[/if]
|
||||
[/for]
|
||||
)),
|
||||
),
|
||||
List.of(
|
||||
[for (o : Objet | it.objetsConso)]
|
||||
jeu_objets.get("[o.name/]")[if (i <> it.objetsConso->size())],[/if]
|
||||
[/for]
|
||||
),
|
||||
[print_actions(it.actions)/]
|
||||
)[if (i < is->size())],[/if]
|
||||
[/for]
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue