1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/mifia.py

396 lines
16 KiB
Python
Raw Normal View History

2016-04-01 15:39:38 +00:00
# -*- coding: utf-8 -*-
2016-04-01 16:20:10 +00:00
import telegram
2016-04-10 12:04:04 +00:00
import configparser
2016-04-11 21:20:14 +00:00
import random
2016-04-05 19:01:25 +00:00
2016-04-06 19:53:36 +00:00
2016-04-01 15:39:38 +00:00
class Player:
2016-04-01 15:47:20 +00:00
telegramid = int()
username = str()
2016-04-05 19:01:25 +00:00
role = 0 # 0 normale | 1 rryg | 2 resistenza
2016-04-01 16:20:10 +00:00
alive = True
2016-04-03 11:14:05 +00:00
votedfor = str()
special = False
2016-04-01 16:20:10 +00:00
def message(self, text):
"""Manda un messaggio al giocatore
:param text: Testo del messaggio
"""
telegram.sendmessage(text, self.telegramid)
2016-04-01 15:47:20 +00:00
2016-04-10 12:04:04 +00:00
partiteincorso = list()
2016-04-01 15:47:20 +00:00
class Game:
2016-04-03 11:14:05 +00:00
groupid = int()
adminid = int()
2016-04-01 16:20:10 +00:00
players = list()
tokill = list()
2016-04-19 15:38:37 +00:00
joinphase = True
2016-04-01 20:08:08 +00:00
2016-04-11 21:33:16 +00:00
def __del__(self):
print("Partita {0} eliminata.\n".format(self.groupid))
2016-04-01 20:08:08 +00:00
def message(self, text):
"""Manda un messaggio alla chat generale del gioco
:param text: Testo del messaggio
"""
2016-04-05 19:24:00 +00:00
telegram.sendmessage(text, self.groupid)
2016-04-01 20:28:41 +00:00
2016-04-03 11:14:05 +00:00
def adminmessage(self, text):
"""Manda un messaggio all'admin del gioco
:param text: Testo del messaggio
"""
telegram.sendmessage(text, self.adminid)
def evilmessage(self, text):
2016-04-05 15:12:17 +00:00
"""Manda un messaggio al team dei nemici del gioco
2016-04-01 20:28:41 +00:00
:param text: Testo del messaggio
"""
for player in self.players:
if player.role == 1:
2016-04-06 19:53:36 +00:00
telegram.sendmessage("\U0001F608: " + text, player.telegramid)
2016-04-19 16:56:47 +00:00
telegram.sendmessage("\U0001F608: " + text, self.adminid)
2016-04-01 20:08:08 +00:00
2016-04-05 19:01:25 +00:00
def status(self) -> str:
"""Restituisci lo stato attuale della partita in una stringa"""
2016-04-01 20:08:08 +00:00
tosend = "Stato attuale del gioco: \n"
for player in self.players:
if not player.alive:
tosend += "\U0001F480 "
else:
tosend += "\U0001F636 "
tosend += player.username + "\n"
2016-04-03 11:14:05 +00:00
return tosend
2016-04-01 20:08:08 +00:00
def mifiastatus(self) -> str:
"""Restituisci lo stato attuale della partita (per mifiosi) in una stringa"""
tosend = "Stato attuale del gioco: \n"
for player in self.players:
if not player.alive:
tosend += "\U0001F480 "
elif player.role == 1:
tosend += "\U0001F608 "
else:
tosend += "\U0001F610 "
tosend += player.username + "\n"
return tosend
2016-04-05 19:01:25 +00:00
def fullstatus(self) -> str:
"""Restituisci lo stato attuale della partita (per admin?) in una stringa"""
2016-04-17 17:13:53 +00:00
tosend = str(self.groupid) + "\n"
2016-04-01 20:28:41 +00:00
for player in self.players:
if not player.alive:
2016-04-03 11:14:05 +00:00
tosend += "\U0001F480 "
2016-04-01 20:28:41 +00:00
elif player.role == 1:
2016-04-05 19:55:51 +00:00
tosend += "\U0001F608 "
elif player.role == 2:
2016-04-19 16:04:59 +00:00
tosend += "\U0001F575 "
2016-04-01 20:28:41 +00:00
else:
2016-04-19 15:12:14 +00:00
tosend += "\U0001F610 "
2016-04-01 20:28:41 +00:00
tosend += player.username + "\n"
2016-04-03 11:14:05 +00:00
return tosend
2016-04-06 19:53:36 +00:00
def findusername(self, fusername) -> Player:
2016-04-03 11:14:05 +00:00
"""Trova un giocatore con un certo nome utente
2016-04-06 19:53:36 +00:00
:param fusername: Nome utente da cercare
2016-04-03 11:14:05 +00:00
"""
for player in self.players:
2016-04-19 15:21:57 +00:00
if player.username == fusername.capitalize():
2016-04-03 11:14:05 +00:00
return player
else:
return None
2016-04-05 19:01:25 +00:00
def findid(self, telegramid) -> Player:
2016-04-03 11:14:05 +00:00
"""Trova un giocatore con un certo ID di telegram
:param telegramid: ID da cercare
"""
for player in self.players:
if player.telegramid == telegramid:
return player
else:
return None
2016-04-01 20:28:41 +00:00
2016-04-01 20:08:08 +00:00
def addplayer(self, player):
"""Aggiungi un giocatore alla partita
:param player: Oggetto del giocatore da aggiungere
"""
self.players.append(player)
2016-04-03 11:14:05 +00:00
2016-04-05 19:01:25 +00:00
def mostvoted(self) -> Player:
2016-04-03 11:14:05 +00:00
"""Trova il giocatore più votato"""
2016-04-05 15:12:17 +00:00
votelist = dict()
for player in self.players:
2016-04-06 19:53:36 +00:00
if player.votedfor != str() and player.alive:
2016-04-05 15:12:17 +00:00
if player.votedfor not in votelist:
votelist[player.votedfor] = 1
else:
votelist[player.votedfor] += 1
mostvoted = str()
mostvotes = int()
for player in votelist:
if mostvoted == str():
mostvoted = player
mostvotes = votelist[player]
else:
if votelist[player] > mostvotes:
mostvoted = player
mostvotes = votelist[player]
if mostvoted is not None:
return self.findusername(mostvoted)
else:
return None
2016-04-05 15:12:17 +00:00
def endday(self):
2016-04-06 19:53:36 +00:00
votedout = self.mostvoted()
2016-04-08 10:03:46 +00:00
self.message(votedout.username + " è il più votato del giorno e sarà ucciso.")
2016-04-06 19:53:36 +00:00
self.tokill.append(votedout)
for killed in self.tokill:
2016-04-20 15:16:04 +00:00
tosend = killed.username + " è stato ucciso.\n"
2016-04-19 15:12:14 +00:00
if killed.role == 0:
2016-04-20 15:16:04 +00:00
tosend += "Era un \U0001F610 Royal."
2016-04-19 15:12:14 +00:00
elif killed.role == 1:
2016-04-20 15:16:04 +00:00
tosend += "Era un \U0001F608 Mifioso!"
2016-04-06 19:53:36 +00:00
elif killed.role == 2:
2016-04-20 15:16:04 +00:00
tosend += "Era un \U0001F575 Detective!"
self.message(tosend)
killed.alive = False
2016-04-05 15:12:17 +00:00
for player in self.players:
player.votedfor = str()
if player.role != 0:
player.special = True
2016-04-11 21:20:14 +00:00
self.message(self.displaycount())
2016-04-20 15:16:04 +00:00
mifia = self.mifiacount()
royal = self.royalcount()
if mifia == 0:
2016-04-08 10:03:46 +00:00
self.message("*Il Team Royal ha vinto!*\n"
"Tutti i Mifiosi sono stati eliminati.")
2016-04-11 21:33:16 +00:00
partiteincorso.remove(findgame(self.groupid))
2016-04-20 15:16:04 +00:00
if mifia >= royal:
2016-04-08 10:03:46 +00:00
self.message("*Il Team Mifia ha vinto!*\n"
2016-04-20 15:16:04 +00:00
"I Mifiosi rimasti sono tanti quanti i Royal.")
2016-04-08 10:03:46 +00:00
self.tokill = list()
2016-04-05 15:12:17 +00:00
2016-04-20 15:16:04 +00:00
def mifiacount(self) -> int:
mifia = 0
for player in self.players:
if player.alive:
if player.role == 1:
mifia += 1
return mifia
def royalcount(self) -> int:
royal = 0
for player in self.players:
if player.alive:
if player.role == 0 or player.role == 2:
2016-04-20 15:16:04 +00:00
royal += 1
return royal
def displaycount(self) -> str:
2016-04-11 21:27:40 +00:00
msg = "*Royal*: {0} persone rimaste\n" \
2016-04-20 15:16:04 +00:00
"*Mifia*: {1} persone rimaste".format(str(self.royalcount()), str(self.mifiacount()))
return msg
2016-04-20 15:16:04 +00:00
# Ricordatemi perchè ho deciso di salvare i dati in un ini invece che in un file json
2016-04-10 12:04:04 +00:00
def save(self):
status = configparser.ConfigParser()
status['General'] = {
"groupid": self.groupid,
"adminid": self.adminid,
}
for player in self.players:
status[player.username] = {
2016-04-10 12:21:42 +00:00
"telegramid": player.telegramid,
2016-04-10 12:04:04 +00:00
"role": player.role,
"alive": player.alive,
}
try:
f = open(str(self.groupid) + ".ini", "w")
except OSError:
open(str(self.groupid) + ".ini", "x")
f = open(str(self.groupid) + ".ini", "w")
status.write(f)
2016-04-05 19:01:25 +00:00
2016-04-19 15:38:37 +00:00
def endjoin(self):
self.message("La fase di join è finita.")
self.joinphase = False
2016-04-05 19:01:25 +00:00
def findgame(chatid) -> Game:
for game in partiteincorso:
if game.groupid == chatid:
return game
else:
return None
2016-04-10 12:04:04 +00:00
def loadgame(chatid) -> Game:
l = Game()
loaded = configparser.ConfigParser()
loaded.read(str(chatid) + ".ini")
# General non è un giocatore, quindi toglilo
2016-04-10 12:21:42 +00:00
playerlist = loaded.sections()
playerlist.remove("General")
2016-04-10 12:04:04 +00:00
for player in playerlist:
lp = Player()
lp.alive = bool(loaded[player]['alive'])
lp.username = player
lp.role = int(loaded[player]['role'])
2016-04-20 15:36:47 +00:00
if lp.role == 1 or lp.role == 2:
lp.special = True
2016-04-10 12:21:42 +00:00
lp.telegramid = int(loaded[player]['telegramid'])
l.players.append(lp)
l.groupid = int(loaded['General']['groupid'])
l.adminid = int(loaded['General']['adminid'])
return l
2016-04-10 12:04:04 +00:00
2016-04-05 19:01:25 +00:00
while True:
t = telegram.getupdates()
if 'text' in t:
2016-04-05 19:24:00 +00:00
g = findgame(t['chat']['id'])
if g is None:
if t['text'].startswith("/newgame"):
2016-04-05 19:01:25 +00:00
g = Game()
g.groupid = t['chat']['id']
g.adminid = t['from']['id']
partiteincorso.append(g)
2016-04-05 19:55:51 +00:00
g.message("Partita creata!")
2016-04-10 12:04:04 +00:00
elif t['text'].startswith("/loadgame"):
g = loadgame(t['chat']['id'])
2016-04-10 12:21:42 +00:00
partiteincorso.append(g)
2016-04-10 12:04:04 +00:00
g.message("Partita caricata!\n_Forse._")
2016-04-05 19:24:00 +00:00
elif t['text'].startswith("/status"):
2016-04-19 15:42:01 +00:00
telegram.sendmessage("Nessuna partita in corso in questo gruppo.", t['chat']['id'], t['message_id'])
else:
2016-04-06 19:53:36 +00:00
xtra = t['text'].split(' ', 2)
try:
g = findgame(int(xtra[0]))
except ValueError:
g = None
if g is not None:
2016-04-20 15:16:04 +00:00
if xtra[1].lower() == "special":
if g.findid(t['from']['id']).role == 1 and g.findid(t['from']['id']).special:
target = g.findusername(xtra[2])
if target is not None:
g.tokill.append(target)
g.findid(t['from']['id']).special = False
2016-04-06 19:53:36 +00:00
g.evilmessage("Il bersaglio di " + t['from']['username'] + " è *" + target.username +
"*.")
elif g.findid(t['from']['id']).role == 2 and g.findid(t['from']['id']).special:
target = g.findusername(xtra[2])
p = g.findid(t['from']['id'])
if target is not None:
if target.role == 0:
2016-04-19 15:12:14 +00:00
p.message(target.username + " è un \U0001F610 Royal.")
2016-04-06 19:53:36 +00:00
elif target.role == 1:
2016-04-19 15:12:14 +00:00
p.message(target.username + " è un \U0001F608 Mifioso.")
2016-04-06 19:53:36 +00:00
elif target.role == 2:
2016-04-19 16:04:59 +00:00
p.message(target.username + " è un \U0001F575 Detective.")
2016-04-06 19:53:36 +00:00
p.special = False
2016-04-20 15:16:04 +00:00
elif xtra[1].lower() == "chat":
2016-04-06 19:53:36 +00:00
if g.findid(t['from']['id']).role == 1:
g.evilmessage(xtra[2])
2016-04-05 19:24:00 +00:00
else:
if t['text'].startswith("/join"):
2016-04-19 15:38:37 +00:00
if g.joinphase and g.findid(t['from']['id']) is None:
2016-04-05 19:55:51 +00:00
p = Player()
p.telegramid = t['from']['id']
# Qui crasha se non è stato impostato un username. Fare qualcosa?
2016-04-19 15:21:57 +00:00
p.username = t['from']['username'].capitalize()
2016-04-05 19:55:51 +00:00
# Assegnazione dei ruoli
2016-04-11 21:20:14 +00:00
r = random.randrange(0, 100)
2016-04-05 19:55:51 +00:00
# Spiegare meglio cosa deve fare ogni ruolo?
2016-04-20 16:05:31 +00:00
if r < 15 and g.mifiacount() < 3:
2016-04-05 19:55:51 +00:00
p.role = 1
p.special = True
2016-04-20 16:00:48 +00:00
p.message("Sei stato assegnato alla squadra \U0001F608 *MIFIA*.\n"
2016-04-19 15:25:46 +00:00
"Apparirai agli altri come un membro del team ROYAL.\n"
"Depistali e non farti uccidere!\n"
2016-04-19 15:12:14 +00:00
"Il team ROYAL ucciderà la persona più votata di ogni turno.\n"
2016-04-19 15:25:46 +00:00
"Per votare, scrivi `/vote username`!\n"
2016-04-19 15:12:14 +00:00
"Scrivi in questa chat `{0} CHAT messaggio` per mandare un"
2016-04-19 15:25:46 +00:00
" messaggio segreto al tuo team.\n"
2016-04-19 15:12:14 +00:00
"Scrivi in questa chat `{0} SPECIAL username` per uccidere"
2016-04-19 15:25:46 +00:00
" qualcuno alla fine del giorno.\n"
"La squadra Mifia vince se tutta la Royal Games è eliminata.\n"
2016-04-19 15:12:14 +00:00
"Perdi se vieni ucciso."
.format(g.groupid))
2016-04-20 16:05:31 +00:00
elif r > 90:
2016-04-05 19:55:51 +00:00
p.role = 2
p.special = True
2016-04-19 16:04:59 +00:00
p.message("Sei stato assegnato alla squadra *ROYAL* con il ruolo di \U0001F575 *DETECTIVE*.\n"
2016-04-19 15:25:46 +00:00
"Apparirai agli altri come un membro del team ROYAL.\n"
"Non attirare l'attenzione dei Mifiosi su di te!\n"
2016-04-19 15:12:14 +00:00
"Il team ROYAL ucciderà la persona più votata di ogni turno.\n"
2016-04-19 15:25:46 +00:00
"Per votare, scrivi `/vote username`!\n"
2016-04-19 15:12:14 +00:00
"Tra di voi si nascondono dei Mifiosi.\n"
2016-04-19 15:25:46 +00:00
"Stanateli e uccideteli votando per le persone giuste!\n"
"La squadra Royal vince se tutti i Mifiosi sono morti.\n"
"La squadra Royal perde se sono vivi solo Mifiosi.\n"
2016-04-19 15:12:14 +00:00
"Scrivi in questa chat `{0} SPECIAL nomeutente` per usare il tuo "
" potere di detective e indagare sul ruolo di qualcuno per un giorno."
.format(g.groupid))
2016-04-05 19:55:51 +00:00
else:
p.role = 0
2016-04-06 19:53:36 +00:00
p.special = True
2016-04-19 15:25:46 +00:00
p.message("Sei stato assegnato alla squadra \U0001F610 *ROYAL*.\n"
"Il team ROYAL ucciderà la persona più votata di ogni turno.\n"
"Per votare, scrivi `/vote username`!\n"
"Tra di voi si nascondono dei Mifiosi.\n"
"Stanateli e uccideteli votando per le persone giuste!\n"
"La squadra Royal vince se tutti i Mifiosi sono morti.\n"
"La squadra Royal perde se sono vivi solo Mifiosi.")
2016-04-05 19:55:51 +00:00
g.addplayer(p)
g.message(p.username + " si è unito alla partita!")
2016-04-19 16:56:47 +00:00
g.adminmessage(g.fullstatus())
2016-04-19 17:06:26 +00:00
g.save()
2016-04-19 15:38:37 +00:00
else:
2016-04-19 16:03:30 +00:00
g.message("\u26A0\uFE0F Non puoi unirti alla partita.\n"
2016-04-19 15:38:37 +00:00
"La fase di unione è terminata o ti sei già unito in precedenza.")
2016-04-05 19:24:00 +00:00
elif t['text'].startswith("/status"):
2016-04-19 16:51:10 +00:00
if not g.joinphase:
g.message(g.status() + "\n" + g.displaycount())
else:
g.message(g.status())
p = g.findid(t['from']['id'])
2016-04-19 17:05:29 +00:00
if p is not None and p.role == 1:
p.message(g.mifiastatus())
2016-04-10 12:04:04 +00:00
elif t['text'].startswith("/fullstatus"):
2016-04-05 19:24:00 +00:00
if t['from']['id'] == g.adminid:
2016-04-19 15:12:14 +00:00
g.adminmessage(g.fullstatus() + "\n" + g.displaycount())
2016-04-19 15:38:37 +00:00
else:
2016-04-19 16:03:30 +00:00
g.message("\u26A0\uFE0F Non sei il creatore della partita; non puoi vedere lo status completo.")
2016-04-10 12:04:04 +00:00
elif t['text'].startswith("/save"):
if t['from']['id'] == g.adminid:
g.save()
g.message("Partita salvata!\n_Funzione instabile, speriamo che non succedano casini..._")
2016-04-19 15:38:37 +00:00
else:
2016-04-19 16:03:30 +00:00
g.message("\u26A0\uFE0F Non sei il creatore della partita; non puoi salvare la partita.")
elif t['text'].startswith("/endday"):
if t['from']['id'] == g.adminid:
g.endday()
2016-04-19 15:38:37 +00:00
else:
2016-04-19 16:03:30 +00:00
g.message("\u26A0\uFE0F Non sei il creatore della partita; non puoi finire il giorno.")
elif t['text'].startswith("/vote"):
2016-04-19 15:38:37 +00:00
if not g.joinphase:
username = t['text'].split(' ')
if len(username) > 1 and g.findusername(username[1]) is not None:
voter = g.findid(t['from']['id'])
if voter is not None:
if voter.alive:
voter.votedfor = username[1]
g.message("Hai votato per " + username[1] + ".")
else:
g.message("_La tua votazione riecheggia nel nulla._\n"
"\u26A0\uFE0F Sei morto, e i morti non votano.")
2016-04-08 10:03:46 +00:00
else:
2016-04-19 16:03:30 +00:00
g.message("\u26A0\uFE0F La persona selezionata non esiste.")
else:
2016-04-19 16:03:30 +00:00
g.message("\u26A0\uFE0F La partita non è ancora iniziata; non puoi votare.")
2016-04-19 15:48:49 +00:00
elif t['text'].startswith("/endjoin"):
2016-04-20 16:00:48 +00:00
if t['from']['id'] == g.adminid:
g.endjoin()