Add new libs
This commit is contained in:
parent
d705949afc
commit
23764d1402
4 changed files with 498 additions and 0 deletions
250
Libs/AceConsole-3.0/AceConsole-3.0.lua
Normal file
250
Libs/AceConsole-3.0/AceConsole-3.0.lua
Normal file
|
@ -0,0 +1,250 @@
|
||||||
|
--- **AceConsole-3.0** provides registration facilities for slash commands.
|
||||||
|
-- You can register slash commands to your custom functions and use the `GetArgs` function to parse them
|
||||||
|
-- to your addons individual needs.
|
||||||
|
--
|
||||||
|
-- **AceConsole-3.0** can be embeded into your addon, either explicitly by calling AceConsole:Embed(MyAddon) or by
|
||||||
|
-- specifying it as an embeded library in your AceAddon. All functions will be available on your addon object
|
||||||
|
-- and can be accessed directly, without having to explicitly call AceConsole itself.\\
|
||||||
|
-- It is recommended to embed AceConsole, otherwise you'll have to specify a custom `self` on all calls you
|
||||||
|
-- make into AceConsole.
|
||||||
|
-- @class file
|
||||||
|
-- @name AceConsole-3.0
|
||||||
|
-- @release $Id: AceConsole-3.0.lua 878 2009-11-02 18:51:58Z nevcairiel $
|
||||||
|
local MAJOR,MINOR = "AceConsole-3.0", 7
|
||||||
|
|
||||||
|
local AceConsole, oldminor = LibStub:NewLibrary(MAJOR, MINOR)
|
||||||
|
|
||||||
|
if not AceConsole then return end -- No upgrade needed
|
||||||
|
|
||||||
|
AceConsole.embeds = AceConsole.embeds or {} -- table containing objects AceConsole is embedded in.
|
||||||
|
AceConsole.commands = AceConsole.commands or {} -- table containing commands registered
|
||||||
|
AceConsole.weakcommands = AceConsole.weakcommands or {} -- table containing self, command => func references for weak commands that don't persist through enable/disable
|
||||||
|
|
||||||
|
-- Lua APIs
|
||||||
|
local tconcat, tostring, select = table.concat, tostring, select
|
||||||
|
local type, pairs, error = type, pairs, error
|
||||||
|
local format, strfind, strsub = string.format, string.find, string.sub
|
||||||
|
local max = math.max
|
||||||
|
|
||||||
|
-- WoW APIs
|
||||||
|
local _G = _G
|
||||||
|
|
||||||
|
-- Global vars/functions that we don't upvalue since they might get hooked, or upgraded
|
||||||
|
-- List them here for Mikk's FindGlobals script
|
||||||
|
-- GLOBALS: DEFAULT_CHAT_FRAME, SlashCmdList, hash_SlashCmdList
|
||||||
|
|
||||||
|
local tmp={}
|
||||||
|
local function Print(self,frame,...)
|
||||||
|
local n=0
|
||||||
|
if self ~= AceConsole then
|
||||||
|
n=n+1
|
||||||
|
tmp[n] = "|cff33ff99"..tostring( self ).."|r:"
|
||||||
|
end
|
||||||
|
for i=1, select("#", ...) do
|
||||||
|
n=n+1
|
||||||
|
tmp[n] = tostring(select(i, ...))
|
||||||
|
end
|
||||||
|
frame:AddMessage( tconcat(tmp," ",1,n) )
|
||||||
|
end
|
||||||
|
|
||||||
|
--- Print to DEFAULT_CHAT_FRAME or given ChatFrame (anything with an .AddMessage function)
|
||||||
|
-- @paramsig [chatframe ,] ...
|
||||||
|
-- @param chatframe Custom ChatFrame to print to (or any frame with an .AddMessage function)
|
||||||
|
-- @param ... List of any values to be printed
|
||||||
|
function AceConsole:Print(...)
|
||||||
|
local frame = ...
|
||||||
|
if type(frame) == "table" and frame.AddMessage then -- Is first argument something with an .AddMessage member?
|
||||||
|
return Print(self, frame, select(2,...))
|
||||||
|
else
|
||||||
|
return Print(self, DEFAULT_CHAT_FRAME, ...)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
--- Formatted (using format()) print to DEFAULT_CHAT_FRAME or given ChatFrame (anything with an .AddMessage function)
|
||||||
|
-- @paramsig [chatframe ,] "format"[, ...]
|
||||||
|
-- @param chatframe Custom ChatFrame to print to (or any frame with an .AddMessage function)
|
||||||
|
-- @param format Format string - same syntax as standard Lua format()
|
||||||
|
-- @param ... Arguments to the format string
|
||||||
|
function AceConsole:Printf(...)
|
||||||
|
local frame = ...
|
||||||
|
if type(frame) == "table" and frame.AddMessage then -- Is first argument something with an .AddMessage member?
|
||||||
|
return Print(self, frame, format(select(2,...)))
|
||||||
|
else
|
||||||
|
return Print(self, DEFAULT_CHAT_FRAME, format(...))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--- Register a simple chat command
|
||||||
|
-- @param command Chat command to be registered WITHOUT leading "/"
|
||||||
|
-- @param func Function to call when the slash command is being used (funcref or methodname)
|
||||||
|
-- @param persist if false, the command will be soft disabled/enabled when aceconsole is used as a mixin (default: true)
|
||||||
|
function AceConsole:RegisterChatCommand( command, func, persist )
|
||||||
|
if type(command)~="string" then error([[Usage: AceConsole:RegisterChatCommand( "command", func[, persist ]): 'command' - expected a string]], 2) end
|
||||||
|
|
||||||
|
if persist==nil then persist=true end -- I'd rather have my addon's "/addon enable" around if the author screws up. Having some extra slash regged when it shouldnt be isn't as destructive. True is a better default. /Mikk
|
||||||
|
|
||||||
|
local name = "ACECONSOLE_"..command:upper()
|
||||||
|
|
||||||
|
if type( func ) == "string" then
|
||||||
|
SlashCmdList[name] = function(input, editBox)
|
||||||
|
self[func](self, input, editBox)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
SlashCmdList[name] = func
|
||||||
|
end
|
||||||
|
_G["SLASH_"..name.."1"] = "/"..command:lower()
|
||||||
|
AceConsole.commands[command] = name
|
||||||
|
-- non-persisting commands are registered for enabling disabling
|
||||||
|
if not persist then
|
||||||
|
if not AceConsole.weakcommands[self] then AceConsole.weakcommands[self] = {} end
|
||||||
|
AceConsole.weakcommands[self][command] = func
|
||||||
|
end
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
|
||||||
|
--- Unregister a chatcommand
|
||||||
|
-- @param command Chat command to be unregistered WITHOUT leading "/"
|
||||||
|
function AceConsole:UnregisterChatCommand( command )
|
||||||
|
local name = AceConsole.commands[command]
|
||||||
|
if name then
|
||||||
|
SlashCmdList[name] = nil
|
||||||
|
_G["SLASH_" .. name .. "1"] = nil
|
||||||
|
hash_SlashCmdList["/" .. command:upper()] = nil
|
||||||
|
AceConsole.commands[command] = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
--- Get an iterator over all Chat Commands registered with AceConsole
|
||||||
|
-- @return Iterator (pairs) over all commands
|
||||||
|
function AceConsole:IterateChatCommands() return pairs(AceConsole.commands) end
|
||||||
|
|
||||||
|
|
||||||
|
local function nils(n, ...)
|
||||||
|
if n>1 then
|
||||||
|
return nil, nils(n-1, ...)
|
||||||
|
elseif n==1 then
|
||||||
|
return nil, ...
|
||||||
|
else
|
||||||
|
return ...
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
--- Retreive one or more space-separated arguments from a string.
|
||||||
|
-- Treats quoted strings and itemlinks as non-spaced.
|
||||||
|
-- @param string The raw argument string
|
||||||
|
-- @param numargs How many arguments to get (default 1)
|
||||||
|
-- @param startpos Where in the string to start scanning (default 1)
|
||||||
|
-- @return Returns arg1, arg2, ..., nextposition\\
|
||||||
|
-- Missing arguments will be returned as nils. 'nextposition' is returned as 1e9 at the end of the string.
|
||||||
|
function AceConsole:GetArgs(str, numargs, startpos)
|
||||||
|
numargs = numargs or 1
|
||||||
|
startpos = max(startpos or 1, 1)
|
||||||
|
|
||||||
|
local pos=startpos
|
||||||
|
|
||||||
|
-- find start of new arg
|
||||||
|
pos = strfind(str, "[^ ]", pos)
|
||||||
|
if not pos then -- whoops, end of string
|
||||||
|
return nils(numargs, 1e9)
|
||||||
|
end
|
||||||
|
|
||||||
|
if numargs<1 then
|
||||||
|
return pos
|
||||||
|
end
|
||||||
|
|
||||||
|
-- quoted or space separated? find out which pattern to use
|
||||||
|
local delim_or_pipe
|
||||||
|
local ch = strsub(str, pos, pos)
|
||||||
|
if ch=='"' then
|
||||||
|
pos = pos + 1
|
||||||
|
delim_or_pipe='([|"])'
|
||||||
|
elseif ch=="'" then
|
||||||
|
pos = pos + 1
|
||||||
|
delim_or_pipe="([|'])"
|
||||||
|
else
|
||||||
|
delim_or_pipe="([| ])"
|
||||||
|
end
|
||||||
|
|
||||||
|
startpos = pos
|
||||||
|
|
||||||
|
while true do
|
||||||
|
-- find delimiter or hyperlink
|
||||||
|
local ch,_
|
||||||
|
pos,_,ch = strfind(str, delim_or_pipe, pos)
|
||||||
|
|
||||||
|
if not pos then break end
|
||||||
|
|
||||||
|
if ch=="|" then
|
||||||
|
-- some kind of escape
|
||||||
|
|
||||||
|
if strsub(str,pos,pos+1)=="|H" then
|
||||||
|
-- It's a |H....|hhyper link!|h
|
||||||
|
pos=strfind(str, "|h", pos+2) -- first |h
|
||||||
|
if not pos then break end
|
||||||
|
|
||||||
|
pos=strfind(str, "|h", pos+2) -- second |h
|
||||||
|
if not pos then break end
|
||||||
|
elseif strsub(str,pos, pos+1) == "|T" then
|
||||||
|
-- It's a |T....|t texture
|
||||||
|
pos=strfind(str, "|t", pos+2)
|
||||||
|
if not pos then break end
|
||||||
|
end
|
||||||
|
|
||||||
|
pos=pos+2 -- skip past this escape (last |h if it was a hyperlink)
|
||||||
|
|
||||||
|
else
|
||||||
|
-- found delimiter, done with this arg
|
||||||
|
return strsub(str, startpos, pos-1), AceConsole:GetArgs(str, numargs-1, pos+1)
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
-- search aborted, we hit end of string. return it all as one argument. (yes, even if it's an unterminated quote or hyperlink)
|
||||||
|
return strsub(str, startpos), nils(numargs-1, 1e9)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
--- embedding and embed handling
|
||||||
|
|
||||||
|
local mixins = {
|
||||||
|
"Print",
|
||||||
|
"Printf",
|
||||||
|
"RegisterChatCommand",
|
||||||
|
"UnregisterChatCommand",
|
||||||
|
"GetArgs",
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Embeds AceConsole into the target object making the functions from the mixins list available on target:..
|
||||||
|
-- @param target target object to embed AceBucket in
|
||||||
|
function AceConsole:Embed( target )
|
||||||
|
for k, v in pairs( mixins ) do
|
||||||
|
target[v] = self[v]
|
||||||
|
end
|
||||||
|
self.embeds[target] = true
|
||||||
|
return target
|
||||||
|
end
|
||||||
|
|
||||||
|
function AceConsole:OnEmbedEnable( target )
|
||||||
|
if AceConsole.weakcommands[target] then
|
||||||
|
for command, func in pairs( AceConsole.weakcommands[target] ) do
|
||||||
|
target:RegisterChatCommand( command, func, false, true ) -- nonpersisting and silent registry
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function AceConsole:OnEmbedDisable( target )
|
||||||
|
if AceConsole.weakcommands[target] then
|
||||||
|
for command, func in pairs( AceConsole.weakcommands[target] ) do
|
||||||
|
target:UnregisterChatCommand( command ) -- TODO: this could potentially unregister a command from another application in case of command conflicts. Do we care?
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
for addon in pairs(AceConsole.embeds) do
|
||||||
|
AceConsole:Embed(addon)
|
||||||
|
end
|
4
Libs/AceConsole-3.0/AceConsole-3.0.xml
Normal file
4
Libs/AceConsole-3.0/AceConsole-3.0.xml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
|
||||||
|
..\FrameXML\UI.xsd">
|
||||||
|
<Script file="AceConsole-3.0.lua"/>
|
||||||
|
</Ui>
|
240
Libs/CallbackHandler-1.0/CallbackHandler-1.0.lua
Normal file
240
Libs/CallbackHandler-1.0/CallbackHandler-1.0.lua
Normal file
|
@ -0,0 +1,240 @@
|
||||||
|
--[[ $Id: CallbackHandler-1.0.lua 14 2010-08-09 00:43:38Z mikk $ ]]
|
||||||
|
local MAJOR, MINOR = "CallbackHandler-1.0", 6
|
||||||
|
local CallbackHandler = LibStub:NewLibrary(MAJOR, MINOR)
|
||||||
|
|
||||||
|
if not CallbackHandler then return end -- No upgrade needed
|
||||||
|
|
||||||
|
local meta = {__index = function(tbl, key) tbl[key] = {} return tbl[key] end}
|
||||||
|
|
||||||
|
-- Lua APIs
|
||||||
|
local tconcat = table.concat
|
||||||
|
local assert, error, loadstring = assert, error, loadstring
|
||||||
|
local setmetatable, rawset, rawget = setmetatable, rawset, rawget
|
||||||
|
local next, select, pairs, type, tostring = next, select, pairs, type, tostring
|
||||||
|
|
||||||
|
-- Global vars/functions that we don't upvalue since they might get hooked, or upgraded
|
||||||
|
-- List them here for Mikk's FindGlobals script
|
||||||
|
-- GLOBALS: geterrorhandler
|
||||||
|
|
||||||
|
local xpcall = xpcall
|
||||||
|
|
||||||
|
local function errorhandler(err)
|
||||||
|
return geterrorhandler()(err)
|
||||||
|
end
|
||||||
|
|
||||||
|
local function CreateDispatcher(argCount)
|
||||||
|
local code = [[
|
||||||
|
local next, xpcall, eh = ...
|
||||||
|
|
||||||
|
local method, ARGS
|
||||||
|
local function call() method(ARGS) end
|
||||||
|
|
||||||
|
local function dispatch(handlers, ...)
|
||||||
|
local index
|
||||||
|
index, method = next(handlers)
|
||||||
|
if not method then return end
|
||||||
|
local OLD_ARGS = ARGS
|
||||||
|
ARGS = ...
|
||||||
|
repeat
|
||||||
|
xpcall(call, eh)
|
||||||
|
index, method = next(handlers, index)
|
||||||
|
until not method
|
||||||
|
ARGS = OLD_ARGS
|
||||||
|
end
|
||||||
|
|
||||||
|
return dispatch
|
||||||
|
]]
|
||||||
|
|
||||||
|
local ARGS, OLD_ARGS = {}, {}
|
||||||
|
for i = 1, argCount do ARGS[i], OLD_ARGS[i] = "arg"..i, "old_arg"..i end
|
||||||
|
code = code:gsub("OLD_ARGS", tconcat(OLD_ARGS, ", ")):gsub("ARGS", tconcat(ARGS, ", "))
|
||||||
|
return assert(loadstring(code, "safecall Dispatcher["..argCount.."]"))(next, xpcall, errorhandler)
|
||||||
|
end
|
||||||
|
|
||||||
|
local Dispatchers = setmetatable({}, {__index=function(self, argCount)
|
||||||
|
local dispatcher = CreateDispatcher(argCount)
|
||||||
|
rawset(self, argCount, dispatcher)
|
||||||
|
return dispatcher
|
||||||
|
end})
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------
|
||||||
|
-- CallbackHandler:New
|
||||||
|
--
|
||||||
|
-- target - target object to embed public APIs in
|
||||||
|
-- RegisterName - name of the callback registration API, default "RegisterCallback"
|
||||||
|
-- UnregisterName - name of the callback unregistration API, default "UnregisterCallback"
|
||||||
|
-- UnregisterAllName - name of the API to unregister all callbacks, default "UnregisterAllCallbacks". false == don't publish this API.
|
||||||
|
|
||||||
|
function CallbackHandler:New(target, RegisterName, UnregisterName, UnregisterAllName, OnUsed, OnUnused)
|
||||||
|
-- TODO: Remove this after beta has gone out
|
||||||
|
assert(not OnUsed and not OnUnused, "ACE-80: OnUsed/OnUnused are deprecated. Callbacks are now done to registry.OnUsed and registry.OnUnused")
|
||||||
|
|
||||||
|
RegisterName = RegisterName or "RegisterCallback"
|
||||||
|
UnregisterName = UnregisterName or "UnregisterCallback"
|
||||||
|
if UnregisterAllName==nil then -- false is used to indicate "don't want this method"
|
||||||
|
UnregisterAllName = "UnregisterAllCallbacks"
|
||||||
|
end
|
||||||
|
|
||||||
|
-- we declare all objects and exported APIs inside this closure to quickly gain access
|
||||||
|
-- to e.g. function names, the "target" parameter, etc
|
||||||
|
|
||||||
|
|
||||||
|
-- Create the registry object
|
||||||
|
local events = setmetatable({}, meta)
|
||||||
|
local registry = { recurse=0, events=events }
|
||||||
|
|
||||||
|
-- registry:Fire() - fires the given event/message into the registry
|
||||||
|
function registry:Fire(eventname, ...)
|
||||||
|
if not rawget(events, eventname) or not next(events[eventname]) then return end
|
||||||
|
local oldrecurse = registry.recurse
|
||||||
|
registry.recurse = oldrecurse + 1
|
||||||
|
|
||||||
|
Dispatchers[select('#', ...) + 1](events[eventname], eventname, ...)
|
||||||
|
|
||||||
|
registry.recurse = oldrecurse
|
||||||
|
|
||||||
|
if registry.insertQueue and oldrecurse==0 then
|
||||||
|
-- Something in one of our callbacks wanted to register more callbacks; they got queued
|
||||||
|
for eventname,callbacks in pairs(registry.insertQueue) do
|
||||||
|
local first = not rawget(events, eventname) or not next(events[eventname]) -- test for empty before. not test for one member after. that one member may have been overwritten.
|
||||||
|
for self,func in pairs(callbacks) do
|
||||||
|
events[eventname][self] = func
|
||||||
|
-- fire OnUsed callback?
|
||||||
|
if first and registry.OnUsed then
|
||||||
|
registry.OnUsed(registry, target, eventname)
|
||||||
|
first = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
registry.insertQueue = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Registration of a callback, handles:
|
||||||
|
-- self["method"], leads to self["method"](self, ...)
|
||||||
|
-- self with function ref, leads to functionref(...)
|
||||||
|
-- "addonId" (instead of self) with function ref, leads to functionref(...)
|
||||||
|
-- all with an optional arg, which, if present, gets passed as first argument (after self if present)
|
||||||
|
target[RegisterName] = function(self, eventname, method, ... --[[actually just a single arg]])
|
||||||
|
if type(eventname) ~= "string" then
|
||||||
|
error("Usage: "..RegisterName.."(eventname, method[, arg]): 'eventname' - string expected.", 2)
|
||||||
|
end
|
||||||
|
|
||||||
|
method = method or eventname
|
||||||
|
|
||||||
|
local first = not rawget(events, eventname) or not next(events[eventname]) -- test for empty before. not test for one member after. that one member may have been overwritten.
|
||||||
|
|
||||||
|
if type(method) ~= "string" and type(method) ~= "function" then
|
||||||
|
error("Usage: "..RegisterName.."(\"eventname\", \"methodname\"): 'methodname' - string or function expected.", 2)
|
||||||
|
end
|
||||||
|
|
||||||
|
local regfunc
|
||||||
|
|
||||||
|
if type(method) == "string" then
|
||||||
|
-- self["method"] calling style
|
||||||
|
if type(self) ~= "table" then
|
||||||
|
error("Usage: "..RegisterName.."(\"eventname\", \"methodname\"): self was not a table?", 2)
|
||||||
|
elseif self==target then
|
||||||
|
error("Usage: "..RegisterName.."(\"eventname\", \"methodname\"): do not use Library:"..RegisterName.."(), use your own 'self'", 2)
|
||||||
|
elseif type(self[method]) ~= "function" then
|
||||||
|
error("Usage: "..RegisterName.."(\"eventname\", \"methodname\"): 'methodname' - method '"..tostring(method).."' not found on self.", 2)
|
||||||
|
end
|
||||||
|
|
||||||
|
if select("#",...)>=1 then -- this is not the same as testing for arg==nil!
|
||||||
|
local arg=select(1,...)
|
||||||
|
regfunc = function(...) self[method](self,arg,...) end
|
||||||
|
else
|
||||||
|
regfunc = function(...) self[method](self,...) end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
-- function ref with self=object or self="addonId" or self=thread
|
||||||
|
if type(self)~="table" and type(self)~="string" and type(self)~="thread" then
|
||||||
|
error("Usage: "..RegisterName.."(self or \"addonId\", eventname, method): 'self or addonId': table or string or thread expected.", 2)
|
||||||
|
end
|
||||||
|
|
||||||
|
if select("#",...)>=1 then -- this is not the same as testing for arg==nil!
|
||||||
|
local arg=select(1,...)
|
||||||
|
regfunc = function(...) method(arg,...) end
|
||||||
|
else
|
||||||
|
regfunc = method
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
if events[eventname][self] or registry.recurse<1 then
|
||||||
|
-- if registry.recurse<1 then
|
||||||
|
-- we're overwriting an existing entry, or not currently recursing. just set it.
|
||||||
|
events[eventname][self] = regfunc
|
||||||
|
-- fire OnUsed callback?
|
||||||
|
if registry.OnUsed and first then
|
||||||
|
registry.OnUsed(registry, target, eventname)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
-- we're currently processing a callback in this registry, so delay the registration of this new entry!
|
||||||
|
-- yes, we're a bit wasteful on garbage, but this is a fringe case, so we're picking low implementation overhead over garbage efficiency
|
||||||
|
registry.insertQueue = registry.insertQueue or setmetatable({},meta)
|
||||||
|
registry.insertQueue[eventname][self] = regfunc
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Unregister a callback
|
||||||
|
target[UnregisterName] = function(self, eventname)
|
||||||
|
if not self or self==target then
|
||||||
|
error("Usage: "..UnregisterName.."(eventname): bad 'self'", 2)
|
||||||
|
end
|
||||||
|
if type(eventname) ~= "string" then
|
||||||
|
error("Usage: "..UnregisterName.."(eventname): 'eventname' - string expected.", 2)
|
||||||
|
end
|
||||||
|
if rawget(events, eventname) and events[eventname][self] then
|
||||||
|
events[eventname][self] = nil
|
||||||
|
-- Fire OnUnused callback?
|
||||||
|
if registry.OnUnused and not next(events[eventname]) then
|
||||||
|
registry.OnUnused(registry, target, eventname)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if registry.insertQueue and rawget(registry.insertQueue, eventname) and registry.insertQueue[eventname][self] then
|
||||||
|
registry.insertQueue[eventname][self] = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- OPTIONAL: Unregister all callbacks for given selfs/addonIds
|
||||||
|
if UnregisterAllName then
|
||||||
|
target[UnregisterAllName] = function(...)
|
||||||
|
if select("#",...)<1 then
|
||||||
|
error("Usage: "..UnregisterAllName.."([whatFor]): missing 'self' or \"addonId\" to unregister events for.", 2)
|
||||||
|
end
|
||||||
|
if select("#",...)==1 and ...==target then
|
||||||
|
error("Usage: "..UnregisterAllName.."([whatFor]): supply a meaningful 'self' or \"addonId\"", 2)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
for i=1,select("#",...) do
|
||||||
|
local self = select(i,...)
|
||||||
|
if registry.insertQueue then
|
||||||
|
for eventname, callbacks in pairs(registry.insertQueue) do
|
||||||
|
if callbacks[self] then
|
||||||
|
callbacks[self] = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
for eventname, callbacks in pairs(events) do
|
||||||
|
if callbacks[self] then
|
||||||
|
callbacks[self] = nil
|
||||||
|
-- Fire OnUnused callback?
|
||||||
|
if registry.OnUnused and not next(callbacks) then
|
||||||
|
registry.OnUnused(registry, target, eventname)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return registry
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
-- CallbackHandler purposefully does NOT do explicit embedding. Nor does it
|
||||||
|
-- try to upgrade old implicit embeds since the system is selfcontained and
|
||||||
|
-- relies on closures to work.
|
||||||
|
|
4
Libs/CallbackHandler-1.0/CallbackHandler-1.0.xml
Normal file
4
Libs/CallbackHandler-1.0/CallbackHandler-1.0.xml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
|
||||||
|
..\FrameXML\UI.xsd">
|
||||||
|
<Script file="CallbackHandler-1.0.lua"/>
|
||||||
|
</Ui>
|
Loading…
Reference in a new issue