mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
c'è ancora un sacco di roba da fare
This commit is contained in:
parent
d09339c49c
commit
904480f3af
1 changed files with 44 additions and 32 deletions
36
mifia.py
36
mifia.py
|
@ -62,7 +62,9 @@ class Game:
|
||||||
if not player.alive:
|
if not player.alive:
|
||||||
tosend += "\U0001F480 "
|
tosend += "\U0001F480 "
|
||||||
elif player.role == 1:
|
elif player.role == 1:
|
||||||
tosend += "RRYG "
|
tosend += "\U0001F608 "
|
||||||
|
elif player.role == 2:
|
||||||
|
tosend += "Detective "
|
||||||
else:
|
else:
|
||||||
tosend += "\U0001F636 "
|
tosend += "\U0001F636 "
|
||||||
tosend += player.username + "\n"
|
tosend += player.username + "\n"
|
||||||
|
@ -115,13 +117,10 @@ class Game:
|
||||||
mostvotes = votelist[player]
|
mostvotes = votelist[player]
|
||||||
return self.findusername(mostvoted)
|
return self.findusername(mostvoted)
|
||||||
|
|
||||||
def save(self):
|
# def save(self):
|
||||||
"""Salva in un file di testo con il numero del gruppo lo stato attuale del gioco"""
|
# """Salva in un file di testo con il numero del gruppo lo stato attuale del gioco"""
|
||||||
try:
|
# file = open(str(self.groupid) + ".txt", "x")
|
||||||
file = open(str(self.groupid) + ".txt", "w")
|
# pickle.dump(self, file)
|
||||||
except OSError:
|
|
||||||
file = open(str(self.groupid) + ".txt", "x")
|
|
||||||
pickle.dump(self, file)
|
|
||||||
|
|
||||||
def endday(self):
|
def endday(self):
|
||||||
for player in self.players:
|
for player in self.players:
|
||||||
|
@ -166,8 +165,9 @@ while True:
|
||||||
g.groupid = t['chat']['id']
|
g.groupid = t['chat']['id']
|
||||||
g.adminid = t['from']['id']
|
g.adminid = t['from']['id']
|
||||||
partiteincorso.append(g)
|
partiteincorso.append(g)
|
||||||
elif t['text'].startswith("/load"):
|
g.message("Partita creata!")
|
||||||
g = load(t['chat']['id'])
|
# elif t['text'].startswith("/load"):
|
||||||
|
# g = load(t['chat']['id'])
|
||||||
elif t['text'].startswith("/status"):
|
elif t['text'].startswith("/status"):
|
||||||
telegram.sendmessage("Nessuna partita in corso.", t['chat']['id'], t['message_id'])
|
telegram.sendmessage("Nessuna partita in corso.", t['chat']['id'], t['message_id'])
|
||||||
# else:
|
# else:
|
||||||
|
@ -175,6 +175,7 @@ while True:
|
||||||
# t['message_id'])
|
# t['message_id'])
|
||||||
else:
|
else:
|
||||||
if t['text'].startswith("/join"):
|
if t['text'].startswith("/join"):
|
||||||
|
if g.joinphase:
|
||||||
p = Player()
|
p = Player()
|
||||||
p.telegramid = t['from']['id']
|
p.telegramid = t['from']['id']
|
||||||
# Qui crasha se non è stato impostato un username. Fare qualcosa?
|
# Qui crasha se non è stato impostato un username. Fare qualcosa?
|
||||||
|
@ -186,6 +187,8 @@ while True:
|
||||||
p.role = 1
|
p.role = 1
|
||||||
p.special = True
|
p.special = True
|
||||||
p.message("Sei stato assegnato alla squadra *MIFIA*.")
|
p.message("Sei stato assegnato alla squadra *MIFIA*.")
|
||||||
|
p.message("L'ID della partita è " + g.groupid + ".\n"
|
||||||
|
"Non dimenticarlo. ")
|
||||||
elif balanced >= 95:
|
elif balanced >= 95:
|
||||||
p.role = 2
|
p.role = 2
|
||||||
p.special = True
|
p.special = True
|
||||||
|
@ -196,8 +199,17 @@ while True:
|
||||||
p.message("Sei stato assegnato alla squadra *ROYAL*.")
|
p.message("Sei stato assegnato alla squadra *ROYAL*.")
|
||||||
g.addplayer(p)
|
g.addplayer(p)
|
||||||
g.message(p.username + " si è unito alla partita!")
|
g.message(p.username + " si è unito alla partita!")
|
||||||
elif t['text'].startswith("/save"):
|
else:
|
||||||
g.save()
|
g.message("La fase di iscrizione è terminata.")
|
||||||
|
# elif t['text'].startswith("/save"):
|
||||||
|
# g.save()
|
||||||
elif t['text'].startswith("/status"):
|
elif t['text'].startswith("/status"):
|
||||||
if t['from']['id'] == g.adminid:
|
if t['from']['id'] == g.adminid:
|
||||||
g.adminmessage(g.fullstatus())
|
g.adminmessage(g.fullstatus())
|
||||||
|
else:
|
||||||
|
g.message(g.status())
|
||||||
|
elif t['text'].startswith("/endjoin"):
|
||||||
|
if t['from']['id'] == g.adminid:
|
||||||
|
g.message("Fase di iscrizione chiusa.")
|
||||||
|
g.message(g.status())
|
||||||
|
elif t['text'].startswith("/")
|
Loading…
Reference in a new issue