-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPopup.lua
178 lines (171 loc) · 3.79 KB
/
Popup.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
local L = IRTLocals;
local f = CreateFrame("Frame");
local timers = {};
f:SetPoint("TOP", 0, -30);
f:SetSize(1000, 300);
f:SetMovable(false);
f:EnableMouse(false);
f:RegisterForDrag("LeftButton");
f:SetFrameLevel(3);
f:SetScript("OnDragStart", f.StartMoving);
f:SetScript("OnDragStop", function(self)
local point, relativeTo, relativePoint, xOffset, yOffset = self:GetPoint(1);
IRT_PopupTextPosition = {};
IRT_PopupTextPosition.point = point;
IRT_PopupTextPosition.relativeTo = relativeTo;
IRT_PopupTextPosition.relativePoint = relativePoint;
IRT_PopupTextPosition.xOffset = xOffset;
IRT_PopupTextPosition.yOffset = yOffset;
self:StopMovingOrSizing();
end);
f:Hide();
local fontStrings = {};
local function createFontString(caller)
if (caller) then
local text = f:CreateFontString(nil, "ARTWORK", "GameFontNormalLarge");
text:SetPoint("TOP", 0, 0);
text:SetJustifyH("CENTER");
text:SetJustifyV("CENTER");
text:SetFont("Fonts\\FRIZQT__.TTF", IRT_PopupTextFontSize);
text:SetShown(false);
fontStrings[caller] = text;
return text;
end
end
local function getAvailableYOffset()
local availableSpots = {
[0] = true,
[50] = true,
[100] = true,
[150] = true,
[200] = true,
};
local indexSpots = {
[1] = 0,
[2] = 50,
[3] = 100,
[4] = 150,
[5] = 200,
};
for caller, fs in pairs(fontStrings) do
if (fs:IsShown()) then
local point, relativeTo, relativePoint, xOffset, yOffset = fs:GetPoint();
availableSpots[yOffset*-1] = false;
end
end
for i, yOffset in ipairs(indexSpots) do
if (availableSpots[yOffset]) then
return yOffset*-1;
end
end
return -250;
end
local function hideMainFrame()
for caller, fs in pairs(fontStrings) do
if (fs:IsShown()) then
return false;
end
end
f:Hide();
end
local function hideAllFontStrings()
for caller, fs in pairs(fontStrings) do
fs:SetShown(false);
end
f:Hide();
end
--text:SetSize(1080,300);
function IRT_PopupUpdateFontSize()
for caller, fs in pairs(fontStrings) do
fs:SetFont("Fonts\\FRIZQT__.TTF", IRT_PopupTextFontSize);
end
end
function IRT_PopupShow(message, sec, caller)
if (caller) then
local fs = fontStrings[caller];
if (fs == nil) then
fs = createFontString(caller);
end
local timer = timers[caller];
if (timer) then
timer:Cancel();
timer = nil;
end
fs:SetText(message);
if (not fs:IsShown()) then
local yOffset = getAvailableYOffset();
fs:ClearAllPoints();
fs:SetPoint("TOP", 0, yOffset);
end
fs:Show();
f:Show();
timers[caller] = C_Timer.NewTimer(sec, function()
fs:SetShown(false);
hideMainFrame();
end);
return timers[caller];
end
return nil;
end
function IRT_PopupUpdate(message, caller)
if (caller) then
local fs = fontStrings[caller];
if (fs) then
fs:SetText(message);
end
end
end
function IRT_PopupMove()
local fs = fontStrings[L.POPUP_FILE];
if (fs == nil) then
fs = createFontString(L.POPUP_FILE);
end
hideAllFontStrings();
fs:SetText("MOVE ME");
f:SetMovable(true);
f:EnableMouse(true);
fs:Show();
f:Show();
C_Timer.After(7, function()
f:Hide();
fs:SetShown(false);
f:SetMovable(false);
f:EnableMouse(false);
end);
end
function IRT_PopupHide(caller)
if (caller) then
local fs = fontStrings[caller];
if (fs) then
local timer = timers[caller];
if (timer) then
timer:Cancel();
timer = nil;
end
fs:SetShown(false);
hideMainFrame();
end
end
end
function IRT_PopupSetPosition(point, relativeTo, relativePoint, xOffset, yOffset)
f:ClearAllPoints();
f:SetPoint(point, relativeTo, relativePoint, xOffset, yOffset);
end
function IRT_PopupIsShown(caller)
if (caller) then
local fs = fontStrings[caller];
if (fs) then
return fs:IsShown();
end
end
return nil;
end
function IRT_PopupGetText(caller)
if (caller) then
local fs = fontStrings[caller];
if (fs) then
return fs:GetText();
end
end
return nil;
end