]> jfr.im git - erebus.git/blame - modules/trivia.py
fixed permissions check bug in trivia
[erebus.git] / modules / trivia.py
CommitLineData
80d02bd8 1# Erebus IRC bot - Author: Erebus Team
c695f740 2# trivia module
80d02bd8 3# This file is released into the public domain; see http://unlicense.org/
4
5# module info
6modinfo = {
7 'author': 'Erebus Team',
8 'license': 'public domain',
9 'compatible': [1], # compatible module API versions
10 'depends': [], # other modules required to work properly?
11}
12
13# preamble
14import modlib
15lib = modlib.modlib(__name__)
16def modstart(parent, *args, **kwargs):
5871567f 17 state.gotParent(parent)
18 lib.hookchan(state.db['chan'])(trivia_checkanswer) # we need parent for this. so it goes here.
80d02bd8 19 return lib.modstart(parent, *args, **kwargs)
20def modstop(*args, **kwargs):
c0eee1b4 21 global state
fadbf980 22 stop()
77c61775 23 state.closeshop()
80d02bd8 24 del state
25 return lib.modstop(*args, **kwargs)
26
27# module code
7bd5e7d5 28import json, random, threading, re, time, datetime
b16b8c05 29
c0eee1b4 30try:
c53f6514 31 import twitter
32except: pass # doesn't matter if we don't have twitter, updating the status just will fall through the try-except if so...
c0eee1b4 33
b16b8c05 34def findnth(haystack, needle, n): #http://stackoverflow.com/a/1884151
35 parts = haystack.split(needle, n+1)
36 if len(parts)<=n+1:
37 return -1
38 return len(haystack)-len(parts[-1])-len(needle)
80d02bd8 39
40class TriviaState(object):
5871567f 41 def __init__(self, parent=None, pointvote=False):
42 if parent is not None:
43 self.gotParent(parent, pointvote)
44
45 def gotParent(self, parent, pointvote=False):
77c61775 46 self.parent = parent
5871567f 47 self.questionfile = self.parent.cfg.get('trivia', 'jsonpath')
48 self.db = json.load(open(self.questionfile, "r"))
9557ee54 49 self.chan = self.db['chan']
50 self.curq = None
c695f740 51 self.nextq = None
b16b8c05 52 self.steptimer = None
53 self.hintstr = None
54 self.hintanswer = None
77c61775 55 self.hintsgiven = 0
b16b8c05 56 self.revealpossibilities = None
77c61775 57 self.gameover = False
c0eee1b4 58 self.missedquestions = 0
80d02bd8 59
7bd5e7d5 60 if 'starttime' not in self.db or self.db['starttime'] is None:
61 self.db['starttime'] = time.time()
62
c53f6514 63 if pointvote:
64 self.getchan().msg("Vote for the next round target points! Options: %s. Vote using !vote <choice>" % (', '.join([str(x) for x in self.db['targetoptions']])))
65 self.getchan().msg("You have %s seconds." % (self.db['votetimer']))
66 self.voteamounts = dict([(x, 0) for x in self.db['targetoptions']]) # make a dict {pointsoptionA: 0, pointsoptionB: 0, ...}
67 self.pointvote = threading.Timer(self.db['votetimer'], self.endPointVote)
68 self.pointvote.start()
69 else:
70 self.pointvote = None
71
80d02bd8 72 def __del__(self):
77c61775 73 self.closeshop()
74 def closeshop(self):
b16b8c05 75 if threading is not None and threading._Timer is not None and isinstance(self.steptimer, threading._Timer):
76 self.steptimer.cancel()
c695f740 77 if json is not None and json.dump is not None:
6374d61f 78 json.dump(self.db, open(self.questionfile, "w"))#, indent=4, separators=(',', ': '))
80d02bd8 79
fadbf980 80 def getchan(self):
81 return self.parent.channel(self.chan)
82 def getbot(self):
83 return self.getchan().bot
84
b16b8c05 85 def nexthint(self, hintnum):
b16b8c05 86 answer = self.hintanswer
87
b5c89dfb 88 if self.hintstr is None or self.revealpossibilities is None or self.reveal is None:
b16b8c05 89 self.hintstr = list(re.sub(r'[a-zA-Z0-9]', '*', answer))
90 self.revealpossibilities = range(''.join(self.hintstr).count('*'))
b5c89dfb 91 self.reveal = int(''.join(self.hintstr).count('*') * (7/24.0))
b16b8c05 92
b5c89dfb 93 for i in range(self.reveal):
b16b8c05 94 revealcount = random.choice(self.revealpossibilities)
95 revealloc = findnth(''.join(self.hintstr), '*', revealcount)
96 self.revealpossibilities.remove(revealcount)
97 self.hintstr[revealloc] = answer[revealloc]
6374d61f 98 self.parent.channel(self.chan).bot.msg(self.chan, "\00304,01Here's a hint: %s" % (''.join(self.hintstr)))
b16b8c05 99
77c61775 100 self.hintsgiven += 1
101
c4763e66 102 if hintnum < self.db['hintnum']:
103 self.steptimer = threading.Timer(self.db['hinttimer'], self.nexthint, args=[hintnum+1])
b16b8c05 104 self.steptimer.start()
105 else:
c4763e66 106 self.steptimer = threading.Timer(self.db['hinttimer'], self.nextquestion, args=[True])
b16b8c05 107 self.steptimer.start()
108
77c61775 109 def doGameOver(self):
7bd5e7d5 110 msg = self.getchan().msg
77c61775 111 def person(num): return self.db['users'][self.db['ranks'][num]]['realnick']
7bd5e7d5 112 def pts(num): return str(self.db['users'][self.db['ranks'][num]]['points'])
c0eee1b4 113 winner = person(0)
77c61775 114 try:
115 msg("\00312THE GAME IS OVER!!!")
116 msg("THE WINNER IS: %s (%s)" % (person(0), pts(0)))
117 msg("2ND PLACE: %s (%s)" % (person(1), pts(1)))
118 msg("3RD PLACE: %s (%s)" % (person(2), pts(2)))
119 [msg("%dth place: %s (%s)" % (i+1, person(i), pts(i))) for i in range(3,10)]
120 except IndexError: pass
c0eee1b4 121 except Exception as e: msg("DERP! %r" % (e))
122
7bd5e7d5 123 if self.db['hofpath'] is not None and self.db['hofpath'] != '':
124 self.writeHof()
125
77c61775 126 self.db['users'] = {}
127 self.db['ranks'] = []
128 stop()
129 self.closeshop()
c0eee1b4 130
c53f6514 131 try:
c0eee1b4 132 t = twitter.Twitter(auth=twitter.OAuth(self.getbot().parent.cfg.get('trivia', 'token'),
133 self.getbot().parent.cfg.get('trivia', 'token_sec'),
134 self.getbot().parent.cfg.get('trivia', 'con'),
135 self.getbot().parent.cfg.get('trivia', 'con_sec')))
136 t.statuses.update(status="Round is over! The winner was %s" % (winner))
c53f6514 137 except: pass #don't care if errors happen updating twitter.
138
5871567f 139 self.__init__(self.parent, True)
c53f6514 140
7bd5e7d5 141 def writeHof(self):
142 def person(num):
143 try: return self.db['users'][self.db['ranks'][num]]['realnick']
144 except: return "none"
145 def pts(num):
146 try: return str(self.db['users'][self.db['ranks'][num]]['points'])
147 except: return 0
148
149 try:
150 f = open(self.db['hofpath'], 'rb+')
151 for i in range(self.db['hoflines']): #skip this many lines
152 f.readline()
153 insertpos = f.tell()
154 fcontents = f.read()
155 f.seek(insertpos)
156 f.write((self.db['hofformat']+"\n") % {
157 'date': time.strftime("%F", time.gmtime()),
158 'duration': str(datetime.timedelta(seconds=time.time()-self.db['starttime'])),
159 'targetscore': self.db['target'],
160 'firstperson': person(0),
161 'firstscore': pts(0),
162 'secondperson': person(1),
163 'secondscore': pts(1),
164 'thirdperson': person(2),
165 'thirdscore': pts(2),
166 })
167 f.write(fcontents)
168 return True
169 except Exception as e:
170 raise e
171 return False
172 finally:
173 f.close()
174
c53f6514 175 def endPointVote(self):
176 self.getchan().msg("Voting has ended!")
177 votelist = sorted(self.voteamounts.items(), key=lambda item: item[1]) #sort into list of tuples: [(option, number_of_votes), ...]
178 for i in range(len(votelist)-1):
179 item = votelist[i]
180 self.getchan().msg("%s place: %s (%s votes)" % (len(votelist)-i, item[0], item[1]))
181 self.getchan().msg("Aaaaand! The next round will be to \002%s\002 points! (%s votes)" % (votelist[-1][0], votelist[-1][1]))
c0eee1b4 182
c53f6514 183 self.db['target'] = votelist[-1][0]
184 self.pointvote = None
77c61775 185
38b29993 186 self.nextquestion() #start the game!
187
b5c89dfb 188 def nextquestion(self, qskipped=False, iteration=0):
77c61775 189 if self.gameover == True:
190 return self.doGameOver()
fadbf980 191 if qskipped:
c53f6514 192 self.getchan().msg("\00304Fail! The correct answer was: %s" % (self.hintanswer))
c0eee1b4 193 self.missedquestions += 1
194 else:
195 self.missedquestions = 0
fadbf980 196
b16b8c05 197 if isinstance(self.steptimer, threading._Timer):
198 self.steptimer.cancel()
c0eee1b4 199
b16b8c05 200 self.hintstr = None
77c61775 201 self.hintsgiven = 0
b16b8c05 202 self.revealpossibilities = None
b5c89dfb 203 self.reveal = None
b16b8c05 204
c4763e66 205 if self.missedquestions > self.db['maxmissedquestions']:
c0eee1b4 206 stop()
207 self.getbot().msg(self.getchan(), "%d questions unanswered! Stopping the game.")
b16b8c05 208
c695f740 209 if state.nextq is not None:
210 nextq = state.nextq
c695f740 211 state.nextq = None
212 else:
213 nextq = random.choice(self.db['questions'])
b5c89dfb 214
215 if nextq['question'][0] == "!":
216 nextq = specialQuestion(nextq)
217
218 if iteration < 10 and 'lastasked' in nextq and nextq['lastasked'] - time.time() < 24*60*60:
219 return self.nextquestion(iteration=iteration+1) #short-circuit to pick another question
220 nextq['lastasked'] = time.time()
221
222 nextq['answer'] = nextq['answer'].lower()
c695f740 223
6374d61f 224 qtext = "\00304,01Next up: "
c695f740 225 qary = nextq['question'].split(None)
226 for qword in qary:
6374d61f 227 qtext += "\00304,01"+qword+"\00301,01"+chr(random.randrange(0x61,0x7A)) #a-z
fadbf980 228 self.getbot().msg(self.chan, qtext)
80d02bd8 229
b5c89dfb 230 self.curq = nextq
231
c0eee1b4 232 if isinstance(self.curq['answer'], basestring): self.hintanswer = self.curq['answer']
233 else: self.hintanswer = random.choice(self.curq['answer'])
234
c4763e66 235 self.steptimer = threading.Timer(self.db['hinttimer'], self.nexthint, args=[1])
b16b8c05 236 self.steptimer.start()
237
80d02bd8 238 def checkanswer(self, answer):
9557ee54 239 if self.curq is None:
240 return False
241 elif isinstance(self.curq['answer'], basestring):
80d02bd8 242 return answer.lower() == self.curq['answer']
243 else: # assume it's a list or something.
244 return answer.lower() in self.curq['answer']
77c61775 245
c53f6514 246 def addpoint(self, user_obj, count=1):
247 user_nick = str(user_obj)
248 user = user_nick.lower() # save this separately as we use both
80d02bd8 249 if user in self.db['users']:
250 self.db['users'][user]['points'] += count
251 else:
c53f6514 252 self.db['users'][user] = {'points': count, 'realnick': user_nick, 'rank': len(self.db['ranks'])}
9557ee54 253 self.db['ranks'].append(user)
80d02bd8 254
c53f6514 255 self.db['ranks'].sort(key=lambda nick: state.db['users'][nick]['points'], reverse=True) #re-sort ranks, rather than dealing with anything more efficient
6374d61f 256 for i in range(0, len(self.db['ranks'])):
257 nick = self.db['ranks'][i]
258 self.db['users'][nick]['rank'] = i
77c61775 259
260 if self.db['users'][user]['points'] >= state.db['target']:
261 self.gameover = True
262
80d02bd8 263 return self.db['users'][user]['points']
264
265 def points(self, user):
9557ee54 266 user = str(user).lower()
80d02bd8 267 if user in self.db['users']:
268 return self.db['users'][user]['points']
269 else:
270 return 0
271
272 def rank(self, user):
c695f740 273 user = str(user).lower()
fadbf980 274 if user in self.db['users']:
275 return self.db['users'][user]['rank']+1
276 else:
277 return len(self.db['users'])+1
77c61775 278
c695f740 279 def targetuser(self, user):
77c61775 280 if len(self.db['ranks']) == 0: return "no one is ranked!"
281
c695f740 282 user = str(user).lower()
fadbf980 283 if user in self.db['users']:
284 rank = self.db['users'][user]['rank']
285 if rank == 0:
286 return "you're in the lead!"
287 else:
288 return self.db['ranks'][rank-1]
c695f740 289 else:
fadbf980 290 return self.db['ranks'][-1]
c695f740 291 def targetpoints(self, user):
77c61775 292 if len(self.db['ranks']) == 0: return 0
293
c695f740 294 user = str(user).lower()
fadbf980 295 if user in self.db['users']:
296 rank = self.db['users'][user]['rank']
297 if rank == 0:
298 return "N/A"
299 else:
300 return self.db['users'][self.db['ranks'][rank-1]]['points']
c695f740 301 else:
fadbf980 302 return self.db['users'][self.db['ranks'][-1]]['points']
80d02bd8 303
5871567f 304state = TriviaState()
9557ee54 305
5871567f 306# we have to hook this in modstart, since we don't know the channel until then.
80d02bd8 307def trivia_checkanswer(bot, user, chan, *args):
80d02bd8 308 line = ' '.join([str(arg) for arg in args])
309 if state.checkanswer(line):
6374d61f 310 bot.msg(chan, "\00312%s\003 has it! The answer was \00312%s\003. New score: %d. Rank: %d. Target: %s (%s)." % (user, line, state.addpoint(user), state.rank(user), state.targetuser(user), state.targetpoints(user)))
77c61775 311 if state.hintsgiven == 0:
6374d61f 312 bot.msg(chan, "\00312%s\003 got an extra point for getting it before the hints! New score: %d." % (user, state.addpoint(user)))
9557ee54 313 state.nextquestion()
80d02bd8 314
f6252f1c 315@lib.hook('points', needchan=False)
80d02bd8 316def cmd_points(bot, user, chan, realtarget, *args):
c695f740 317 if chan == realtarget: replyto = chan
80d02bd8 318 else: replyto = user
319
320 if len(args) != 0: who = args[0]
321 else: who = user
322
323 bot.msg(replyto, "%s has %d points." % (who, state.points(who)))
324
9306587e 325@lib.hook('give', glevel=lib.STAFF, needchan=False)
80d02bd8 326@lib.argsGE(1)
327def cmd_give(bot, user, chan, realtarget, *args):
80d02bd8 328 whoto = args[0]
c695f740 329 if len(args) > 1:
330 numpoints = int(args[1])
331 else:
332 numpoints = 1
333 balance = state.addpoint(whoto, numpoints)
fadbf980 334
c695f740 335 bot.msg(chan, "%s gave %s %d points. New balance: %d" % (user, whoto, numpoints, balance))
336
9306587e 337@lib.hook('setnextid', glevel=1, needchan=False)
338def cmd_setnextid(bot, user, chan, realtarget, *args):
339 try:
340 qid = int(args[0])
341 state.nextq = state.db['questions'][qid]
342 bot.msg(user, "Done. Next question is: %s" % (state.nextq['question']))
343 except Exception as e:
344 bot.msg(user, "Error: %s" % (e))
345
346@lib.hook('setnext', glevel=lib.STAFF, needchan=False)
c695f740 347@lib.argsGE(1)
348def cmd_setnext(bot, user, chan, realtarget, *args):
349 line = ' '.join([str(arg) for arg in args])
350 linepieces = line.split('*')
b5c89dfb 351 if len(linepieces) < 2:
352 bot.msg(user, "Error: need <question>*<answer>")
353 return
c695f740 354 question = linepieces[0].strip()
355 answer = linepieces[1].strip()
356 state.nextq = {'question':question,'answer':answer}
357 bot.msg(user, "Done.")
358
9306587e 359@lib.hook('skip', glevel=1, needchan=False)
c695f740 360def cmd_skip(bot, user, chan, realtarget, *args):
c0eee1b4 361 state.nextquestion(True)
c695f740 362
f6252f1c 363@lib.hook('start', needchan=False)
c695f740 364def cmd_start(bot, user, chan, realtarget, *args):
365 if chan == realtarget: replyto = chan
366 else: replyto = user
367
c53f6514 368 if state.curq is None and state.pointvote is None:
c695f740 369 state.nextquestion()
c53f6514 370 elif state.pointvote is not None:
371 bot.msg(replyto, "There's a vote in progress!")
c695f740 372 else:
373 bot.msg(replyto, "Game is already started!")
374
9306587e 375@lib.hook('stop', glevel=1, needchan=False)
c695f740 376def cmd_stop(bot, user, chan, realtarget, *args):
fadbf980 377 if stop():
378 bot.msg(state.chan, "Game stopped by %s" % (user))
379 else:
380 bot.msg(user, "Game isn't running.")
c695f740 381
fadbf980 382def stop():
9306587e 383 try:
384 if state.curq is not None:
385 state.curq = None
386 try:
387 state.steptimer.cancel()
388 except Exception as e:
389 print "!!! steptimer.cancel(): %s %r" % (e,e)
390 return True
391 else:
392 return False
393 except NameError:
394 pass
80d02bd8 395
f6252f1c 396@lib.hook('rank', needchan=False)
80d02bd8 397def cmd_rank(bot, user, chan, realtarget, *args):
c695f740 398 if chan == realtarget: replyto = chan
80d02bd8 399 else: replyto = user
400
c695f740 401 if len(args) != 0: who = args[0]
402 else: who = user
403
77c61775 404 bot.msg(replyto, "%s is in %d place (%s points). Target is: %s (%s points)." % (who, state.rank(who), state.points(who), state.targetuser(who), state.targetpoints(who)))
fadbf980 405
f6252f1c 406@lib.hook('top10', needchan=False)
fadbf980 407def cmd_top10(bot, user, chan, realtarget, *args):
77c61775 408 if len(state.db['ranks']) == 0:
409 return bot.msg(state.db['chan'], "No one is ranked!")
fadbf980 410
411 replylist = []
412 for nick in state.db['ranks'][0:10]:
413 user = state.db['users'][nick]
77c61775 414 replylist.append("%s (%s)" % (user['realnick'], user['points']))
415 bot.msg(state.db['chan'], ', '.join(replylist))
416
9306587e 417@lib.hook('settarget', glevel=lib.ADMIN, needchan=False)
77c61775 418def cmd_settarget(bot, user, chan, realtarget, *args):
419 try:
420 state.db['target'] = int(args[0])
421 bot.msg(state.db['chan'], "Target has been changed to %s points!" % (state.db['target']))
38b29993 422
7bd5e7d5 423 if state.pointvote is not None:
424 state.pointvote.cancel()
425 state.pointvote = None
38b29993 426 bot.msg(state.db['chan'], "Vote has been cancelled!")
7bd5e7d5 427 except Exception as e:
428 print e
77c61775 429 bot.msg(user, "Failed to set target.")
430
38b29993 431@lib.hook('vote', needchan=False)
432def cmd_vote(bot, user, chan, realtarget, *args):
7bd5e7d5 433 if state.pointvote is not None:
38b29993 434 if int(args[0]) in state.voteamounts:
435 state.voteamounts[int(args[0])] += 1
436 bot.msg(user, "Your vote has been recorded.")
437 else:
438 bot.msg(user, "Sorry - that's not an option!")
439 else:
440 bot.msg(user, "There's no vote in progress.")
441
9306587e 442@lib.hook('maxmissed', glevel=lib.ADMIN, needchan=False)
c4763e66 443def cmd_maxmissed(bot, user, chan, realtarget, *args):
444 try:
445 state.db['maxmissedquestions'] = int(args[0])
446 bot.msg(state.db['chan'], "Max missed questions before round ends has been changed to %s." % (state.db['maxmissedquestions']))
447 except:
448 bot.msg(user, "Failed to set maxmissed.")
449
9306587e 450@lib.hook('hinttimer', glevel=lib.ADMIN, needchan=False)
c4763e66 451def cmd_hinttimer(bot, user, chan, realtarget, *args):
452 try:
453 state.db['hinttimer'] = float(args[0])
454 bot.msg(state.db['chan'], "Time between hints has been changed to %s." % (state.db['hinttimer']))
455 except:
456 bot.msg(user, "Failed to set hint timer.")
457
9306587e 458@lib.hook('hintnum', glevel=lib.ADMIN, needchan=False)
c4763e66 459def cmd_hintnum(bot, user, chan, realtarget, *args):
460 try:
461 state.db['hintnum'] = int(args[0])
462 bot.msg(state.db['chan'], "Max number of hints has been changed to %s." % (state.db['hintnum']))
463 except:
464 bot.msg(user, "Failed to set hintnum.")
465
9306587e 466@lib.hook('findq', glevel=1, needchan=False)
c4763e66 467def cmd_findquestion(bot, user, chan, realtarget, *args):
c9db2d7e 468 matches = [str(i) for i in range(len(state.db['questions'])) if state.db['questions'][i]['question'] == ' '.join(args)] #TODO looser equality check
c4763e66 469 if len(matches) > 1:
470 bot.msg(user, "Multiple matches: %s" % (', '.join(matches)))
471 elif len(matches) == 1:
472 bot.msg(user, "One match: %s" % (matches[0]))
473 else:
474 bot.msg(user, "No match.")
475
9306587e 476@lib.hook('delq', glevel=lib.STAFF, needchan=False)
477@lib.hook('deleteq', glevel=lib.STAFF, needchan=False)
c4763e66 478def cmd_deletequestion(bot, user, chan, realtarget, *args):
479 try:
480 backup = state.db['questions'][int(args[0])]
481 del state.db['questions'][int(args[0])]
482 bot.msg(user, "Deleted %s*%s" % (backup['question'], backup['answer']))
483 except:
484 bot.msg(user, "Couldn't delete that question.")
485
9306587e 486@lib.hook('addq', glevel=lib.STAFF, needchan=False)
c4763e66 487def cmd_addquestion(bot, user, chan, realtarget, *args):
488 line = ' '.join([str(arg) for arg in args])
489 linepieces = line.split('*')
490 if len(linepieces) < 2:
491 bot.msg(user, "Error: need <question>*<answer>")
492 return
493 question = linepieces[0].strip()
494 answer = linepieces[1].strip()
495 state.db['questions'].append({'question':question,'answer':answer})
496 bot.msg(user, "Done. Question is #%s" % (len(state.db['questions'])-1))
497
498
f6252f1c 499@lib.hook('triviahelp', needchan=False)
77c61775 500def cmd_triviahelp(bot, user, chan, realtarget, *args):
9306587e 501 if user.glevel == 0:
502 bot.msg(user, "START")
503 bot.msg(user, "TOP10")
504 bot.msg(user, "POINTS [<user>]")
505 bot.msg(user, "RANK [<user>]")
506 else:
507 bot.msg(user, "START (ANYONE )")
508 bot.msg(user, "TOP10 (ANYONE )")
509 bot.msg(user, "POINTS [<user>] (ANYONE )")
510 bot.msg(user, "RANK [<user>] (ANYONE )")
511 if user.glevel >= 1:
512 bot.msg(user, "SKIP (>=KNOWN)")
513 bot.msg(user, "STOP (>=KNOWN)")
514 bot.msg(user, "FINDQ <question> (>=KNOWN)")
515 if user.glevel >= lib.STAFF:
516 bot.msg(user, "GIVE <user> [<points>] (>=STAFF)")
517 bot.msg(user, "SETNEXT <q>*<a> (>=STAFF)")
518 bot.msg(user, "ADDQ <q>*<a> (>=STAFF)")
519 bot.msg(user, "DELETEQ <q>*<a> (>=STAFF) [aka DELQ]")
520 if user.glevel >= lib.ADMIN:
521 bot.msg(user, "SETTARGET <points> (>=ADMIN)")
522 bot.msg(user, "MAXMISSED <questions> (>=ADMIN)")
523 bot.msg(user, "HINTTIMER <float seconds> (>=ADMIN)")
524 bot.msg(user, "HINTNUM <hints> (>=ADMIN)")
b5c89dfb 525
6374d61f 526@lib.hooknum(417)
527def num_417(bot, textline):
528 bot.msg(state.db['chan'], "Whoops, it looks like that question didn't quite go through! (E:417). Let's try another...")
529 state.nextquestion(False)
530
b5c89dfb 531
532def specialQuestion(oldq):
533 newq = {'question': oldq['question'], 'answer': oldq['answer']}
534 qtype = oldq['question'].upper()
535
536 if qtype == "!MONTH":
537 newq['question'] = "What month is it currently (in UTC)?"
7bd5e7d5 538 newq['answer'] = time.strftime("%B", time.gmtime()).lower()
b5c89dfb 539 elif qtype == "!MATH+":
540 randnum1 = random.randrange(0, 11)
541 randnum2 = random.randrange(0, 11)
542 newq['question'] = "What is %d + %d?" % (randnum1, randnum2)
543 newq['answer'] = spellout(randnum1+randnum2)
544 return newq
545
546def spellout(num):
547 return [
548 "zero", "one", "two", "three", "four", "five", "six", "seven", "eight",
549 "nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen",
550 "sixteen", "seventeen", "eighteen", "nineteen", "twenty"
551 ][num]