Compare commits
1 Commits
f6779e6c25
...
22d76ea932
Author | SHA1 | Date | |
---|---|---|---|
22d76ea932 |
|
@ -1,91 +1,87 @@
|
||||||
#! /usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
"""
|
"""
|
||||||
Hangman.
|
A class and functions needed for playing handman.
|
||||||
"""
|
"""
|
||||||
|
import os
|
||||||
import random
|
import random
|
||||||
import module
|
|
||||||
|
from module import commands, example
|
||||||
|
|
||||||
class Hangman():
|
class Hangman():
|
||||||
def __init__(self):
|
def __init__(self, bot):
|
||||||
self.running = False
|
|
||||||
|
|
||||||
def newgame(self):
|
|
||||||
self.running = True
|
|
||||||
self.tries = 8
|
self.tries = 8
|
||||||
self.word = self._PickWord()
|
self.word = self._PickWord(bot)
|
||||||
self.working = [x for x in self.word]
|
self.working = [x for x in self.word]
|
||||||
self.blanks = list('_' * len(self.word))
|
self.blanks = list('_' * len(self.word))
|
||||||
for n,char in enumerate(self.word):
|
|
||||||
if char == ' ':
|
|
||||||
self.blanks[n] = ' '
|
|
||||||
|
|
||||||
def _PickWord(self):
|
def _PickWord(self, bot):
|
||||||
with open("/home/iou1name/fulvia/static/wordlist.txt",'r') as file:
|
with open(os.path.join(bot.static, "wordlist.txt"), "r") as file:
|
||||||
lines = file.readlines()
|
word = random.choice(file.read().splitlines())
|
||||||
wrd = list(lines[ random.randint(0, len(lines))-1 ].strip())
|
return word
|
||||||
return wrd
|
|
||||||
|
|
||||||
def solve(self, guess):
|
def update(self, guess):
|
||||||
if list(guess) == self.word:
|
if not guess in self.word:
|
||||||
self.running = False
|
|
||||||
self.blanks = self.word
|
|
||||||
return 'win'
|
|
||||||
|
|
||||||
elif guess in self.word and len(guess) == 1:
|
|
||||||
while guess in self.working:
|
|
||||||
index = self.working.index(guess)
|
|
||||||
self.blanks[index] = guess
|
|
||||||
self.working[index] = '_'
|
|
||||||
return 'correct'
|
|
||||||
else:
|
|
||||||
self.tries = self.tries - 1
|
|
||||||
if self.tries == 0:
|
|
||||||
self.running = False
|
|
||||||
self.blanks = self.word
|
|
||||||
return 'lose'
|
|
||||||
else:
|
|
||||||
return 'incorrect'
|
|
||||||
|
|
||||||
def return_blanks(self):
|
|
||||||
return ''.join(self.blanks)
|
|
||||||
|
|
||||||
hangman = Hangman()
|
|
||||||
|
|
||||||
@module.commands('hangman')
|
|
||||||
@module.example('.hangman')
|
|
||||||
def hangman_start(bot, trigger):
|
|
||||||
"""Starts a game of hangman."""
|
|
||||||
if hangman.running:
|
|
||||||
bot.reply("There is already a game running.")
|
|
||||||
return
|
return
|
||||||
|
|
||||||
hangman.newgame()
|
for n, char in enumerate(self.word):
|
||||||
bot.say(trigger.nick + " has started a game of hangman! Type .guess to guess a letter or the entire phrase.")
|
if char == guess:
|
||||||
bot.say(hangman.return_blanks())
|
self.blanks[n] = guess
|
||||||
|
|
||||||
|
|
||||||
@module.commands('guess')
|
def setup(bot):
|
||||||
@module.example('.guess a')
|
bot.memory["hangman"] = {}
|
||||||
@module.example('.guess anus')
|
|
||||||
def guess(bot, trigger):
|
|
||||||
"""Makes a guess in hangman. May either guess a single letter or the entire word/phrase."""
|
@commands("hangman", "hm")
|
||||||
if not hangman.running:
|
def hangman(bot, trigger):
|
||||||
bot.reply('There is no game currently running. Use .hangman to start one')
|
"""
|
||||||
|
Plays hangman. --start [-s] to start a new game, otherwise words are
|
||||||
|
taken as attempts to solve and single characters are taken as guesses.
|
||||||
|
"""
|
||||||
|
if not trigger.group(2):
|
||||||
|
return bot.reply("Hang what?")
|
||||||
|
|
||||||
|
if trigger.group(3) == "--start" or trigger.group(3) == "-s":
|
||||||
|
if bot.memory["hangman"].get(trigger.channel):
|
||||||
|
return bot.reply("There is already a game running in this channel.")
|
||||||
|
|
||||||
|
bot.memory["hangman"][trigger.channel] = Hangman(bot)
|
||||||
|
msg = f"{trigger.nick} has started a game of hangman! " \
|
||||||
|
+ "Use '.hangman [guess]' to guess a letter or the entire word."
|
||||||
|
bot.msg(msg)
|
||||||
|
bot.say("".join(bot.memory["hangman"][trigger.channel].blanks))
|
||||||
return
|
return
|
||||||
|
|
||||||
response = hangman.solve(trigger.group(2))
|
if not bot.memory["hangman"].get(trigger.channel):
|
||||||
|
msg = "There is no game currently running in this channel. " \
|
||||||
|
+ "Use '.hangman --start' to start one"
|
||||||
|
return bot.reply(msg)
|
||||||
|
|
||||||
if response == 'win':
|
if len(trigger.group(2)) > 1:
|
||||||
bot.say(trigger.nick + " has won!")
|
if trigger.group(2) == bot.memory["hangman"][trigger.channel].word:
|
||||||
elif response == 'correct':
|
bot.say(f"{trigger.nick} has won!")
|
||||||
pass
|
bot.say(bot.memory["hangman"][trigger.channel].word)
|
||||||
elif response == 'lose':
|
bot.memory["hangman"].pop(trigger.channel)
|
||||||
bot.say("Game over.")
|
return
|
||||||
elif response == 'incorrect':
|
|
||||||
bot.reply("incorrect.")
|
|
||||||
bot.say( str(hangman.tries) + " tries left." )
|
|
||||||
else:
|
else:
|
||||||
bot.say('Fuck.')
|
msg = "Incorrect. " \
|
||||||
|
+ f"{bot.memory['hangman'][trigger.channel].tries} tries left."
|
||||||
|
bot.reply(msg)
|
||||||
|
|
||||||
bot.say(hangman.return_blanks())
|
elif len(trigger.group(2)) == 1:
|
||||||
|
if trigger.group(2) in bot.memory["hangman"][trigger.channel].word:
|
||||||
|
bot.reply("Correct!")
|
||||||
|
bot.memory["hangman"][trigger.channel].update(trigger.group(2))
|
||||||
|
|
||||||
|
else:
|
||||||
|
bot.memory["hangman"][trigger.channel].tries -= 1
|
||||||
|
msg = "Incorrect. " \
|
||||||
|
+ f"{bot.memory['hangman'][trigger.channel].tries} tries left."
|
||||||
|
bot.reply(msg)
|
||||||
|
|
||||||
|
if bot.memory["hangman"][trigger.channel].tries <= 0:
|
||||||
|
bot.say("Game over!")
|
||||||
|
bot.say(bot.memory['hangman'][trigger.channel].word)
|
||||||
|
bot.memory["hangman"].pop(trigger.channel)
|
||||||
|
else:
|
||||||
|
bot.say("".join(bot.memory["hangman"][trigger.channel].blanks))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user