-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdialogue.py
392 lines (328 loc) · 15.5 KB
/
dialogue.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
# -*- coding: utf-8 -*-
"""
Created on Mon Dec 28 00:52:22 2020
@author: josse
"""
import random
from psclib.relation import Relation
from psclib.diversifieur import diversifier
from psclib.caracteristique import Caracteristique
import re
#--------------------------------------- Ensemble de fonctions secondaires pour le dialogue -------------------------------------
#----------- Fonction pour tester si p1 connaît p2 (non réflexif)
def connait(p1,p2): #p1 et p2 sont des objets Personnage
return p2.id in p1.contacts
#----------- L'introduction du dialogue - ON PART DU PRINCIPE QUE LES 2 ONT UNE RELATION ENTRE EUX
def intro(p1,p2, useTranslation=True, useCorrection=True) : #p1 et p2 sont des objets Personnage, p1 est le locuteur et p2 l'interlocuteur
#etat = int(connait(p1,p2)) + 2*int(connait(p2,p1)) #etat est un entier
#if not connait(p1,p2) :
# p1.contacts[p2.id] = Relation(p2.copyStrip())
#if not connait(p2,p1) :
# p2.contacts[p1.id] = Relation(p1.copyStrip())
relation = p1.contacts[p2.id].getRelation().split("/")[0]
if p2.id in p1.contacts and relation == "famille": #NORMALEMENT PAS BESOIN DE VERIFIER L'EXISTENCE DU CONTACT
return accrocheFamille(p1,p2, useTranslation=useTranslation, useCorrection=useCorrection)
if relation == "travail":
return accrocheTravail(p1,p2, useTranslation=useTranslation, useCorrection=useCorrection)
if relation == "inconnu":
return lireDepuisTxt("intros/accroche2Inconnus.txt",p1,p2)
if relation == "connaissance":
return lireDepuisTxt("intros/accrocheConnaissances.txt", p1, p2)
if relation == "ami":
return lireDepuisTxt("intros/accrocheAmis.txt", p1,p2)
#if etat==0 : #les deux personnages ne se connaissent pas
# p1.contacts[p2.id].nbDiscussions += 1
# p2.contacts[p1.id].nbDiscussions += 1
# return accroche0(p1,p2)
#if etat==1 : #p1 connait p2 mais pas l'inverse
# return accroche1(p1,p2)
#if etat==2 : #p2 connait p1 mais pas l'inverse
# return accroche1(p2,p1)
#if etat==3 : #Les deux personnages se connaissent
# return accroche2(p1,p2)
print("GROS PROBLEME DANS INTRO")
return ""
#-------------- Intro pour 2 inconnus : ils se présentent
def introInconnus(p1,p2) :
p1.contacts[p2.id] = Relation(p2.copyStrip(),relation="connaissance")
p2.contacts[p1.id] = Relation(p1.copyStrip(),relation="connaissance")
p,q = switcheroo(p1,p2)
return lireDepuisTxt("intros/accroche2Inconnus.txt", p, q)
#------------- Fonction annexe
def switcheroo(a,b) : #Echange aléatoirement a et b (peu importe ce que sont a et b)
if random.randint(0,1) :
return a, b
else :
return b, a
#------------- Fonction annexe
def intersection(histsA, histsB, persoA, persoB) : #On part de deux listes d'objets Histoire A et B, et on construit l'intersection, le reste de A et le reste B
resteA, resteB, intersection, intersectionDif = [], [], [], [] #intersectionDif correspond aux histoires communes mais pas entendues de la même personne
for a in histsA : #construction de l'intersection et du reste de histsA
isInB = False
for b in histsB :
if a.titre==b.titre :
#print(a.conteur, b.conteur)
if (a.conteurs[0] == b.conteurs[0]) or (persoA in b.conteurs) or (persoB in a.conteurs):
intersection.append(a)
else:
intersectionDif.append((a,b))
isInB = True
if not (isInB) :
resteA.append(a)
for b in histsB : #construction du reste de histsB
isInI = False
for i in intersection :
if i.titre==b.titre :
isInI = True
if not (isInI) :
resteB.append(b)
return resteA, resteB, intersection, intersectionDif
#------------- Fonction annexe pour lire les parties scriptées depuis un fichier
def lireDepuisTxt(path, p1, p2) :
f = open("psclib/fichiers_txt/"+path,"r", encoding="utf-8")
listeStr = []
ligne = f.readline()
while ligne :
listeStr.append(ligne)
ligne = f.readline()
f.close()
if not listeStr : #Si erreur (fichier texte vide)
s = "Erreur : fichier texte vide"
else :
s = random.choice(listeStr)
s = token(p1, p2, s)
return s
#------------- Fonction annexe de remplacage des tokens
def token(p1, p2, s) : #Remplace les tokens dans les parties scriptées
s = s.replace("$n","\n")
s = s.replace("$p1prenom", p1.prenom)
s = s.replace("$p1nom", p1.nom)
s = s.replace("$p2prenom", p2.prenom)
s = s.replace("$p2nom", p2.nom)
if p1.sexe == "f" :
s = s.replace("$p1genre", "e")
s = s.replace("$p1mrmme", "Mme")
else :
s = s.replace("$p1genre", "")
s = s.replace("$p1mrmme", "Mr")
if p2.sexe == "f" :
s = s.replace("$p2genre", "e")
s = s.replace("$p2mrmme", "Mme")
else :
s = s.replace("$p2genre", "")
s = s.replace("$p2mrmme", "Mr")
return s
#------------- Les accroches, pour introduire le dialogue -------------- IL FAUT FAIRE L'ETAPE DE PRESENTATION ELEMENTAIRE
def accroche0(p1, p2) : #Les deux personnages ne se connaissent pas -> Chacun se crée une représentation de l'autre
p, q = switcheroo(p1,p2) #Cas particulier : on ne se soucie pas de qui est qui
return lireDepuisTxt("intros/accroche2Inconnus.txt", p, q)
def accroche1(p1, p2) : #p1 connaît p2 mais pas l'inverse -> p2 se crée une représentation de p1
return lireDepuisTxt("intros/accroche1Inconnu.txt", p1, p2)
def accroche2(p1, p2) : #Les deux personnages se connaissent
return lireDepuisTxt("intros/accroche2Connus.txt", p1, p2)
def accrocheFamille(p1, p2,useTranslation=True, useCorrection=True):
lien = p1.contacts[p2.id].getRelation().split("/")[1]
#print(lien)
salutations = ["Coucou", "Salut"]
appelation = ""
if lien == "parent":
appelation = ("papa" if p2.sexe == "m" else "maman")
if lien == "adelphe":
appelation = p2.prenom
if lien == "enfant":
if p2.sexe == "m":
appelation = "mon fils"
elif p2.sexe == "f":
appelation = "ma fille"
else:
appelation = p2.prenom
if lien == "époux":
if p2.sexe == "m":
appelation = "chéri"
elif p2.sexe == "f":
appelation = "chérie"
else :
appelation = p2.prenom
sal = random.choice(salutations)
s = p1.imprimer(sal + " " + appelation + " !", useTranslation=useTranslation, useCorrection=useCorrection) + "\n"
s += p2.imprimer(sal + " !", useTranslation=useTranslation, useCorrection=useCorrection)
return s
def accrocheTravail(p1, p2,useTranslation=True, useCorrection=True):
lien = p1.contacts[p2.id].getRelation().split("/")[1]
#print(lien)
salutations = ["Bonjour", "Salut"]
appelation = ""
if lien == "patron":
if p2.sexe == "m":
appelation = random.choice(["Mr "+p2.nom,"patron","boss"])
else :
appelation = random.choice(["Mme ".p2.nom,"patronne","boss"])
if lien == "collègue":
appelation = p2.prenom
if lien == "employé":
if p2.sexe == "m":
appelation = random.choice([p2.prenom])
else:
appelation = random.choice([p2.prenom])
sal = random.choice(salutations)
s = p1.imprimer(sal + " " + appelation + " !", useTranslation=useTranslation, useCorrection=useCorrection) + "\n"
s += p2.imprimer(sal + " !", useTranslation=useTranslation, useCorrection=useCorrection)
return s
#------------- Les personnages ne racontent pas forcément leurs histoires jusqu'au bout
def testContinuer(p1,p2) : #On détermine si la conversation continue (=True) ou se termine (=False) selon les affinités des personnages (et une part d'aléatoire)
return False #bool(random.getrandbits(1)) ############ FONCTION TEMPORAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIREEEEEEEEEEEEEEEEEEE
#------------- La fin du dialogue
def fin(p1,p2, useTranslation=True, useCorrection=True) : #Fonction temporaire (à redéfinir pour prendre en compte les affinités entre les personnages)
s = p1.imprimer("Bon, c'était sympa de discuter.", useTranslation=useTranslation, useCorrection=useCorrection)
s += "\n" + p2.imprimer("Oui totalement !", diversify=False, useTranslation=useTranslation, useCorrection=useCorrection)
s += "\n" + p1.imprimer("Allez, à la prochaine fois !", useTranslation=useTranslation, useCorrection=useCorrection)
s += "\n" + p2.imprimer("Salut !", diversify=False, useTranslation=useTranslation, useCorrection=useCorrection)
return s
#------------- Les transitions (pas entamé pour le moment)
def transition(useTranslation=True, useCorrection=True) :
return "---"
def histoireQuiPeuventEtresRacontees(hists1, p1, p2):
"""Renvoie seulement les histoires dans hists1 que p1 peut raconter a p2"""
lien = "inconnu"
if p2.id in p1.contacts:
lien = p1.contacts[p2.id].getRelation().split("/")[0]
hists1_a_raconter = []
for h in hists1:
if lien in h.relationPourRaconter:
hists1_a_raconter.append(h)
return hists1_a_raconter
#------------- Détermination du locuteur et de l'interlocuteur / du cas où les personnages n'ont rien à raconter (pas d'histoire / histoires connues par les deux)
def quiparle(p1,p2) :
hists1, hists2, intersect, intersectionDif = intersection(p1.histoires, p2.histoires, p1, p2)
hists1_trie = sorted(histoireQuiPeuventEtresRacontees(hists1, p1, p2), key=lambda h: h.importance)[::-1]
hists2_trie = sorted(histoireQuiPeuventEtresRacontees(hists2, p2, p1), key=lambda h: h.importance)[::-1]
intersectionDif_trie_p1 = sorted(intersectionDif, key=lambda h: h[0].importance)[::-1]
intersectionDif_trie_p2 = sorted(intersectionDif, key=lambda h: h[1].importance)[::-1]
choix = []
weights = []
if len(hists1_trie) > 0:
choix.append((p1, p2, hists1_trie[0]))
weights.append(hists1_trie[0].importance)
if len(hists2_trie) > 0:
choix.append((p2, p1, hists2_trie[0]))
weights.append(hists2_trie[0].importance)
if len(intersectionDif_trie_p1) > 0:
choix.append((p1, p2, intersectionDif_trie_p1[0][0]))
weights.append(intersectionDif_trie_p1[0][0].importance)
if len(intersectionDif_trie_p2) > 0:
choix.append((p2, p1, intersectionDif_trie_p2[0][1]))
weights.append(intersectionDif_trie_p2[0][1].importance)
if len(choix) == 0:
return None
else:
ch = random.choices(choix, weights=weights, k=1)[0]
return ch
#------------- #Fonction d'affichage de l'histoire ----------------------------- A DEVELOPPER PLUS TARD, pour prendre en compte le fait que l'histoire ne soit pas forcément racontée en entier
def raconter(loc, interloc, date=None, useTranslation=True, useCorrection=True) :
histoire = pickStory(loc, interloc)
s = histoire.toText(loc, interloc, date=date, useTranslation=useTranslation, useCorrection=useCorrection)
return s, histoire #On retourne l'histoire racontée, pour l'ajouter plus tard dans la liste d'histoires connues par l'interlocuteur
#------------- #Fonction de sélection de l'histoire à raconter, qui n'est pas dans la liste des histoires connues par l'interlocuteur
def pickStory(loc, interloc) :
resteLoc, resteInterloc, intersect, intersectionDif = intersection(loc.histoires, interloc.histoires, loc, interloc) #On prend les histoires que l'interlocuteur ne connaît pas
if len(resteLoc) > 0:
return resteLoc[random.randrange(len(resteLoc))] #On en prend une au hasard
else:
if len(intersectionDif) > 0: return intersectionDif[random.randrange(len(intersectionDif))]
return None
#------------- #Fonction de réaction à la fin d'une histoire
def reaction(histoire,interloc) :
if histoire.ton == "triste" :
return reactiontriste(interloc) # reaction d'une histoire triste
if histoire.ton == "neutre" :
return reactionneutre(interloc) # reaction d'une histoire neutre
if histoire.ton == "joyeuse" :
return reactionjoyeuse(interloc) # reaction d'une histoire joyeuse
return "Je m'en fiche." # pas de reaction
#------------- #Les réactions d'une histoire---------------------------------
def reactiontriste(interloc): # reaction d'une histoire triste
a = random.randint(1,2)
if a == 1 :
s = interloc.imprimer("Ah c'est dommage!", diversify=False)
if a == 2 :
s = interloc.imprimer("Oh la la c'est vraiment triste!", diversify=False)
#if a == 3 :
return s
def reactionneutre(interloc): # reaction d'une histoire neutre
a = random.randint(1,2)
if a == 1 :
s = interloc.imprimer("Ah bon.", diversify=False)
if a == 2 :
s = interloc.imprimer("Oh.", diversify=False)
#if a == 3 :
return s
def reactionjoyeuse(interloc): # reaction d'une histoire joyeuse
a = random.randint(1,2)
if a == 1 :
s = interloc.imprimer("Ah c'est bien!", diversify=False)
if a == 2 :
s = interloc.imprimer("Wow c'est cool!", diversify=False)
#if a == 3 :
return s
def enleverDesMots(s, mot):
l = s.split(mot + ", ")
count = len(l)
countMentioned = 0
s_return = ""
for i in range(count):
s_return += l[i]
if i < count - 1:
if random.random() < (2-countMentioned) / float(count) or countMentioned==0:
s_return += mot + ", "
countMentioned += 1
return s_return
def clean(s):
regs = [[r' (le|la) (a|e|i|o|u|y|é|à|è|h)', 4, " l'"], [r' que (a|e|i|o|u|y|é|à|è)', 5, " qu'"]]
for elt in regs:
reg = elt[0]
long = elt[1]
c = re.search(reg, s)
while not(c is None):
s = s[:c.span()[0]] + elt[2] + s[c.span()[0]+long:] # On eneleve "le "
c = re.search(reg, s)
s = s.replace("à le", "au")
s = s.replace("dans à", "dans")
s = s.replace("derrière à", "derrière")
s = s.replace("devant à", "devant")
s = s.replace("à côté à", "à côté")
s = s.replace("à côté de à", "à côté de")
return s
#-------------------------------------------------- La fonction (principale) du dialogue ----------------------------------------------
def dialogue(p1,p2, date=None, useTranslation=True, useCorrection=True) :
if not connait(p1,p2) and not connait(p2,p1) :
return introInconnus(p1,p2)
result = quiparle(p1,p2)
if result is None:
#return "/!\ quiparle() a retourné None..."
return intro(p1, p2, useTranslation=useTranslation, useCorrection=useCorrection) + "\n~~ Les deux personnages n'ont rien à se dire... Une gêne sensible s'installe... ~~"
(loc, interloc, hist) = result
s = intro(loc, interloc, useTranslation=useTranslation, useCorrection=useCorrection) #L'intro
continuer = True
while continuer :
p1.contacts[p2.id].nbDiscussions += 1
p2.contacts[p1.id].nbDiscussions += 1
hist.importance = hist.importance * 0.75
s1 = hist.toText(loc, interloc, date=date, useTranslation=useTranslation, useCorrection=useCorrection)
s += "\n" + s1
#s += "\n" + reaction(hist,interloc)
#continuer = False
# Pour enchainer
result = quiparle(p1,p2)
if result is None:
continuer = False
else:
(loc, interloc, hist) = result
test_continuer = random.randint(0,9)
if test_continuer >= loc.getCaracValue(Caracteristique(name="bavard")) : continuer=False
if continuer==True : s += "\n" + transition(useTranslation=useTranslation, useCorrection=useCorrection) #à définir
s += "\n" + fin(p1,p2, useTranslation=useTranslation, useCorrection=useCorrection)
# Nettoyage
s = enleverDesMots(s, "aujourd'hui")
s = enleverDesMots(s, "hier")
s = clean(s)
return s