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.

225 lines
6.7 KiB

--TODO: Rework broken import/export using new set links
local addonName, addon = ...
addon = LibStub("AceAddon-3.0"):GetAddon(addonName)
local Profile
local L = LibStub("AceLocale-3.0"):GetLocale(addonName)
local LISTWINDOW
local AceGUI = LibStub("AceGUI-3.0")
local itemLink = "item:%d:0";
local itemLinkMod = "item:%d:0:::::::::::1:%d";
local itemBonusPattern = "item:(%d+):%d*:%d*:%d*:%d*:%d*:%d*:%d*:%d*:%d*:%d*:(%d*):%d*:([%d:]+)"
local IE ={}
local function Export(itemString, button)
end
--local testString = "compare?items=16955:32570:137109:29337:42376:35221:37363:16952:13075:50632:27512:34675"
--local t2 = "compare?items=163307.0.0.0.0.0.0.0.0.0.5126:163453.0.0.0.0.0.0.0.0.0.5126:163455.0.0.0.0.0.0.0.0.0.5126:163456.0.0.0.0.0.0.0.0.0.5126:163458.0.0.0.0.0.0.0.0.0.5126:163459.0.0.0.0.0.0.0.0.0.5126:163460.0.0.0.0.0.0.0.0.0.5126:163461.0.0.0.0.0.0.0.0.0.5126"
--compare?items=16955:32570:137109:29337:42376:35221:37363:16952:13075:50632:27512:34675
local function ImportSet(importString)
end
local importFrom = nil
StaticPopupDialogs["BETTER_WARDROBE_IMPORT_SET_POPUP"] = {
text = L["Copy and paste a Wowhead Compare URL into the text box below to import"],
preferredIndex = 3,
button1 = L["Import"],
button2 = CANCEL,
hasEditBox = true,
maxLetters = 512,
editBoxWidth = 260,
OnShow = function(self)
if LISTWINDOW then LISTWINDOW:Hide() end
self.editBox:SetText("")
end,
EditBoxOnEnterPressed = function(self)
if (self:GetParent().button1:IsEnabled()) then
StaticPopup_OnClick(self:GetParent(), 1)
end
end,
OnAccept = function(self)
if importFrom == "Transmog" then
IE.ImportTransmogVendorSet(self.editBox:GetText())
else
ImportSet(self.editBox:GetText());
end
importFrom = nil
end,
EditBoxOnEscapePressed = HideParentPanel,
exclusive = true,
whileDead = true,
};
--https://www.wowhead.com/item=163307/honorbound-centurions-vambraces?bonus=5126:1562#see-also
local WowheadURL = "www.wowhead.com/item=(%d+).-bonus=(%d+):%d*"
local function ConvertItemLink(item)
end
local function ImportItem(importString)
end
local function ImportItemTransMogVendor(importString)
end
StaticPopupDialogs["BETTER_WARDROBE_IMPORT_ITEM_POPUP"] = {
text = L["Type the item ID or url in the text box below"],
preferredIndex = 3,
button1 = ADD,
button2 = CANCEL,
hasEditBox = true,
maxLetters = 512,
editBoxWidth = 260,
OnShow = function() if LISTWINDOW then LISTWINDOW:Hide() end end,
OnAccept = function(self)
if importFrom == "Transmog" then
ImportItemTransMogVendor(self.editBox:GetText())
else
ImportItem(self.editBox:GetText());
end
importFrom = nil
end,
EditBoxOnEnterPressed = function(self)
if (self:GetParent().button1:IsEnabled()) then
StaticPopup_OnClick(self:GetParent(), 1)
end
end,
EditBoxOnEscapePressed = HideParentPanel;
exclusive = true,
whileDead = true,
};
function addon:ExportSet()
end
local function ExportTransmogVendorSet()
end
--compare?items=57290.0.0.0.0.0.0.0.0.0.0:163458.0.0.0.0.0.0.0.0.0.1:37513.0.0.0.0.0.0.0.0.0.0:173460.0.0.0.0.0.0.0.0.0.0:98093.0.0.0.0.0.0.0.0.0.0:38115.0.0.0.0.0.0.0.0.0.0:152399.0.0.0.0.0.0.0.0.0.0:80698.0.0.0.0.0.0.0.0.0.0:167829.0.0.0.0.0.0.0.0.0.0:98149.0.0.0.0.0.0.0.0.0.0:35870.0.0.0.0.0.0.0.0.0.0:62968.0.0.0.0.0.0.0.0.0.0:155409.0.0.0.0.0.0.0.0.0.0
function IE.ImportTransmogVendorSet(importString)
end
local linkText = "f(%d,%d);"
function addon:CreateChatLink()
local string = [[/run local function f(i,b)DressUpItemLink("item:"..i.."::::::::::::9:"..b);end;]]
local Buttons = BW_DressingRoomFrame.PreviewButtonFrame.Slots
for index, button in pairs(Buttons) do
local itemlink = nil
local slot = button:GetID()
--if not DressingRoom:IsSlotHidden(slot) then
itemlink = button.itemLink --GetInventoryItemLink("player", slot)
if itemlink then
local id, dif, bonus = ConvertItemLink(itemlink)
string = string..linkText:format(id,bonus or 0)
end
--end
end
Export(string,false)
end
function addon:CreateChatLinkTransmogVendor()
local string = [[/run local function f(i,b)DressUpItemLink("item:"..i.."::::::::::::9:"..b);end;]]
for key, transmogSlot in pairs(TRANSMOG_SLOTS) do
if ( transmogSlot.location:IsAppearance() ) then
local _, _, sourceID = TransmogUtil.GetInfoForEquippedSlot(transmogSlot.location)
----local sourceID = WardrobeOutfitDropDown:GetSlotSourceID(transmogSlot.location)
if ( sourceID ) then
local sourceInfo = C_TransmogCollection.GetSourceInfo(sourceID)
if sourceInfo then
local id = sourceInfo.itemID
local bonus = sourceInfo.itemModID or 0
string = string..linkText:format(id,bonus)
end
end
end
end
Export(string,false)
end
function BW_TransmogVendorExportButton_OnClick(self)
local Profile = addon.Profile
local name = addon.QueueList[3]
local contextMenuData = {
{
text = L["Import/Export Options"], isTitle = true, notCheckable = true,
},
{
text = L["Load Set: %s"]:format( name or L["None Selected"]),
func = function()
local setType = addon.QueueList[1]
local setID = addon.QueueList[2]
if setType == "set" then
BetterWardrobeCollectionFrame.SetsTransmogFrame:LoadSet(setID)
elseif setType == "extraset" then
BetterWardrobeCollectionFrame.SetsTransmogFrame:LoadSet(setID)
end
end,
isNotRadio = true,
notCheckable = true,
},
--[[ {
text = L["Import Item"],
func = function()
importFrom = "Transmog"
BetterWardrobeOutfitFrameMixin:ShowPopup("BETTER_WARDROBE_IMPORT_ITEM_POPUP")
end,
isNotRadio = true,
notCheckable = true,
},
{
text = L["Import Set"],
func = function()
importFrom = "Transmog"
BetterWardrobeOutfitFrameMixin:ShowPopup("BETTER_WARDROBE_IMPORT_SET_POPUP")
end,
isNotRadio = true,
notCheckable = true,
},
{
text = L["Export Set"],
func = function()
ExportTransmogVendorSet()
end,
notCheckable = true,
isNotRadio = true,
},
]]--
{
text = L["Create Dressing Room Command Link"],
func = function()
addon:CreateChatLinkTransmogVendor()
end,
notCheckable = true,
isNotRadio = true,
},
}
BW_UIDropDownMenu_SetAnchor(addon.ContextMenu, 0, 0, "TOPLEFT", self, "TOPLEFT")
BW_EasyMenu(contextMenuData, addon.ContextMenu, addon.ContextMenu, 0, 0, "MENU")
--DropDownList1:ClearAllPoints()
--DropDownList1:SetPoint("BOTTOMLEFT", self, "BOTTOMLEFT", 0, 0)
--DropDownList1:SetClampedToScreen(true)
end
--/run local function f(i,b)DressUpItemLink("item:"..i.."::::::::::::9:"..b);end;f(27457,0);f(27489,0);f(27539,0);f(27548,0);f(27748,0);f(27790,0);f(27897,0);f(28221,0);