2015-10-07 08:49:14 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-10-03 16:41:34 +00:00
|
|
|
import telegram
|
|
|
|
import steam
|
2015-10-08 16:39:56 +00:00
|
|
|
import random
|
2015-11-16 21:55:47 +00:00
|
|
|
import osu
|
2015-12-20 19:05:13 +00:00
|
|
|
import hearthstone
|
|
|
|
import sys
|
2015-10-08 16:39:56 +00:00
|
|
|
|
2015-11-13 17:15:27 +00:00
|
|
|
# Playlist di /rage, si riempie quando è vuota
|
2015-10-08 16:39:56 +00:00
|
|
|
rage = []
|
2015-10-03 16:41:34 +00:00
|
|
|
|
2016-01-14 18:37:37 +00:00
|
|
|
# TODO: Rimettere gli audio di Wololo
|
|
|
|
wololo = []
|
2015-11-20 15:31:46 +00:00
|
|
|
|
2015-12-15 18:23:12 +00:00
|
|
|
# Dizionario con i nomi utenti di osu!
|
|
|
|
# Se qualcuno cambia nome utente di Telegram, lo cambi anche QUI.
|
|
|
|
osunames = {
|
|
|
|
'steffo': 'SteffoRYG',
|
|
|
|
'evilbalu': 'NemesisRYG',
|
|
|
|
'fultz': 'ftz99',
|
|
|
|
'ilgattopardo': 'gattopardo',
|
|
|
|
'frankfrankfrank': 'FrankezRYG',
|
|
|
|
'fedyal': 'fedececco',
|
|
|
|
'acterryg': 'Acter1',
|
|
|
|
'maxsensei': 'MaxSensei',
|
|
|
|
'heisendoc': 'ImHeisenberg',
|
|
|
|
'thevagginadestroyer': 'barboll',
|
|
|
|
'cosimo03': 'Cosimo03',
|
|
|
|
'albertino04': 'Alby1',
|
|
|
|
'voltaggio': 'voltaggio',
|
|
|
|
'tauei': 'tauei',
|
|
|
|
'boni3099': 'boni3099',
|
|
|
|
'mrdima98': 'MRdima98',
|
|
|
|
}
|
|
|
|
|
2015-11-23 16:18:08 +00:00
|
|
|
random.seed()
|
|
|
|
|
2016-01-14 18:37:37 +00:00
|
|
|
# Ciclo principale del bot
|
2015-10-04 17:48:45 +00:00
|
|
|
print("Bot avviato!")
|
2015-11-13 17:15:27 +00:00
|
|
|
while True:
|
|
|
|
# Guarda il comando ricevuto.
|
2015-11-15 15:58:07 +00:00
|
|
|
msg = telegram.getupdates()
|
2016-01-14 18:37:37 +00:00
|
|
|
# Se il messaggio non è una notifica di servizio...
|
2015-11-20 15:34:54 +00:00
|
|
|
if 'text' in msg:
|
2016-01-14 18:37:37 +00:00
|
|
|
# Salvatelo in una stringa
|
|
|
|
text = msg['text']
|
2015-12-15 18:23:12 +00:00
|
|
|
# Guarda l'ID della chat in cui è stato inviato
|
2016-01-14 18:37:37 +00:00
|
|
|
sentin = msg['chat']['id']
|
2015-12-15 18:23:12 +00:00
|
|
|
# Nome da visualizzare nella console per capire chi accidenti è che invia messaggi strani
|
|
|
|
if 'username' in msg['from']:
|
2016-01-14 18:37:37 +00:00
|
|
|
# Salva l'username se esiste
|
|
|
|
username = msg['from']['username']
|
2015-12-15 18:23:12 +00:00
|
|
|
else:
|
2016-01-14 18:37:37 +00:00
|
|
|
# Altrimenti, salva l'userID
|
|
|
|
username = str(msg['from']['id'])
|
2015-12-15 18:23:12 +00:00
|
|
|
# Riconosci il comando.
|
|
|
|
# Viene usato startswith perchè il comando potrebbe anche essere inviato in forma /ciao@RoyalBot.
|
2016-01-14 18:37:37 +00:00
|
|
|
if text.startswith('/ahnonlosoio'):
|
|
|
|
print("@" + username + ": /ahnonlosoio")
|
|
|
|
telegram.sendmessage("Ah, non lo so nemmeno io!", sentin)
|
|
|
|
elif text.startswith('/ehoh'):
|
|
|
|
print("@" + username + ": /ehoh")
|
|
|
|
telegram.sendmessage("Eh, oh. Sono cose che capitano.", sentin)
|
|
|
|
elif text.startswith('/playing'):
|
|
|
|
print("@" + username + ": /playing")
|
|
|
|
cmd = text.split(" ")
|
|
|
|
# Se è stato specificato un AppID...
|
2015-11-20 15:34:54 +00:00
|
|
|
if len(cmd) >= 2:
|
|
|
|
n = steam.getnumberofcurrentplayers(cmd[1])
|
2016-01-14 18:37:37 +00:00
|
|
|
# Se viene ricevuta una risposta...
|
2015-11-20 15:34:54 +00:00
|
|
|
if n is None:
|
2016-01-14 18:37:37 +00:00
|
|
|
telegram.sendmessage(chr(9888) + " L'app specificata non esiste!", sentin)
|
2015-11-20 15:34:54 +00:00
|
|
|
else:
|
|
|
|
telegram.sendmessage('In questo momento, ' + str(n) + ' persone stanno giocando a [' + cmd[1] +
|
2016-01-14 18:37:37 +00:00
|
|
|
'](https://steamdb.info/app/' + cmd[1] + '/graphs/)', sentin)
|
2015-11-13 17:15:27 +00:00
|
|
|
else:
|
2016-01-14 18:37:37 +00:00
|
|
|
telegram.sendmessage(chr(9888) + ' Non hai specificato un AppID!\n'
|
|
|
|
'La sintassi corretta è /playing <AppID>.', sentin)
|
|
|
|
elif text.startswith('/saldi'):
|
|
|
|
print("@" + username + ": /saldi")
|
|
|
|
cmd = text.split(" ", 1)
|
|
|
|
if len(cmd) == 2:
|
2015-11-20 15:34:54 +00:00
|
|
|
telegram.sendmessage(
|
2016-01-14 18:37:37 +00:00
|
|
|
'Visualizza le offerte di '
|
2015-11-20 15:34:54 +00:00
|
|
|
'[' + cmd[1] + '](https://isthereanydeal.com/#/search:' + cmd[1].replace(' ', '%20') +
|
2016-01-14 18:37:37 +00:00
|
|
|
";/scroll:%23gamelist).", sentin)
|
2015-11-16 21:55:47 +00:00
|
|
|
else:
|
2015-11-20 15:34:54 +00:00
|
|
|
telegram.sendmessage(chr(9888) +
|
2016-01-14 18:37:37 +00:00
|
|
|
"Non hai specificato un gioco!"
|
|
|
|
"[Visualizza tutte le offerte]"
|
|
|
|
"(https://isthereanydeal.com/#/search:.;/scroll:%23gamelist).",
|
|
|
|
sentin)
|
|
|
|
# elif text.startswith('/audio'):
|
|
|
|
# # Se qualcuno ne ha voglia, qui si potrebbe aggiungere la selezione degli audio come argomento,
|
|
|
|
# # invece che fare una playlist casuale...
|
|
|
|
# # Se non ci sono rage nella playlist, riempila e mescolala!
|
|
|
|
# if len(rage) <= 0:
|
|
|
|
# # TODO: Rimettere gli audio di /audio
|
|
|
|
# rage = []
|
|
|
|
# random.shuffle(rage)
|
|
|
|
# # Estrai un audio a caso tra quelli nella playlist e rimuovilo.
|
|
|
|
# ragesend = rage.pop()
|
|
|
|
# print("@" + username + ": /audio")
|
|
|
|
# telegram.senddocument(ragesend, sentin)
|
2016-01-19 20:12:52 +00:00
|
|
|
elif text.startswith('/sbam'):
|
|
|
|
print("@" + username + ": /sbam")
|
|
|
|
telegram.senddocument('BQADAgADBwMAAh8GgAGSsR4rwmk_LwI', sentin)
|
2016-01-14 18:37:37 +00:00
|
|
|
# elif text.startswith('/wololo'):
|
|
|
|
# print("@" + username + ": /wololo")
|
|
|
|
# if len(cmd) >= 2:
|
|
|
|
# telegram.senddocument(wololo[int(cmd[1]) - 1], sentin)
|
|
|
|
# else:
|
|
|
|
# telegram.senddocument('BQADAgADZwIAAh8GgAF3etjqkzFDxAI', sentin)
|
|
|
|
elif text.startswith('/osu'):
|
|
|
|
print("@" + username + ": /osu")
|
|
|
|
# Trova il nome utente
|
|
|
|
cmd = text.split(' ', 1)
|
2015-11-20 15:34:54 +00:00
|
|
|
if len(cmd) >= 2:
|
2016-01-14 18:37:37 +00:00
|
|
|
# Trova la modalità
|
|
|
|
cmd = text.split(' ', 2)
|
2015-11-20 15:34:54 +00:00
|
|
|
if len(cmd) >= 3:
|
2016-01-14 18:37:37 +00:00
|
|
|
# Modalità specificata
|
2015-11-24 15:01:50 +00:00
|
|
|
mode = int(cmd[2])
|
2015-11-20 15:34:54 +00:00
|
|
|
else:
|
2016-01-14 18:37:37 +00:00
|
|
|
# Osu! normale
|
2015-11-24 15:01:50 +00:00
|
|
|
mode = 0
|
|
|
|
r = osu.getuserrecent(cmd[1], mode)
|
|
|
|
if mode == 0:
|
2016-01-14 18:37:37 +00:00
|
|
|
telegram.sendmessage("*Osu!*\n"
|
2015-12-15 18:23:12 +00:00
|
|
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
|
|
|
'beatmap_id'] +
|
2016-01-14 18:37:37 +00:00
|
|
|
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n"
|
|
|
|
"*Combo* x" + r['maxcombo'] + "\n"
|
|
|
|
"*300*: " + r['count300'] + "\n"
|
|
|
|
"*100*: " + r['count100'] + "\n"
|
|
|
|
"*50*: " + r['count50'] + "\n"
|
2016-01-19 17:18:12 +00:00
|
|
|
"*Awesome*: " + r['countgeki'] + "\n"
|
|
|
|
"*Good*: " + r['countkatu'] + "\n"
|
2016-01-14 18:37:37 +00:00
|
|
|
"*Miss*: " + r['countmiss'], sentin)
|
2015-11-24 15:01:50 +00:00
|
|
|
elif mode == 1:
|
2016-01-14 18:37:37 +00:00
|
|
|
telegram.sendmessage("*Taiko*\n"
|
2015-12-15 18:23:12 +00:00
|
|
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
|
|
|
'beatmap_id'] +
|
2016-01-14 18:37:37 +00:00
|
|
|
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n"
|
|
|
|
"*Combo* x" + r['maxcombo'] + "\n"
|
|
|
|
"*Great*: " + r['count300'] + "\n"
|
|
|
|
"*Good*: " + r['count100'] + "\n"
|
|
|
|
"_Large_ *Great*: " + r['countkatu'] + "\n"
|
|
|
|
"_Large_ *Good*: " + r['countgeki'] + "\n"
|
|
|
|
"*Bad*: " + r['countmiss'], sentin)
|
2015-11-24 15:01:50 +00:00
|
|
|
elif mode == 2:
|
2016-01-14 18:37:37 +00:00
|
|
|
telegram.sendmessage("*Catch the Beat*\n"
|
2015-12-15 18:23:12 +00:00
|
|
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
|
|
|
'beatmap_id'] +
|
2016-01-14 18:37:37 +00:00
|
|
|
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n"
|
|
|
|
"*Combo* x" + r['maxcombo'] + "\n"
|
|
|
|
"*Fruit*: " + r['count300'] + "\n"
|
|
|
|
"*Droplet* _tick_: " + r['count100'] + "\n"
|
|
|
|
"*Droplet* _trail_: " + r['count50'] + "\n"
|
|
|
|
"*Miss*: " + r['countmiss'], sentin)
|
2015-11-24 15:01:50 +00:00
|
|
|
elif mode == 3:
|
|
|
|
telegram.sendmessage("*Osu!mania*\n" +
|
2015-12-15 18:23:12 +00:00
|
|
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
2016-01-14 18:37:37 +00:00
|
|
|
'beatmap_id'] + ")\n*" + r['rank'] +
|
|
|
|
"*\n*Punti*: " + r['score'] + "\n"
|
|
|
|
"*Combo* x" + r['maxcombo'] + "\n"
|
|
|
|
"_Rainbow_ *300*: " + r['countgeki'] + "\n"
|
|
|
|
"*300*: " + r['count300'] + "\n"
|
|
|
|
"*100*: " + r['count100'] + "\n"
|
|
|
|
"*200*: " + r['countkatu'] + "\n"
|
|
|
|
"*50*: " + r['count50'] + "\n"
|
|
|
|
"*Miss*: " + r['countmiss'], sentin)
|
2015-11-20 15:34:54 +00:00
|
|
|
else:
|
2015-12-15 18:23:12 +00:00
|
|
|
# E' un po' una scorciatoia eh, peeerò...
|
2016-01-14 18:37:37 +00:00
|
|
|
if username.lower() in osunames:
|
|
|
|
r = osu.getuserrecent(osunames[username.lower()], 0)
|
|
|
|
telegram.sendmessage("*Osu!*\n"
|
2015-12-15 18:23:12 +00:00
|
|
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
|
|
|
'beatmap_id'] +
|
2016-01-14 18:37:37 +00:00
|
|
|
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n"
|
|
|
|
"*Combo* x" + r['maxcombo'] + "\n"
|
|
|
|
"*300*: " + r['count300'] + "\n"
|
|
|
|
"*100*: " + r['count100'] + "\n"
|
|
|
|
"*50*: " + r['count50'] + "\n"
|
|
|
|
"*Awesome*: " + r['countkatu'] + "\n"
|
|
|
|
"*Good*: " + r['countgeki'] + "\n"
|
|
|
|
"*Miss*: " + r['countmiss'], sentin)
|
|
|
|
elif text.startswith('/roll'):
|
|
|
|
print("@" + username + ": /roll")
|
|
|
|
cmd = text.split(' ', 1)
|
2015-11-23 16:18:08 +00:00
|
|
|
if len(cmd) >= 2:
|
|
|
|
m = int(cmd[1])
|
|
|
|
else:
|
|
|
|
m = 100
|
2016-01-14 18:37:37 +00:00
|
|
|
n = random.randrange(m) + 1
|
|
|
|
telegram.sendmessage("Numero casuale da 1 a " + str(m) + ":\n*" + str(n) + "*", sentin)
|
|
|
|
elif text.startswith('/automah'):
|
|
|
|
print("@" + username + ": /automah")
|
|
|
|
# TODO: Mettere l'audio di Tobia
|
|
|
|
telegram.sendmessage("Automaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa! Devi funzionare, cavolo!", sentin)
|
|
|
|
elif text.startswith('/hs'):
|
|
|
|
print(username + ": /hs")
|
|
|
|
cmd = text.split(" ", 1)
|
2015-12-20 20:06:17 +00:00
|
|
|
r = None
|
2015-12-20 19:05:13 +00:00
|
|
|
try:
|
2016-01-14 18:37:37 +00:00
|
|
|
r = hearthstone.card(cmd[1])
|
|
|
|
# Se ci sono più carte, prendine una a caso!
|
|
|
|
r = r[random.randrange(len(r))]
|
2015-12-20 19:05:13 +00:00
|
|
|
except ValueError:
|
2016-01-14 18:37:37 +00:00
|
|
|
telegram.sendmessage(chr(9888) + "La carta specificata non esiste!", sentin)
|
2015-12-20 19:05:13 +00:00
|
|
|
else:
|
|
|
|
# Si trova nelle bustine
|
|
|
|
if 'howToGet' not in r:
|
|
|
|
if 'cardSet' in r:
|
2016-01-14 18:37:37 +00:00
|
|
|
r['howToGet'] = "Trovala in " + r['cardSet'] + "."
|
2015-12-20 19:05:13 +00:00
|
|
|
else:
|
|
|
|
r['howToGet'] = "Inottenibile."
|
|
|
|
# Nessuna classe
|
|
|
|
if 'playerClass' not in r:
|
|
|
|
r['playerClass'] = "Neutral"
|
2015-12-20 20:06:17 +00:00
|
|
|
# Nessun effetto
|
|
|
|
if 'text' not in r:
|
|
|
|
r['text'] = "_Nessun effetto._"
|
|
|
|
# Nessuna rarità
|
|
|
|
if 'rarity' not in r:
|
|
|
|
r['rarity'] = "None"
|
|
|
|
# Nessuna descrizione
|
|
|
|
if 'flavor' not in r:
|
|
|
|
r['flavor'] = "Nessuna descrizione."
|
2015-12-20 19:05:13 +00:00
|
|
|
# Testo principale
|
2015-12-21 15:52:06 +00:00
|
|
|
text = None
|
2016-01-14 18:37:37 +00:00
|
|
|
# Magie
|
2015-12-20 19:05:13 +00:00
|
|
|
if r['type'] == "Spell":
|
|
|
|
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
|
|
|
"(" + r['rarity'] + ")\n" +
|
|
|
|
r['playerClass'] + "\n" +
|
|
|
|
str(r['cost']) + " mana\n" +
|
|
|
|
r['text'] + "\n" +
|
|
|
|
r['howToGet'] + "\n\n_" +
|
|
|
|
r['flavor'] + "_\n")
|
2016-01-14 18:37:37 +00:00
|
|
|
# Servitori
|
2015-12-20 19:05:13 +00:00
|
|
|
elif r['type'] == "Minion":
|
|
|
|
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
|
|
|
"(" + r['rarity'] + ")\n" +
|
|
|
|
r['playerClass'] + "\n" +
|
|
|
|
str(r['cost']) + " mana\n" +
|
|
|
|
str(r['attack']) + " attacco\n" +
|
|
|
|
str(r['health']) + " salute\n" +
|
|
|
|
r['text'] + "\n" +
|
|
|
|
r['howToGet'] + "\n\n_" +
|
|
|
|
r['flavor'] + "_\n")
|
2016-01-14 18:37:37 +00:00
|
|
|
# Armi
|
2015-12-20 20:06:17 +00:00
|
|
|
elif r['type'] == "Weapon":
|
|
|
|
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
|
|
|
"(" + r['rarity'] + ")\n" +
|
|
|
|
r['playerClass'] + "\n" +
|
|
|
|
str(r['cost']) + " mana\n" +
|
|
|
|
str(r['attack']) + " attacco\n" +
|
|
|
|
str(r['durability']) + " integrita'\n" +
|
|
|
|
r['text'] + "\n" +
|
|
|
|
r['howToGet'] + "\n\n_" +
|
|
|
|
r['flavor'] + "_\n")
|
2016-01-14 18:37:37 +00:00
|
|
|
# Potere Eroe
|
2015-12-20 20:06:17 +00:00
|
|
|
elif r['type'] == "Hero Power":
|
|
|
|
text = str("[" + r['name'] + "](" + r['img'] + ")\n" +
|
|
|
|
r['playerClass'] + "\n" +
|
|
|
|
str(r['cost']) + " mana\n" +
|
|
|
|
r['text'] + "\n")
|
2016-01-14 18:37:37 +00:00
|
|
|
# Eroe
|
2015-12-20 20:06:17 +00:00
|
|
|
elif r['type'] == "Hero":
|
|
|
|
text = str("[" + r['name'] + "](" + r['img'] + ")\n" +
|
|
|
|
str(r['health']) + " salute\n")
|
2016-01-14 18:37:37 +00:00
|
|
|
telegram.sendmessage(text, sentin)
|
|
|
|
elif text.startswith('/restart'):
|
|
|
|
if username == "Steffo":
|
|
|
|
telegram.sendmessage("Riavvio accettato.", sentin)
|
2015-12-20 19:05:13 +00:00
|
|
|
sys.exit(0)
|