1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +00:00
royalnet/mifia.py

97 lines
2.8 KiB
Python

# -*- coding: utf-8 -*-
import telegram
class Player:
telegramid = int()
username = str()
role = 0 # 0 = normale, 1 = mifia
alive = True
votedfor = str()
special = False
def message(self, text):
"""Manda un messaggio al giocatore
:param text: Testo del messaggio
"""
telegram.sendmessage(text, self.telegramid)
class Game:
groupid = int()
adminid = int()
players = list()
def message(self, text):
"""Manda un messaggio alla chat generale del gioco
:param text: Testo del messaggio
"""
telegram.sendmessage(text, self.chat)
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
:param text: Testo del messaggio
"""
for player in self.players:
if player.role == 1:
telegram.sendmessage(text, player.telegramid)
def status(self):
"""Restituisci lo stato attuale della partita in una stringa unicode"""
tosend = "Stato attuale del gioco: \n"
for player in self.players:
if not player.alive:
tosend += "\U0001F480 "
else:
tosend += "\U0001F636 "
tosend += player.username + "\n"
return tosend
def fullstatus(self):
"""Restituisci lo stato attuale della partita (per admin?) in una stringa unicode"""
tosend = "Stato attuale del gioco: \n"
for player in self.players:
if not player.alive:
tosend += "\U0001F480 "
elif player.role == 1:
tosend += "_Mifia_ "
else:
tosend += "\U0001F636 "
tosend += player.username + "\n"
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):
"""Aggiungi un giocatore alla partita
:param player: Oggetto del giocatore da aggiungere
"""
self.players.append(player)
def mostvoted(self):
"""Trova il giocatore più votato"""