summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2009-02-28 11:53:08 +0100
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2009-02-28 12:00:22 +0100
commit2656473b50e0d6afafeb50fee2d276fed093568c (patch)
treeb92738956b74a98ba872868c73602ebba062ac01
parent247d464f127ce711649ab7d7b1969adfaa730efd (diff)
markov: refactor word picking
-rwxr-xr-xdata/rbot/plugins/markov.rb26
1 files changed, 17 insertions, 9 deletions
diff --git a/data/rbot/plugins/markov.rb b/data/rbot/plugins/markov.rb
index 4fffe564..46f78c93 100755
--- a/data/rbot/plugins/markov.rb
+++ b/data/rbot/plugins/markov.rb
@@ -62,6 +62,17 @@ class MarkovPlugin < Plugin
debug 'learning thread closed'
end
+ # if passed a pair, pick a word from the registry using the pair as key.
+ # otherwise, pick a word from an given list
+ def pick_word(word1, word2=:nonword)
+ if word1.kind_of? Array
+ wordlist = word1
+ else
+ wordlist = @registry["#{word1} #{word2}"]
+ end
+ wordlist.pick_one || :nonword
+ end
+
def generate_string(word1, word2)
# limit to max of markov.max_words words
if word2
@@ -97,16 +108,15 @@ class MarkovPlugin < Plugin
end
end
end
- return nil if wordlist.empty?
- word3 = wordlist.pick_one
+ word3 = pick_word(wordlist)
+ return nil if word3 == :nonword
+
output << " #{word3}"
word1, word2 = word2, word3
(@bot.config['markov.max_words'] - 1).times do
- wordlist = @registry["#{word1} #{word2}"]
- break if wordlist.empty?
- word3 = wordlist.pick_one
+ word3 = pick_word(word1, word2)
break if word3 == :nonword
output << " #{word3}"
word1, word2 = word2, word3
@@ -266,10 +276,8 @@ class MarkovPlugin < Plugin
# pick a random pair from the db and go from there
word1, word2 = :nonword, :nonword
output = Array.new
- 50.times do
- wordlist = @registry["#{word1} #{word2}"]
- break if wordlist.empty?
- word3 = wordlist[rand(wordlist.length)]
+ @bot.config['markov.max_words'].times do
+ word3 = pick_word(word1, word2)
break if word3 == :nonword
output << word3
word1, word2 = word2, word3