mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Merge branch 'master' of github.com:Steffo99/RoyalBotV2
This commit is contained in:
commit
23074d470e
1 changed files with 57 additions and 23 deletions
80
bot.py
80
bot.py
|
@ -173,13 +173,15 @@ while True:
|
||||||
# Viene usato startswith perchè il comando potrebbe anche essere inviato in forma /ciao@RoyalBot.
|
# Viene usato startswith perchè il comando potrebbe anche essere inviato in forma /ciao@RoyalBot.
|
||||||
if text.startswith('/ahnonlosoio'):
|
if text.startswith('/ahnonlosoio'):
|
||||||
print("@" + username + ": /ahnonlosoio")
|
print("@" + username + ": /ahnonlosoio")
|
||||||
|
# Rispondi con Ah, non lo so nemmeno io.
|
||||||
telegram.sendmessage("Ah, non lo so nemmeno io!", sentin, source)
|
telegram.sendmessage("Ah, non lo so nemmeno io!", sentin, source)
|
||||||
elif text.startswith('/ehoh'):
|
elif text.startswith('/ehoh'):
|
||||||
print("@" + username + ": /ehoh")
|
print("@" + username + ": /ehoh")
|
||||||
|
# Rispondi con Eh, oh. Sono cose che capitano.
|
||||||
telegram.sendmessage("Eh, oh. Sono cose che capitano.", sentin, source)
|
telegram.sendmessage("Eh, oh. Sono cose che capitano.", sentin, source)
|
||||||
elif text.startswith('/playing'):
|
elif text.startswith('/playing'):
|
||||||
print("@" + username + ": /playing")
|
print("@" + username + ": /playing")
|
||||||
# Informa Telegram che il messaggio è stato ricevuto.
|
# Informa Telegram che il messaggio è stato ricevuto e visualizza Royal Bot sta scrivendo.
|
||||||
telegram.sendchataction(sentin)
|
telegram.sendchataction(sentin)
|
||||||
cmd = text.split(" ")
|
cmd = text.split(" ")
|
||||||
# Se è stato specificato un AppID...
|
# Se è stato specificato un AppID...
|
||||||
|
@ -196,7 +198,8 @@ while True:
|
||||||
'La sintassi corretta è /playing <AppID>.', sentin, source)
|
'La sintassi corretta è /playing <AppID>.', sentin, source)
|
||||||
elif text.startswith('/saldi'):
|
elif text.startswith('/saldi'):
|
||||||
print("@" + username + ": /saldi")
|
print("@" + username + ": /saldi")
|
||||||
# Informa Telegram che il messaggio è stato ricevuto.
|
# Visualizza il link di isthereanydeal con i saldi di un gioco.
|
||||||
|
# Informa Telegram che il messaggio è stato ricevuto e visualizza Royal Bot sta scrivendo.
|
||||||
telegram.sendchataction(sentin)
|
telegram.sendchataction(sentin)
|
||||||
cmd = text.split(" ", 1)
|
cmd = text.split(" ", 1)
|
||||||
if len(cmd) == 2:
|
if len(cmd) == 2:
|
||||||
|
@ -244,37 +247,43 @@ while True:
|
||||||
telegram.senddocument(ragesend, sentin)
|
telegram.senddocument(ragesend, sentin)
|
||||||
elif text.startswith('/sbam'):
|
elif text.startswith('/sbam'):
|
||||||
print("@" + username + ": /sbam")
|
print("@" + username + ": /sbam")
|
||||||
|
# Manda l'audio contenente gli sbam di tutti i membri Royal Games.
|
||||||
telegram.senddocument('BQADAgADBwMAAh8GgAGSsR4rwmk_LwI', sentin)
|
telegram.senddocument('BQADAgADBwMAAh8GgAGSsR4rwmk_LwI', sentin)
|
||||||
# elif text.startswith('/wololo'):
|
|
||||||
# print("@" + username + ": /wololo")
|
|
||||||
# if len(cmd) >= 2:
|
|
||||||
# telegram.senddocument(wololo[int(cmd[1]) - 1], sentin, source)
|
|
||||||
# else:
|
|
||||||
# telegram.senddocument('BQADAgADZwIAAh8GgAF3etjqkzFDxAI', sentin, source)
|
|
||||||
elif text.startswith('/osu'):
|
elif text.startswith('/osu'):
|
||||||
print("@" + username + ": /osu")
|
print("@" + username + ": /osu")
|
||||||
|
# Visualizza il punteggio più recente di osu!
|
||||||
# Informa Telegram che il messaggio è stato ricevuto.
|
# Informa Telegram che il messaggio è stato ricevuto.
|
||||||
telegram.sendchataction(sentin)
|
telegram.sendchataction(sentin)
|
||||||
# Trova il nome utente
|
# Trova il nome utente specificato
|
||||||
cmd = text.split(' ', 1)
|
cmd = text.split(' ', 1)
|
||||||
|
# Se è stato specificato un nome utente
|
||||||
if len(cmd) >= 2:
|
if len(cmd) >= 2:
|
||||||
# Trova la modalità
|
# Trova la modalità
|
||||||
|
# 0 = osu!
|
||||||
|
# 1 = osu!taiko
|
||||||
|
# 2 = osu!catch
|
||||||
|
# 3 = osu!mania
|
||||||
cmd = text.split(' ', 2)
|
cmd = text.split(' ', 2)
|
||||||
|
# Se è stata specificata una modalità
|
||||||
if len(cmd) >= 3:
|
if len(cmd) >= 3:
|
||||||
# Modalità specificata
|
# Modalità specificata
|
||||||
mode = int(cmd[2])
|
mode = int(cmd[2])
|
||||||
else:
|
else:
|
||||||
# Osu! normale
|
# Imposta la modalità a osu!
|
||||||
mode = 0
|
mode = 0
|
||||||
|
# Prova a mandare una richiesta ai server di osu per l'ultima canzone giocata
|
||||||
try:
|
try:
|
||||||
r = osu.getuserrecent(cmd[1], mode)
|
r = osu.getuserrecent(cmd[1], mode)
|
||||||
|
# Se la funzione restituisce un errore, riferisci su Telegram l'errore e previeni il crash.
|
||||||
except NameError:
|
except NameError:
|
||||||
telegram.sendmessage(chr(9888) + " Errore nella richiesta ai server di Osu!", sentin, source)
|
telegram.sendmessage(chr(9888) + " Errore nella richiesta ai server di Osu!", sentin, source)
|
||||||
|
# Se tutto va bene, continua!
|
||||||
else:
|
else:
|
||||||
|
# Se ci sono delle mod attive...
|
||||||
if "enabled_mods" in r:
|
if "enabled_mods" in r:
|
||||||
mods = "*Mod:*"
|
mods = "*Mod:*"
|
||||||
# Adoro SE
|
# Dividi in bit l'ID delle mod selezionate usando un bitwise and
|
||||||
# Dividi in bit l'ID delle mod selezionate
|
# Forse si potrebbe rifare usando la forma esadecimale...?
|
||||||
if int(r['enabled_mods']) & 0x1:
|
if int(r['enabled_mods']) & 0x1:
|
||||||
mods += " NoFail"
|
mods += " NoFail"
|
||||||
if int(r['enabled_mods']) & 0x2:
|
if int(r['enabled_mods']) & 0x2:
|
||||||
|
@ -331,9 +340,11 @@ while True:
|
||||||
mods += " 2K"
|
mods += " 2K"
|
||||||
mods += '\n'
|
mods += '\n'
|
||||||
else:
|
else:
|
||||||
|
# Lascia la riga delle mod vuota.
|
||||||
mods = '\n'
|
mods = '\n'
|
||||||
if mode == 0:
|
if mode == 0:
|
||||||
telegram.sendmessage("*Osu!*\n"
|
# Visualizza le informazioni relative alla modalità osu!
|
||||||
|
telegram.sendmessage("*osu!*\n"
|
||||||
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
||||||
'beatmap_id'] +
|
'beatmap_id'] +
|
||||||
")\n*" + r['rank'] + "*\n" + mods +
|
")\n*" + r['rank'] + "*\n" + mods +
|
||||||
|
@ -346,7 +357,8 @@ while True:
|
||||||
"*Good*: " + r['countgeki'] + "\n"
|
"*Good*: " + r['countgeki'] + "\n"
|
||||||
"*Miss*: " + r['countmiss'], sentin, source)
|
"*Miss*: " + r['countmiss'], sentin, source)
|
||||||
elif mode == 1:
|
elif mode == 1:
|
||||||
telegram.sendmessage("*Taiko*\n"
|
# Visualizza le informazioni relative alla modalità osu!taiko
|
||||||
|
telegram.sendmessage("*osu!taiko*\n"
|
||||||
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
||||||
'beatmap_id'] +
|
'beatmap_id'] +
|
||||||
")\n*" + r['rank'] + "*\n" + mods +
|
")\n*" + r['rank'] + "*\n" + mods +
|
||||||
|
@ -358,7 +370,8 @@ while True:
|
||||||
"_Large_ *Good*: " + r['countgeki'] + "\n"
|
"_Large_ *Good*: " + r['countgeki'] + "\n"
|
||||||
"*Bad*: " + r['countmiss'], sentin, source)
|
"*Bad*: " + r['countmiss'], sentin, source)
|
||||||
elif mode == 2:
|
elif mode == 2:
|
||||||
telegram.sendmessage("*Catch the Beat*\n"
|
# Visualizza le informazioni relative alla modalità osu!catch
|
||||||
|
telegram.sendmessage("*osu!catch*\n"
|
||||||
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
||||||
'beatmap_id'] +
|
'beatmap_id'] +
|
||||||
")\n*" + r['rank'] + "*\n" + mods +
|
")\n*" + r['rank'] + "*\n" + mods +
|
||||||
|
@ -369,7 +382,8 @@ while True:
|
||||||
"*Droplet* _trail_: " + r['count50'] + "\n"
|
"*Droplet* _trail_: " + r['count50'] + "\n"
|
||||||
"*Miss*: " + r['countmiss'], sentin, source)
|
"*Miss*: " + r['countmiss'], sentin, source)
|
||||||
elif mode == 3:
|
elif mode == 3:
|
||||||
telegram.sendmessage("*Osu!mania*\n" +
|
# Visualizza le informazioni relative alla modalità osu!mania
|
||||||
|
telegram.sendmessage("*osu!mania*\n" +
|
||||||
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
||||||
'beatmap_id'] + ")\n*" + r['rank'] + "*\n" + mods +
|
'beatmap_id'] + ")\n*" + r['rank'] + "*\n" + mods +
|
||||||
"\n*Punti*: " + r['score'] + "\n"
|
"\n*Punti*: " + r['score'] + "\n"
|
||||||
|
@ -386,7 +400,6 @@ while True:
|
||||||
r = osu.getuserrecent(osunames[username.lower()], 0)
|
r = osu.getuserrecent(osunames[username.lower()], 0)
|
||||||
if "enabled_mods" in r:
|
if "enabled_mods" in r:
|
||||||
mods = "*Mod:*"
|
mods = "*Mod:*"
|
||||||
# Adoro SE
|
|
||||||
# Dividi in bit l'ID delle mod selezionate
|
# Dividi in bit l'ID delle mod selezionate
|
||||||
if int(r['enabled_mods']) & 0b1:
|
if int(r['enabled_mods']) & 0b1:
|
||||||
mods += " NoFail"
|
mods += " NoFail"
|
||||||
|
@ -460,22 +473,28 @@ while True:
|
||||||
elif text.startswith('/roll'):
|
elif text.startswith('/roll'):
|
||||||
print("@" + username + ": /roll")
|
print("@" + username + ": /roll")
|
||||||
cmd = text.split(' ', 1)
|
cmd = text.split(' ', 1)
|
||||||
|
# Se è stato specificato un numero
|
||||||
if len(cmd) >= 2:
|
if len(cmd) >= 2:
|
||||||
|
# Controlla che sia convertibile in un intero.
|
||||||
try:
|
try:
|
||||||
m = int(cmd[1])
|
m = int(cmd[1])
|
||||||
except ValueError:
|
except ValueError:
|
||||||
telegram.sendmessage(chr(9888) + " Il numero specificato non è un intero.", sentin, source)
|
telegram.sendmessage(chr(9888) + " Il numero specificato non è un intero.", sentin, source)
|
||||||
else:
|
else:
|
||||||
|
# Imposta il numero massimo a 100.
|
||||||
m = 100
|
m = 100
|
||||||
|
# Prova a generare un numero casuale.
|
||||||
try:
|
try:
|
||||||
n = random.randrange(m) + 1
|
n = random.randrange(m) + 1
|
||||||
except ValueError:
|
except ValueError:
|
||||||
telegram.sendmessage(chr(9888) + " Il numero specificato non è maggiore o uguale a 0.", sentin, source)
|
telegram.sendmessage(chr(9888) + " Il numero specificato non è maggiore o uguale a 0.", sentin,
|
||||||
|
source)
|
||||||
|
# Se tutto va bene visualizza il numero generato
|
||||||
else:
|
else:
|
||||||
telegram.sendmessage("Numero casuale da 1 a " + str(m) + ":\n*" + str(n) + "*", sentin, source)
|
telegram.sendmessage("Numero casuale da 1 a " + str(m) + ":\n*" + str(n) + "*", sentin, source)
|
||||||
elif text.startswith('/automah'):
|
elif text.startswith('/automah'):
|
||||||
print("@" + username + ": /automah")
|
print("@" + username + ": /automah")
|
||||||
# TODO: Mettere l'audio di Tobia
|
# Invia il messaggio.
|
||||||
telegram.sendmessage("Automaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa! Devi funzionare, cavolo!", sentin,
|
telegram.sendmessage("Automaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa! Devi funzionare, cavolo!", sentin,
|
||||||
source)
|
source)
|
||||||
elif text.startswith('/hs'):
|
elif text.startswith('/hs'):
|
||||||
|
@ -483,14 +502,16 @@ while True:
|
||||||
# Informa Telegram che il messaggio è stato ricevuto.
|
# Informa Telegram che il messaggio è stato ricevuto.
|
||||||
telegram.sendchataction(sentin)
|
telegram.sendchataction(sentin)
|
||||||
cmd = text.split(" ", 1)
|
cmd = text.split(" ", 1)
|
||||||
r = None
|
# Se è stata specificata una carta...
|
||||||
if len(cmd) >= 2:
|
if len(cmd) >= 2:
|
||||||
|
# Controlla che la carta specificata esista.
|
||||||
try:
|
try:
|
||||||
r = hearthstone.card(cmd[1])
|
r = hearthstone.card(cmd[1])
|
||||||
# Se ci sono più carte, prendine una a caso!
|
# Se ci sono più carte, prendine una a caso!
|
||||||
r = r[random.randrange(len(r))]
|
r = r[random.randrange(len(r))]
|
||||||
except ValueError:
|
except ValueError:
|
||||||
telegram.sendmessage(chr(9888) + " La carta specificata non esiste!", sentin, source)
|
telegram.sendmessage(chr(9888) + " La carta specificata non esiste!", sentin, source)
|
||||||
|
# Se tutto va bene, elabora e visualizza le informazioni sulla carta.
|
||||||
else:
|
else:
|
||||||
# Si trova nelle bustine
|
# Si trova nelle bustine
|
||||||
if 'howToGet' not in r:
|
if 'howToGet' not in r:
|
||||||
|
@ -504,11 +525,12 @@ while True:
|
||||||
# Nessun effetto
|
# Nessun effetto
|
||||||
if 'text' not in r:
|
if 'text' not in r:
|
||||||
r['text'] = ""
|
r['text'] = ""
|
||||||
# HTML nella descrizione
|
# Converti l'HTML nella descrizione in Markdown. Circa.
|
||||||
r['text'] = r['text'].replace("<b>", "*")
|
r['text'] = r['text'].replace("<b>", "*")
|
||||||
r['text'] = r['text'].replace("</b>", "*")
|
r['text'] = r['text'].replace("</b>", "*")
|
||||||
r['text'] = r['text'].replace("<i>", "_")
|
r['text'] = r['text'].replace("<i>", "_")
|
||||||
r['text'] = r['text'].replace("</i>", "_")
|
r['text'] = r['text'].replace("</i>", "_")
|
||||||
|
# Togli il $, che indica che il numero di danni può essere modificato dallo Spell Damage
|
||||||
r['text'] = r['text'].replace("$", "")
|
r['text'] = r['text'].replace("$", "")
|
||||||
# Nessuna rarità
|
# Nessuna rarità
|
||||||
if 'rarity' not in r:
|
if 'rarity' not in r:
|
||||||
|
@ -517,7 +539,6 @@ while True:
|
||||||
if 'flavor' not in r:
|
if 'flavor' not in r:
|
||||||
r['flavor'] = ""
|
r['flavor'] = ""
|
||||||
# Testo principale
|
# Testo principale
|
||||||
text = None
|
|
||||||
# Magie
|
# Magie
|
||||||
if r['type'] == "Spell":
|
if r['type'] == "Spell":
|
||||||
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
||||||
|
@ -663,9 +684,22 @@ while True:
|
||||||
print("@" + username + ": /diario ")
|
print("@" + username + ": /diario ")
|
||||||
cmd = text.split(" ", 1)
|
cmd = text.split(" ", 1)
|
||||||
d = filemanager.readfile("diario.txt")
|
d = filemanager.readfile("diario.txt")
|
||||||
d += str(time.time()) + " | " + cmd[1] + "\n"
|
d += str(int(time.time())) + "|" + cmd[1] + "\n"
|
||||||
filemanager.writefile("diario.txt", d)
|
filemanager.writefile("diario.txt", d)
|
||||||
telegram.sendmessage("Aggiunto al diario RYG.", sentin, source)
|
telegram.sendmessage("Aggiunto al diario RYG.", sentin, source)
|
||||||
|
elif text.startswith('/leggi'):
|
||||||
|
print("@" + username + ": /leggi")
|
||||||
|
cmd = text.split(" ", 1)
|
||||||
|
d = filemanager.readfile("diario.txt")
|
||||||
|
d = d.split('\n')
|
||||||
|
text = str()
|
||||||
|
# L'ultimo numero è escluso.
|
||||||
|
for n in range(int(cmd[1]) + 1, 1, -1):
|
||||||
|
riga = d[len(d) - n]
|
||||||
|
riga = riga.split("|", 1)
|
||||||
|
ora = time.gmtime(int(riga[0]))
|
||||||
|
text += "`" + str(ora.tm_hour) + ":" + str(ora.tm_min) + "` " + riga[1] + "\n"
|
||||||
|
telegram.sendmessage(text, sentin, source)
|
||||||
else:
|
else:
|
||||||
print("@" + username + " bloccato.")
|
print("@" + username + " bloccato.")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue