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

Aggiunte altre cose

This commit is contained in:
Steffo 2016-04-03 13:14:05 +02:00
parent 905c5dc22e
commit 8faec4496f

View file

@ -7,6 +7,8 @@ class Player:
username = str() username = str()
role = 0 # 0 = normale, 1 = mifia role = 0 # 0 = normale, 1 = mifia
alive = True alive = True
votedfor = str()
special = False
def message(self, text): def message(self, text):
"""Manda un messaggio al giocatore """Manda un messaggio al giocatore
@ -14,13 +16,10 @@ class Player:
""" """
telegram.sendmessage(text, self.telegramid) telegram.sendmessage(text, self.telegramid)
def kill(self):
"""Uccidi il giocatore"""
self.alive = False
class Game: class Game:
chat = int() groupid = int()
adminid = int()
players = list() players = list()
def message(self, text): def message(self, text):
@ -29,7 +28,13 @@ class Game:
""" """
telegram.sendmessage(text, self.chat) telegram.sendmessage(text, self.chat)
def mifiamessage(self, text): 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):
"""Manda un messaggio alla chat generale del gioco """Manda un messaggio alla chat generale del gioco
:param text: Testo del messaggio :param text: Testo del messaggio
""" """
@ -37,8 +42,8 @@ class Game:
if player.role == 1: if player.role == 1:
telegram.sendmessage(text, player.telegramid) telegram.sendmessage(text, player.telegramid)
def displaystatus(self): def status(self):
"""Visualizza lo stato attuale della partita""" """Restituisci lo stato attuale della partita in una stringa unicode"""
tosend = "Stato attuale del gioco: \n" tosend = "Stato attuale del gioco: \n"
for player in self.players: for player in self.players:
if not player.alive: if not player.alive:
@ -46,23 +51,47 @@ class Game:
else: else:
tosend += "\U0001F636 " tosend += "\U0001F636 "
tosend += player.username + "\n" tosend += player.username + "\n"
self.message(tosend) return tosend
def displayfullstatus(self): def fullstatus(self):
"""Visualizza lo stato attuale della partita (per admin?)""" """Restituisci lo stato attuale della partita (per admin?) in una stringa unicode"""
tosend = "Stato attuale del gioco: \n" tosend = "Stato attuale del gioco: \n"
for player in self.players: for player in self.players:
if not player.alive: if not player.alive:
tosend += "_Morto_ " tosend += "\U0001F480 "
elif player.role == 1: elif player.role == 1:
tosend += "_Mifia_ " tosend += "_Mifia_ "
else: else:
tosend += "_Civile_ " tosend += "\U0001F636 "
tosend += player.username + "\n" tosend += player.username + "\n"
self.message(tosend) return tosend
def findusername(self, username):
"""Trova un giocatore con un certo nome utente
:param username: Nome utente da cercare
"""
for player in self.players:
if player.username == username:
return player
else:
return None
def findid(self, telegramid):
"""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
def addplayer(self, player): def addplayer(self, player):
"""Aggiungi un giocatore alla partita """Aggiungi un giocatore alla partita
:param player: Oggetto del giocatore da aggiungere :param player: Oggetto del giocatore da aggiungere
""" """
self.players.append(player) self.players.append(player)
def mostvoted(self):
"""Trova il giocatore più votato"""