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.

579 lines
19 KiB

local api, private, _, T = {}, {}, ...
local ORI, AB, RW, IM = OPie.UI, T.ActionBook:compatible(2,19), T.ActionBook:compatible("Rewire", 1,10), T.ActionBook:compatible("Imp", 1, 0)
assert(ORI and AB and RW and IM, "Missing required libraries")
local RK_RingDesc, RK_CollectionIDs, RK_FluxRings, MAJ, REV, EV, PC, SV = {}, {}, {}, 3, 56, T.Evie, T.OPieCore
local loadLock, queue, RK_DeletedRings, RK_FlagStore, sharedCollection = 0, {}, {}, {}, {}
5 years ago
local CLASS, FULLNAME, FACTION
local function assert(condition, text, level, ...)
return condition or error(tostring(text):format(...), 1 + (level or 1))
5 years ago
end
local function RK_IsRelevantRingDescription(desc)
if desc then
local limit = desc.limit
return limit == nil or limit == FULLNAME or limit == CLASS or limit == FACTION
end
end
local serialize, unserialize do
3 years ago
local sb, sc = string.byte, string.char
local sigT, sigB, sigN = {}, {}
for i, c in ("01234qwertyuiopasdfghjklzxcvbnm5678QWERTYUIOPASDFGHJKLZXCVBNM9"):gmatch("()(.)") do sigT[i-1], sigT[c], sigB[sb(c)], sigN = c, i-1, i-1, i end
5 years ago
local function checksum(s)
local h, p2, p3 = (134217689 * #s) % 17592186044399, sigN^2, sigN^3
5 years ago
for i=1,#s,4 do
local a, b, c, d = s:match("(.?)(.?)(.?)(.?)", i)
a, b, c, d = sigT[a], (sigT[b] or 0) * sigN, (sigT[c] or 0) * p2, (sigT[d] or 0) * p3
5 years ago
h = (h * 211 + a + b + c + d) % 17592186044399
end
return h % 3298534883309
end
local function nenc(v, b, rest)
if b == 0 then return v == 0 and rest or error("numeric overflow") end
local v1 = v % sigN
local v2 = (v - v1) / sigN
return nenc(v2, b - 1, sigT[v1] .. (rest or ""))
end
local function cenc(c)
local b, m = c:byte(), sigN-1
return sigT[(b - b % m) / m] .. sigT[b % m]
end
local function venc(v, t, reg)
if reg[v] then
3 years ago
t[#t+1] = sigT[1] .. sigT[reg[v]]
5 years ago
elseif type(v) == "table" then
local n = math.min(sigN-1, #v)
for i=n,1,-1 do venc(v[i], t, reg) end
3 years ago
t[#t+1] = sigT[3] .. sigT[n]
5 years ago
for k,v2 in pairs(v) do
if not (type(k) == "number" and k >= 1 and k <= n and k % 1 == 0) then
venc(v2, t, reg)
venc(k, t, reg)
3 years ago
t[#t+1] = sigT[4]
5 years ago
end
end
elseif type(v) == "number" then
3 years ago
if v >= -1000000 and v < 13776336 and v % 1 == 0 then
t[#t+1] = sigT[5] .. nenc(v + 1000000, 4)
elseif (v+v == v) or (v < 0) == (v >= 0) then
error("not a (real) number")
else
local f, e = math.frexp(v)
if e < -1070 then
f, e = f / 2, e + 1
end
t[#t+1] = sigT[f < 0 and 14 or 13] .. nenc(e+1500-1, 2) .. nenc(f*2^53*(f < 0 and -1 or 1), 9)
end
5 years ago
elseif type(v) == "string" then
3 years ago
t[#t+1] = sigT[6] .. v:gsub("[^a-zA-Z5-8]", cenc) .. "9"
5 years ago
else
3 years ago
t[#t+1] = sigT[1] .. ((v == true and sigT[1]) or (v == nil and sigT[0]) or sigT[2])
5 years ago
end
return t
end
3 years ago
local function tenc(t)
local u, ua, fm, fc = {}, {}, {}, sigN-3
for i=3,sigN-1 do
fm[sigT[1] .. sigT[i]] = sigT[2] .. sigT[i]
end
5 years ago
for i=1,#t do
local k = t[i]
3 years ago
if fm[k] then
fc, fm[k] = fc - 1, nil
5 years ago
elseif u[k] then
u[k] = u[k] + 1
3 years ago
elseif #k >= 4 then
5 years ago
ua[#ua+1], u[k] = k, 1
end
end
table.sort(ua, function(a, b)
return (#a-2)*(u[a]-1) > (#b-2)*(u[b]-1)
end)
3 years ago
for i=fc+1, #ua do
5 years ago
u[ua[i]], ua[i] = nil
end
3 years ago
local r, s = next(fm)
5 years ago
for i=1,#t do
local uk = u[t[i]]
if uk == nil then
elseif type(uk) == "string" then
t[i] = uk
3 years ago
elseif r and uk > 1 then
u[t[i]], t[i], r, s = r, t[i] .. s, next(fm, r)
5 years ago
end
end
return t
end
3 years ago
local ops do
local s, r, pri
local function cdec(c, l)
return sc(sigT[c]*(sigN-1) + sigT[l])
end
local function ndec(p, l)
local r = 0
for i=p,p+l-1 do
r = r * sigN + sigB[sb(pri,i)]
end
return r
end
ops = {
function(d, pos)
s[d+1] = r[sigB[sb(pri, pos)]]
return d+1, pos+1
end,
function(d, pos)
r[sigB[sb(pri,pos)]] = s[d]
return d, pos+1
end,
function(d, pos)
local t, n = {}, sigB[sb(pri,pos)]
for i=1,n do
t[i] = s[d-i+1]
end
s[d - n + 1] = t
return d+1-n, pos+1
end,
function(d, pos)
s[d-2][s[d]] = s[d-1]
return d-2, pos
end,
function(d, pos)
s[d+1] = ndec(pos, 4) - 1000000
return d+1, pos+4
end,
function(d, pos)
d, s[d+1], pos = d+1, pri:match('^(.-)9()', pos)
s[d] = s[d]:gsub('([0-4])(.)', cdec)
return d, pos
end,
function(d, pos)
s[d-1] = s[d-1]+s[d]
return d-1, pos
end,
function(d, pos)
s[d-1] = s[d-1]*s[d]
return d-1, pos
end,
function(d, pos)
s[d-1] = s[d-1]/s[d]
return d-1, pos
end,
function(d, pos)
s[d-1] = s[d-1]-s[d]
return d-1, pos
end,
function(d, pos)
s[d-1] = s[d-1]^s[d]
return d-1, pos
end,
function(d, pos)
s[d-1] = s[d-1]*2^s[d]
return d-1, pos
end,
function(d, pos)
s[d+1] = 2^(ndec(pos,2)-1500) * (ndec(pos+2,9)*2^-52)
return d+1, pos+11
end,
function(d, pos)
s[d+1] = -2^(ndec(pos,2)-1500) * (ndec(pos+2,9)*2^-52)
return d+1, pos+11
end,
function(d, pos)
s[d-1] = r[s[d]]
return d-1, pos
end,
function(d, pos)
r[s[d]] = s[d-1]
return d-1, pos
end,
}
local opsB = {}
for i=1,#ops do
opsB[sb(sigT[i])] = ops[i]
end
ops = opsB
function ops.bind(...)
s, r, pri = ...
end
5 years ago
end
3 years ago
local defaultSign = sc(111,101,116,111,104,72,55)
local st = {
[defaultSign] = {"name", "hotkey", "offset", "noOpportunisticCA", "noPersistentCA", "internal", "limit", "id", "skipSpecs", "caption", "icon", "show"},
}
function serialize(t, sign)
sign = sign == nil and defaultSign or sign
local rt, sd = {}, st[sign]
for i=1, sd and #sd or 0 do
rt[sd[i]] = 2+i
end
local payload = table.concat(tenc(venc(t, {}, setmetatable({}, {__index=rt}))), "")
5 years ago
return ((sign .. nenc(checksum(sign .. payload), 7) .. payload):gsub("(.......)", "%1 "):gsub(" ?$", ".", 1))
end
3 years ago
function unserialize(s)
local ssign, h, pri = s:gsub("[^a-zA-Z0-9.]", ""):match("^(" .. ("."):rep(#defaultSign) .. ")(.......)([^.]+)")
if st[ssign] == nil or nenc(checksum(ssign .. pri), 7) ~= h then return end
local rt, sd = {true, false}, st[ssign]
for i=1, sd and #sd or 0 do
rt[2+i] = sd[i]
end
5 years ago
local stack, depth, pos, len = {}, 0, 1, #pri
3 years ago
ops.bind(stack, setmetatable({}, {__index=rt}), pri)
5 years ago
while pos <= len do
3 years ago
depth, pos = ops[sb(pri, pos)](depth, pos + 1)
5 years ago
end
3 years ago
ops.bind()
5 years ago
return depth == 1 and stack[1]
end
end
3 years ago
local function copy(t, copies)
local into = {}
copies = copies or {}
copies[t] = into
for k,v in pairs(t) do
k = type(k) == "table" and (copies[k] or copy(k, copies)) or k
v = type(v) == "table" and (copies[v] or copy(v, copies)) or v
into[k] = v
end
return into
5 years ago
end
local RK_SetRingDesc
5 years ago
local function RK_SyncRing(name, force, tok)
local desc, changed, cid = RK_RingDesc[name], (force == true), RK_CollectionIDs[name]
if loadLock < 2 or not RK_IsRelevantRingDescription(desc) then return end
5 years ago
tok = tok or AB:GetLastObserverUpdateToken("*")
if not force and tok == desc._lastUpdateToken then return end
desc._lastUpdateToken = tok
local limit = desc.limit
desc.sortScope = limit == FULLNAME and 30 or limit == CLASS and 20 or 10
if not cid then
wipe(sharedCollection)
changed, cid = true, AB:CreateActionSlot(nil, nil, "collection", sharedCollection)
RK_CollectionIDs[name], RK_CollectionIDs[cid] = cid, name
OPie:SetRing(name, cid, desc)
5 years ago
end
3 years ago
local onOpenSlice, onOpenAction, onOpenToken = desc.onOpen
5 years ago
for i=1, #desc do
local e = desc[i]
local ident, action = e[1]
if type(ident) == "string" then
action = AB:GetActionSlot(e)
5 years ago
end
changed = changed or (action ~= e._action) or (e.fastClick ~= e._fastClick) or (e.rotationMode ~= e._rotationMode) or (action and (e.show ~= e._show) or (e.embed ~= e._embed))
e._action, e._fastClick, e._rotationMode = action, e.fastClick, e.rotationMode
if i == onOpenSlice then
3 years ago
onOpenAction, onOpenToken = e._action, e.sliceToken
5 years ago
end
end
3 years ago
changed = changed or (desc._embed ~= desc.embed) or (desc._onOpen ~= onOpenAction) or (desc._onOpenToken ~= onOpenToken)
5 years ago
if not changed and not force then return end
local collection, cn = sharedCollection, 1
wipe(collection)
for i=1, #desc do
local e = desc[i]
if e._action and i ~= onOpenSlice then
collection[e.sliceToken], collection[cn], cn = e._action, e.sliceToken, cn + 1
collection['__visibility-' .. e.sliceToken], e._show = e.show or nil, e.show
collection['__embed-' .. e.sliceToken], e._embed = e.embed, e.embed
ORI:SetDisplayOptions(e.sliceToken, e.icon, nil, e._r, e._g, e._b)
end
end
collection['__embed'], desc._embed = desc.embed, desc.embed
collection['__openAction'], desc._onOpen = onOpenAction, onOpenAction
3 years ago
collection['__openToken'], desc._onOpenToken = onOpenToken, onOpenToken
5 years ago
AB:UpdateActionSlot(cid, collection)
OPie:SetRing(name, cid, desc)
5 years ago
end
local function dropUnderscoreKeys(t)
for k in pairs(t) do
if type(k) == "string" and k:sub(1,1) == "_" then
t[k] = nil
end
end
end
local function RK_SanitizeDescription(props)
local uprefix, marks = type(props._u) == "string" and props._u, {}
5 years ago
for i=#props,1,-1 do
local v = props[i]
repeat
local rt, id = v.rtype, v.id
if rt and id then
v[1], v[2], v.rtype, v.id = rt, id
elseif type(id) == "number" then
v[1], v[2], v.rtype, v.id = "spell", id
elseif type(id) == "string" then
v[1], v[2], v.rtype, v.id = "imptext", id
elseif v[1] == nil then
table.remove(props, i)
break
5 years ago
end
if type(v.c) == "string" then
local r,g,b = v.c:match("^(%x%x)(%x%x)(%x%x)$")
if r then
v._r, v._g, v._b = tonumber(r, 16)/255, tonumber(g, 16)/255, tonumber(b, 16)/255
end
end
v.show = v.show ~= "" and v.show or nil
local sliceToken = v.sliceToken or (uprefix and type(v._u) == "string" and (uprefix .. v._u))
sliceToken = marks[sliceToken] == nil and sliceToken or AB:CreateToken()
v.sliceToken, marks[sliceToken] = sliceToken, 1
until 0
5 years ago
end
props._embed = nil
return props
end
local function RK_SerializeDescription(props)
for _, slice in ipairs(props) do
if slice[1] == "spell" or slice[1] == "imptext" then
5 years ago
slice.id, slice[1], slice[2] = slice[2]
end
dropUnderscoreKeys(slice)
end
dropUnderscoreKeys(props)
props.sortScope = nil
return props
end
local function resyncRings()
5 years ago
for k in pairs(RK_RingDesc) do
securecall(RK_SyncRing, k)
end
end
EV.PLAYER_REGEN_DISABLED = resyncRings
local function unlockSync()
if loadLock < 2 then
loadLock = 2
resyncRings()
end
end
5 years ago
local function abPreOpen(_, _, id)
local k = RK_CollectionIDs[id]
if k then
RK_SyncRing(k)
end
end
local function svInitializer(event, _name, sv)
if event == "LOGOUT" and loadLock > 0 then
5 years ago
for k in pairs(sv) do sv[k] = nil end
for k, v in pairs(RK_RingDesc) do
if type(v) == "table" and not RK_DeletedRings[k] and v.save then
sv[k] = RK_SerializeDescription(v)
end
end
sv.OPieDeletedRings, sv.OPieFlagStore = next(RK_DeletedRings) and RK_DeletedRings, next(RK_FlagStore) and RK_FlagStore
elseif event == "LOGIN" and loadLock == 0 then
5 years ago
local name, realm, _ = UnitFullName("player")
FULLNAME, FACTION, _, CLASS = name .. '-' .. realm, UnitFactionGroup("player"), UnitClass("player")
local deleted, flags, mousemap = SV.OPieDeletedRings or RK_DeletedRings, SV.OPieFlagStore or RK_FlagStore
mousemap, SV.OPieDeletedRings, SV.OPieFlagStore = {PRIMARY=PC:GetOption("PrimaryButton"), SECONDARY=PC:GetOption("SecondaryButton")}
5 years ago
for k,v in pairs(flags) do RK_FlagStore[k] = v end
local storageVersion = flags.StoreVersion or (flags.FlushedDefaultColors and 1) or 0
storageVersion = type(storageVersion) == "number" and storageVersion or 0
local onOpenFlush = storageVersion < 2
5 years ago
RK_FlagStore.StoreVersion, RK_FlagStore.FlushedDefaultColors = 2, nil
loadLock = 1; C_Timer.After(0, unlockSync)
5 years ago
for k, v in pairs(queue) do
if v.hotkey then v.hotkey = v.hotkey:gsub("[^-; ]+", mousemap) end
if deleted[k] == nil and SV[k] == nil then
securecall(RK_SetRingDesc, k, v)
5 years ago
SV[k] = nil
elseif deleted[k] then
RK_DeletedRings[k] = true
end
end
for k, v in pairs(SV) do
if type(v) == "table" then
if onOpenFlush and v.onOpen ~= nil then
v.quarantineOnOpen, v.onOpen = v.onOpen, nil
end
end
securecall(RK_SetRingDesc, k, v)
5 years ago
end
elseif event == "POST-LOGIN" and loadLock == 1 then
unlockSync()
5 years ago
collectgarbage("collect")
end
end
local function ringIterator(isDeleted, k)
local nk, v = next(isDeleted and RK_DeletedRings or RK_RingDesc, k)
if nk and RK_FluxRings[nk] then
return ringIterator(isDeleted, nk)
elseif nk and isDeleted then
5 years ago
return RK_IsRelevantRingDescription(queue[nk]) and nk or ringIterator(isDeleted, nk)
elseif nk then
return nk, v.name or nk, RK_CollectionIDs[nk] ~= nil, #v, v.internal, v.limit
end
end
function RK_SetRingDesc(name, desc)
assert(type(name) == "string" and (type(desc) == "table" or desc == false))
if loadLock == 0 then
5 years ago
queue[name] = desc
elseif desc == false then
if RK_RingDesc[name] then
OPie:SetRing(name, nil)
5 years ago
if RK_CollectionIDs[name] then RK_CollectionIDs[RK_CollectionIDs[name]] = nil end
RK_DeletedRings[name], RK_RingDesc[name], RK_CollectionIDs[name], SV[name] = queue[name] and true or nil
end
else
RK_RingDesc[name], RK_DeletedRings[name] = RK_SanitizeDescription(copy(desc)), nil
RK_SyncRing(name, true)
end
end
-- Public API
function api:GetVersion()
return MAJ, REV
5 years ago
end
function api:GenFreeRingName(base, reserved)
assert(type(base) == "string" and (reserved == nil or type(reserved) == "table"), 'Syntax: name = RK:GenFreeRingName("base"[, reservedNamesTable])', 2)
base = base:gsub("[^%a%d]", ""):sub(-10)
if base:match("^OPie") or not base:match("^%a") then base = "x" .. base end
local suffix, c = "", 1
while RK_RingDesc[base .. suffix] or queue[base .. suffix] or SV[base .. suffix] or (reserved and reserved[base .. suffix] ~= nil) or OPie:IsKnownRingName(base .. suffix) do
suffix, c = math.random(2^c), c < 30 and (c + 1) or c
end
return base .. suffix
end
function api:AddDefaultRing(name, desc)
assert(type(name) == "string" and type(desc) == "table", 'Syntax: RK:AddDefaultRing("name", descTable)', 2)
assert(queue[name] == nil and RK_RingDesc[name] == nil, 'A ring with this name already exists', 2)
queue[name] = copy(desc)
RK_SetRingDesc(name, queue[name])
end
function api:SetExternalRing(name, desc)
assert(type(name) == "string" and (type(desc) == "table" or desc == false), 'Syntax: RK:SetExternalRing("name", descTable or false)', 2)
assert(queue[name] == nil and (RK_RingDesc[name] == nil or RK_FluxRings[name]), "A ring with this name already exists and cannot be modified", 2)
RK_FluxRings[name] = true
RK_SetRingDesc(name, desc)
end
-- HIDDEN, UNSUPPORTED METHODS: May vanish at any time.
local hum = {}
setmetatable(api, {__index=hum})
hum.HUM = hum
function hum:SetMountPreference(groundSpellID, airSpellID, dragonSpellID) -- DEPRECATED [2303/Y8]
assert((type(groundSpellID) == "number" or not groundSpellID) and
(type(airSpellID) == "number" or not airSpellID) and
(type(dragonSpellID) == "number" or not dragonSpellID),
'Syntax: groundSpellID, airSpellID = RK:SetMountPreference(groundSpellID|false|nil, airSpellID|false|nil, dragonSpellID|false|nil)', 2)
return IM:SetMountPreference(groundSpellID, airSpellID, dragonSpellID)
5 years ago
end
-- Private API: this just supports the configuration UI; no forward compatibility guarantees
function private:GetManagedRings()
return ringIterator, false, nil
end
function private:GetRingDescription(name, serialize)
assert(type(name) == "string", 'Syntax: desc = RK:GetRingDescription("name"[, serialize])', 2)
5 years ago
local ring = RK_RingDesc[name] and copy(RK_RingDesc[name]) or false
return serialize and ring and RK_SerializeDescription(ring) or ring
end
function private:GetRingInfo(name)
assert(type(name) == "string", 'Syntax: title, numSlices, isDefault, isOverriden = RK:GetRingInfo("name")', 2)
5 years ago
local ring = RK_RingDesc[name]
return ring and (ring.name or name), ring and #ring, not not queue[name], ring and ring.save
end
function private:SetRing(name, desc)
assert(type(name) == "string" and (type(desc) == "table" or desc == false), "Syntax: RK:SetRing(name, descTable or false)", 2)
RK_SetRingDesc(name, desc)
5 years ago
end
function private:GetRingSnapshot(name, bundleNested)
assert(type(name) == "string", 'Syntax: snapshot = RK:GetRingSnapshot("name"[, bundleNested])', 2)
3 years ago
if not RK_RingDesc[name] then return end
local props = copy(RK_RingDesc[name])
local q, m, haveMacroCache = {}, {}, false
repeat
local props = m[table.remove(q)] or props
RK_SerializeDescription(props)
props.limit, props.save = type(props.limit) == "string" and props.limit:match("[^A-Z]") and "PLAYER" or props.limit
for i=1,#props do
local v = props[i]
local st = v[1]
if st == nil and type(v.id) == "string" then
v.id, haveMacroCache = IM:EncodeCommands(v.id, haveMacroCache), true
3 years ago
elseif st == "ring" then
local sn = v[2]
if sn == name then
m[name] = 0
elseif bundleNested and RK_RingDesc[sn] and RK_RingDesc[sn].save and not m[sn] then
q[#q+1], m[sn] = sn, copy(RK_RingDesc[sn])
end
5 years ago
end
v.caption = nil -- DEPRECATED [2101/3.105/X4]
v.sliceToken = nil
end
3 years ago
until not q[1]
props._bundle = next(m) ~= nil and m or nil
return serialize(props)
5 years ago
end
function private:GetSnapshotRing(snap)
assert(type(snap) == "string", 'Syntax: desc, bundle = RK:GetSnapshotRing("snapshot")', 2)
3 years ago
if snap == "" then return end
local ok, root = pcall(unserialize, snap)
if not ok or type(root) ~= "table" then return end
local q, bun, bs = {}, {}, type(root._bundle) == "table" and root._bundle or nil
repeat
local ri = bun[table.remove(q)] or root
if type(ri.name) ~= "string" then return end
for i=1,#ri do
local v, st, sa = ri[i]
if not v then return end
st, sa = v[1], v[2]
v.caption = nil -- DEPRECATED [2101/3.105/X4]
if st == nil and type(v.id) == "string" then
v.id = IM:DecodeCommands(v.id)
3 years ago
elseif st == "ring" and bs and sa then
local bd = bs[sa]
if bd == 0 and not bun[sa] then
bun[sa] = 0
elseif type(bd) == "table" and not bun[sa] then
bun[sa], q[#q+1] = bd, sa
5 years ago
end
end
3 years ago
dropUnderscoreKeys(v)
end
ri.name = ri.name:gsub("|?|", "||")
ri.quarantineBind, ri.hotkey = type(ri.hotkey) == "string" and ri.hotkey or nil
ri.quarantineOnOpen, ri.onOpen = ri.onOpen, nil
dropUnderscoreKeys(ri)
until q[1] == nil
return root, bun
5 years ago
end
function private:IsRingSliceActive(ring, slice)
return RK_RingDesc[ring] and RK_RingDesc[ring][slice] and RK_RingDesc[ring][slice]._action and true or false
end
function private:SoftSync(name)
assert(type(name) == "string", 'Syntax: RK:SoftSync("name")', 2)
securecall(RK_SyncRing, name)
end
function private:RestoreDefaults(name)
if name == nil then
for k, v in pairs(queue) do
if RK_IsRelevantRingDescription(v) then
self:SetRing(k, queue[k])
end
end
elseif queue[name] then
self:SetRing(name, queue[name])
end
end
function private:GetDefaultDescription(name)
assert(type(name) == "string", 'Syntax: desc = RK:GetDefaultDescription("name")', 2)
return queue[name] and copy(queue[name]) or false
end
function private:GetDeletedRings()
return ringIterator, true, nil
5 years ago
end
SV, T.RingKeeper, OPie.CustomRings, private.pub = PC:RegisterPVar("RingKeeper", SV, svInitializer), private, api, api
5 years ago
AB:AddObserver("internal.collection.preopen", abPreOpen)