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

hofattouncasino

This commit is contained in:
Steffo 2016-04-20 17:16:04 +02:00
parent b79d84e1bf
commit 21cd66dc3b

View file

@ -147,50 +147,53 @@ class Game:
self.message(votedout.username + " è il più votato del giorno e sarà ucciso.") self.message(votedout.username + " è il più votato del giorno e sarà ucciso.")
self.tokill.append(votedout) self.tokill.append(votedout)
for killed in self.tokill: for killed in self.tokill:
self.message(killed.username + " è stato ucciso.\n") tosend = killed.username + " è stato ucciso.\n"
if killed.role == 0: if killed.role == 0:
self.message("Era un \U0001F610 Royal.") tosend += "Era un \U0001F610 Royal."
elif killed.role == 1: elif killed.role == 1:
self.message("Era un \U0001F608 Mifioso!") tosend += "Era un \U0001F608 Mifioso!"
elif killed.role == 2: elif killed.role == 2:
self.message("Era un \U0001F575 Detective!") tosend += "Era un \U0001F575 Detective!"
self.message(tosend)
killed.alive = False killed.alive = False
for player in self.players: for player in self.players:
player.votedfor = str() player.votedfor = str()
if player.role != 0: if player.role != 0:
player.special = True player.special = True
self.message(self.displaycount()) self.message(self.displaycount())
# Controlla se la Royal Games ha vinto mifia = self.mifiacount()
zero = 0 royal = self.royalcount()
uno = 0 if mifia == 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:
self.message("*Il Team Royal ha vinto!*\n" self.message("*Il Team Royal ha vinto!*\n"
"Tutti i Mifiosi sono stati eliminati.") "Tutti i Mifiosi sono stati eliminati.")
partiteincorso.remove(findgame(self.groupid)) partiteincorso.remove(findgame(self.groupid))
if uno >= zero: if mifia >= royal:
self.message("*Il Team Mifia ha vinto!*\n" self.message("*Il Team Mifia ha vinto!*\n"
"I Mifiosi rimasti sono più dei Royal.") "I Mifiosi rimasti sono tanti quanti i Royal.")
self.tokill = list() self.tokill = list()
def displaycount(self) -> str: def mifiacount(self) -> int:
zero = 0 mifia = 0
uno = 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: for player in self.players:
if player.alive: if player.alive:
if player.role == 0 or player.role == 2: if player.role == 0 or player.role == 2:
zero += 1 royal += 1
elif player.role == 1: return royal
uno += 1
def displaycount(self) -> str:
msg = "*Royal*: {0} persone rimaste\n" \ msg = "*Royal*: {0} persone rimaste\n" \
"*Mifia*: {1} persone rimaste".format(str(zero), str(uno)) "*Mifia*: {1} persone rimaste".format(str(self.royalcount()), str(self.mifiacount()))
return msg return msg
# Ricordatemi perchè ho deciso di salvare i dati in un ini invece che in un file json
def save(self): def save(self):
status = configparser.ConfigParser() status = configparser.ConfigParser()
status['General'] = { status['General'] = {
@ -266,7 +269,7 @@ while True:
except ValueError: except ValueError:
g = None g = None
if g is not None: if g is not None:
if xtra[1].capitalize() == "special": if xtra[1].lower() == "special":
if g.findid(t['from']['id']).role == 1 and g.findid(t['from']['id']).special: if g.findid(t['from']['id']).role == 1 and g.findid(t['from']['id']).special:
target = g.findusername(xtra[2]) target = g.findusername(xtra[2])
if target is not None: if target is not None:
@ -285,7 +288,7 @@ while True:
elif target.role == 2: elif target.role == 2:
p.message(target.username + " è un \U0001F575 Detective.") p.message(target.username + " è un \U0001F575 Detective.")
p.special = False p.special = False
elif xtra[1].capitalize() == "chat": elif xtra[1].lower() == "chat":
if g.findid(t['from']['id']).role == 1: if g.findid(t['from']['id']).role == 1:
g.evilmessage(xtra[2]) g.evilmessage(xtra[2])
else: else: