-
Notifications
You must be signed in to change notification settings - Fork 19
/
bot.py
executable file
·251 lines (214 loc) · 9.67 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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#! /home/nathan/.virtualenvs/rollem/bin/python
import sys
import time
import re
import random
import traceback
import unicodedata
import logging
from telegram import Update
#from telegram.ext import ApplicationBuilder, Updater, CommandHandler, CallbackContext
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes
from codecs import encode,decode
from datetime import datetime
from ast import literal_eval
ladder = {
8 : 'Legendary',
7 : 'Epic',
6 : 'Fantastic',
5 : 'Superb',
4 : 'Great',
3 : 'Good',
2 : 'Fair',
1 : 'Average',
0 : 'Mediocre',
-1 : 'Poor',
-2 : 'Terrible'
}
def get_ladder(result):
if result > 8:
return 'Beyond Legendary'
elif result < -2:
return 'Terrible'
else:
return ladder[result]
fate_options = {
-1 : '[-]',
0 : '[ ]',
1 : '[+]'
}
async def rf(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
logging.debug(context.args)
if len(context.args) > 0:
context.args[0] = '4df+' + str(context.args[0])
else:
context.args = ['4df']
await process(update, context)
async def process(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
username = update.message.from_user.username if update.message.from_user.username else update.message.from_user.first_name
equation = context.args[0].strip() if len(context.args) > 0 else False
equation_list = re.findall(r'(\w+!?>?\d*)([+*/()-]?)', equation)
comment = ' ' + ' '.join(context.args[1:]) if len(context.args) > 1 else ''
space = ''
dice_num = None
original_dice_num = None
is_fate = False
use_ladder = False
nat20text = ''
high_low_helper = ''
if '2d20' in equation.lower() and not ('2d20h' in equation.lower() or '2d20l' in equation.lower()):
pass
#high_low_helper = 'Get the highest or lowest dice from a roll with H and L.\r\nType <code>/help</code> for more info.\r\n\r\n'
result = {
'visual': [],
'equation': [],
'total': ''
}
try:
for pair in equation_list:
logging.debug(f"pair: {pair}")
pair = [i for i in pair if i]
for item in pair:
logging.debug(f"item: {item}")
if item and len(item) > 1 and any(d in item for d in ['d', 'D']):
dice = re.search(r'(\d*)d([0-9f]+)([!hl])?', item.lower())
dice_num = int(dice.group(1)) if dice.group(1) else 1
original_dice_num = dice_num
if dice_num > 1000:
raise Exception('Maximum number of rollable dice is 1000')
sides = dice.group(2)
space = ' '
result['visual'].append(space + '(')
result['equation'].append('(')
fate_dice = ''
current_die_results = ''
current_visual_results = ''
plus = ''
explode = False
highest = False
lowest = False
if dice.group(3) and dice.group(3)[0] == '!' and int(dice.group(2)) > 1:
explode = True
elif dice.group(3) and dice.group(3)[0] in ['h','H']:
highest = True
elif dice.group(3) and dice.group(3)[0] in ['l','L']:
lowest = True
random_start_num = 1
if sides in ['f','F']:
is_fate = True
use_ladder = True
sides = 1
random_start_num = -1
else:
sides = int(sides)
while dice_num > 0:
last_roll = random.randint(random_start_num, sides)
visual_last_roll = plus + str(last_roll)
if is_fate:
visual_last_roll = fate_options[last_roll] + ' '
current_visual_results += visual_last_roll
if (highest or lowest) and current_die_results:
#print(current_die_results)
if highest:
if last_roll > int(current_die_results):
current_die_results = str(last_roll)
else: #lowest
if last_roll < int(current_die_results):
current_die_results = str(last_roll)
else:
current_die_results += plus + str(last_roll)
if not (explode and last_roll == sides):
dice_num -= 1
if len(plus) == 0:
# Adds all results to result unless it is the first one
plus = ' + '
if sides == 20 and last_roll == 20 and original_dice_num < 3 and '20' in current_die_results:
nat20text = ' #Natural20'
if is_fate:
is_fate = False
result['visual'].append(current_visual_results)
result['equation'].append(current_die_results)
result['visual'].append(')')
result['equation'].append(')')
if highest or lowest:
result['visual'].append(dice.group(3)[0])
else:
if item and (item in ['+','-','/','*',')','('] or int(item)):
result['visual'].append(' ')
result['visual'].append(item)
result['equation'].append(item)
result['total'] = str(''.join(result['equation'])).replace(" ","")
if bool(re.match('^[0-9+*/ ()-]+$', result['total'])):
result['total'] = eval(result['total'])
else:
raise Exception('Request was not a valid equation!')
if use_ladder:
# Set if final result is positive or negative
sign = '+' if result['total'] > -1 else ''
ladder_result = get_ladder(result['total'])
result['total'] = sign + str(result['total']) + ' ' + ladder_result
# Only show part of visual equation if bigger than 300 characters
result['visual'] = ''.join(result['visual'])
if len(result['visual']) > 275:
result['visual'] = result['visual'][0:275] + ' . . . )'
logging.info(f'@{username} | ' + ' '.join(context.args) + ' = ' + ''.join(result['equation']) + ' = ' + str(result['total']) + nat20text)
response = (f'{high_low_helper}@{username} rolled<b>{comment}</b>:\r\n {result["visual"]} =\r\n<b>{str(result["total"])}</b>{nat20text}')
error = ''
except Exception as e:
response = f'@{username}: <b>Invalid equation!</b>\r\n'
if dice_num and dice_num > 1000:
response += str(e) + '.\r\n'
response += ('Please use <a href="https://en.wikipedia.org/wiki/Dice_notation">dice notation</a>.\r\n' +
'For example: <code>3d6</code>, or <code>1d20+5</code>, or <code>d12</code>\r\n\r\n' +
'For more information, type <code>/help</code>'
)
error = traceback.format_exc().replace('\r', '').replace('\n', '; ')
logging.warning(f'@{username} | /r {equation} | RESPONSE: Invalid Equation |\r\n{error}')
await update.message.reply_text(response, parse_mode='HTML')
#context.bot.send_message(chat_id=update.message.chat_id, text=response, parse_mode='HTML')
async def help(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
username = update.message.from_user.username if update.message.from_user.username else update.message.from_user.first_name
help_file = open('help.html', 'r')
response = (help_file.read())
help_file.close()
logging.info(f'@{username} | /help')
await update.message.reply_text(response, parse_mode='HTML')
#job = context.job
#context.bot.send_message(chat_id=update.message.chat_id, text=response, parse_mode='HTML', disable_web_page_preview=True)
TOKEN = sys.argv[1]
formatter = logging.Formatter('====> %(asctime)s | %(name)s | %(levelname)s | %(message)s')
stream_handler = logging.StreamHandler(sys.stdout)
stream_handler.setLevel(logging.INFO)
stream_handler.setFormatter(formatter)
file_handler = logging.FileHandler('roll.log')
file_handler.setLevel(logging.WARNING)
file_handler.setFormatter(formatter)
logger = logging.basicConfig(
handlers = [stream_handler,file_handler],
level=logging.DEBUG,
)
def main() -> None:
"""Start the bot."""
# Create the Application and pass it your bot's token.
app = ApplicationBuilder().token(TOKEN).build()
# on different commands - answer in Telegram
app.add_handler(CommandHandler(['roll','r'], process))
app.add_handler(CommandHandler('rf', rf))
app.add_handler(CommandHandler('help', help))
# on non command i.e message - echo the message on Telegram
# application.add_handler(MessageHandler(filters.TEXT & ~filters.COMMAND, echo))
# Run the bot until the user presses Ctrl-C
app.run_polling()
if __name__ == "__main__":
main()
"""
updater = Updater(TOKEN, True)
dispatcher = updater.dispatcher
roll_handler = CommandHandler(['roll','r'], process, pass_args=True)
dispatcher.add_handler(roll_handler)
roll_handler = CommandHandler('rf', rf, pass_args=True)
dispatcher.add_handler(roll_handler)
help_handler = CommandHandler('help', help)
dispatcher.add_handler(help_handler)
updater.start_polling()
"""