You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

141 lines
4.7 KiB

local E, L, V, P, G = unpack(select(2, ...)) --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
local DT = E:GetModule('DataTexts')
local _G = _G
local tinsert, tremove, next = tinsert, tremove, next
local ipairs, pairs, format, strjoin = ipairs, pairs, format, strjoin
local C_CurrencyInfo_GetCurrencyInfo = C_CurrencyInfo.GetCurrencyInfo
local C_CurrencyInfo_GetCurrencyListInfo = C_CurrencyInfo.GetCurrencyListInfo
local C_CurrencyInfo_GetCurrencyListSize = C_CurrencyInfo.GetCurrencyListSize
local CustomCurrencies = {}
local CurrencyListNameToIndex = {}
local function OnEvent(self)
local currency = CustomCurrencies[self.name]
if currency then
local info = C_CurrencyInfo_GetCurrencyInfo(currency.ID)
if not info then return end
local style = currency.DISPLAY_STYLE
local displayString = currency.ICON
if style ~= 'ICON' then
displayString = strjoin(' ', displayString, style == 'ICON_TEXT' and currency.NAME or E:AbbreviateString(currency.NAME))
end
displayString = strjoin(' ', displayString, '%d')
if currency.SHOW_MAX and info.maxQuantity > 0 then
displayString = strjoin(' ', displayString, '/', info.maxQuantity)
end
self.text:SetFormattedText(displayString, info.quantity)
end
end
local function OnEnter(self)
DT.tooltip:ClearLines()
local currency = CustomCurrencies[self.name]
if not currency or not currency.USE_TOOLTIP then return end
local index = CurrencyListNameToIndex[self.name]
if not index then return end
DT.tooltip:SetCurrencyToken(index)
DT.tooltip:Show()
end
local function AddCurrencyNameToIndex(name)
for index = 1, C_CurrencyInfo_GetCurrencyListSize() do
local info = C_CurrencyInfo_GetCurrencyListInfo(index)
if info.name == name then
CurrencyListNameToIndex[name] = index
break
end
end
end
local function RegisterNewDT(currencyID)
local info = C_CurrencyInfo_GetCurrencyInfo(currencyID)
if info then
local name = info.name
--Add to internal storage, stored with name as key
CustomCurrencies[name] = { NAME = name, ID = currencyID, ICON = format('|T%s:16:16:0:0:64:64:4:60:4:60|t', info.iconFileID), DISPLAY_STYLE = 'ICON', USE_TOOLTIP = true, SHOW_MAX = false, DISPLAY_IN_MAIN_TOOLTIP = true }
--Register datatext
DT:RegisterDatatext(name, _G.CURRENCY, {'CHAT_MSG_CURRENCY', 'CURRENCY_DISPLAY_UPDATE'}, OnEvent, nil, nil, OnEnter, nil, name)
--Save info to persistent storage, stored with ID as key
E.global.datatexts.customCurrencies[currencyID] = CustomCurrencies[name]
--Get the currency index for this currency, so we can use it for a tooltip
AddCurrencyNameToIndex(name)
--Set the HyperDT
local menuIndex = DT:GetMenuListCategory(_G.CURRENCY)
local hyperList = DT.HyperList[menuIndex]
if hyperList then
local menuList = hyperList.menuList
tinsert(menuList, {
text = name,
checked = function() return DT.EasyMenu.MenuGetItem(DT.SelectedDatatext, name) end,
func = function() DT.EasyMenu.MenuSetItem(DT.SelectedDatatext, name) end
})
DT:SortMenuList(menuList)
end
end
end
function DT:UpdateCustomCurrencySettings(currencyName, option, value)
if not currencyName or not option then return end
CustomCurrencies[currencyName][option] = value
end
function DT:RegisterCustomCurrencyDT(currencyID)
if currencyID then
--We added a new datatext through the config
if not next(CustomCurrencies) then -- add Currency category if one didn't already exist
tinsert(DT.HyperList, { text = _G.CURRENCY, notCheckable = true, hasArrow = true, menuList = {} } )
DT:SortMenuList(DT.HyperList)
end
RegisterNewDT(currencyID)
else
--We called this in DT:Initialize, so load all the stored currency datatexts
for _, info in pairs(E.global.datatexts.customCurrencies) do
CustomCurrencies[info.NAME] = { NAME = info.NAME, ID = info.ID, ICON = info.ICON, DISPLAY_STYLE = info.DISPLAY_STYLE, USE_TOOLTIP = info.USE_TOOLTIP, SHOW_MAX = info.SHOW_MAX, DISPLAY_IN_MAIN_TOOLTIP = info.DISPLAY_IN_MAIN_TOOLTIP }
DT:RegisterDatatext(info.NAME, _G.CURRENCY, {'CHAT_MSG_CURRENCY', 'CURRENCY_DISPLAY_UPDATE'}, OnEvent, nil, nil, OnEnter, nil, info.NAME)
--Get the currency index for this currency, so we can use it for a tooltip
AddCurrencyNameToIndex(info.NAME)
end
end
end
function DT:RemoveCustomCurrency(currencyName)
--Remove from internal storage
CustomCurrencies[currencyName] = nil
if not next(CustomCurrencies) then
for i, menu in ipairs(DT.HyperList) do
if menu.text == _G.CURRENCY then
tremove(DT.HyperList, i)
break
end
end
else
local menuIndex = DT:GetMenuListCategory(_G.CURRENCY)
local hyperList = DT.HyperList[menuIndex]
if hyperList then
local menuList = hyperList.menuList
for i, info in ipairs(menuList) do
if info.text == currencyName then
tremove(menuList, i)
end
end
end
end
DT:SortMenuList(DT.HyperList)
end