84 lines
3.0 KiB
Python
84 lines
3.0 KiB
Python
import json
|
|
import urllib
|
|
import random
|
|
|
|
from . import money
|
|
from funcs import logThis
|
|
|
|
def triviaStart(channel : str):
|
|
with open("resources/games/games.json", "r") as f:
|
|
triviaFile = json.load(f)
|
|
|
|
logThis("Trying to find a trivia question for "+channel)
|
|
|
|
if channel not in triviaFile["trivia questions"]:
|
|
with urllib.request.urlopen("https://opentdb.com/api.php?amount=10&type=multiple") as response:
|
|
data = json.loads(response.read())
|
|
|
|
logThis("Found the question \""+data["results"][0]["question"]+"\"")
|
|
answers = data["results"][0]["incorrect_answers"]
|
|
answers.append(data["results"][0]["correct_answer"])
|
|
random.shuffle(answers)
|
|
correctAnswer = answers.index(data["results"][0]["correct_answer"]) + 97
|
|
|
|
triviaFile["trivia questions"][channel] = {"answer" : str(chr(correctAnswer)),"players" : {}}
|
|
with open("resources/games/games.json", "w") as f:
|
|
json.dump(triviaFile,f,indent=4)
|
|
|
|
replacements = {"'": "\'",
|
|
""": "\"",
|
|
"“": "\"",
|
|
"”": "\"",
|
|
"é": "é"}
|
|
question = data["results"][0]["question"]
|
|
|
|
for key, value in replacements.items():
|
|
question = question.replace(key,value)
|
|
|
|
for answer in answers:
|
|
for key, value in replacements.items():
|
|
answer = answer.replace(key,value)
|
|
|
|
return question, answers, correctAnswer
|
|
else:
|
|
logThis("There was already a trivia question for that channel")
|
|
return "There's already a trivia question going on. Try again in like, a minute", "", ""
|
|
|
|
def triviaOtherThing(user : str, channel : str, command : str):
|
|
with open("resources/games/games.json", "r") as f:
|
|
data = json.load(f)
|
|
|
|
if command in ["a","b","c","d"]:
|
|
if channel in data["trivia questions"]:
|
|
if user not in data["trivia questions"][channel]["players"]:
|
|
logThis(user+" answered the question in "+channel)
|
|
|
|
data["trivia questions"][channel]["players"][user] = command
|
|
|
|
with open("resources/games/games.json", "w") as f:
|
|
json.dump(data,f,indent=4)
|
|
|
|
return "Locked in "+user+"'s answer"
|
|
else:
|
|
return user+" has already answered this question"
|
|
else:
|
|
return "There's no question right now"
|
|
else:
|
|
return "I didn't quite understand that"
|
|
|
|
def triviaCountPoints(channel : str):
|
|
with open("resources/games/games.json", "r") as f:
|
|
data = json.load(f)
|
|
|
|
logThis("Counting points for question in "+channel)
|
|
|
|
if channel in data["trivia questions"]:
|
|
for player, answer in data["trivia questions"][channel]["players"].items():
|
|
if answer == data["trivia questions"][channel]["answer"]:
|
|
money.addMoney(player,1)
|
|
|
|
|
|
else:
|
|
logThis("Couldn't find the question")
|
|
|
|
return None |