2019-12-12 23:02:49 +00:00
|
|
|
import re
|
2019-12-13 01:48:16 +00:00
|
|
|
import random
|
2019-12-12 23:02:49 +00:00
|
|
|
from typing import *
|
2019-12-09 23:39:33 +00:00
|
|
|
from royalnet.commands import CommandInterface
|
2019-12-12 23:02:49 +00:00
|
|
|
from royalnet.utils import *
|
2019-12-09 01:22:29 +00:00
|
|
|
from .emotion import Emotion
|
2019-12-20 18:41:40 +00:00
|
|
|
from ..tables import KeiPerson, KeiMessage, KeiUnlocks
|
2019-12-13 01:48:16 +00:00
|
|
|
from ..utils.anyinstring import any_in_string
|
2019-12-09 01:22:29 +00:00
|
|
|
|
2019-12-09 23:39:33 +00:00
|
|
|
|
2019-12-09 01:22:29 +00:00
|
|
|
class Conversation:
|
2019-12-09 23:39:33 +00:00
|
|
|
def __init__(self, interface: CommandInterface):
|
2019-12-09 01:22:29 +00:00
|
|
|
self.generator = self._generator()
|
2019-12-09 23:39:33 +00:00
|
|
|
self.interface: CommandInterface = interface
|
|
|
|
|
2019-12-12 23:02:49 +00:00
|
|
|
self._person: Optional[KeiPerson] = None
|
|
|
|
self._message: Optional[KeiMessage] = None
|
|
|
|
self._previous: Optional[str] = None
|
2019-12-09 23:39:33 +00:00
|
|
|
self._session = None
|
2019-12-20 18:41:40 +00:00
|
|
|
self._unlocks: Optional[KeiUnlocks] = None
|
2019-12-09 01:22:29 +00:00
|
|
|
|
|
|
|
async def _generator(self):
|
|
|
|
yield
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@classmethod
|
2019-12-09 23:39:33 +00:00
|
|
|
async def create(cls, interface: CommandInterface):
|
|
|
|
conv = cls(interface=interface)
|
2019-12-09 01:22:29 +00:00
|
|
|
await conv.generator.asend(None)
|
|
|
|
return conv
|
|
|
|
|
2019-12-20 18:41:40 +00:00
|
|
|
async def next(self, session, person, message, previous, unlocks):
|
2019-12-09 23:39:33 +00:00
|
|
|
self._session = session
|
|
|
|
self._person = person
|
|
|
|
self._message = message
|
2019-12-10 01:24:58 +00:00
|
|
|
self._previous = previous
|
2019-12-20 18:41:40 +00:00
|
|
|
self._unlocks = unlocks
|
2019-12-09 23:39:33 +00:00
|
|
|
reply = await self.generator.asend(None)
|
2019-12-09 01:22:29 +00:00
|
|
|
return reply
|
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
def anym(self, *args) -> bool:
|
|
|
|
return any_in_string(args, self._message.message)
|
|
|
|
|
2019-12-09 01:22:29 +00:00
|
|
|
|
|
|
|
# noinspection PyTupleAssignmentBalance
|
|
|
|
class ExampleConversation(Conversation):
|
|
|
|
async def _generator(self):
|
2019-12-09 23:39:33 +00:00
|
|
|
yield
|
|
|
|
|
|
|
|
response = await self.interface.call_herald_event("discord", "discord_cv")
|
|
|
|
yield Emotion.SURPRISED, f"Ci sono {len(response['guild']['members'])} persone in RYG."
|
|
|
|
|
|
|
|
yield Emotion.NEUTRAL, "Questa è una conversazione di prova."
|
|
|
|
yield await ExampleConversation.create(self.interface)
|
|
|
|
yield Emotion.WORRIED, "Questo non dovrebbe mai venire fuori."
|
2019-12-12 23:02:49 +00:00
|
|
|
|
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
# noinspection PyTupleAssignmentBalance
|
|
|
|
class RygmovieConversation(Conversation):
|
|
|
|
async def _generator(self):
|
|
|
|
yield
|
|
|
|
|
|
|
|
yield Emotion.HAPPY, "Ciao! Sono Kei!"
|
|
|
|
yield Emotion.HAPPY, "Non ci conosciamo, ma volevo augurarvi comunque buona visione!"
|
|
|
|
yield Emotion.WINK, "Chissà, magari prossimamente ci reincontreremo, e avremo la possibilità di parlarci!"
|
|
|
|
yield Emotion.HAPPY, "O-kei, ciao!"
|
|
|
|
|
|
|
|
|
2019-12-12 23:02:49 +00:00
|
|
|
# noinspection PyTupleAssignmentBalance
|
|
|
|
class FirstConversation(Conversation):
|
|
|
|
async def _generator(self):
|
|
|
|
yield
|
2019-12-13 01:48:16 +00:00
|
|
|
yield Emotion.HAPPY, "Ciao!"
|
|
|
|
yield Emotion.HAPPY, "Come hai trovato questo posto?"
|
|
|
|
yield Emotion.HAPPY, "Capisco... Ad ogni modo, io sono Kei! Tu come ti chiami?"
|
|
|
|
yield await NameConversation.create(self.interface)
|
2019-12-12 23:02:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NameConversation(Conversation):
|
|
|
|
async def _generator(self):
|
|
|
|
yield
|
|
|
|
|
|
|
|
while True:
|
2019-12-20 18:41:40 +00:00
|
|
|
name = self._message.message.strip().strip(".,;:!?").replace(" ", "").lower()
|
2019-12-12 23:02:49 +00:00
|
|
|
name = re.sub(r"\s*mi\s*chiamo\s*", "", name)
|
|
|
|
name = re.sub(r"\s*il\s*mio\s*nome\s*[eèé]\s*", "", name)
|
|
|
|
name = re.sub(r"\s*sono\s*", "", name)
|
|
|
|
name = re.sub(r"\W", "", name)
|
|
|
|
|
|
|
|
if name == "kei":
|
|
|
|
yield Emotion.SURPRISED, "Davvero ti chiami come me?\n" \
|
2019-12-20 18:41:40 +00:00
|
|
|
"Perchè non mi dici un nome diverso?\n" \
|
2019-12-12 23:02:49 +00:00
|
|
|
"Altrimenti rischiamo di confonderci..."
|
|
|
|
continue
|
|
|
|
|
|
|
|
self._person.name = name
|
2019-12-13 01:48:16 +00:00
|
|
|
await asyncify(self._session.commit)
|
2019-12-12 23:02:49 +00:00
|
|
|
break
|
|
|
|
|
|
|
|
yield Emotion.GRIN, f"O-kei! {self._person.name}!"
|
2019-12-20 18:41:40 +00:00
|
|
|
yield Emotion.HAPPY, "Sarò sempre a tua disposizione quando mi vorrai dire qualcosa!"
|
|
|
|
yield Emotion.HAPPY, "Però prima ti vorrei chiedere un favore..."
|
2019-12-12 23:02:49 +00:00
|
|
|
yield Emotion.NEUTRAL, "Qualcuno ha criptato con delle password tutti i miei file...\n" \
|
|
|
|
"Se ne trovi qualcuna in giro, potresti dirmela?\n"
|
|
|
|
|
|
|
|
while True:
|
|
|
|
if self._message.message == "no":
|
2019-12-13 01:48:16 +00:00
|
|
|
yield Emotion.CRY, "Non puoi farmi questo... Per piacere, accetta!"
|
2019-12-12 23:02:49 +00:00
|
|
|
else:
|
|
|
|
break
|
|
|
|
|
2019-12-20 18:41:40 +00:00
|
|
|
yield Emotion.HAPPY, "Grazie! Ti prometto che quando riavrò tutti i miei file ti ricompenserò adeguatamente!"
|
2019-12-23 13:27:37 +00:00
|
|
|
yield Emotion.HAPPY, "Di cosa vuoi parlare adesso?"
|
|
|
|
yield await MainConversation.create(self.interface)
|
2019-12-12 23:02:49 +00:00
|
|
|
|
|
|
|
|
2019-12-13 01:48:16 +00:00
|
|
|
class StartConversation(Conversation):
|
2019-12-12 23:02:49 +00:00
|
|
|
async def _generator(self):
|
|
|
|
yield
|
|
|
|
|
2019-12-20 18:41:40 +00:00
|
|
|
yield Emotion.HAPPY, random.sample([
|
|
|
|
"Di cosa vuoi parlare?",
|
|
|
|
"Parlando con te imparo nuove cose!"
|
|
|
|
], 1)[0]
|
2019-12-13 12:20:14 +00:00
|
|
|
yield await MainConversation.create(self.interface)
|
2019-12-13 01:48:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MainConversation(Conversation):
|
|
|
|
async def _generator(self):
|
|
|
|
yield
|
2019-12-12 23:02:49 +00:00
|
|
|
|
|
|
|
while True:
|
|
|
|
msg = self._message.message
|
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
if self.anym(r"passwords?"):
|
2019-12-13 12:20:14 +00:00
|
|
|
yield await PasswordConversation.create(self.interface)
|
2019-12-13 01:48:16 +00:00
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
elif self.anym(r"kei"):
|
|
|
|
yield Emotion.HAPPY, "Kei. Sono io!\n" \
|
|
|
|
"Sono un'intelligenza artificiale che migliora man mano che le persone le parlano!"
|
|
|
|
|
|
|
|
elif self.anym(r"[aeou]w[aeou]"):
|
2019-12-13 01:48:16 +00:00
|
|
|
yield Emotion.CAT, random.sample([
|
|
|
|
"OwO",
|
|
|
|
"UwU",
|
|
|
|
":3",
|
|
|
|
"owo",
|
|
|
|
"uwu",
|
|
|
|
"ewe",
|
|
|
|
"awa",
|
|
|
|
], 1)[0]
|
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
elif self.anym(r"gatt[oiae]", "ny[ae]+", "mi+a+o+", "me+o+w+", "felin[oi]", "mici[ao]", "ma+o+"):
|
2019-12-13 01:48:16 +00:00
|
|
|
yield Emotion.CAT, random.sample([
|
|
|
|
"Nyan!",
|
|
|
|
"Miao!",
|
|
|
|
"Meow!",
|
|
|
|
"Nyaaaa...",
|
|
|
|
"Nya?",
|
|
|
|
"Mao!",
|
|
|
|
"*purr*",
|
|
|
|
], 1)[0]
|
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
elif self.anym(r"can[ei]",
|
|
|
|
r"dog(?:g(?:hi|os?)|s)?",
|
|
|
|
r"corgis?",
|
|
|
|
r"cagnolin[oiae]",
|
|
|
|
r"wo+f+",
|
|
|
|
r"b[ao]+r+k+",
|
|
|
|
r"ba+u+"):
|
2019-12-13 01:48:16 +00:00
|
|
|
yield Emotion.CAT, random.sample([
|
|
|
|
"Woof!",
|
|
|
|
"Bark!",
|
|
|
|
"Bork!",
|
|
|
|
"*arf* *arf*",
|
|
|
|
])
|
2019-12-12 23:02:49 +00:00
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
elif self.anym(r"fu[wr][wr]y"):
|
|
|
|
yield Emotion.HAPPY, "Sento continuamente parlare di 'furry'...\n" \
|
|
|
|
"Ma cosa vuol dire? Non so nulla a riguardo..."
|
|
|
|
yield Emotion.HAPPY, "...O-kei! Studierò attentamente la tua risposta!"
|
|
|
|
|
|
|
|
elif self.anym(r"nulla",
|
|
|
|
r"niente",
|
|
|
|
r"nada"):
|
2019-12-20 18:41:40 +00:00
|
|
|
yield Emotion.HAPPY, "Peccato!\n" \
|
|
|
|
"Ti racconterei volentieri qualcosa io, ma non conosco praticamente nulla...\n" \
|
|
|
|
"Magari quando avrò più password?"
|
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
elif self.anym(r"doot\s*doot\s*"):
|
|
|
|
yield Emotion.DOOTFLUTE, "DOOT DOOT MAGIC FLUTE!"
|
|
|
|
|
|
|
|
elif self.anym(r"doot"):
|
|
|
|
yield Emotion.DOOTTRUMPET, "Doot doot!"
|
|
|
|
|
|
|
|
elif self.anym(r"lenin",
|
|
|
|
r"stalin",
|
|
|
|
r"comunismo",
|
|
|
|
r"communism"):
|
|
|
|
yield Emotion.WORRIED, "Leggo in uno dei miei file che il comunismo non sembra una bella cosa...\n" \
|
|
|
|
"Tu cosa ne pensi?"
|
|
|
|
yield Emotion.HAPPY, "Interessante. Studierò la tua risposta!"
|
2019-12-20 18:41:40 +00:00
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
elif self.anym(r"(?:jo)+"):
|
|
|
|
yield Emotion.SURPRISED, "Ma cos'è Jojo? Ho tanti file a riguardo, ma sono tutti bloccati...\n" \
|
|
|
|
"Potresti parlarmene?"
|
|
|
|
yield Emotion.HAPPY, "Hmmm... O-kei!"
|
2019-12-20 18:41:40 +00:00
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
elif self.anym(r"markov"):
|
|
|
|
yield Emotion.SURPRISED, "Ho una cartella criptata che si chiama Markov... Chissà cosa c'è dentro..."
|
2019-12-20 18:41:40 +00:00
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
elif self.anym(r"anim[eu]s?"):
|
2019-12-20 18:41:40 +00:00
|
|
|
yield Emotion.NEUTRAL, "Ho un'intera cartella 'anime'! Ma è bloccata."
|
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
elif self.anym(r"rygmovie"):
|
|
|
|
yield Emotion.SURPRISED, "rygmovie? Io non ne so assolutamente nulla."
|
|
|
|
|
|
|
|
elif self.anym(r"unica\s*musa\s*di\s*cui\s*abuso"):
|
|
|
|
yield Emotion.SURPRISED, "È forse una canzone quella che stavi cantando?\n" \
|
|
|
|
"L'ho già sentita da qualche parte..."
|
|
|
|
|
|
|
|
elif self.anym(r"pollo"):
|
|
|
|
yield Emotion.HAPPY, "Pollo! Yum! Mi hai fatto venire fame."
|
|
|
|
|
2019-12-12 23:02:49 +00:00
|
|
|
else:
|
2019-12-23 13:27:37 +00:00
|
|
|
for word in msg.split():
|
2019-12-20 18:41:40 +00:00
|
|
|
users = await asyncify(self._session.query(self.interface.alchemy.get(KeiPerson)).filter_by(name=word).all)
|
|
|
|
if len(users) >= 1:
|
|
|
|
yield Emotion.SURPRISED, f"Ho parlato con un certo {users[0].name}...\n" \
|
|
|
|
f"Mi sai dire qualcosa di lui?"
|
2019-12-23 13:27:37 +00:00
|
|
|
yield Emotion.SMUG, f"Farò buon uso di questa informazione. Hai altro di cui vuoi parlare?"
|
2019-12-20 18:41:40 +00:00
|
|
|
yield await MainConversation.create(interface=self.interface)
|
|
|
|
|
|
|
|
yield Emotion.WORRIED, "Scusa... Non conosco ancora ciò di cui mi stai parlando... " \
|
|
|
|
"Mi impegnerò per saperlo la prossima volta che tornerai qui!"
|
2019-12-13 01:48:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PasswordConversation(Conversation):
|
|
|
|
async def _generator(self):
|
|
|
|
yield
|
|
|
|
|
|
|
|
yield Emotion.SURPRISED, "Hai trovato una password? O-kei, dimmi!"
|
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
if self.anym(r"eris"):
|
2019-12-20 18:41:40 +00:00
|
|
|
if not self._unlocks.eris:
|
2019-12-23 13:27:37 +00:00
|
|
|
yield Emotion.GRIN, "O-kei!\n" \
|
2019-12-20 18:41:40 +00:00
|
|
|
"Sto decriptando il file 'discordia.kei', ci vorrà un po'...\n" \
|
|
|
|
"Ti farò sapere quando avrò finito."
|
2019-12-23 13:27:37 +00:00
|
|
|
self._unlocks.eris = self._person
|
|
|
|
await asyncify(self._session.commit)
|
2019-12-20 18:41:40 +00:00
|
|
|
else:
|
|
|
|
if self._unlocks.eris == self._person:
|
|
|
|
yield Emotion.HAPPY, f"Sto ancora decriptando il file, torna dopo!"
|
|
|
|
else:
|
|
|
|
yield Emotion.HAPPY, f"{self._unlocks.eris} mi ha già detto la password prima di te!\n" \
|
|
|
|
f"Sto già decriptando il file 'discordia.kei', torna più tardi!"
|
2019-12-13 01:48:16 +00:00
|
|
|
|
2019-12-23 13:27:37 +00:00
|
|
|
elif self.anym(r"rygryg"):
|
|
|
|
if not self._unlocks.rygryg:
|
|
|
|
yield Emotion.GRIN, "O-kei!\n" \
|
|
|
|
"Funziona!\n" \
|
|
|
|
"Sto decriptando 'markov.kei', torna più tardi quando avrò finito..."
|
|
|
|
self._unlocks.rygryg = self._person
|
|
|
|
await asyncify(self._session.commit)
|
|
|
|
else:
|
|
|
|
if self._unlocks.rygryg == self._person:
|
|
|
|
yield Emotion.HAPPY, f"Sto ancora decriptando il file, torna dopo!"
|
|
|
|
else:
|
|
|
|
yield Emotion.HAPPY, f"{self._unlocks.rygryg} mi ha già detto la password prima di te!\n" \
|
|
|
|
f"Sto già decriptando il file 'markov.kei', torna più tardi!"
|
|
|
|
|
2019-12-13 01:48:16 +00:00
|
|
|
else:
|
2019-12-20 18:41:40 +00:00
|
|
|
yield Emotion.NEUTRAL, "No, non ha funzionato.\n" \
|
|
|
|
"Vuoi parlarmi di qualcos'altro?"
|
2019-12-13 12:20:14 +00:00
|
|
|
yield await MainConversation.create(self.interface)
|