]> jfr.im git - erebus.git/blame - modules/trivia.py
control - add message when !die used
[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
fb20be7c 10 'depends': ['userinfo'], # other modules required to work properly?
80d02bd8 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
8ef938d0 22 try:
23 stop()
24 state.closeshop()
25 del state
26 except Exception: pass
80d02bd8 27 return lib.modstop(*args, **kwargs)
28
29# module code
7bd5e7d5 30import json, random, threading, re, time, datetime
b16b8c05 31
c0eee1b4 32try:
be8072b5 33 import twitter
c53f6514 34except: pass # doesn't matter if we don't have twitter, updating the status just will fall through the try-except if so...
c0eee1b4 35
b16b8c05 36def findnth(haystack, needle, n): #http://stackoverflow.com/a/1884151
37 parts = haystack.split(needle, n+1)
38 if len(parts)<=n+1:
39 return -1
40 return len(haystack)-len(parts[-1])-len(needle)
80d02bd8 41
8ef938d0 42def person(num): return state.db['users'][state.db['ranks'][num]]['realnick']
43def pts(num): return str(state.db['users'][state.db['ranks'][num]]['points'])
fb20be7c 44def country(num, default="??"): return lib.mod('userinfo')._get(person(num), 'country', default=default)
8ef938d0 45
be8072b5 46class MyTimer(threading._Timer):
47 def __init__(self, *args, **kwargs):
48 threading._Timer.__init__(self, *args, **kwargs)
49 self.daemon = True
50
80d02bd8 51class TriviaState(object):
5871567f 52 def __init__(self, parent=None, pointvote=False):
53 if parent is not None:
54 self.gotParent(parent, pointvote)
55
56 def gotParent(self, parent, pointvote=False):
bf8676ae 57 self.parent = parent
58 self.questionfile = self.parent.cfg.get('trivia', 'jsonpath', default="./modules/trivia.json")
59 self.db = json.load(open(self.questionfile, "r"))
60 self.chan = self.db['chan']
61 self.curq = None
62 self.nextq = None
63 self.nextquestiontimer = None
64 self.steptimer = None
65 self.hintstr = None
66 self.hintanswer = None
67 self.hintsgiven = 0
b16b8c05 68 self.revealpossibilities = None
bf8676ae 69 self.gameover = False
70 self.missedquestions = 0
71 self.curqid = None
72 self.lastqid = None
80d02bd8 73
7bd5e7d5 74 if 'starttime' not in self.db or self.db['starttime'] is None:
75 self.db['starttime'] = time.time()
76
c53f6514 77 if pointvote:
78 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']])))
79 self.getchan().msg("You have %s seconds." % (self.db['votetimer']))
80 self.voteamounts = dict([(x, 0) for x in self.db['targetoptions']]) # make a dict {pointsoptionA: 0, pointsoptionB: 0, ...}
be8072b5 81 self.pointvote = MyTimer(self.db['votetimer'], self.endPointVote)
c53f6514 82 self.pointvote.start()
83 else:
84 self.pointvote = None
85
80d02bd8 86 def __del__(self):
77c61775 87 self.closeshop()
88 def closeshop(self):
442ed923 89 if threading is not None and threading._Timer is not None:
90 if isinstance(self.steptimer, threading._Timer):
91 self.steptimer.cancel()
92 if isinstance(self.nextquestiontimer, threading._Timer):
93 self.nextquestiontimer.cancel()
94 self.nextquestiontimer = None
c695f740 95 if json is not None and json.dump is not None:
6374d61f 96 json.dump(self.db, open(self.questionfile, "w"))#, indent=4, separators=(',', ': '))
80d02bd8 97
fadbf980 98 def getchan(self):
99 return self.parent.channel(self.chan)
100 def getbot(self):
101 return self.getchan().bot
102
b16b8c05 103 def nexthint(self, hintnum):
b16b8c05 104 answer = self.hintanswer
105
b5c89dfb 106 if self.hintstr is None or self.revealpossibilities is None or self.reveal is None:
b16b8c05 107 self.hintstr = list(re.sub(r'[a-zA-Z0-9]', '*', answer))
108 self.revealpossibilities = range(''.join(self.hintstr).count('*'))
b5c89dfb 109 self.reveal = int(''.join(self.hintstr).count('*') * (7/24.0))
b16b8c05 110
b5c89dfb 111 for i in range(self.reveal):
b16b8c05 112 revealcount = random.choice(self.revealpossibilities)
113 revealloc = findnth(''.join(self.hintstr), '*', revealcount)
114 self.revealpossibilities.remove(revealcount)
115 self.hintstr[revealloc] = answer[revealloc]
be8072b5 116 self.parent.channel(self.chan).bot.fastmsg(self.chan, "\00304,01Here's a hint: %s" % (''.join(self.hintstr)))
b16b8c05 117
77c61775 118 self.hintsgiven += 1
119
c4763e66 120 if hintnum < self.db['hintnum']:
be8072b5 121 self.steptimer = MyTimer(self.db['hinttimer'], self.nexthint, args=[hintnum+1])
b16b8c05 122 self.steptimer.start()
123 else:
be8072b5 124 self.steptimer = MyTimer(self.db['hinttimer'], self.nextquestion, args=[True])
b16b8c05 125 self.steptimer.start()
126
77c61775 127 def doGameOver(self):
7bd5e7d5 128 msg = self.getchan().msg
c0eee1b4 129 winner = person(0)
77c61775 130 try:
131 msg("\00312THE GAME IS OVER!!!")
132 msg("THE WINNER IS: %s (%s)" % (person(0), pts(0)))
133 msg("2ND PLACE: %s (%s)" % (person(1), pts(1)))
134 msg("3RD PLACE: %s (%s)" % (person(2), pts(2)))
135 [msg("%dth place: %s (%s)" % (i+1, person(i), pts(i))) for i in range(3,10)]
136 except IndexError: pass
c0eee1b4 137 except Exception as e: msg("DERP! %r" % (e))
138
5f42c250 139 self.db['lastwinner'] = winner
140 self.db['lastwon'] = time.time()
141
7bd5e7d5 142 if self.db['hofpath'] is not None and self.db['hofpath'] != '':
143 self.writeHof()
144
77c61775 145 self.db['users'] = {}
146 self.db['ranks'] = []
147 stop()
148 self.closeshop()
c0eee1b4 149
c53f6514 150 try:
c0eee1b4 151 t = twitter.Twitter(auth=twitter.OAuth(self.getbot().parent.cfg.get('trivia', 'token'),
152 self.getbot().parent.cfg.get('trivia', 'token_sec'),
153 self.getbot().parent.cfg.get('trivia', 'con'),
154 self.getbot().parent.cfg.get('trivia', 'con_sec')))
155 t.statuses.update(status="Round is over! The winner was %s" % (winner))
c53f6514 156 except: pass #don't care if errors happen updating twitter.
157
5871567f 158 self.__init__(self.parent, True)
c53f6514 159
7bd5e7d5 160 def writeHof(self):
161 def person(num):
162 try: return self.db['users'][self.db['ranks'][num]]['realnick']
163 except: return "none"
164 def pts(num):
165 try: return str(self.db['users'][self.db['ranks'][num]]['points'])
166 except: return 0
167
168 try:
169 f = open(self.db['hofpath'], 'rb+')
170 for i in range(self.db['hoflines']): #skip this many lines
171 f.readline()
172 insertpos = f.tell()
173 fcontents = f.read()
174 f.seek(insertpos)
175 f.write((self.db['hofformat']+"\n") % {
176 'date': time.strftime("%F", time.gmtime()),
177 'duration': str(datetime.timedelta(seconds=time.time()-self.db['starttime'])),
178 'targetscore': self.db['target'],
179 'firstperson': person(0),
180 'firstscore': pts(0),
181 'secondperson': person(1),
182 'secondscore': pts(1),
183 'thirdperson': person(2),
184 'thirdscore': pts(2),
185 })
186 f.write(fcontents)
187 return True
188 except Exception as e:
189 raise e
190 return False
191 finally:
192 f.close()
193
c53f6514 194 def endPointVote(self):
195 self.getchan().msg("Voting has ended!")
196 votelist = sorted(self.voteamounts.items(), key=lambda item: item[1]) #sort into list of tuples: [(option, number_of_votes), ...]
197 for i in range(len(votelist)-1):
198 item = votelist[i]
199 self.getchan().msg("%s place: %s (%s votes)" % (len(votelist)-i, item[0], item[1]))
200 self.getchan().msg("Aaaaand! The next round will be to \002%s\002 points! (%s votes)" % (votelist[-1][0], votelist[-1][1]))
c0eee1b4 201
c53f6514 202 self.db['target'] = votelist[-1][0]
203 self.pointvote = None
77c61775 204
38b29993 205 self.nextquestion() #start the game!
206
442ed923 207 def nextquestion(self, qskipped=False, iteration=0, skipwait=False):
7b832b55 208 self.lastqid = self.curqid
6bdfec48 209 self.curq = None
7b832b55 210 self.curqid = None
77c61775 211 if self.gameover == True:
212 return self.doGameOver()
fadbf980 213 if qskipped:
be8072b5 214 self.getchan().fastmsg("\00304Fail! The correct answer was: %s" % (self.hintanswer))
c0eee1b4 215 self.missedquestions += 1
216 else:
217 self.missedquestions = 0
f8cc0124 218 if 'topicformat' in self.db and self.db['topicformat'] is not None:
219 self.getbot().conn.send("TOPIC %s" % (self.db['chan']))
fadbf980 220
b16b8c05 221 if isinstance(self.steptimer, threading._Timer):
222 self.steptimer.cancel()
442ed923 223 if isinstance(self.nextquestiontimer, threading._Timer):
224 self.nextquestiontimer.cancel()
225 self.nextquestiontimer = None
c0eee1b4 226
b16b8c05 227 self.hintstr = None
77c61775 228 self.hintsgiven = 0
b16b8c05 229 self.revealpossibilities = None
b5c89dfb 230 self.reveal = None
b16b8c05 231
c4763e66 232 if self.missedquestions > self.db['maxmissedquestions']:
c0eee1b4 233 stop()
ce03ceda 234 self.getbot().msg(self.getchan(), "%d questions unanswered! Stopping the game." % (self.missedquestions))
235 return
b16b8c05 236
442ed923 237 if skipwait:
6bdfec48 238 self._nextquestion(iteration)
442ed923 239 else:
be8072b5 240 self.nextquestiontimer = MyTimer(self.db['questionpause'], self._nextquestion, args=[iteration])
442ed923 241 self.nextquestiontimer.start()
242
6bdfec48 243 def _nextquestion(self, iteration):
e5a3970b 244 if self.nextq is not None:
2520caee 245 nextqid = None
e5a3970b 246 nextq = self.nextq
247 self.nextq = None
c695f740 248 else:
2520caee 249 nextqid = random.randrange(0, len(self.db['questions']))
250 nextq = self.db['questions'][nextqid]
b5c89dfb 251
ebee6edb 252 if nextq[0][0] == "!":
2520caee 253 nextqid = None
b5c89dfb 254 nextq = specialQuestion(nextq)
255
ebee6edb 256 if len(nextq) > 2 and nextq[2] - time.time() < 7*24*60*60 and iteration < 10:
442ed923 257 return self._nextquestion(iteration=iteration+1) #short-circuit to pick another question
ebee6edb 258 if len(nextq) > 2:
259 nextq[2] = time.time()
260 else:
261 nextq.append(time.time())
b5c89dfb 262
ebee6edb 263 nextq[1] = nextq[1].lower()
c695f740 264
6374d61f 265 qtext = "\00304,01Next up: "
bf8676ae 266 qtext += "(%5d)" % (random.randint(0,99999))
ebee6edb 267 qary = nextq[0].split(None)
71e0b5fb 268 qtext += " "
c695f740 269 for qword in qary:
6374d61f 270 qtext += "\00304,01"+qword+"\00301,01"+chr(random.randrange(0x61,0x7A)) #a-z
be8072b5 271 self.getbot().fastmsg(self.chan, qtext)
80d02bd8 272
b5c89dfb 273 self.curq = nextq
7b832b55 274 self.curqid = nextqid
b5c89dfb 275
ebee6edb 276 if isinstance(self.curq[1], basestring): self.hintanswer = self.curq[1]
277 else: self.hintanswer = random.choice(self.curq[1])
c0eee1b4 278
be8072b5 279 self.steptimer = MyTimer(self.db['hinttimer'], self.nexthint, args=[1])
b16b8c05 280 self.steptimer.start()
281
80d02bd8 282 def checkanswer(self, answer):
9557ee54 283 if self.curq is None:
284 return False
ebee6edb 285 elif isinstance(self.curq[1], basestring):
286 return answer.lower() == self.curq[1]
80d02bd8 287 else: # assume it's a list or something.
ebee6edb 288 return answer.lower() in self.curq[1]
77c61775 289
c53f6514 290 def addpoint(self, user_obj, count=1):
291 user_nick = str(user_obj)
292 user = user_nick.lower() # save this separately as we use both
80d02bd8 293 if user in self.db['users']:
294 self.db['users'][user]['points'] += count
295 else:
c53f6514 296 self.db['users'][user] = {'points': count, 'realnick': user_nick, 'rank': len(self.db['ranks'])}
9557ee54 297 self.db['ranks'].append(user)
80d02bd8 298
e5a3970b 299 self.db['ranks'].sort(key=lambda nick: self.db['users'][nick]['points'], reverse=True) #re-sort ranks, rather than dealing with anything more efficient
6374d61f 300 for i in range(0, len(self.db['ranks'])):
301 nick = self.db['ranks'][i]
302 self.db['users'][nick]['rank'] = i
77c61775 303
e5a3970b 304 if self.db['users'][user]['points'] >= self.db['target']:
77c61775 305 self.gameover = True
306
80d02bd8 307 return self.db['users'][user]['points']
308
309 def points(self, user):
9557ee54 310 user = str(user).lower()
80d02bd8 311 if user in self.db['users']:
312 return self.db['users'][user]['points']
313 else:
314 return 0
315
316 def rank(self, user):
c695f740 317 user = str(user).lower()
fadbf980 318 if user in self.db['users']:
319 return self.db['users'][user]['rank']+1
320 else:
321 return len(self.db['users'])+1
77c61775 322
c695f740 323 def targetuser(self, user):
77c61775 324 if len(self.db['ranks']) == 0: return "no one is ranked!"
325
c695f740 326 user = str(user).lower()
fadbf980 327 if user in self.db['users']:
328 rank = self.db['users'][user]['rank']
329 if rank == 0:
330 return "you're in the lead!"
331 else:
332 return self.db['ranks'][rank-1]
c695f740 333 else:
fadbf980 334 return self.db['ranks'][-1]
c695f740 335 def targetpoints(self, user):
77c61775 336 if len(self.db['ranks']) == 0: return 0
337
c695f740 338 user = str(user).lower()
fadbf980 339 if user in self.db['users']:
340 rank = self.db['users'][user]['rank']
341 if rank == 0:
342 return "N/A"
343 else:
344 return self.db['users'][self.db['ranks'][rank-1]]['points']
c695f740 345 else:
fadbf980 346 return self.db['users'][self.db['ranks'][-1]]['points']
80d02bd8 347
5871567f 348state = TriviaState()
9557ee54 349
5871567f 350# we have to hook this in modstart, since we don't know the channel until then.
80d02bd8 351def trivia_checkanswer(bot, user, chan, *args):
80d02bd8 352 line = ' '.join([str(arg) for arg in args])
353 if state.checkanswer(line):
6bdfec48 354 state.curq = None
be8072b5 355 bot.fastmsg(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 356 if state.hintsgiven == 0:
6374d61f 357 bot.msg(chan, "\00312%s\003 got an extra point for getting it before the hints! New score: %d." % (user, state.addpoint(user)))
9557ee54 358 state.nextquestion()
80d02bd8 359
fb20be7c 360@lib.hook(needchan=False)
361def points(bot, user, chan, realtarget, *args):
6bdfec48 362 if chan is not None and realtarget == chan.name: replyto = chan
80d02bd8 363 else: replyto = user
364
365 if len(args) != 0: who = args[0]
366 else: who = user
367
368 bot.msg(replyto, "%s has %d points." % (who, state.points(who)))
369
fb20be7c 370@lib.hook(glevel=lib.STAFF, needchan=False)
80d02bd8 371@lib.argsGE(1)
fb20be7c 372def give(bot, user, chan, realtarget, *args):
80d02bd8 373 whoto = args[0]
c695f740 374 if len(args) > 1:
375 numpoints = int(args[1])
376 else:
377 numpoints = 1
378 balance = state.addpoint(whoto, numpoints)
fadbf980 379
c695f740 380 bot.msg(chan, "%s gave %s %d points. New balance: %d" % (user, whoto, numpoints, balance))
381
fb20be7c 382@lib.hook(glevel=1, needchan=False)
383def setnextid(bot, user, chan, realtarget, *args):
9306587e 384 try:
385 qid = int(args[0])
386 state.nextq = state.db['questions'][qid]
71e0b5fb 387 if user.glevel >= lib.STAFF:
388 respstr = "Done. Next question is: %s" % (state.nextq[0])
389 else:
390 respstr = "Done."
391 bot.msg(user, respstr)
9306587e 392 except Exception as e:
393 bot.msg(user, "Error: %s" % (e))
394
fb20be7c 395@lib.hook(glevel=lib.STAFF, needchan=False)
c695f740 396@lib.argsGE(1)
fb20be7c 397def setnext(bot, user, chan, realtarget, *args):
c695f740 398 line = ' '.join([str(arg) for arg in args])
399 linepieces = line.split('*')
b5c89dfb 400 if len(linepieces) < 2:
401 bot.msg(user, "Error: need <question>*<answer>")
402 return
c695f740 403 question = linepieces[0].strip()
404 answer = linepieces[1].strip()
ebee6edb 405 state.nextq = [question, answer]
c695f740 406 bot.msg(user, "Done.")
407
fb20be7c 408@lib.hook(glevel=1, needchan=False)
409def skip(bot, user, chan, realtarget, *args):
442ed923 410 state.nextquestion(qskipped=True, skipwait=True)
c695f740 411
fb20be7c 412@lib.hook(needchan=False)
413def start(bot, user, chan, realtarget, *args):
6bdfec48 414 if chan is not None and realtarget == chan.name: replyto = chan
c695f740 415 else: replyto = user
416
77a265cd 417 if chan is not None and chan.name != state.db['chan']:
418 bot.msg(replyto, "That command isn't valid here.")
419 return
420
442ed923 421 if state.curq is None and state.pointvote is None and state.nextquestiontimer is None:
77a265cd 422 bot.msg(state.db['chan'], "%s has started the game!" % (user))
442ed923 423 state.nextquestion(skipwait=True)
c53f6514 424 elif state.pointvote is not None:
425 bot.msg(replyto, "There's a vote in progress!")
c695f740 426 else:
427 bot.msg(replyto, "Game is already started!")
428
9306587e 429@lib.hook('stop', glevel=1, needchan=False)
c695f740 430def cmd_stop(bot, user, chan, realtarget, *args):
fadbf980 431 if stop():
432 bot.msg(state.chan, "Game stopped by %s" % (user))
433 else:
434 bot.msg(user, "Game isn't running.")
c695f740 435
be8072b5 436@lib.hook('exception')
437def cmd_exception(*args, **kwargs):
438 raise Exception()
439
fadbf980 440def stop():
9306587e 441 try:
ce03ceda 442 if state.curq is not None or state.nextq is not None:
9306587e 443 state.curq = None
ce03ceda 444 state.nextq = None
9306587e 445 try:
446 state.steptimer.cancel()
447 except Exception as e:
448 print "!!! steptimer.cancel(): %s %r" % (e,e)
442ed923 449 try:
450 state.nextquestiontimer.cancel()
451 state.nextquestiontimer = None
452 except Exception as e:
453 print "!!! nextquestiontimer.cancel(): %s %r" % (e,e)
9306587e 454 return True
455 else:
456 return False
457 except NameError:
458 pass
80d02bd8 459
fb20be7c 460@lib.hook(needchan=False)
7b832b55 461@lib.argsGE(1)
fb20be7c 462def badq(bot, user, chan, realtarget, *args):
7b832b55 463 lastqid = state.lastqid
464 curqid = state.curqid
465
466 reason = ' '.join(args)
467 state.db['badqs'].append([lastqid, curqid, reason])
468 bot.msg(user, "Reported bad question.")
2520caee 469
fb20be7c 470@lib.hook(glevel=lib.STAFF, needchan=False)
471def badqs(bot, user, chan, realtarget, *args):
2520caee 472 if len(state.db['badqs']) == 0:
473 bot.msg(user, "No reports.")
474
475 for i in range(len(state.db['badqs'])):
476 try:
477 report = state.db['badqs'][i]
7b832b55 478 bot.msg(user, "Report #%d: LastQ=%r CurQ=%r: %s" % (i, report[0], report[1], report[2]))
479 try: lq = state.db['questions'][int(report[0])]
480 except Exception as e: lq = (None,None)
481 try: cq = state.db['questions'][int(report[1])]
482 except Exception as e: cq = (None, None)
483 bot.msg(user, "- Last: %s*%s" % (lq[0], lq[1]))
484 bot.msg(user, "- Curr: %s*%s" % (cq[0], cq[1]))
2520caee 485 except Exception as e:
486 bot.msg(user, "- Exception: %r" % (e))
487
fb20be7c 488@lib.hook(glevel=lib.STAFF, needchan=False)
489def clearbadqs(bot, user, chan, realtarget, *args):
2520caee 490 state.db['badqs'] = []
491 bot.msg(user, "Cleared reports.")
492
fb20be7c 493@lib.hook(glevel=lib.STAFF, needchan=False)
2520caee 494@lib.argsEQ(1)
fb20be7c 495def delbadq(bot, user, chan, realtarget, *args):
2520caee 496 qid = int(args[0])
497 del state.db['badqs'][qid]
498 bot.msg(user, "Removed report #%d" % (qid))
499
fb20be7c 500@lib.hook(needchan=False)
501def rank(bot, user, chan, realtarget, *args):
6bdfec48 502 if chan is not None and realtarget == chan.name: replyto = chan
80d02bd8 503 else: replyto = user
504
c695f740 505 if len(args) != 0: who = args[0]
506 else: who = user
507
77c61775 508 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 509
fb20be7c 510@lib.hook(needchan=False)
511def top10(bot, user, chan, realtarget, *args):
77c61775 512 if len(state.db['ranks']) == 0:
513 return bot.msg(state.db['chan'], "No one is ranked!")
fadbf980 514
8ef938d0 515 max = len(state.db['ranks'])
516 if max > 10:
517 max = 10
518 replylist = ', '.join(["%s (%s) %s" % (person(x), country(x, "unknown"), pts(x)) for x in range(max)])
519 bot.msg(state.db['chan'], "Top %d: %s" % (max, replylist))
77c61775 520
fb20be7c 521@lib.hook(glevel=lib.ADMIN, needchan=False)
522def settarget(bot, user, chan, realtarget, *args):
77c61775 523 try:
524 state.db['target'] = int(args[0])
525 bot.msg(state.db['chan'], "Target has been changed to %s points!" % (state.db['target']))
38b29993 526
7bd5e7d5 527 if state.pointvote is not None:
528 state.pointvote.cancel()
529 state.pointvote = None
38b29993 530 bot.msg(state.db['chan'], "Vote has been cancelled!")
7bd5e7d5 531 except Exception as e:
532 print e
77c61775 533 bot.msg(user, "Failed to set target.")
534
fb20be7c 535@lib.hook(needchan=False)
536def vote(bot, user, chan, realtarget, *args):
7bd5e7d5 537 if state.pointvote is not None:
38b29993 538 if int(args[0]) in state.voteamounts:
539 state.voteamounts[int(args[0])] += 1
540 bot.msg(user, "Your vote has been recorded.")
541 else:
542 bot.msg(user, "Sorry - that's not an option!")
543 else:
544 bot.msg(user, "There's no vote in progress.")
545
fb20be7c 546@lib.hook(glevel=lib.ADMIN, needchan=False)
547def maxmissed(bot, user, chan, realtarget, *args):
c4763e66 548 try:
549 state.db['maxmissedquestions'] = int(args[0])
550 bot.msg(state.db['chan'], "Max missed questions before round ends has been changed to %s." % (state.db['maxmissedquestions']))
551 except:
552 bot.msg(user, "Failed to set maxmissed.")
553
fb20be7c 554@lib.hook(glevel=lib.ADMIN, needchan=False)
555def hinttimer(bot, user, chan, realtarget, *args):
c4763e66 556 try:
557 state.db['hinttimer'] = float(args[0])
558 bot.msg(state.db['chan'], "Time between hints has been changed to %s." % (state.db['hinttimer']))
559 except:
560 bot.msg(user, "Failed to set hint timer.")
561
fb20be7c 562@lib.hook(glevel=lib.ADMIN, needchan=False)
563def hintnum(bot, user, chan, realtarget, *args):
c4763e66 564 try:
565 state.db['hintnum'] = int(args[0])
566 bot.msg(state.db['chan'], "Max number of hints has been changed to %s." % (state.db['hintnum']))
567 except:
568 bot.msg(user, "Failed to set hintnum.")
569
fb20be7c 570@lib.hook(glevel=lib.ADMIN, needchan=False)
571def questionpause(bot, user, chan, realtarget, *args):
442ed923 572 try:
573 state.db['questionpause'] = float(args[0])
574 bot.msg(state.db['chan'], "Pause between questions has been changed to %s." % (state.db['questionpause']))
575 except:
576 bot.msg(user, "Failed to set questionpause.")
577
fb20be7c 578@lib.hook(glevel=1, needchan=False)
579def findq(bot, user, chan, realtarget, *args):
bf8676ae 580 if len(args) == 0:
581 bot.msg(user, "You need to specify a search string.")
582 return
583
aaa67e6d 584 searcher = re.compile(' '.join(args))
585 matches = [str(i) for i in range(len(state.db['questions'])) if searcher.search(state.db['questions'][i][0]) is not None]
bf8676ae 586 if len(matches) > 25:
587 bot.msg(user, "Too many matches! (>25)")
588 elif len(matches) > 1:
c4763e66 589 bot.msg(user, "Multiple matches: %s" % (', '.join(matches)))
590 elif len(matches) == 1:
591 bot.msg(user, "One match: %s" % (matches[0]))
592 else:
593 bot.msg(user, "No match.")
594
fb20be7c 595@lib.hook(('delq', 'deleteq'), glevel=lib.STAFF, needchan=False)
596def delq(bot, user, chan, realtarget, *args):
c4763e66 597 try:
598 backup = state.db['questions'][int(args[0])]
599 del state.db['questions'][int(args[0])]
ebee6edb 600 bot.msg(user, "Deleted %s*%s" % (backup[0], backup[1]))
c4763e66 601 except:
602 bot.msg(user, "Couldn't delete that question.")
603
fb20be7c 604@lib.hook(glevel=lib.STAFF, needchan=False)
605def addq(bot, user, chan, realtarget, *args):
c4763e66 606 line = ' '.join([str(arg) for arg in args])
607 linepieces = line.split('*')
608 if len(linepieces) < 2:
609 bot.msg(user, "Error: need <question>*<answer>")
610 return
611 question = linepieces[0].strip()
612 answer = linepieces[1].strip()
ebee6edb 613 state.db['questions'].append([question, answer])
c4763e66 614 bot.msg(user, "Done. Question is #%s" % (len(state.db['questions'])-1))
615
616
fb20be7c 617@lib.hook(needchan=False)
618def triviahelp(bot, user, chan, realtarget, *args):
2520caee 619 bot.msg(user, "START")
620 bot.msg(user, "TOP10")
621 bot.msg(user, "POINTS [<user>]")
622 bot.msg(user, "RANK [<user>]")
bf8676ae 623 bot.msg(user, "BADQ <reason> (include info to identify question)")
9306587e 624 if user.glevel >= 1:
442ed923 625 bot.msg(user, "SKIP (>=KNOWN)")
626 bot.msg(user, "STOP (>=KNOWN)")
627 bot.msg(user, "FINDQ <question> (>=KNOWN)")
9306587e 628 if user.glevel >= lib.STAFF:
442ed923 629 bot.msg(user, "GIVE <user> [<points>] (>=STAFF)")
630 bot.msg(user, "SETNEXT <q>*<a> (>=STAFF)")
631 bot.msg(user, "ADDQ <q>*<a> (>=STAFF)")
632 bot.msg(user, "DELETEQ <q>*<a> (>=STAFF) [aka DELQ]")
2520caee 633 bot.msg(user, "BADQS (>=STAFF)")
634 bot.msg(user, "CLEARBADQS (>=STAFF)")
635 bot.msg(user, "DELBADQ <reportid> (>=STAFF)")
9306587e 636 if user.glevel >= lib.ADMIN:
442ed923 637 bot.msg(user, "SETTARGET <points> (>=ADMIN)")
638 bot.msg(user, "MAXMISSED <questions> (>=ADMIN)")
639 bot.msg(user, "HINTTIMER <float seconds> (>=ADMIN)")
640 bot.msg(user, "HINTNUM <hints> (>=ADMIN)")
641 bot.msg(user, "QUESTIONPAUSE <float seconds> (>=ADMIN)")
b5c89dfb 642
6374d61f 643@lib.hooknum(417)
644def num_417(bot, textline):
645 bot.msg(state.db['chan'], "Whoops, it looks like that question didn't quite go through! (E:417). Let's try another...")
442ed923 646 state.nextquestion(qskipped=False, skipwait=True)
6374d61f 647
f8cc0124 648@lib.hooknum(332)
649def num_TOPIC(bot, textline):
650 pieces = textline.split(None, 4)
651 chan = pieces[3]
652 if chan != state.db['chan']:
653 return
654 gottopic = pieces[4][1:]
655
656 formatted = state.db['topicformat'] % {
657 'chan': state.db['chan'],
8ef938d0 658 'top1': "%s (%s)" % (person(0), pts(0)),
659 'top3': '/'.join([
660 "%s (%s)" % (person(x), pts(x))
661 for x in range(3) if x < len(state.db['ranks'])
662 ]),
663 'top3c': ' '.join([
664 "%s (%s, %s)" % (person(x), pts(x), country(x))
665 for x in range(3) if x < len(state.db['ranks'])
666 ]),
667 'top10': ' '.join([
668 "%s (%s)" % (person(x), pts(x))
669 for x in range(10) if x < len(state.db['ranks'])
670 ]),
671 'top10c': ' '.join([
672 "%s (%s, %s)" % (person(x), pts(x), country(x))
673 for x in range(10) if x < len(state.db['ranks'])
674 ]),
5f42c250 675 'lastwinner': state.db['lastwinner'],
676 'lastwon': time.strftime("%b %d", time.gmtime(state.db['lastwon'])),
f8cc0124 677 'target': state.db['target'],
678 }
679 if gottopic != formatted:
680 state.getbot().conn.send("TOPIC %s :%s" % (state.db['chan'], formatted))
681
b5c89dfb 682
683def specialQuestion(oldq):
ebee6edb 684 newq = [oldq[0], oldq[1]]
685 qtype = oldq[0].upper()
b5c89dfb 686
687 if qtype == "!MONTH":
ebee6edb 688 newq[0] = "What month is it currently (in UTC)?"
689 newq[1] = time.strftime("%B", time.gmtime()).lower()
b5c89dfb 690 elif qtype == "!MATH+":
691 randnum1 = random.randrange(0, 11)
692 randnum2 = random.randrange(0, 11)
ebee6edb 693 newq[0] = "What is %d + %d?" % (randnum1, randnum2)
694 newq[1] = spellout(randnum1+randnum2)
b5c89dfb 695 return newq
696
697def spellout(num):
698 return [
699 "zero", "one", "two", "three", "four", "five", "six", "seven", "eight",
700 "nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen",
701 "sixteen", "seventeen", "eighteen", "nineteen", "twenty"
702 ][num]