-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py
180 lines (131 loc) · 6.02 KB
/
bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
import telegram
from cl.SkylineLexer import SkylineLexer
from cl.SkylineParser import SkylineParser
from cl.EvalVisitor import EvalVisitor
from Skyline import Skyline, Point, WrongArgumentException
import os
import pickle
import sys
from antlr4 import *
def start_message(update, context):
name = update.message.chat.first_name
context.bot.send_message(chat_id=update.effective_chat.id, text=f"SkyLineBot\nBenvingut {name}!")
def author_message(update, context):
context.bot.send_message(chat_id=update.effective_chat.id, text="SkyLineBot\nNil Fons Miret, 2020\[email protected]")
def help_message(update, context):
help_text = """
*Comandes*
`/start` - Dóna la benvinguda
`/author` - Dóna informació sobre l'autor
`/help` - Mostra les comandes disponibles
`/lst` - Mostra els identificadors definits i les seves àrees
`/clean` - Esborra tots els identificadors definits
`/save id` - Guarda un skyline amb identificador `id`
`/load id` - Carrega un skyline amb identificador `id`
`expr` - Mostra una imatge del skyline definit per `expr`, la seva àrea i alçada màxima
`id` - Mostra una imatge del skyline amb identificador `id`, la seva àrea i alçada màxima
`id := expr` - Guarda en l'identificador `id` el skyline definit per `expr`
*Creació de skylines*
`(xmin, h, xmax)` crea un skyline amb un sol edifici
`[(xmin1, h1, xmax1), ...]` crea un skyline amb diversos edificis
`(n, h, w, xmin, xmax)` crea `n` edificis, amb alçades aleatòries entre 0 i `h`, i amplades aleatòries entre 1 i `w`, amb inici i final entre `xmin` i `xmax`
*Operacions amb skylines*
`skyline + skyline`: unió
`skyline \* skyline`: intersecció
`skyline \* N`: replicació `N` vegades del skyline
`skyline + N`: desplaçament a la dreta del skyline `N` posicions
`skyline - N`: desplaçament a l'esquerra del skyline `N` posicions
`-skyline`: reflexió del skyline
"""
context.bot.send_message(chat_id=update.effective_chat.id, text=help_text, parse_mode=telegram.ParseMode.MARKDOWN)
def lst(update, context):
user_id = update.message.chat.id
create_data_dir(user_id)
if user_id not in users:
users[user_id] = {}
skylines = users[user_id]
if not skylines:
lst_text = "No hi ha cap skyline desat"
else:
lst_text = ""
for name, sky in skylines.items():
lst_text += f"Skyline {name}:\n area: {sky.area()}\n alçada: {sky.height()}\n"
context.bot.send_message(chat_id=update.effective_chat.id, text=lst_text)
def clean(update, context):
user_id = update.message.chat.id
create_data_dir(user_id)
users[user_id].clear()
context.bot.send_message(chat_id=update.effective_chat.id, text="Tots els identificadors esborrats")
def create_data_dir(user_id):
path = os.path.join("data", str(user_id))
if not os.path.isdir(path):
os.makedirs(path)
def save(update, context):
user_id = update.message.chat.id
create_data_dir(user_id)
if user_id not in users:
users[user_id] = {}
if len(context.args) != 1:
context.bot.send_message(chat_id=update.effective_chat.id, text="Arguments invàlids. Format: save <id>")
return
identifier = context.args[0]
if identifier not in users[user_id]:
context.bot.send_message(chat_id=update.effective_chat.id, text="Identificador no trobat")
return
path = f"data/{user_id}/{identifier}.sky"
with open(path, "wb") as f:
pickle.dump(users[user_id][identifier], f, protocol=pickle.HIGHEST_PROTOCOL)
context.bot.send_message(chat_id=update.effective_chat.id, text="Skyline desada correctament")
def load(update, context):
user_id = update.message.chat.id
create_data_dir(user_id)
if user_id not in users:
users[user_id] = {}
if len(context.args) != 1:
context.bot.send_message(chat_id=update.effective_chat.id, text="Arguments invàlids. Format: load <id>")
return
identifier = context.args[0]
path = f"data/{user_id}/{identifier}.sky"
if not os.path.isfile(path):
context.bot.send_message(chat_id=update.effective_chat.id, text="Identificador no trobat")
return
with open(path, "rb") as f:
users[user_id][identifier] = pickle.load(f)
context.bot.send_message(chat_id=update.effective_chat.id, text="Skyline carregada correctament")
def parse_text(text, skylines):
input_stream = InputStream(text)
lexer = SkylineLexer(input_stream)
token_stream = CommonTokenStream(lexer)
parser = SkylineParser(token_stream)
tree = parser.root()
visitor = EvalVisitor(skylines)
return visitor.visit(tree)
def handle_message(update, context):
user_id = update.message.chat.id
create_data_dir(user_id)
if user_id not in users:
users[user_id] = {}
text = update.message.text
try:
sky = parse_text(text, users[user_id])
response = f"area: {sky.area()}\nalçada: {sky.height()}"
context.bot.send_photo(chat_id=update.effective_chat.id, photo=sky.plot())
context.bot.send_message(chat_id=update.effective_chat.id, text=response)
except WrongArgumentException as e:
context.bot.send_message(chat_id=update.effective_chat.id, text=f"Error: {e}")
except Exception as e:
context.bot.send_message(chat_id=update.effective_chat.id, text="No he entès el teu missatge :(")
users = {}
TOKEN = open("token.txt").read().strip()
updater = Updater(token=TOKEN, use_context=True)
dispatcher = updater.dispatcher
dispatcher.add_handler(CommandHandler("start", start_message))
dispatcher.add_handler(CommandHandler("author", author_message))
dispatcher.add_handler(CommandHandler("help", help_message))
dispatcher.add_handler(CommandHandler("lst", lst))
dispatcher.add_handler(CommandHandler("clean", clean))
dispatcher.add_handler(CommandHandler("save", save, pass_args=True))
dispatcher.add_handler(CommandHandler("load", load, pass_args=True))
dispatcher.add_handler(MessageHandler(filters=Filters.text, callback=handle_message))
updater.start_polling()