chore(libs): sync shared LibStub-registered libs to canonical highest
Bumps in this fork: - LibSharedMedia-3.0 Brings these libs in line with the highest version any Exiles fork currently bundles, so LibStub resolution is predictable regardless of load order.
This commit is contained in:
-239
@@ -1,239 +0,0 @@
|
|||||||
--[[ $Id: CallbackHandler-1.0.lua 60548 2008-02-07 11:04:06Z nevcairiel $ ]]
|
|
||||||
local MAJOR, MINOR = "CallbackHandler-1.0", 3
|
|
||||||
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}
|
|
||||||
|
|
||||||
local type = type
|
|
||||||
local pcall = pcall
|
|
||||||
local pairs = pairs
|
|
||||||
local assert = assert
|
|
||||||
local concat = table.concat
|
|
||||||
local loadstring = loadstring
|
|
||||||
local next = next
|
|
||||||
local select = select
|
|
||||||
local type = type
|
|
||||||
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", concat(OLD_ARGS, ", ")):gsub("ARGS", concat(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"
|
|
||||||
if type(self)~="table" and type(self)~="string" then
|
|
||||||
error("Usage: "..RegisterName.."(self or \"addonId\", eventname, method): 'self or addonId': table or string 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.
|
|
||||||
|
|
||||||
+51
-19
@@ -1,6 +1,6 @@
|
|||||||
--[[
|
--[[
|
||||||
Name: LibSharedMedia-3.0
|
Name: LibSharedMedia-3.0
|
||||||
Revision: $Revision: 53 $
|
Revision: $Revision: 62 $
|
||||||
Author: Elkano (elkano@gmx.de)
|
Author: Elkano (elkano@gmx.de)
|
||||||
Inspired By: SurfaceLib by Haste/Otravi (troeks@gmail.com)
|
Inspired By: SurfaceLib by Haste/Otravi (troeks@gmail.com)
|
||||||
Website: http://www.wowace.com/projects/libsharedmedia-3-0/
|
Website: http://www.wowace.com/projects/libsharedmedia-3-0/
|
||||||
@@ -9,7 +9,7 @@ Dependencies: LibStub, CallbackHandler-1.0
|
|||||||
License: LGPL v2.1
|
License: LGPL v2.1
|
||||||
]]
|
]]
|
||||||
|
|
||||||
local MAJOR, MINOR = "LibSharedMedia-3.0", 90000 + tonumber(("$Revision: 53 $"):match("(%d+)"))
|
local MAJOR, MINOR = "LibSharedMedia-3.0", 3030002 -- 3.3.5 / increase manually on changes
|
||||||
local lib = LibStub:NewLibrary(MAJOR, MINOR)
|
local lib = LibStub:NewLibrary(MAJOR, MINOR)
|
||||||
|
|
||||||
if not lib then return end
|
if not lib then return end
|
||||||
@@ -20,8 +20,6 @@ local pairs = _G.pairs
|
|||||||
local type = _G.type
|
local type = _G.type
|
||||||
|
|
||||||
local band = _G.bit.band
|
local band = _G.bit.band
|
||||||
|
|
||||||
local table_insert = _G.table.insert
|
|
||||||
local table_sort = _G.table.sort
|
local table_sort = _G.table.sort
|
||||||
|
|
||||||
local locale = GetLocale()
|
local locale = GetLocale()
|
||||||
@@ -59,21 +57,31 @@ lib.MediaType.SOUND = "sound" -- sound files
|
|||||||
-- populate lib with default Blizzard data
|
-- populate lib with default Blizzard data
|
||||||
-- BACKGROUND
|
-- BACKGROUND
|
||||||
if not lib.MediaTable.background then lib.MediaTable.background = {} end
|
if not lib.MediaTable.background then lib.MediaTable.background = {} end
|
||||||
|
lib.MediaTable.background["None"] = [[]]
|
||||||
lib.MediaTable.background["Blizzard Dialog Background"] = [[Interface\DialogFrame\UI-DialogBox-Background]]
|
lib.MediaTable.background["Blizzard Dialog Background"] = [[Interface\DialogFrame\UI-DialogBox-Background]]
|
||||||
|
lib.MediaTable.background["Blizzard Dialog Background Dark"] = [[Interface\DialogFrame\UI-DialogBox-Background-Dark]]
|
||||||
|
lib.MediaTable.background["Blizzard Dialog Background Gold"] = [[Interface\DialogFrame\UI-DialogBox-Gold-Background]]
|
||||||
lib.MediaTable.background["Blizzard Low Health"] = [[Interface\FullScreenTextures\LowHealth]]
|
lib.MediaTable.background["Blizzard Low Health"] = [[Interface\FullScreenTextures\LowHealth]]
|
||||||
|
lib.MediaTable.background["Blizzard Marble"] = [[Interface\FrameGeneral\UI-Background-Marble]]
|
||||||
lib.MediaTable.background["Blizzard Out of Control"] = [[Interface\FullScreenTextures\OutOfControl]]
|
lib.MediaTable.background["Blizzard Out of Control"] = [[Interface\FullScreenTextures\OutOfControl]]
|
||||||
lib.MediaTable.background["Blizzard Parchment"] = [[Interface\AchievementFrame\UI-Achievement-Parchment-Horizontal]]
|
lib.MediaTable.background["Blizzard Parchment"] = [[Interface\AchievementFrame\UI-Achievement-Parchment-Horizontal]]
|
||||||
lib.MediaTable.background["Blizzard Parchment 2"] = [[Interface\AchievementFrame\UI-Achievement-Parchment]]
|
lib.MediaTable.background["Blizzard Parchment 2"] = [[Interface\AchievementFrame\UI-GuildAchievement-Parchment-Horizontal]]
|
||||||
|
lib.MediaTable.background["Blizzard Rock"] = [[Interface\FrameGeneral\UI-Background-Rock]]
|
||||||
lib.MediaTable.background["Blizzard Tabard Background"] = [[Interface\TabardFrame\TabardFrameBackground]]
|
lib.MediaTable.background["Blizzard Tabard Background"] = [[Interface\TabardFrame\TabardFrameBackground]]
|
||||||
lib.MediaTable.background["Blizzard Tooltip"] = [[Interface\Tooltips\UI-Tooltip-Background]]
|
lib.MediaTable.background["Blizzard Tooltip"] = [[Interface\Tooltips\UI-Tooltip-Background]]
|
||||||
lib.MediaTable.background["Solid"] = [[Interface\Buttons\WHITE8X8]]
|
lib.MediaTable.background["Solid"] = [[Interface\Buttons\WHITE8X8]]
|
||||||
|
lib.DefaultMedia.background = "None"
|
||||||
|
|
||||||
-- BORDER
|
-- BORDER
|
||||||
if not lib.MediaTable.border then lib.MediaTable.border = {} end
|
if not lib.MediaTable.border then lib.MediaTable.border = {} end
|
||||||
lib.MediaTable.border["None"] = [[Interface\None]]
|
lib.MediaTable.border["None"] = [[]]
|
||||||
|
lib.MediaTable.border["Blizzard Achievement Wood"] = [[Interface\AchievementFrame\UI-Achievement-WoodBorder]]
|
||||||
|
lib.MediaTable.border["Blizzard Chat Bubble"] = [[Interface\Tooltips\ChatBubble-Backdrop]]
|
||||||
lib.MediaTable.border["Blizzard Dialog"] = [[Interface\DialogFrame\UI-DialogBox-Border]]
|
lib.MediaTable.border["Blizzard Dialog"] = [[Interface\DialogFrame\UI-DialogBox-Border]]
|
||||||
lib.MediaTable.border["Blizzard Dialog Gold"] = [[Interface\DialogFrame\UI-DialogBox-Gold-Border]]
|
lib.MediaTable.border["Blizzard Dialog Gold"] = [[Interface\DialogFrame\UI-DialogBox-Gold-Border]]
|
||||||
|
lib.MediaTable.border["Blizzard Party"] = [[Interface\CHARACTERFRAME\UI-Party-Border]]
|
||||||
lib.MediaTable.border["Blizzard Tooltip"] = [[Interface\Tooltips\UI-Tooltip-Border]]
|
lib.MediaTable.border["Blizzard Tooltip"] = [[Interface\Tooltips\UI-Tooltip-Border]]
|
||||||
|
lib.DefaultMedia.border = "None"
|
||||||
|
|
||||||
-- FONT
|
-- FONT
|
||||||
if not lib.MediaTable.font then lib.MediaTable.font = {} end
|
if not lib.MediaTable.font then lib.MediaTable.font = {} end
|
||||||
@@ -91,9 +99,9 @@ if locale == "koKR" then
|
|||||||
elseif locale == "zhCN" then
|
elseif locale == "zhCN" then
|
||||||
LOCALE_MASK = lib.LOCALE_BIT_zhCN
|
LOCALE_MASK = lib.LOCALE_BIT_zhCN
|
||||||
--
|
--
|
||||||
SML_MT_font["伤害数字"] = [[Fonts\ZYKai_C.ttf]]
|
SML_MT_font["伤害数字"] = [[Fonts\ARKai_C.ttf]]
|
||||||
SML_MT_font["默认"] = [[Fonts\ZYKai_T.ttf]]
|
SML_MT_font["默认"] = [[Fonts\ARKai_T.ttf]]
|
||||||
SML_MT_font["聊天"] = [[Fonts\ZYHei.ttf]]
|
SML_MT_font["聊天"] = [[Fonts\ARHei.ttf]]
|
||||||
--
|
--
|
||||||
lib.DefaultMedia["font"] = "默认" -- someone from zhCN please adjust if needed
|
lib.DefaultMedia["font"] = "默认" -- someone from zhCN please adjust if needed
|
||||||
--
|
--
|
||||||
@@ -110,11 +118,17 @@ elseif locale == "zhTW" then
|
|||||||
elseif locale == "ruRU" then
|
elseif locale == "ruRU" then
|
||||||
LOCALE_MASK = lib.LOCALE_BIT_ruRU
|
LOCALE_MASK = lib.LOCALE_BIT_ruRU
|
||||||
--
|
--
|
||||||
|
SML_MT_font["2002"] = [[Fonts\2002.TTF]]
|
||||||
|
SML_MT_font["2002 Bold"] = [[Fonts\2002B.TTF]]
|
||||||
|
SML_MT_font["AR CrystalzcuheiGBK Demibold"] = [[Fonts\ARHei.TTF]]
|
||||||
|
SML_MT_font["AR ZhongkaiGBK Medium (Combat)"] = [[Fonts\ARKai_C.TTF]]
|
||||||
|
SML_MT_font["AR ZhongkaiGBK Medium"] = [[Fonts\ARKai_T.TTF]]
|
||||||
SML_MT_font["Arial Narrow"] = [[Fonts\ARIALN.TTF]]
|
SML_MT_font["Arial Narrow"] = [[Fonts\ARIALN.TTF]]
|
||||||
SML_MT_font["Friz Quadrata TT"] = [[Fonts\FRIZQT__.TTF]]
|
SML_MT_font["Friz Quadrata TT"] = [[Fonts\FRIZQT___CYR.TTF]]
|
||||||
SML_MT_font["Morpheus"] = [[Fonts\MORPHEUS.TTF]]
|
SML_MT_font["MoK"] = [[Fonts\K_Pagetext.TTF]]
|
||||||
|
SML_MT_font["Morpheus"] = [[Fonts\MORPHEUS_CYR.TTF]]
|
||||||
SML_MT_font["Nimrod MT"] = [[Fonts\NIM_____.ttf]]
|
SML_MT_font["Nimrod MT"] = [[Fonts\NIM_____.ttf]]
|
||||||
SML_MT_font["Skurri"] = [[Fonts\SKURRI.TTF]]
|
SML_MT_font["Skurri"] = [[Fonts\SKURRI_CYR.TTF]]
|
||||||
--
|
--
|
||||||
lib.DefaultMedia.font = "Friz Quadrata TT"
|
lib.DefaultMedia.font = "Friz Quadrata TT"
|
||||||
--
|
--
|
||||||
@@ -122,10 +136,17 @@ else
|
|||||||
LOCALE_MASK = lib.LOCALE_BIT_western
|
LOCALE_MASK = lib.LOCALE_BIT_western
|
||||||
locale_is_western = true
|
locale_is_western = true
|
||||||
--
|
--
|
||||||
|
SML_MT_font["2002"] = [[Fonts\2002.TTF]]
|
||||||
|
SML_MT_font["2002 Bold"] = [[Fonts\2002B.TTF]]
|
||||||
|
SML_MT_font["AR CrystalzcuheiGBK Demibold"] = [[Fonts\ARHei.TTF]]
|
||||||
|
SML_MT_font["AR ZhongkaiGBK Medium (Combat)"] = [[Fonts\ARKai_C.TTF]]
|
||||||
|
SML_MT_font["AR ZhongkaiGBK Medium"] = [[Fonts\ARKai_T.TTF]]
|
||||||
SML_MT_font["Arial Narrow"] = [[Fonts\ARIALN.TTF]]
|
SML_MT_font["Arial Narrow"] = [[Fonts\ARIALN.TTF]]
|
||||||
SML_MT_font["Friz Quadrata TT"] = [[Fonts\FRIZQT__.TTF]]
|
SML_MT_font["Friz Quadrata TT"] = [[Fonts\FRIZQT__.TTF]]
|
||||||
SML_MT_font["Morpheus"] = [[Fonts\MORPHEUS.TTF]]
|
SML_MT_font["MoK"] = [[Fonts\K_Pagetext.TTF]]
|
||||||
SML_MT_font["Skurri"] = [[Fonts\SKURRI.TTF]]
|
SML_MT_font["Morpheus"] = [[Fonts\MORPHEUS_CYR.TTF]]
|
||||||
|
SML_MT_font["Nimrod MT"] = [[Fonts\NIM_____.ttf]]
|
||||||
|
SML_MT_font["Skurri"] = [[Fonts\SKURRI_CYR.TTF]]
|
||||||
--
|
--
|
||||||
lib.DefaultMedia.font = "Friz Quadrata TT"
|
lib.DefaultMedia.font = "Friz Quadrata TT"
|
||||||
--
|
--
|
||||||
@@ -134,11 +155,13 @@ end
|
|||||||
-- STATUSBAR
|
-- STATUSBAR
|
||||||
if not lib.MediaTable.statusbar then lib.MediaTable.statusbar = {} end
|
if not lib.MediaTable.statusbar then lib.MediaTable.statusbar = {} end
|
||||||
lib.MediaTable.statusbar["Blizzard"] = [[Interface\TargetingFrame\UI-StatusBar]]
|
lib.MediaTable.statusbar["Blizzard"] = [[Interface\TargetingFrame\UI-StatusBar]]
|
||||||
|
lib.MediaTable.statusbar["Blizzard Character Skills Bar"] = [[Interface\PaperDollInfoFrame\UI-Character-Skills-Bar]]
|
||||||
|
lib.MediaTable.statusbar["Solid"] = [[Interface\Buttons\WHITE8X8]]
|
||||||
lib.DefaultMedia.statusbar = "Blizzard"
|
lib.DefaultMedia.statusbar = "Blizzard"
|
||||||
|
|
||||||
-- SOUND
|
-- SOUND
|
||||||
if not lib.MediaTable.sound then lib.MediaTable.sound = {} end
|
if not lib.MediaTable.sound then lib.MediaTable.sound = {} end
|
||||||
lib.MediaTable.sound["None"] = [[Interface\Quiet.mp3]] -- Relies on the fact that PlaySound[File] doesn't error on non-existing input.
|
lib.MediaTable.sound["None"] = [[Interface\Quiet.ogg]] -- Relies on the fact that PlaySound[File] doesn't error on these values.
|
||||||
lib.DefaultMedia.sound = "None"
|
lib.DefaultMedia.sound = "None"
|
||||||
|
|
||||||
local function rebuildMediaList(mediatype)
|
local function rebuildMediaList(mediatype)
|
||||||
@@ -162,8 +185,18 @@ function lib:Register(mediatype, key, data, langmask)
|
|||||||
if type(key) ~= "string" then
|
if type(key) ~= "string" then
|
||||||
error(MAJOR..":Register(mediatype, key, data, langmask) - key must be string, got "..type(key))
|
error(MAJOR..":Register(mediatype, key, data, langmask) - key must be string, got "..type(key))
|
||||||
end
|
end
|
||||||
if mediatype == lib.MediaType.FONT and ((langmask and band(langmask, LOCALE_MASK) == 0) or not (langmask or locale_is_western)) then return false end
|
|
||||||
mediatype = mediatype:lower()
|
mediatype = mediatype:lower()
|
||||||
|
if mediatype == lib.MediaType.FONT and ((langmask and band(langmask, LOCALE_MASK) == 0) or not (langmask or locale_is_western)) then
|
||||||
|
-- ignore fonts that aren't flagged as supporting local glyphs on non-western clients
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
if mediatype == lib.MediaType.SOUND and type(data) == "string" then
|
||||||
|
local path = data:lower()
|
||||||
|
if not path:find(".ogg", nil, true) and not path:find(".mp3", nil, true) and not path:find(".wav", nil, true) then
|
||||||
|
-- Only wav, ogg and mp3 are valid sounds.
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
if not mediaTable[mediatype] then mediaTable[mediatype] = {} end
|
if not mediaTable[mediatype] then mediaTable[mediatype] = {} end
|
||||||
local mtable = mediaTable[mediatype]
|
local mtable = mediaTable[mediatype]
|
||||||
if mtable[key] then return false end
|
if mtable[key] then return false end
|
||||||
@@ -178,8 +211,7 @@ function lib:Fetch(mediatype, key, noDefault)
|
|||||||
local mtt = mediaTable[mediatype]
|
local mtt = mediaTable[mediatype]
|
||||||
local overridekey = overrideMedia[mediatype]
|
local overridekey = overrideMedia[mediatype]
|
||||||
local result = mtt and ((overridekey and mtt[overridekey] or mtt[key]) or (not noDefault and defaultMedia[mediatype] and mtt[defaultMedia[mediatype]])) or nil
|
local result = mtt and ((overridekey and mtt[overridekey] or mtt[key]) or (not noDefault and defaultMedia[mediatype] and mtt[defaultMedia[mediatype]])) or nil
|
||||||
|
return result ~= "" and result or nil
|
||||||
return result
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function lib:IsValid(mediatype, key)
|
function lib:IsValid(mediatype, key)
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
## Interface: 30000
|
|
||||||
## X-Curse-Packaged-Version: 2
|
|
||||||
## X-Curse-Project-Name: LibSharedMedia-3.0
|
|
||||||
## X-Curse-Project-ID: libsharedmedia-3-0
|
|
||||||
## X-Curse-Repository-ID: wow/libsharedmedia-3-0/mainline
|
|
||||||
|
|
||||||
## Title: Lib: SharedMedia-3.0
|
|
||||||
## Notes: Shared handling of media data (fonts, sounds, textures, ...) between addons.
|
|
||||||
## Author: Elkano
|
|
||||||
## Version: 3.0-59
|
|
||||||
## X-Website: http://www.wowace.com/projects/libsharedmedia-3-0/
|
|
||||||
## X-Category: Library
|
|
||||||
|
|
||||||
## X-Revision: 59
|
|
||||||
## X-Date: 2009-03-06T10:12:34Z
|
|
||||||
|
|
||||||
LibStub\LibStub.lua
|
|
||||||
CallbackHandler-1.0\CallbackHandler-1.0.lua
|
|
||||||
|
|
||||||
LibSharedMedia-3.0\lib.xml
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
<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="LibSharedMedia-3.0.lua" />
|
|
||||||
</Ui>
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
-- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/wiki/LibStub for more info
|
|
||||||
-- LibStub is hereby placed in the Public Domain Credits: Kaelten, Cladhaire, ckknight, Mikk, Ammo, Nevcairiel, joshborke
|
|
||||||
local LIBSTUB_MAJOR, LIBSTUB_MINOR = "LibStub", 2 -- NEVER MAKE THIS AN SVN REVISION! IT NEEDS TO BE USABLE IN ALL REPOS!
|
|
||||||
local LibStub = _G[LIBSTUB_MAJOR]
|
|
||||||
|
|
||||||
if not LibStub or LibStub.minor < LIBSTUB_MINOR then
|
|
||||||
LibStub = LibStub or {libs = {}, minors = {} }
|
|
||||||
_G[LIBSTUB_MAJOR] = LibStub
|
|
||||||
LibStub.minor = LIBSTUB_MINOR
|
|
||||||
|
|
||||||
function LibStub:NewLibrary(major, minor)
|
|
||||||
assert(type(major) == "string", "Bad argument #2 to `NewLibrary' (string expected)")
|
|
||||||
minor = assert(tonumber(strmatch(minor, "%d+")), "Minor version must either be a number or contain a number.")
|
|
||||||
|
|
||||||
local oldminor = self.minors[major]
|
|
||||||
if oldminor and oldminor >= minor then return nil end
|
|
||||||
self.minors[major], self.libs[major] = minor, self.libs[major] or {}
|
|
||||||
return self.libs[major], oldminor
|
|
||||||
end
|
|
||||||
|
|
||||||
function LibStub:GetLibrary(major, silent)
|
|
||||||
if not self.libs[major] and not silent then
|
|
||||||
error(("Cannot find a library instance of %q."):format(tostring(major)), 2)
|
|
||||||
end
|
|
||||||
return self.libs[major], self.minors[major]
|
|
||||||
end
|
|
||||||
|
|
||||||
function LibStub:IterateLibraries() return pairs(self.libs) end
|
|
||||||
setmetatable(LibStub, { __call = LibStub.GetLibrary })
|
|
||||||
end
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
<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">
|
|
||||||
<Include file="LibSharedMedia-3.0\lib.xml" />
|
|
||||||
</Ui>
|
|
||||||
Reference in New Issue
Block a user