X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Ffactoids.rb;h=3192aa00e450d211de79f7aa9a0cad1ca944a5ac;hb=f6ec4e09d5d309f297b4ff6fd6c65ca82c74b462;hp=128d6e4294271c225ac574d12da663d47efd073a;hpb=ef1d1eb46c3bd5f3d93c60e079f1e6a30acb4573;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/factoids.rb b/data/rbot/plugins/factoids.rb index 128d6e42..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") @@ -103,6 +109,9 @@ class FactoidsPlugin < Plugin Config.register Config::BooleanValue.new('factoids.listen_and_learn', :default => false, :desc => "Should the bot learn factoids from what is being said in chat? if true, phrases matching patterns in factoids.learn_pattern will tell the bot when a phrase can be learned") + Config.register Config::BooleanValue.new('factoids.silent_listen_and_learn', + :default => true, + :desc => "Should the bot be silent about the factoids he learns from the chat? If true, the bot will not declare what he learned every time he learns something from factoids.listen_and_learn being true") Config.register Config::IntegerValue.new('factoids.search_results', :default => 5, :desc => "How many factoids to display at a time") @@ -243,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 @@ -269,8 +278,9 @@ class FactoidsPlugin < Plugin else @factoids << factoid @changed = true - m.reply _("okay, learned fact #%{num}: %{fact}" % { :num => @factoids.length, :fact => @factoids.last}) - parse_for_trigger(factoid) + m.reply _("okay, learned fact #%{num}: %{fact}" % { :num => @factoids.length, :fact => @factoids.last}) unless params[:silent] + trigs = parse_for_trigger(factoid) + @triggers |= trigs unless trigs.empty? end end @@ -321,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) @@ -356,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 @@ -375,7 +387,7 @@ class FactoidsPlugin < Plugin @learn_patterns.each do |pat, i| g = pat.match(m.message) if g and g[i] - learn(m, :stuff => g[i], :silent => true) + learn(m, :stuff => g[i], :silent => @bot.config['factoids.silent_listen_and_learn']) break end end