mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Added an optional pair to start the chain, tests, and caught some errors.
This commit is contained in:
parent
22c333b536
commit
29a6c92b76
@ -122,7 +122,6 @@ class DbmMarkovDB(object):
|
||||
db = self._getDb(channel)
|
||||
firsts = db['\n \n'].split()
|
||||
if firsts:
|
||||
firsts.pop() # Empty line.
|
||||
if firsts:
|
||||
return ('\n', random.choice(firsts))
|
||||
else:
|
||||
@ -218,27 +217,44 @@ class Markov(callbacks.Privmsg):
|
||||
self.q.enqueue(doPrivmsg)
|
||||
|
||||
def markov(self, irc, msg, args):
|
||||
"""[<channel>]
|
||||
"""[<channel>] [word1 word2]
|
||||
|
||||
Returns a randomly-generated Markov Chain generated sentence from the
|
||||
data kept on <channel> (which is only necessary if not sent in the
|
||||
channel itself).
|
||||
channel itself). If word1 and word2 are specified, they will be used
|
||||
to start the Markov chain.
|
||||
"""
|
||||
channel = privmsgs.getChannel(msg, args)
|
||||
(word1, word2) = privmsgs.getArgs(args, required=0, optional=2)
|
||||
def markov(db):
|
||||
if word1 and word2:
|
||||
givenArgs = True
|
||||
words = [word1, word2]
|
||||
else:
|
||||
givenArgs = False
|
||||
try:
|
||||
# words is of the form ['\r', word]
|
||||
words = list(db.getFirstPair(channel))
|
||||
except KeyError:
|
||||
irc.error('I don\'t have any first pairs for %s.' %channel)
|
||||
return
|
||||
# words[-2:] is of the form ('\r', word)
|
||||
follower = words[-1]
|
||||
last = False
|
||||
resp = []
|
||||
while not last:
|
||||
resp.append(follower)
|
||||
(follower,last) = db.getFollower(channel, words[-2], words[-1])
|
||||
try:
|
||||
(follower,last) = db.getFollower(channel, words[-2],
|
||||
words[-1])
|
||||
except KeyError:
|
||||
irc.error('I found a broken link in the Markov chain. '
|
||||
'Maybe I received two bad links to start the '
|
||||
'chain.')
|
||||
return
|
||||
words.append(follower)
|
||||
if givenArgs:
|
||||
irc.reply(' '.join(words))
|
||||
else:
|
||||
irc.reply(' '.join(resp))
|
||||
self.q.enqueue(markov)
|
||||
|
||||
|
@ -37,9 +37,14 @@ except ImportError:
|
||||
sqlite = None
|
||||
|
||||
if sqlite is not None:
|
||||
class MarkovTestCase(PluginTestCase, PluginDocumentation):
|
||||
class MarkovTestCase(ChannelPluginTestCase, PluginDocumentation):
|
||||
plugins = ('Markov',)
|
||||
pass # Put actual tests here.
|
||||
def testMarkov(self):
|
||||
self.assertSnarfNoResponse('Feed the db some text')
|
||||
self.assertNotError('markov')
|
||||
self.assertNotError('markov Feed the')
|
||||
self.assertNotError('markov Feed')
|
||||
self.assertError('markov foo bar')
|
||||
|
||||
|
||||
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||
|
Loading…
Reference in New Issue
Block a user