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