]> jfr.im git - erebus.git/blame - modules/trivia.py
urls - escape .s in open.spotify.com
[erebus.git] / modules / trivia.py
CommitLineData
80d02bd8 1# Erebus IRC bot - Author: Erebus Team
4477123d 2# vim: fileencoding=utf-8
c695f740 3# trivia module
80d02bd8 4# This file is released into the public domain; see http://unlicense.org/
5
a28e2ae9 6from __future__ import print_function
7
80d02bd8 8# module info
9modinfo = {
10 'author': 'Erebus Team',
11 'license': 'public domain',
fa93b933 12 'compatible': [0],
fd6b5eba 13 'depends': [],
14 'softdeps': ['help','userinfo'],
80d02bd8 15}
16
17# preamble
18import modlib
19lib = modlib.modlib(__name__)
20def modstart(parent, *args, **kwargs):
5871567f 21 state.gotParent(parent)
22 lib.hookchan(state.db['chan'])(trivia_checkanswer) # we need parent for this. so it goes here.
80d02bd8 23 return lib.modstart(parent, *args, **kwargs)
24def modstop(*args, **kwargs):
c0eee1b4 25 global state
8ef938d0 26 try:
27 stop()
28 state.closeshop()
29 del state
30 except Exception: pass
80d02bd8 31 return lib.modstop(*args, **kwargs)
32
33# module code
a28e2ae9 34import json, random, threading, re, time, datetime, os, sys
35
36if sys.version_info.major < 3:
37 timerbase = threading._Timer
d85e99b6 38 stringbase = basestring
a28e2ae9 39else:
d85e99b6 40 import tempfile
a28e2ae9 41 timerbase = threading.Timer
d85e99b6 42 stringbase = str
a28e2ae9 43
b16b8c05 44
c0eee1b4 45try:
be8072b5 46 import twitter
c53f6514 47except: pass # doesn't matter if we don't have twitter, updating the status just will fall through the try-except if so...
c0eee1b4 48
b16b8c05 49def findnth(haystack, needle, n): #http://stackoverflow.com/a/1884151
50 parts = haystack.split(needle, n+1)
51 if len(parts)<=n+1:
52 return -1
53 return len(haystack)-len(parts[-1])-len(needle)
80d02bd8 54
00ccae72 55def person(num, throwindexerror=False):
56 try:
57 return state.db['users'][state.db['ranks'][num]]['realnick']
58 except IndexError:
59 if throwindexerror:
60 raise
61 else:
62 return ''
63
3b89ebff 64def pts(num):
00ccae72 65 try:
66 return str(state.db['users'][state.db['ranks'][num]]['points'])
67 except IndexError:
68 return 0
2bb267e0 69
00ccae72 70def country(num, default="??"):
fd6b5eba 71 try:
72 return lib.mod('userinfo').get(person(num), 'country', default=default).upper()
73 except KeyError:
74 return default.upper()
8ef938d0 75
a28e2ae9 76class MyTimer(timerbase):
be8072b5 77 def __init__(self, *args, **kwargs):
a28e2ae9 78 timerbase.__init__(self, *args, **kwargs)
be8072b5 79 self.daemon = True
80
80d02bd8 81class TriviaState(object):
5871567f 82 def __init__(self, parent=None, pointvote=False):
68419d56 83 self.streak = 0
84 self.streak_holder = None
5871567f 85 if parent is not None:
86 self.gotParent(parent, pointvote)
87
88 def gotParent(self, parent, pointvote=False):
bf8676ae 89 self.parent = parent
90 self.questionfile = self.parent.cfg.get('trivia', 'jsonpath', default="./modules/trivia.json")
91 self.db = json.load(open(self.questionfile, "r"))
8ad3a154 92 self.questions = self.db['questions'][self.db['category']]
bf8676ae 93 self.chan = self.db['chan']
94 self.curq = None
95 self.nextq = None
656dc5a4 96 self.nextqid = None
bf8676ae 97 self.nextquestiontimer = None
98 self.steptimer = None
99 self.hintstr = None
100 self.hintanswer = None
101 self.hintsgiven = 0
b16b8c05 102 self.revealpossibilities = None
bf8676ae 103 self.gameover = False
104 self.missedquestions = 0
105 self.curqid = None
106 self.lastqid = None
80d02bd8 107
00ccae72 108 if 'lastwon' not in self.db or self.db['lastwon'] is None:
109 self.db['lastwon'] = time.time()
7bd5e7d5 110
c53f6514 111 if pointvote:
bcb6dc21 112 self.getchan().fastmsg("Vote for the next round target points! Options: %s. Vote using !vote <choice>" % (', '.join([str(x) for x in self.db['targetoptions']])))
113 self.getchan().fastmsg("You have %s seconds." % (self.db['votetimer']))
c53f6514 114 self.voteamounts = dict([(x, 0) for x in self.db['targetoptions']]) # make a dict {pointsoptionA: 0, pointsoptionB: 0, ...}
be8072b5 115 self.pointvote = MyTimer(self.db['votetimer'], self.endPointVote)
c53f6514 116 self.pointvote.start()
117 else:
118 self.pointvote = None
119
8770f6ef 120# def __del__(self):
121# self.closeshop()
77c61775 122 def closeshop(self):
2bb487be 123 try:
124 self.steptimer.cancel()
125 self.steptimer = None
126 except: pass
127 try:
128 self.nextquestiontimer.cancel()
129 self.nextquestiontimer = None
130 except: pass
b9daa51a 131
67faf5d7 132 def savedb(self): #returns whether or not it was able to save
c695f740 133 if json is not None and json.dump is not None:
67faf5d7 134# json.dump(self.db, open(self.questionfile, "w"))#, indent=4, separators=(',', ': '))
135 dbjson = json.dumps(self.db)
d85e99b6 136 # we have to do a dance to save the file to make the update atomic, and also because Py3 doesn't have os.tempnam in the misguided pursuit of "security"
67faf5d7 137 if len(dbjson) > 0:
3f04e466 138 os.rename(self.questionfile, self.questionfile+".auto.bak")
67faf5d7 139 try:
c3ff1486 140 # TODO replace both of these with tempfile.NamedTemporaryFile(delete=False, dir=os.path.dirname(self.questionfile), prefix='trivia') & f.name :
d85e99b6 141 if sys.version_info.major < 3:
142 tmpfn = os.tempnam('.', 'trivia')
143 f = open(tmpfn, "w")
144 else:
145 fd, tmpfn = tempfile.mkstemp(dir='.', prefix='trivia')
146 f = open(fd, "w")
67faf5d7 147 f.write(dbjson)
148 f.close()
149 os.rename(tmpfn, self.questionfile)
150 return True
151 except: #if something happens, restore the backup
3f04e466 152 os.rename(self.questionfile+".auto.bak", self.questionfile)
67faf5d7 153 try:
154 os.unlink(tmpfn)
155 except OSError: # temp file is already gone
156 pass
d85e99b6 157 except UnboundLocalError:
158 pass
159 raise
67faf5d7 160 return False
80d02bd8 161
fadbf980 162 def getchan(self):
163 return self.parent.channel(self.chan)
164 def getbot(self):
165 return self.getchan().bot
166
b16b8c05 167 def nexthint(self, hintnum):
b16b8c05 168 answer = self.hintanswer
169
b5c89dfb 170 if self.hintstr is None or self.revealpossibilities is None or self.reveal is None:
93ce52fd 171 oldhintstr = ""
b16b8c05 172 self.hintstr = list(re.sub(r'[a-zA-Z0-9]', '*', answer))
4241f9b1 173 self.revealpossibilities = list(range(''.join(self.hintstr).count('*')))
93ce52fd 174 self.reveal = int(round(''.join(self.hintstr).count('*') * (7/24.0)))
175 else:
176 oldhintstr = ''.join(self.hintstr)
b16b8c05 177
b68479d7 178 try:
179 for i in range(self.reveal):
180 revealcount = random.choice(self.revealpossibilities)
181 revealloc = findnth(''.join(self.hintstr), '*', revealcount)
182 self.revealpossibilities.remove(revealcount)
183 self.hintstr[revealloc] = answer[revealloc]
184 except IndexError: pass # if everything is revealed, random.choice will IndexError
2bb267e0 185 if oldhintstr != ''.join(self.hintstr): self.getchan().fastmsg("\00304,01Here's a hint: %s" % (''.join(self.hintstr)))
b16b8c05 186
77c61775 187 self.hintsgiven += 1
188
c4763e66 189 if hintnum < self.db['hintnum']:
be8072b5 190 self.steptimer = MyTimer(self.db['hinttimer'], self.nexthint, args=[hintnum+1])
b16b8c05 191 self.steptimer.start()
192 else:
be8072b5 193 self.steptimer = MyTimer(self.db['hinttimer'], self.nextquestion, args=[True])
b16b8c05 194 self.steptimer.start()
195
77c61775 196 def doGameOver(self):
7bd5e7d5 197 msg = self.getchan().msg
c0eee1b4 198 winner = person(0)
77c61775 199 try:
200 msg("\00312THE GAME IS OVER!!!")
00ccae72 201 msg("THE WINNER IS: %s (%s)" % (person(0, True), pts(0)))
202 msg("2ND PLACE: %s (%s)" % (person(1, True), pts(1)))
203 msg("3RD PLACE: %s (%s)" % (person(2, True), pts(2)))
204 [msg("%dth place: %s (%s)" % (i+1, person(i, True), pts(i))) for i in range(3,10)]
77c61775 205 except IndexError: pass
09566235 206 except Exception as e:
207 msg("DERP! %r" % (e))
c0eee1b4 208
7bd5e7d5 209 if self.db['hofpath'] is not None and self.db['hofpath'] != '':
210 self.writeHof()
211
3979fb71 212 self.db['lastwinner'] = winner
213 self.db['lastwon'] = time.time()
214
77c61775 215 self.db['users'] = {}
216 self.db['ranks'] = []
b68479d7 217 self.savedb()
77c61775 218 stop()
219 self.closeshop()
c0eee1b4 220
c53f6514 221 try:
c0eee1b4 222 t = twitter.Twitter(auth=twitter.OAuth(self.getbot().parent.cfg.get('trivia', 'token'),
223 self.getbot().parent.cfg.get('trivia', 'token_sec'),
224 self.getbot().parent.cfg.get('trivia', 'con'),
225 self.getbot().parent.cfg.get('trivia', 'con_sec')))
226 t.statuses.update(status="Round is over! The winner was %s" % (winner))
c53f6514 227 except: pass #don't care if errors happen updating twitter.
228
5871567f 229 self.__init__(self.parent, True)
c53f6514 230
7bd5e7d5 231 def writeHof(self):
232 def person(num):
233 try: return self.db['users'][self.db['ranks'][num]]['realnick']
234 except: return "none"
235 def pts(num):
236 try: return str(self.db['users'][self.db['ranks'][num]]['points'])
237 except: return 0
238
aaf381b8 239 status = False
b68479d7 240 f = None
7bd5e7d5 241 try:
242 f = open(self.db['hofpath'], 'rb+')
243 for i in range(self.db['hoflines']): #skip this many lines
244 f.readline()
245 insertpos = f.tell()
246 fcontents = f.read()
247 f.seek(insertpos)
4241f9b1 248 new_line = self.db['hofformat'] % {
7bd5e7d5 249 'date': time.strftime("%F", time.gmtime()),
00ccae72 250 'duration': str(datetime.timedelta(seconds=time.time()-self.db['lastwon'])),
7bd5e7d5 251 'targetscore': self.db['target'],
252 'firstperson': person(0),
253 'firstscore': pts(0),
254 'secondperson': person(1),
255 'secondscore': pts(1),
256 'thirdperson': person(2),
257 'thirdscore': pts(2),
4241f9b1 258 }
259 f.write(new_line.encode() + b"\n")
7bd5e7d5 260 f.write(fcontents)
aaf381b8 261 status = True
7bd5e7d5 262 except Exception as e:
4241f9b1 263 print(repr(e))
264 print(type(e))
265 print(e.message)
aaf381b8 266 status = False
7bd5e7d5 267 finally:
b68479d7 268 if f is not None:
269 f.close()
aaf381b8 270 return status
7bd5e7d5 271
c53f6514 272 def endPointVote(self):
273 self.getchan().msg("Voting has ended!")
274 votelist = sorted(self.voteamounts.items(), key=lambda item: item[1]) #sort into list of tuples: [(option, number_of_votes), ...]
275 for i in range(len(votelist)-1):
276 item = votelist[i]
277 self.getchan().msg("%s place: %s (%s votes)" % (len(votelist)-i, item[0], item[1]))
278 self.getchan().msg("Aaaaand! The next round will be to \002%s\002 points! (%s votes)" % (votelist[-1][0], votelist[-1][1]))
c0eee1b4 279
c53f6514 280 self.db['target'] = votelist[-1][0]
281 self.pointvote = None
77c61775 282
38b29993 283 self.nextquestion() #start the game!
284
442ed923 285 def nextquestion(self, qskipped=False, iteration=0, skipwait=False):
7b832b55 286 self.lastqid = self.curqid
6bdfec48 287 self.curq = None
7b832b55 288 self.curqid = None
5464fa7a 289 self.lastqtime = time.time()
77c61775 290 if self.gameover == True:
291 return self.doGameOver()
fadbf980 292 if qskipped:
010ab290 293 self.streak = 0
294 self.streak_holder = None
be8072b5 295 self.getchan().fastmsg("\00304Fail! The correct answer was: %s" % (self.hintanswer))
c0eee1b4 296 self.missedquestions += 1
297 else:
298 self.missedquestions = 0
f8cc0124 299 if 'topicformat' in self.db and self.db['topicformat'] is not None:
300 self.getbot().conn.send("TOPIC %s" % (self.db['chan']))
fadbf980 301
9138aa03 302 if isinstance(self.steptimer, MyTimer):
b16b8c05 303 self.steptimer.cancel()
9138aa03 304 if isinstance(self.nextquestiontimer, MyTimer):
442ed923 305 self.nextquestiontimer.cancel()
306 self.nextquestiontimer = None
c0eee1b4 307
b16b8c05 308 self.hintstr = None
77c61775 309 self.hintsgiven = 0
b16b8c05 310 self.revealpossibilities = None
b5c89dfb 311 self.reveal = None
b16b8c05 312
af349654 313 self.savedb()
314
c4763e66 315 if self.missedquestions > self.db['maxmissedquestions']:
c0eee1b4 316 stop()
ce03ceda 317 self.getbot().msg(self.getchan(), "%d questions unanswered! Stopping the game." % (self.missedquestions))
318 return
b16b8c05 319
442ed923 320 if skipwait:
6bdfec48 321 self._nextquestion(iteration)
442ed923 322 else:
be8072b5 323 self.nextquestiontimer = MyTimer(self.db['questionpause'], self._nextquestion, args=[iteration])
442ed923 324 self.nextquestiontimer.start()
325
6bdfec48 326 def _nextquestion(self, iteration):
e5a3970b 327 if self.nextq is not None:
2520caee 328 nextqid = None
e5a3970b 329 nextq = self.nextq
330 self.nextq = None
656dc5a4 331 elif self.nextqid is not None:
332 nextqid = self.nextqid
333 nextq = self.questions[nextqid]
334 self.nextqid = None
c695f740 335 else:
8ad3a154 336 nextqid = random.randrange(0, len(self.questions))
337 nextq = self.questions[nextqid]
b5c89dfb 338
fd07173d 339 if nextq[0].startswith("!"):
2520caee 340 nextqid = None
b5c89dfb 341 nextq = specialQuestion(nextq)
342
aa0e4be4 343 if len(nextq) > 2 and time.time() - nextq[2] < 7*24*60*60 and iteration < 10:
442ed923 344 return self._nextquestion(iteration=iteration+1) #short-circuit to pick another question
ebee6edb 345 if len(nextq) > 2:
346 nextq[2] = time.time()
347 else:
348 nextq.append(time.time())
b5c89dfb 349
d85e99b6 350 if isinstance(nextq[1], stringbase):
93ce52fd 351 nextq[1] = nextq[1].lower()
352 else:
353 nextq[1] = [s.lower() for s in nextq[1]]
c695f740 354
00ccae72 355 qtext = "\00312,01Next up: "
bf8676ae 356 qtext += "(%5d)" % (random.randint(0,99999))
ebee6edb 357 qary = nextq[0].split(None)
71e0b5fb 358 qtext += " "
c695f740 359 for qword in qary:
af349654 360 spacer = random.choice(
d85e99b6 361 list(range(0x61,0x7A)) + ([0x20]*4)
af349654 362 )
363 qtext += "\00304,01"+qword+"\00301,01"+chr(spacer) #a-z
656dc5a4 364 if not self.getbot().fastmsg(self.chan, qtext): #if message is too long:
bcb6dc21 365 if not self.getbot().fastmsg(self.chan, "\00312,01Next up: " + ("(%5d)" % (random.randint(0,99999))) + "\00304,01" + nextq[0]):
366 if nextqid is None: nextqid = "manual"
367 self.getbot().slowmsg(self.chan, "(Unable to ask question #%s: line too long)" % (nextqid))
368 return self._nextquestion(iteration) #retry; don't increment the iteration
80d02bd8 369
b5c89dfb 370 self.curq = nextq
7b832b55 371 self.curqid = nextqid
b5c89dfb 372
d85e99b6 373 if isinstance(self.curq[1], stringbase): self.hintanswer = self.curq[1]
ebee6edb 374 else: self.hintanswer = random.choice(self.curq[1])
c0eee1b4 375
be8072b5 376 self.steptimer = MyTimer(self.db['hinttimer'], self.nexthint, args=[1])
b16b8c05 377 self.steptimer.start()
378
80d02bd8 379 def checkanswer(self, answer):
9557ee54 380 if self.curq is None:
381 return False
d85e99b6 382 elif isinstance(self.curq[1], stringbase):
ebee6edb 383 return answer.lower() == self.curq[1]
80d02bd8 384 else: # assume it's a list or something.
ebee6edb 385 return answer.lower() in self.curq[1]
77c61775 386
c53f6514 387 def addpoint(self, user_obj, count=1):
388 user_nick = str(user_obj)
389 user = user_nick.lower() # save this separately as we use both
80d02bd8 390 if user in self.db['users']:
391 self.db['users'][user]['points'] += count
392 else:
c53f6514 393 self.db['users'][user] = {'points': count, 'realnick': user_nick, 'rank': len(self.db['ranks'])}
9557ee54 394 self.db['ranks'].append(user)
80d02bd8 395
e5a3970b 396 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 397 for i in range(0, len(self.db['ranks'])):
398 nick = self.db['ranks'][i]
399 self.db['users'][nick]['rank'] = i
77c61775 400
e5a3970b 401 if self.db['users'][user]['points'] >= self.db['target']:
77c61775 402 self.gameover = True
403
80d02bd8 404 return self.db['users'][user]['points']
405
406 def points(self, user):
9557ee54 407 user = str(user).lower()
80d02bd8 408 if user in self.db['users']:
409 return self.db['users'][user]['points']
410 else:
411 return 0
412
413 def rank(self, user):
c695f740 414 user = str(user).lower()
fadbf980 415 if user in self.db['users']:
416 return self.db['users'][user]['rank']+1
417 else:
418 return len(self.db['users'])+1
77c61775 419
c695f740 420 def targetuser(self, user):
77c61775 421 if len(self.db['ranks']) == 0: return "no one is ranked!"
422
c695f740 423 user = str(user).lower()
fadbf980 424 if user in self.db['users']:
425 rank = self.db['users'][user]['rank']
426 if rank == 0:
427 return "you're in the lead!"
428 else:
429 return self.db['ranks'][rank-1]
c695f740 430 else:
fadbf980 431 return self.db['ranks'][-1]
c695f740 432 def targetpoints(self, user):
77c61775 433 if len(self.db['ranks']) == 0: return 0
434
c695f740 435 user = str(user).lower()
fadbf980 436 if user in self.db['users']:
437 rank = self.db['users'][user]['rank']
438 if rank == 0:
af349654 439 return ""
fadbf980 440 else:
af349654 441 return "("+str(self.db['users'][self.db['ranks'][rank-1]]['points'])+")"
c695f740 442 else:
af349654 443 return "("+str(self.db['users'][self.db['ranks'][-1]]['points'])+")"
80d02bd8 444
5871567f 445state = TriviaState()
9557ee54 446
5871567f 447# we have to hook this in modstart, since we don't know the channel until then.
80d02bd8 448def trivia_checkanswer(bot, user, chan, *args):
80d02bd8 449 line = ' '.join([str(arg) for arg in args])
450 if state.checkanswer(line):
6bdfec48 451 state.curq = None
68419d56 452
453 if state.streak_holder == user:
454 state.streak += 1
93ce52fd 455 else:
010ab290 456 if state.streak >= 3:
457 bot.fastmsg(chan, "\00312%s\003 broke \00304%s\003's streak of \00307%d\003!" % (user, state.streak_holder, state.streak))
68419d56 458 state.streak_holder = user
459 state.streak = 1
460
5464fa7a 461 response = "\00312%s\003 got it in %d seconds! The answer was \00312%s\003" % (user, time.time()-state.lastqtime, line)
68419d56 462 if state.hintanswer.lower() != line.lower():
463 response += " (hinted answer: %s)" % (state.hintanswer)
464 response += ". New score: %d. Rank: %d. Target: %s %s" % (state.addpoint(user), state.rank(user), state.targetuser(user), state.targetpoints(user))
465 bot.fastmsg(chan, response)
466
467 if state.streak >= 3:
468 bot.msg(chan, "\00312%s\003 is on a streak! \00307%d\003 answers correct in a row!" % (user, state.streak))
469
77c61775 470 if state.hintsgiven == 0:
6374d61f 471 bot.msg(chan, "\00312%s\003 got an extra point for getting it before the hints! New score: %d." % (user, state.addpoint(user)))
68419d56 472
9557ee54 473 state.nextquestion()
80d02bd8 474
f5aec865 475@lib.hook(glevel=1, needchan=False, wantchan=True)
67faf5d7 476@lib.help(None, "saves the trivia database")
477def save(bot, user, chan, realtarget, *args):
f5aec865 478 if chan is not None: replyto = chan
67faf5d7 479 else: replyto = user
480
481 if state.savedb():
482 bot.msg(replyto, "Save successful.")
483 else:
484 bot.msg(replyto, "Save failed!")
485
f5aec865 486@lib.hook(needchan=False, wantchan=True)
5f03d045 487@lib.help("[<user>]", "shows how many points you or someone has")
fb20be7c 488def points(bot, user, chan, realtarget, *args):
f5aec865 489 if chan is not None: eplyto = chan
80d02bd8 490 else: replyto = user
491
492 if len(args) != 0: who = args[0]
493 else: who = user
494
495 bot.msg(replyto, "%s has %d points." % (who, state.points(who)))
496
fb20be7c 497@lib.hook(glevel=lib.STAFF, needchan=False)
5f03d045 498@lib.help("<user> [<amount>]", "gives someone points", "defaults to 1 point")
80d02bd8 499@lib.argsGE(1)
fb20be7c 500def give(bot, user, chan, realtarget, *args):
80d02bd8 501 whoto = args[0]
c695f740 502 if len(args) > 1:
503 numpoints = int(args[1])
504 else:
505 numpoints = 1
506 balance = state.addpoint(whoto, numpoints)
fadbf980 507
c695f740 508 bot.msg(chan, "%s gave %s %d points. New balance: %d" % (user, whoto, numpoints, balance))
509
fb20be7c 510@lib.hook(glevel=1, needchan=False)
5f03d045 511@lib.help("<qid>", "sets next question to one in the database")
512@lib.argsEQ(1)
fb20be7c 513def setnextid(bot, user, chan, realtarget, *args):
9306587e 514 try:
515 qid = int(args[0])
656dc5a4 516 except ValueError:
517 bot.msg(user, "Error: QID must be a number.")
518 return
519 if qid >= len(state.questions):
520 bot.msg(user, "Error: no such QID.")
521 return
522 state.nextqid = qid
4d925ae3 523 bot.msg(user, "Done. Next question is %d: %s" % (qid, state.questions[qid][0]), truncate=True)
9306587e 524
fb20be7c 525@lib.hook(glevel=lib.STAFF, needchan=False)
5f03d045 526@lib.help("<q>*<a>", "sets next question to one not in database")
c695f740 527@lib.argsGE(1)
fb20be7c 528def setnext(bot, user, chan, realtarget, *args):
c695f740 529 line = ' '.join([str(arg) for arg in args])
aa0e4be4 530 linepieces = line.split('*', 1)
b5c89dfb 531 if len(linepieces) < 2:
532 bot.msg(user, "Error: need <question>*<answer>")
533 return
c695f740 534 question = linepieces[0].strip()
535 answer = linepieces[1].strip()
ebee6edb 536 state.nextq = [question, answer]
c695f740 537 bot.msg(user, "Done.")
538
fb20be7c 539@lib.hook(glevel=1, needchan=False)
5f03d045 540@lib.help(None, "skips to next question")
fb20be7c 541def skip(bot, user, chan, realtarget, *args):
442ed923 542 state.nextquestion(qskipped=True, skipwait=True)
c695f740 543
492f66ea 544@lib.hook(('start','trivia'), needchan=False, wantchan=True)
5f03d045 545@lib.help(None, "starts the trivia game")
fb20be7c 546def start(bot, user, chan, realtarget, *args):
f5aec865 547 if chan is not None: replyto = chan
c695f740 548 else: replyto = user
549
77a265cd 550 if chan is not None and chan.name != state.db['chan']:
567ce6e0 551 bot.msg(replyto, "That command is only valid in %s" % (state.db['chan']))
77a265cd 552 return
553
442ed923 554 if state.curq is None and state.pointvote is None and state.nextquestiontimer is None:
77a265cd 555 bot.msg(state.db['chan'], "%s has started the game!" % (user))
442ed923 556 state.nextquestion(skipwait=True)
c53f6514 557 elif state.pointvote is not None:
00ccae72 558 bot.msg(user, "There's a vote in progress!")
c695f740 559 else:
00ccae72 560 bot.msg(user, "Game is already started!")
c695f740 561
9306587e 562@lib.hook('stop', glevel=1, needchan=False)
5f03d045 563@lib.help(None, "stops the trivia game")
c695f740 564def cmd_stop(bot, user, chan, realtarget, *args):
fadbf980 565 if stop():
566 bot.msg(state.chan, "Game stopped by %s" % (user))
567 else:
568 bot.msg(user, "Game isn't running.")
c695f740 569
fadbf980 570def stop():
3b89ebff 571 state.curq = None
572 state.nextq = None
09566235 573 try:
574 state.steptimer.cancel()
575 except Exception as e:
a28e2ae9 576 print("!!! steptimer.cancel(): %s %r" % (e,e))
3b89ebff 577 state.steptimer = None
09566235 578 try:
579 state.nextquestiontimer.cancel()
580 except Exception as e:
a28e2ae9 581 print("!!! nextquestiontimer.cancel(): %s %r" % (e,e))
3b89ebff 582 state.nextquestiontimer = None
583 return True
80d02bd8 584
fb20be7c 585@lib.hook(needchan=False)
5f03d045 586@lib.help("<reason>", "reports a bad question to the admins")
7b832b55 587@lib.argsGE(1)
fb20be7c 588def badq(bot, user, chan, realtarget, *args):
7b832b55 589 lastqid = state.lastqid
590 curqid = state.curqid
591
592 reason = ' '.join(args)
8ad3a154 593 state.db['badqs'].append([state.db['category'], lastqid, curqid, reason])
7b832b55 594 bot.msg(user, "Reported bad question.")
2520caee 595
fb20be7c 596@lib.hook(glevel=lib.STAFF, needchan=False)
5f03d045 597@lib.help(None, "shows a list of BADQ reports")
fb20be7c 598def badqs(bot, user, chan, realtarget, *args):
2520caee 599 if len(state.db['badqs']) == 0:
600 bot.msg(user, "No reports.")
601
602 for i in range(len(state.db['badqs'])):
603 try:
604 report = state.db['badqs'][i]
8ad3a154 605 bot.msg(user, "Report #%d: Cat=%s LastQ=%r CurQ=%r: %s" % (i, report[0], report[1], report[2], report[3]))
606 try: lq = state.db['questions'][report[0]][int(report[1])]
7b832b55 607 except Exception as e: lq = (None,None)
8ad3a154 608 try: cq = state.db['questions'][report[0]][int(report[2])]
7b832b55 609 except Exception as e: cq = (None, None)
610 bot.msg(user, "- Last: %s*%s" % (lq[0], lq[1]))
611 bot.msg(user, "- Curr: %s*%s" % (cq[0], cq[1]))
2520caee 612 except Exception as e:
613 bot.msg(user, "- Exception: %r" % (e))
614
fb20be7c 615@lib.hook(glevel=lib.STAFF, needchan=False)
5f03d045 616@lib.hook(None, "clears list of BADQ reports")
fb20be7c 617def clearbadqs(bot, user, chan, realtarget, *args):
2520caee 618 state.db['badqs'] = []
619 bot.msg(user, "Cleared reports.")
620
fb20be7c 621@lib.hook(glevel=lib.STAFF, needchan=False)
5f03d045 622@lib.hook("<badqid>", "removes a BADQ report")
2520caee 623@lib.argsEQ(1)
fb20be7c 624def delbadq(bot, user, chan, realtarget, *args):
4d98501a 625 try:
626 qid = int(args[0])
627 del state.db['badqs'][qid]
4d98501a 628 bot.msg(user, "Removed report #%d" % (qid))
629 except:
630 bot.msg(user, "Failed!")
2520caee 631
f5aec865 632@lib.hook(needchan=False, wantchan=True)
5f03d045 633@lib.help("[<user>]", "shows you or someone else's rank")
fb20be7c 634def rank(bot, user, chan, realtarget, *args):
f5aec865 635 if chan is not None: replyto = chan
80d02bd8 636 else: replyto = user
637
c695f740 638 if len(args) != 0: who = args[0]
639 else: who = user
640
af349654 641 bot.msg(replyto, "%s is in %d place (%s points). Target is: %s %s" % (who, state.rank(who), state.points(who), state.targetuser(who), state.targetpoints(who)))
fadbf980 642
fb20be7c 643@lib.hook(needchan=False)
5f03d045 644@lib.help(None, "shows top10 list")
fb20be7c 645def top10(bot, user, chan, realtarget, *args):
77c61775 646 if len(state.db['ranks']) == 0:
647 return bot.msg(state.db['chan'], "No one is ranked!")
fadbf980 648
8ef938d0 649 max = len(state.db['ranks'])
650 if max > 10:
651 max = 10
2bb267e0 652 replylist = ', '.join(["%s (%s) %s" % (person(x), country(x), pts(x)) for x in range(max)])
bcb6dc21 653 bot.msg(state.db['chan'], "Game is to %s! Top 10: %s" % (state.db['target'], replylist))
77c61775 654
fb20be7c 655@lib.hook(glevel=lib.ADMIN, needchan=False)
5f03d045 656@lib.help("<target score>", "changes the target score for this round")
fb20be7c 657def settarget(bot, user, chan, realtarget, *args):
77c61775 658 try:
659 state.db['target'] = int(args[0])
660 bot.msg(state.db['chan'], "Target has been changed to %s points!" % (state.db['target']))
38b29993 661
7bd5e7d5 662 if state.pointvote is not None:
663 state.pointvote.cancel()
664 state.pointvote = None
38b29993 665 bot.msg(state.db['chan'], "Vote has been cancelled!")
7bd5e7d5 666 except Exception as e:
a28e2ae9 667 print(e)
77c61775 668 bot.msg(user, "Failed to set target.")
669
fb20be7c 670@lib.hook(needchan=False)
5f03d045 671@lib.help("<option>", "votes for a trarget score for next round")
fb20be7c 672def vote(bot, user, chan, realtarget, *args):
7bd5e7d5 673 if state.pointvote is not None:
38b29993 674 if int(args[0]) in state.voteamounts:
675 state.voteamounts[int(args[0])] += 1
676 bot.msg(user, "Your vote has been recorded.")
677 else:
678 bot.msg(user, "Sorry - that's not an option!")
679 else:
680 bot.msg(user, "There's no vote in progress.")
681
fb20be7c 682@lib.hook(glevel=lib.ADMIN, needchan=False)
5f03d045 683@lib.help("<number>", "sets the max missed question before game stops")
fb20be7c 684def maxmissed(bot, user, chan, realtarget, *args):
c4763e66 685 try:
686 state.db['maxmissedquestions'] = int(args[0])
687 bot.msg(state.db['chan'], "Max missed questions before round ends has been changed to %s." % (state.db['maxmissedquestions']))
688 except:
689 bot.msg(user, "Failed to set maxmissed.")
690
fb20be7c 691@lib.hook(glevel=lib.ADMIN, needchan=False)
5f03d045 692@lib.help("<seconds>", "sets the time between hints")
fb20be7c 693def hinttimer(bot, user, chan, realtarget, *args):
c4763e66 694 try:
695 state.db['hinttimer'] = float(args[0])
696 bot.msg(state.db['chan'], "Time between hints has been changed to %s." % (state.db['hinttimer']))
697 except:
698 bot.msg(user, "Failed to set hint timer.")
699
fb20be7c 700@lib.hook(glevel=lib.ADMIN, needchan=False)
5f03d045 701@lib.help("<number>", "sets the number of hints given")
fb20be7c 702def hintnum(bot, user, chan, realtarget, *args):
c4763e66 703 try:
704 state.db['hintnum'] = int(args[0])
705 bot.msg(state.db['chan'], "Max number of hints has been changed to %s." % (state.db['hintnum']))
706 except:
707 bot.msg(user, "Failed to set hintnum.")
708
fb20be7c 709@lib.hook(glevel=lib.ADMIN, needchan=False)
5f03d045 710@lib.help("<seconds>", "sets the pause between questions")
fb20be7c 711def questionpause(bot, user, chan, realtarget, *args):
442ed923 712 try:
713 state.db['questionpause'] = float(args[0])
714 bot.msg(state.db['chan'], "Pause between questions has been changed to %s." % (state.db['questionpause']))
715 except:
716 bot.msg(user, "Failed to set questionpause.")
717
fb20be7c 718@lib.hook(glevel=1, needchan=False)
8e76c9bb 719@lib.help("[@category] <full question>", "finds a qid given a complete question")
720@lib.argsGE(1)
fb20be7c 721def findq(bot, user, chan, realtarget, *args):
8ad3a154 722 args = list(args)
fd07173d 723 if args[0].startswith("@"):
8ad3a154 724 cat = args.pop(0)[1:].lower()
725 questions = state.db['questions'][cat]
726 else:
727 questions = state.questions
728
4d98501a 729 if len(args) == 0:
730 bot.msg(user, "You need to specify the question.")
731 return
732
733 searchkey = ' '.join(args).lower()
8ad3a154 734 matches = [str(i) for i in range(len(questions)) if questions[i][0].lower() == searchkey]
4d98501a 735 if len(matches) > 1:
736 bot.msg(user, "Multiple matches: %s" % (', '.join(matches)))
737 elif len(matches) == 1:
738 bot.msg(user, "One match: %s" % (matches[0]))
739 else:
740 bot.msg(user, "No match.")
741
742@lib.hook(glevel=1, needchan=False)
8ad3a154 743@lib.help("[@<category>] <regex>", "finds a qid given a regex or partial question")
8e76c9bb 744@lib.argsGE(1)
4d98501a 745def findqre(bot, user, chan, realtarget, *args):
8ad3a154 746 args = list(args)
fd07173d 747 if args[0].startswith("@"):
8ad3a154 748 cat = args.pop(0)[1:].lower()
749 questions = state.db['questions'][cat]
750 else:
751 questions = state.questions
752
bf8676ae 753 if len(args) == 0:
754 bot.msg(user, "You need to specify a search string.")
755 return
756
4d98501a 757 searcher = re.compile(' '.join(args), re.IGNORECASE)
8ad3a154 758 matches = [str(i) for i in range(len(questions)) if searcher.search(questions[i][0]) is not None]
bf8676ae 759 if len(matches) > 25:
760 bot.msg(user, "Too many matches! (>25)")
761 elif len(matches) > 1:
c4763e66 762 bot.msg(user, "Multiple matches: %s" % (', '.join(matches)))
763 elif len(matches) == 1:
764 bot.msg(user, "One match: %s" % (matches[0]))
765 else:
766 bot.msg(user, "No match.")
767
b9daa51a 768@lib.hook(glevel=lib.STAFF, needchan=False)
8ad3a154 769@lib.help("[@<category>] <qid>", "displays the q*a for a qid", "category defaults to current")
b9daa51a 770def showq(bot, user, chan, realtarget, *args):
8ad3a154 771 args = list(args)
fd07173d 772 if args[0].startswith("@"):
8ad3a154 773 cat = args.pop(0)[1:].lower()
774 questions = state.db['questions'][cat]
775 else:
776 questions = state.questions
777
b9daa51a 778 try:
779 qid = int(args[0])
780 except:
781 bot.msg(user, "Specify a numeric question ID.")
782 return
783 try:
8ad3a154 784 q = questions[qid]
b9daa51a 785 except:
786 bot.msg(user, "ID not valid.")
787 return
43649433 788 bot.msg(user, "%s: %s*%s" % (qid, q[0], q[1]), True)
b9daa51a 789
fb20be7c 790@lib.hook(('delq', 'deleteq'), glevel=lib.STAFF, needchan=False)
8ad3a154 791@lib.help("[@<category>] <qid>", "removes a question from the database")
fb20be7c 792def delq(bot, user, chan, realtarget, *args):
8ad3a154 793 args = list(args)
fd07173d 794 if args[0].startswith("@"):
8ad3a154 795 cat = args.pop(0)[1:].lower()
796 questions = state.db['questions'][cat]
797 else:
798 questions = state.questions
799
c4763e66 800 try:
8ad3a154 801 backup = questions[int(args[0])]
802 del questions[int(args[0])]
d2de4fce 803 bot.msg(user, "Deleted %s*%s" % (backup[0], backup[1]), True)
804 except Exception as e:
b9daa51a 805 bot.msg(user, "Couldn't delete that question. %r" % (e))
c4763e66 806
fb20be7c 807@lib.hook(glevel=lib.STAFF, needchan=False)
8ad3a154 808@lib.help("[@<category>] <q>*<a>", "adds a question")
fb20be7c 809def addq(bot, user, chan, realtarget, *args):
8ad3a154 810 args = list(args)
fd07173d 811 if args[0].startswith("@"):
8ad3a154 812 cat = args.pop(0)[1:].lower()
813 questions = state.db['questions'][cat]
814 else:
815 questions = state.questions
816
c4763e66 817 line = ' '.join([str(arg) for arg in args])
aa0e4be4 818 linepieces = line.split('*', 1)
c4763e66 819 if len(linepieces) < 2:
820 bot.msg(user, "Error: need <question>*<answer>")
821 return
822 question = linepieces[0].strip()
823 answer = linepieces[1].strip()
8ad3a154 824 questions.append([question, answer])
825 bot.msg(user, "Done. Question is #%s" % (len(questions)-1))
c4763e66 826
8770f6ef 827@lib.hook(needchan=False)
828@lib.help(None, "show current category")
829def showcat(bot, user, chan, realtarget, *args):
830 bot.msg(user, "Current category: %s" % (state.db['category']))
831
8ad3a154 832@lib.hook(glevel=1, needchan=False)
833@lib.help("<category>", "change category")
834def setcat(bot, user, chan, realtarget, *args):
835 category = args[0].lower()
836 if category in state.db['questions']:
837 state.db['category'] = category
838 state.questions = state.db['questions'][category]
839 bot.msg(user, "Changed category to %s" % (category))
840 else:
841 bot.msg(user, "That category doesn't exist.")
842
843@lib.hook(needchan=False)
8770f6ef 844@lib.help(None, "list categories", "the current category will be marked with a *")
8ad3a154 845def listcats(bot, user, chan, realtarget, *args):
8770f6ef 846 cats = ["%s%s (%d)" % ("*" if c == state.db['category'] else "", c, len(state.db['questions'][c])) for c in state.db['questions'].keys()]
8ad3a154 847 bot.msg(user, "Categories: %s" % (', '.join(cats)))
848
849@lib.hook(glevel=lib.STAFF, needchan=False)
850@lib.help("<category>", "adds an empty category")
851def addcat(bot, user, chan, realtarget, *args):
852 category = args[0].lower()
853 if category not in state.db['questions']:
854 state.db['questions'][category] = []
855 bot.msg(user, "Added category %s" % (category))
856 else:
857 bot.msg(user, "Category already exists.")
858
859@lib.hook(glevel=lib.MANAGER, needchan=False)
860@lib.help("<category>", "deletes an entire category")
861def delcat(bot, user, chan, realtarget, *args):
862 category = args[0].lower()
863 if category == state.db['category']:
864 bot.msg(user, "Category currently in use!")
865 elif category in state.db['questions']:
866 length = len(state.db['questions'][category])
867 del state.db['questions'][category]
868 bot.msg(user, "Deleted category %s (%d questions)" % (category, length))
869 else:
870 bot.msg(user, "Category does not exist.")
c4763e66 871
fb20be7c 872@lib.hook(needchan=False)
873def triviahelp(bot, user, chan, realtarget, *args):
2bb267e0 874 bot.slowmsg(user, "START")
875 bot.slowmsg(user, "TOP10")
876 bot.slowmsg(user, "POINTS [<user>]")
877 bot.slowmsg(user, "RANK [<user>]")
878 bot.slowmsg(user, "BADQ <reason> (include info to identify question)")
9306587e 879 if user.glevel >= 1:
b9daa51a 880 bot.slowmsg(user, "SKIP (KNOWN)")
881 bot.slowmsg(user, "STOP (KNOWN)")
4d98501a 882 bot.slowmsg(user, "FINDQ <full question> (KNOWN)")
883 bot.slowmsg(user, "FINDQRE <regex> (KNOWN)")
b9daa51a 884 bot.slowmsg(user, "SETNEXTID <qid> (KNOWN)")
9306587e 885 if user.glevel >= lib.STAFF:
b9daa51a 886 bot.slowmsg(user, "GIVE <user> [<points>] (STAFF)")
887 bot.slowmsg(user, "SETNEXT <q>*<a> (STAFF)")
888 bot.slowmsg(user, "ADDQ <q>*<a> (STAFF)")
889 bot.slowmsg(user, "DELQ <q>*<a> (STAFF) [aka DELETEQ]")
890 bot.slowmsg(user, "SHOWQ <qid> (STAFF)")
891 bot.slowmsg(user, "BADQS (STAFF)")
892 bot.slowmsg(user, "CLEARBADQS (STAFF)")
893 bot.slowmsg(user, "DELBADQ <reportid> (STAFF)")
9306587e 894 if user.glevel >= lib.ADMIN:
b9daa51a 895 bot.slowmsg(user, "SETTARGET <points> (ADMIN)")
896 bot.slowmsg(user, "MAXMISSED <questions> (ADMIN)")
897 bot.slowmsg(user, "HINTTIMER <float seconds> (ADMIN)")
898 bot.slowmsg(user, "HINTNUM <hints> (ADMIN)")
899 bot.slowmsg(user, "QUESTIONPAUSE <float seconds> (ADMIN)")
b5c89dfb 900
a46e5e4d 901@lib.hooknum(332) # topic is...
902@lib.hooknum(331) # no topic set
f8cc0124 903def num_TOPIC(bot, textline):
904 pieces = textline.split(None, 4)
905 chan = pieces[3]
906 if chan != state.db['chan']:
907 return
908 gottopic = pieces[4][1:]
909
910 formatted = state.db['topicformat'] % {
911 'chan': state.db['chan'],
8ef938d0 912 'top1': "%s (%s)" % (person(0), pts(0)),
913 'top3': '/'.join([
914 "%s (%s)" % (person(x), pts(x))
915 for x in range(3) if x < len(state.db['ranks'])
916 ]),
e227969c 917 'top3c': ', '.join([
918 "%s (%s) %s" % (person(x), country(x), pts(x))
8ef938d0 919 for x in range(3) if x < len(state.db['ranks'])
920 ]),
921 'top10': ' '.join([
922 "%s (%s)" % (person(x), pts(x))
923 for x in range(10) if x < len(state.db['ranks'])
924 ]),
925 'top10c': ' '.join([
926 "%s (%s, %s)" % (person(x), pts(x), country(x))
927 for x in range(10) if x < len(state.db['ranks'])
928 ]),
5f42c250 929 'lastwinner': state.db['lastwinner'],
930 'lastwon': time.strftime("%b %d", time.gmtime(state.db['lastwon'])),
f8cc0124 931 'target': state.db['target'],
8770f6ef 932 'category': state.db['category'],
f8cc0124 933 }
934 if gottopic != formatted:
a46e5e4d 935 state.getbot().conn.send(bot.parent.cfg.get('trivia', 'topiccommand', default="TOPIC %(chan)s :%(topic)s") % {'chan': state.db['chan'], 'topic': formatted})
f8cc0124 936
b5c89dfb 937
938def specialQuestion(oldq):
ebee6edb 939 newq = [oldq[0], oldq[1]]
940 qtype = oldq[0].upper()
b5c89dfb 941
942 if qtype == "!MONTH":
ebee6edb 943 newq[0] = "What month is it currently (in UTC)?"
944 newq[1] = time.strftime("%B", time.gmtime()).lower()
b5c89dfb 945 elif qtype == "!MATH+":
5ed70e94 946 try:
947 maxnum = int(oldq[1])
948 except ValueError:
949 maxnum = 10
950 randnum1 = random.randrange(0, maxnum+1)
951 randnum2 = random.randrange(0, maxnum+1)
ebee6edb 952 newq[0] = "What is %d + %d?" % (randnum1, randnum2)
953 newq[1] = spellout(randnum1+randnum2)
5ed70e94 954 elif qtype == "!ALGEBRA+":
955 try:
956 num1, num2 = [int(i) for i in oldq[1].split('!')]
957 except ValueError:
958 num1, num2 = 10, 10
959 randnum1 = random.randrange(0, num1+1)
960 randnum2 = random.randrange(randnum1, num2+1)
961 newq[0] = "What is x? %d = %d + x" % (randnum2, randnum1)
962 newq[1] = spellout(randnum2-randnum1)
e227969c 963 else: pass #default to not modifying
b5c89dfb 964 return newq
965
966def spellout(num):
5ed70e94 967 ones = ['', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine']
968 teens = ['ten', 'eleven', 'twelve', 'thirteen', 'fourteen', 'fifteen', 'sixteen', 'seventeen', 'eighteen', 'nineteen']
969 tens = ['', '', 'twenty', 'thirty', 'fourty', 'fifty', 'sixty', 'seventy', 'eighty', 'ninety']
970
971 if num == 0:
972 return 'zero'
973
974 ihundreds = num / 100
975 itens = num % 100 / 10
976 iones = num % 10
977 buf = []
978
979 if ihundreds > 0:
980 buf.append("%s hundred" % (ones[ihundreds]))
981 if itens > 1:
982 buf.append(tens[itens])
983 if itens == 1:
984 buf.append(teens[iones])
985 elif iones > 0:
986 buf.append(ones[iones])
987 return ' '.join(buf)
988# return [
989# "zero", "one", "two", "three", "four", "five", "six", "seven", "eight",
990# "nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen",
991# "sixteen", "seventeen", "eighteen", "nineteen", "twenty"
992# ][num]