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-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()
|
2016-04-05 21:26:23 +00:00
|
|
|
tokill = list()
|
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-01 20:08:08 +00:00
|
|
|
|
2016-04-05 19:01:25 +00:00
|
|
|
def status(self) -> str:
|
2016-04-03 11:14:05 +00:00
|
|
|
"""Restituisci lo stato attuale della partita in una stringa unicode"""
|
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
|
|
|
|
2016-04-05 19:01:25 +00:00
|
|
|
def fullstatus(self) -> str:
|
2016-04-03 11:14:05 +00:00
|
|
|
"""Restituisci lo stato attuale della partita (per admin?) in una stringa unicode"""
|
2016-04-01 20:28:41 +00:00
|
|
|
tosend = "Stato attuale del gioco: \n"
|
|
|
|
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-06 19:53:36 +00:00
|
|
|
tosend += "\U0001F46E "
|
2016-04-01 20:28:41 +00:00
|
|
|
else:
|
2016-04-03 11:14:05 +00:00
|
|
|
tosend += "\U0001F636 "
|
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-06 19:53:36 +00:00
|
|
|
if player.username == fusername:
|
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]
|
2016-04-11 21:12:27 +00:00
|
|
|
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)
|
2016-04-05 21:26:23 +00:00
|
|
|
for killed in self.tokill:
|
2016-04-06 19:53:36 +00:00
|
|
|
self.message(killed.username + " è stato ucciso.\n")
|
|
|
|
if killed.role == 1:
|
|
|
|
self.message("Era un Mifioso!")
|
|
|
|
elif killed.role == 2:
|
|
|
|
self.message("Era un Detective!")
|
2016-04-05 21:26:23 +00:00
|
|
|
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:12:27 +00:00
|
|
|
self.msg(self.displaycount())
|
2016-04-06 19:53:36 +00:00
|
|
|
# Controlla se la Royal Games ha vinto
|
|
|
|
zero = 0
|
|
|
|
uno = 0
|
|
|
|
for player in self.players:
|
|
|
|
if player.alive:
|
|
|
|
if player.role == 0 or player.role == 2:
|
|
|
|
zero += 1
|
|
|
|
elif player.role == 1:
|
|
|
|
uno += 1
|
|
|
|
if uno == 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-06 19:53:36 +00:00
|
|
|
if uno >= zero:
|
2016-04-08 10:03:46 +00:00
|
|
|
self.message("*Il Team Mifia ha vinto!*\n"
|
|
|
|
"I Mifiosi rimasti sono più dei Royal.")
|
|
|
|
self.tokill = list()
|
2016-04-05 15:12:17 +00:00
|
|
|
|
2016-04-11 21:12:27 +00:00
|
|
|
def displaycount(self) -> str:
|
|
|
|
zero = 0
|
|
|
|
uno = 0
|
|
|
|
for player in self.players:
|
|
|
|
if player.alive:
|
|
|
|
if player.role == 0 or player.role == 2:
|
|
|
|
zero += 1
|
|
|
|
elif player.role == 1:
|
|
|
|
uno += 1
|
|
|
|
msg = "*Royal*: {0} persone rimaste" \
|
|
|
|
"*Mifia*: {1} persone rimaste".format(str(zero), str(uno))
|
|
|
|
return msg
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
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-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-05 19:01:25 +00:00
|
|
|
telegram.sendmessage("Nessuna partita in corso.", t['chat']['id'], t['message_id'])
|
2016-04-05 21:26:23 +00:00
|
|
|
else:
|
2016-04-06 19:53:36 +00:00
|
|
|
xtra = t['text'].split(' ', 2)
|
2016-04-05 21:26:23 +00:00
|
|
|
try:
|
|
|
|
g = findgame(int(xtra[0]))
|
|
|
|
except ValueError:
|
|
|
|
g = None
|
|
|
|
if g is not None:
|
|
|
|
if xtra[1] == "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:
|
|
|
|
p.message(target.username + " è un Royal.")
|
|
|
|
elif target.role == 1:
|
|
|
|
p.message(target.username + " è un Mifioso.")
|
|
|
|
elif target.role == 2:
|
|
|
|
p.message(target.username + " è un Detective.")
|
|
|
|
p.special = False
|
|
|
|
elif xtra[1] == "CHAT":
|
|
|
|
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-08 10:03:46 +00:00
|
|
|
if 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?
|
|
|
|
p.username = t['from']['username']
|
|
|
|
# Assegnazione dei ruoli
|
|
|
|
# Spiegare meglio cosa deve fare ogni ruolo?
|
2016-04-08 10:03:46 +00:00
|
|
|
if len(g.players) % 10 == 3:
|
2016-04-05 19:55:51 +00:00
|
|
|
p.role = 1
|
|
|
|
p.special = True
|
|
|
|
p.message("Sei stato assegnato alla squadra *MIFIA*.")
|
2016-04-06 19:53:36 +00:00
|
|
|
p.message("Apparirai agli altri come un membro del team ROYAL. Depistali e non farti uccidere!")
|
|
|
|
p.message("Il team ROYAL ucciderà la persona più votata di ogni turno.\n"
|
|
|
|
"Per votare, scrivi `/vote username`!")
|
|
|
|
p.message("Scrivi in questa chat `" + str(g.groupid) + " CHAT messaggio` per mandare un"
|
2016-04-10 12:04:04 +00:00
|
|
|
" messaggio a tutto il tuo team.")
|
2016-04-06 19:53:36 +00:00
|
|
|
p.message("Scrivi in questa chat `" + str(g.groupid) + " SPECIAL nomeutente` per uccidere"
|
2016-04-10 12:04:04 +00:00
|
|
|
" qualcuno alla fine del giorno.")
|
2016-04-06 19:53:36 +00:00
|
|
|
p.message("La squadra Mifia vince se tutta la Royal Games è eliminata.")
|
|
|
|
p.message("Perdi se vieni ucciso.")
|
2016-04-08 10:03:46 +00:00
|
|
|
elif len(g.players) % 10 == 2:
|
2016-04-05 19:55:51 +00:00
|
|
|
p.role = 2
|
|
|
|
p.special = True
|
2016-04-06 19:53:36 +00:00
|
|
|
p.message("Sei stato assegnato alla squadra *ROYAL* con il ruolo di *DETECTIVE*.")
|
|
|
|
p.message("Apparirai agli altri come un membro del team ROYAL. "
|
|
|
|
"Non attirare l'attenzione dei Mifiosi su di te!")
|
|
|
|
p.message("Il team ROYAL ucciderà la persona più votata di ogni turno.\n"
|
|
|
|
"Per votare, scrivi `/vote username`!")
|
|
|
|
p.message("Tra di voi si nascondono dei Mifiosi.\n"
|
|
|
|
"Stanateli e uccideteli votando per le persone giuste!")
|
|
|
|
p.message("La squadra Royal vince se tutti i Mifiosi sono morti.")
|
|
|
|
p.message("La squadra Royal perde se sono vivi solo Mifiosi.")
|
|
|
|
p.message("Scrivi in questa chat `" + str(g.groupid) + " SPECIAL nomeutente` per usare il tuo "
|
2016-04-10 12:21:42 +00:00
|
|
|
" potere di detective e indagare sul ruolo di qualcuno per un giorno.")
|
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-05 19:55:51 +00:00
|
|
|
p.message("Sei stato assegnato alla squadra *ROYAL*.")
|
2016-04-06 19:53:36 +00:00
|
|
|
p.message("Il team ROYAL ucciderà la persona più votata di ogni turno.\n"
|
|
|
|
"Per votare, scrivi `/vote username`!")
|
|
|
|
p.message("Tra di voi si nascondono dei Mifiosi.\n"
|
|
|
|
"Stanateli e uccideteli votando per le persone giuste!")
|
|
|
|
p.message("La squadra Royal vince se tutti i Mifiosi sono morti.")
|
|
|
|
p.message("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-05 19:24:00 +00:00
|
|
|
elif t['text'].startswith("/status"):
|
2016-04-10 12:04:04 +00:00
|
|
|
g.message(g.status())
|
2016-04-11 21:12:27 +00:00
|
|
|
g.message(g.displaycount())
|
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:
|
|
|
|
g.adminmessage(g.fullstatus())
|
2016-04-11 21:12:27 +00:00
|
|
|
g.message(g.displaycount())
|
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-05 21:26:23 +00:00
|
|
|
elif t['text'].startswith("/endday"):
|
|
|
|
if t['from']['id'] == g.adminid:
|
|
|
|
g.endday()
|
|
|
|
g.message(g.status())
|
|
|
|
elif t['text'].startswith("/vote"):
|
|
|
|
username = t['text'].split(' ')
|
2016-04-08 10:03:46 +00:00
|
|
|
if len(username) > 1 and g.findusername(username[1]) is not None:
|
2016-04-05 21:26:23 +00:00
|
|
|
voter = g.findid(t['from']['id'])
|
2016-04-08 10:03:46 +00:00
|
|
|
if voter.alive:
|
|
|
|
voter.votedfor = username[1]
|
|
|
|
g.message("Hai votato per " + username[1] + ".")
|
|
|
|
else:
|
|
|
|
g.message("I morti non votano.")
|
2016-04-05 21:26:23 +00:00
|
|
|
else:
|
2016-04-08 10:03:46 +00:00
|
|
|
g.message("La persona selezionata non esiste.")
|