X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Ffactoids.rb;h=3192aa00e450d211de79f7aa9a0cad1ca944a5ac;hb=51c35168127e0faed56bceb3f5103f92ed31478c;hp=5f8792c0609c6acfad3a7e0c19212551cd9f7b5c;hpb=5b653affaa2028e8a743965d5d7d303ae7a6c310;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/factoids.rb b/data/rbot/plugins/factoids.rb index 5f8792c0..3192aa00 100644 --- a/data/rbot/plugins/factoids.rb +++ b/data/rbot/plugins/factoids.rb @@ -91,6 +91,12 @@ class FactoidsPlugin < Plugin ], :on_change => Proc.new { |bot, v| bot.plugins['factoids'].reset_triggers }, :desc => "A list of regular expressions matching factoids where keywords can be identified. append ':n' if the keyword is defined by the n-th group instead of the first. if the list is empty, any word will be considered a keyword") + Config.register Config::ArrayValue.new('factoids.not_triggers', + :default => [ + "this","that","the","a","right","who","what","why" + ], + :on_change => Proc.new { |bot, v| bot.plugins['factoids'].reset_triggers }, + :desc => "A list of words that won't be set as keywords") Config.register Config::BooleanValue.new('factoids.address', :default => true, :desc => "Should the bot reply with relevant factoids only when addressed with a direct question? If not, the bot will attempt to lookup foo if someone says 'foo?' in channel") @@ -246,7 +252,7 @@ class FactoidsPlugin < Plugin end } debug "Triggers done in #{Time.now - start_time}" - @triggers.replace(triggers) + @triggers.replace(triggers - @bot.config['factoids.not_triggers']) end def reset_learn_patterns @@ -325,7 +331,9 @@ class FactoidsPlugin < Plugin # When looking for words we separate them with # arbitrary whitespace, not whatever they came with pre = words.map { |w| Regexp.escape(w)}.join("\\s+") - return Regexp.new("\\b#{pre}\\b", true) + pre << '\b' if pre.match(/\b$/) + pre = '\b' + pre if pre.match(/^\b/) + return Regexp.new(pre, true) end def facts(m, params) @@ -360,7 +368,7 @@ class FactoidsPlugin < Plugin reply << short_fact(f) } end - m.reply reply.join(". "), :split_at => /\s+--\s+/ + m.reply reply.join(". "), :split_at => /\[\d+\/\d+\] /, :purge_split => false end end