mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-22 15:46:56 +00:00
314 lines
12 KiB
Lua
314 lines
12 KiB
Lua
pfUI:RegisterModule("unlock", function ()
|
|
pfUI.unlock = CreateFrame("Button", "pfUIUnlockMode", UIParent)
|
|
pfUI.unlock:Hide()
|
|
pfUI.unlock:SetAllPoints(WorldFrame)
|
|
pfUI.unlock:SetFrameStrata("BACKGROUND")
|
|
pfUI.unlock:SetScript("OnClick", function()
|
|
this:Hide()
|
|
end)
|
|
|
|
table.insert(UISpecialFrames, "pfUIUnlockMode")
|
|
|
|
pfUI.unlock:SetScript("OnShow", function()
|
|
if not this.setup then
|
|
local size = 1
|
|
local width = GetScreenWidth()
|
|
local ratio = width / GetScreenHeight()
|
|
local height = GetScreenHeight() * ratio
|
|
|
|
local wStep = width / 128
|
|
local hStep = height / 128
|
|
|
|
for i = 0, 128 do
|
|
local tx = pfUI.unlock:CreateTexture(nil, 'BACKGROUND')
|
|
if i == 128 / 2 then
|
|
tx:SetTexture(.1, .5, .4)
|
|
else
|
|
tx:SetTexture(0, 0, 0)
|
|
end
|
|
tx:SetPoint("TOPLEFT", pfUI.unlock, "TOPLEFT", i*wStep - (size/2), 0)
|
|
tx:SetPoint('BOTTOMRIGHT', pfUI.unlock, 'BOTTOMLEFT', i*wStep + (size/2), 0)
|
|
end
|
|
|
|
local height = GetScreenHeight()
|
|
|
|
for i = 0, 128 do
|
|
local tx = pfUI.unlock:CreateTexture(nil, 'BACKGROUND')
|
|
tx:SetTexture(.1, .5, .4)
|
|
tx:SetPoint("TOPLEFT", pfUI.unlock, "TOPLEFT", 0, -(height/2) + (size/2))
|
|
tx:SetPoint('BOTTOMRIGHT', pfUI.unlock, 'TOPRIGHT', 0, -(height/2 + size/2))
|
|
end
|
|
|
|
for i = 1, floor((height/2)/hStep) do
|
|
local tx = pfUI.unlock:CreateTexture(nil, 'BACKGROUND')
|
|
tx:SetTexture(0, 0, 0)
|
|
|
|
tx:SetPoint("TOPLEFT", pfUI.unlock, "TOPLEFT", 0, -(height/2+i*hStep) + (size/2))
|
|
tx:SetPoint('BOTTOMRIGHT', pfUI.unlock, 'TOPRIGHT', 0, -(height/2+i*hStep + size/2))
|
|
|
|
tx = pfUI.unlock:CreateTexture(nil, 'BACKGROUND')
|
|
tx:SetTexture(0, 0, 0)
|
|
|
|
tx:SetPoint("TOPLEFT", pfUI.unlock, "TOPLEFT", 0, -(height/2-i*hStep) + (size/2))
|
|
tx:SetPoint('BOTTOMRIGHT', pfUI.unlock, 'TOPRIGHT', 0, -(height/2-i*hStep + size/2))
|
|
end
|
|
this.setup = true
|
|
end
|
|
|
|
for _,frame in pairs(pfUI.movables) do
|
|
local frame = _G[frame]
|
|
|
|
if frame then
|
|
if not frame:IsShown() then
|
|
frame.hideLater = true
|
|
end
|
|
|
|
if not frame.drag then
|
|
frame.drag = CreateFrame("Frame", nil, frame)
|
|
frame.drag:SetAllPoints(frame)
|
|
frame.drag:SetFrameStrata("DIALOG")
|
|
CreateBackdrop(frame.drag, nil, nil, .8)
|
|
frame.drag.backdrop:SetBackdropBorderColor(.2, 1, .8)
|
|
frame.drag:EnableMouseWheel(1)
|
|
frame.drag.text = frame.drag:CreateFontString("Status", "LOW", "GameFontNormal")
|
|
frame.drag.text:SetFont(pfUI.font_default, C.global.font_size, "OUTLINE")
|
|
frame.drag.text:ClearAllPoints()
|
|
frame.drag.text:SetAllPoints(frame.drag)
|
|
frame.drag.text:SetPoint("CENTER", 0, 0)
|
|
frame.drag.text:SetFontObject(GameFontWhite)
|
|
local label = (strsub(frame:GetName(),3))
|
|
if frame.drag:GetHeight() > (2 * frame.drag:GetWidth()) then
|
|
label = strvertical(label)
|
|
end
|
|
frame.drag.text:SetText(label)
|
|
frame.drag:SetAlpha(1)
|
|
|
|
frame.drag:SetScript("OnMouseWheel", function()
|
|
local scale = round(frame:GetScale() + arg1/10, 1)
|
|
|
|
if IsShiftKeyDown() and strsub(frame:GetName(),0,7) == "pfCombo" then
|
|
for i=1,5 do
|
|
local frame = _G["pfCombo" .. i]
|
|
pfUI.unlock:SaveScale(frame, scale)
|
|
end
|
|
elseif IsShiftKeyDown() and strsub(frame:GetName(),0,6) == "pfRaid" then
|
|
for i=1,40 do
|
|
local frame = _G["pfRaid" .. i]
|
|
pfUI.unlock:SaveScale(frame, scale)
|
|
end
|
|
elseif IsShiftKeyDown() and strsub(frame:GetName(),0,7) == "pfGroup" then
|
|
for i=1,4 do
|
|
local frame = _G["pfGroup" .. i]
|
|
pfUI.unlock:SaveScale(frame, scale)
|
|
end
|
|
elseif IsShiftKeyDown() and strsub(frame:GetName(),0,15) == "pfLootRollFrame" then
|
|
for i=1,4 do
|
|
local frame = _G["pfLootRollFrame" .. i]
|
|
pfUI.unlock:SaveScale(frame, scale)
|
|
end
|
|
else
|
|
pfUI.unlock:SaveScale(frame, scale)
|
|
end
|
|
|
|
-- repaint hackfix for panels
|
|
if pfUI.panel and pfUI.chat then
|
|
pfUI.panel.left:SetScale(pfUI.chat.left:GetScale())
|
|
pfUI.panel.right:SetScale(pfUI.chat.right:GetScale())
|
|
end
|
|
|
|
if frame.OnMove then frame:OnMove() end
|
|
end)
|
|
|
|
|
|
frame.drag:SetScript("OnMouseDown",function()
|
|
if IsShiftKeyDown() then
|
|
if strsub(frame:GetName(),0,7) == "pfCombo" then
|
|
for i=1,5 do
|
|
local cframe = _G["pfCombo" .. i]
|
|
cframe:StartMoving()
|
|
cframe:StopMovingOrSizing()
|
|
cframe.drag.backdrop:SetBackdropBorderColor(1,1,1,1)
|
|
end
|
|
end
|
|
if strsub(frame:GetName(),0,6) == "pfRaid" then
|
|
for i=1,40 do
|
|
local cframe = _G["pfRaid" .. i]
|
|
cframe:StartMoving()
|
|
cframe:StopMovingOrSizing()
|
|
cframe.drag.backdrop:SetBackdropBorderColor(1,1,1,1)
|
|
end
|
|
end
|
|
if strsub(frame:GetName(),0,7) == "pfGroup" then
|
|
for i=1,4 do
|
|
local cframe = _G["pfGroup" .. i]
|
|
cframe:StartMoving()
|
|
cframe:StopMovingOrSizing()
|
|
cframe.drag.backdrop:SetBackdropBorderColor(1,1,1,1)
|
|
end
|
|
end
|
|
if strsub(frame:GetName(),0,15) == "pfLootRollFrame" then
|
|
for i=1,4 do
|
|
local cframe = _G["pfLootRollFrame" .. i]
|
|
cframe:StartMoving()
|
|
cframe:StopMovingOrSizing()
|
|
cframe.drag.backdrop:SetBackdropBorderColor(1,1,1,1)
|
|
end
|
|
end
|
|
_, _, _, xpos, ypos = frame:GetPoint()
|
|
frame.oldPos = { xpos, ypos }
|
|
else
|
|
frame.oldPos = nil
|
|
end
|
|
frame.drag.backdrop:SetBackdropBorderColor(1,1,1,1)
|
|
frame:StartMoving()
|
|
if frame.OnMove then frame:OnMove() end
|
|
end)
|
|
|
|
frame.drag:SetScript("OnMouseUp",function()
|
|
frame:StopMovingOrSizing()
|
|
_, _, _, xpos, ypos = frame:GetPoint()
|
|
frame.drag.backdrop:SetBackdropBorderColor(.2,1,.8,1)
|
|
|
|
if frame.oldPos then
|
|
local diffxpos = frame.oldPos[1] - xpos
|
|
local diffypos = frame.oldPos[2] - ypos
|
|
if strsub(frame:GetName(),0,7) == "pfCombo" then
|
|
for i=1,5 do
|
|
local cframe = _G["pfCombo" .. i]
|
|
cframe.drag.backdrop:SetBackdropBorderColor(.2,1,.8,1)
|
|
if cframe:GetName() ~= frame:GetName() then
|
|
local _, _, _, xpos, ypos = cframe:GetPoint()
|
|
cframe:SetPoint("TOPLEFT", xpos - diffxpos, ypos - diffypos)
|
|
|
|
local _, _, _, xpos, ypos = cframe:GetPoint()
|
|
|
|
if not C.position[cframe:GetName()] then
|
|
C.position[cframe:GetName()] = {}
|
|
end
|
|
|
|
C.position[cframe:GetName()]["xpos"] = xpos
|
|
C.position[cframe:GetName()]["ypos"] = ypos
|
|
end
|
|
end
|
|
elseif strsub(frame:GetName(),0,6) == "pfRaid" then
|
|
for i=1,40 do
|
|
local cframe = _G["pfRaid" .. i]
|
|
cframe.drag.backdrop:SetBackdropBorderColor(.2,1,.8,1)
|
|
if cframe:GetName() ~= frame:GetName() then
|
|
local _, _, _, xpos, ypos = cframe:GetPoint()
|
|
cframe:SetPoint("TOPLEFT", xpos - diffxpos, ypos - diffypos)
|
|
|
|
local _, _, _, xpos, ypos = cframe:GetPoint()
|
|
|
|
if not C.position[cframe:GetName()] then
|
|
C.position[cframe:GetName()] = {}
|
|
end
|
|
|
|
C.position[cframe:GetName()]["xpos"] = xpos
|
|
C.position[cframe:GetName()]["ypos"] = ypos
|
|
end
|
|
end
|
|
elseif strsub(frame:GetName(),0,7) == "pfGroup" then
|
|
for i=1,4 do
|
|
local cframe = _G["pfGroup" .. i]
|
|
cframe.drag.backdrop:SetBackdropBorderColor(.2,1,.8,1)
|
|
if cframe:GetName() ~= frame:GetName() then
|
|
local _, _, _, xpos, ypos = cframe:GetPoint()
|
|
cframe:SetPoint("TOPLEFT", xpos - diffxpos, ypos - diffypos)
|
|
|
|
local _, _, _, xpos, ypos = cframe:GetPoint()
|
|
|
|
if not C.position[cframe:GetName()] then
|
|
C.position[cframe:GetName()] = {}
|
|
end
|
|
|
|
C.position[cframe:GetName()]["xpos"] = xpos
|
|
C.position[cframe:GetName()]["ypos"] = ypos
|
|
end
|
|
end
|
|
elseif strsub(frame:GetName(),0,15) == "pfLootRollFrame" then
|
|
for i=1,4 do
|
|
local cframe = _G["pfLootRollFrame" .. i]
|
|
cframe.drag.backdrop:SetBackdropBorderColor(.2,1,.8,1)
|
|
if cframe:GetName() ~= frame:GetName() then
|
|
local _, _, _, xpos, ypos = cframe:GetPoint()
|
|
cframe:SetPoint("TOPLEFT", xpos - diffxpos, ypos - diffypos)
|
|
|
|
local _, _, _, xpos, ypos = cframe:GetPoint()
|
|
|
|
if not C.position[cframe:GetName()] then
|
|
C.position[cframe:GetName()] = {}
|
|
end
|
|
|
|
C.position[cframe:GetName()]["xpos"] = xpos
|
|
C.position[cframe:GetName()]["ypos"] = ypos
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
if not C.position[frame:GetName()] then
|
|
C.position[frame:GetName()] = {}
|
|
end
|
|
|
|
C.position[frame:GetName()]["xpos"] = xpos
|
|
C.position[frame:GetName()]["ypos"] = ypos
|
|
pfUI.unlock.settingChanged = true
|
|
end)
|
|
end
|
|
|
|
frame:SetMovable(true)
|
|
frame.drag:EnableMouse(true)
|
|
frame.drag:Show()
|
|
frame:Show()
|
|
end
|
|
end
|
|
end)
|
|
|
|
pfUI.unlock:SetScript("OnHide", function()
|
|
for _,frame in pairs(pfUI.movables) do
|
|
local frame = _G[frame]
|
|
|
|
if frame then
|
|
frame:SetMovable(false)
|
|
frame.drag:EnableMouse(false)
|
|
frame.drag:Hide()
|
|
if frame.hideLater == true then
|
|
frame:Hide()
|
|
end
|
|
end
|
|
end
|
|
|
|
pfUI.unlock:Hide()
|
|
pfUI.gui:Show()
|
|
end)
|
|
|
|
function pfUI.unlock:SaveScale(frame, scale)
|
|
frame:SetScale(scale)
|
|
|
|
if not C.position[frame:GetName()] then
|
|
C.position[frame:GetName()] = {}
|
|
end
|
|
C.position[frame:GetName()]["scale"] = scale
|
|
|
|
frame.drag.text:SetText("Scale: " .. scale)
|
|
frame.drag.text:SetAlpha(1)
|
|
|
|
frame.drag:SetScript("OnUpdate", function()
|
|
this.text:SetAlpha(this.text:GetAlpha() -0.05)
|
|
if this.text:GetAlpha() < 0.1 then
|
|
this.text:SetText(strsub(this:GetParent():GetName(),3))
|
|
this.text:SetAlpha(1)
|
|
this:SetScript("OnUpdate", function() return end)
|
|
end
|
|
end)
|
|
end
|
|
|
|
function pfUI.unlock:UnlockFrames()
|
|
local txt = T["|cff33ffccUnlock Mode|r\nThis mode allows you to move frames by dragging them using the mouse cursor. Frames can be scaled by scrolling up and down.\nTo scale multiple frames at once (eg. raidframes), hold down the shift key while scrolling. Click into an empty space to go back to the pfUI menu."]
|
|
pfUI.info:ShowInfoBox(txt, 15, pfUI.unlock)
|
|
|
|
pfUI.unlock:Show()
|
|
pfUI.gui:Hide()
|
|
end
|
|
end) |