From d06b96bf95563cea4ebf31e2e324536d812efdbd Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Thu, 13 Dec 2007 10:34:04 +0000 Subject: [PATCH] plugins: register maps with full information accessible via @bot.plugins.maps --- lib/rbot/plugins.rb | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/lib/rbot/plugins.rb b/lib/rbot/plugins.rb index 81e29bd1..6f308609 100644 --- a/lib/rbot/plugins.rb +++ b/lib/rbot/plugins.rb @@ -220,8 +220,10 @@ module Plugins def do_map(silent, *args) @handler.map(self, *args) # register this map - name = @handler.last.items[0] + map = @handler.last + name = map.items[0] self.register name, :auth => nil, :hidden => silent + @manager.register_map(self, map) unless self.respond_to?('privmsg') def self.privmsg(m) #:nodoc: handle(m) @@ -335,6 +337,7 @@ module Plugins include Singleton attr_reader :bot attr_reader :botmodules + attr_reader :maps # This is the list of patterns commonly delegated to plugins. # A fast delegation lookup is enabled for them. @@ -354,6 +357,7 @@ module Plugins @names_hash = Hash.new @commandmappers = Hash.new + @maps = Hash.new @delegate_list = Hash.new { |h, k| h[k] = Array.new } @@ -385,6 +389,7 @@ module Plugins @botmodules[:Plugin].clear @names_hash.clear @commandmappers.clear + @maps.clear @failures_shown = false end @@ -411,6 +416,19 @@ module Plugins @commandmappers[cmd.to_sym] = {:botmodule => botmodule, :auth => auth_path} end + # Registers botmodule _botmodule_ with map _map_. This adds the map to the #maps hash + # which has three keys: + # + # botmodule:: the associated botmodule + # auth:: an array of auth keys checked by the map; the first is the full_auth_path of the map + # map:: the actual MessageTemplate object + # + # + def register_map(botmodule, map) + raise TypeError, "First argument #{botmodule.inspect} is not of class BotModule" unless botmodule.kind_of?(BotModule) + @maps[map.template] = { :botmodule => botmodule, :auth => [map.options[:full_auth_path]], :map => map } + end + def add_botmodule(botmodule) raise TypeError, "Argument #{botmodule.inspect} is not of class BotModule" unless botmodule.kind_of?(BotModule) kl = botmodule.botmodule_class -- 2.39.2