big refactoring

This commit is contained in:
Manuel Simon Hirsig
2016-08-20 15:21:03 +02:00
parent 180905f089
commit dedbe949c8
3 changed files with 134 additions and 122 deletions
+21 -18
View File
@@ -1,11 +1,11 @@
setglobal('aux', aux_module 'core')
import 'util'
public.version = '5.0.0'
local temp
do
local setn = g.table.setn
local table_pool, locked = {}
local setn, tinsert, tremove = g.table.setn, g.tinsert, g.tremove
local table_pool, locked = {}, {}
local function wipe(t) -- like with a cloth or something
for k in t do t[k] = nil end
setn(t, 0)
@@ -14,12 +14,14 @@ do
local function release(t)
locked[t] = nil
tinsert(table_pool, t)
aux.log(getn(table_pool))
end
function public.temp()
function temp()
local t = tremove(table_pool)
t = t and wipe(t) or {}
locked[t] = true
end
public.temp = temp
function public.static()
local t = tremove(table_pool)
t = t and wipe(t) or {}
@@ -28,23 +30,22 @@ do
function public.array(...) locked[arg] = true end
function public.set(...)
local set = temp()
for i=1,arg.n do self[arg[i]] = true end
for i=1,arg.n do set[arg[i]] = true end
release(arg)
return set
end
end
local temp = temp
do
local aux_module, getfenv, setfenv, gfind, tinsert = g.aux_module, g.getfenv, g.setfenv, g.string.gfind, g.tinsert
local root = (function() aux_module 'modules' return getfenv() end)()
local aux_module, getfenv, setfenv, gfind = g.aux_module, g.getfenv, g.setfenv, g.string.gfind
aux_module 'modules'
function public.module(path)
local parts = gfind(path, '[%a_][%w_]*')
local name = parts() or ''
local env = root
local parts, name, env
parts, name = gfind(path, '[%a_][%w_]*'), 'modules'
for part in parts do
env.public[part], env = (function() return aux_module(name), getfenv() end)()
env.import('modules', 'core', 'util')
name = name..'.'..part
name = name..'/'..part
end
setfenv(2, env)
end
@@ -54,7 +55,9 @@ local event_frame = CreateFrame 'Frame'
for _, event in {'VARIABLES_LOADED', 'ADDON_LOADED', 'AUCTION_HOUSE_SHOW', 'AUCTION_HOUSE_CLOSED', 'AUCTION_BIDDER_LIST_UPDATE', 'AUCTION_OWNED_LIST_UPDATE'} do
event_frame:RegisterEvent(event)
end
ADDON_LOADED = {}
LOADED, LOADED2, ADDON_LOADED = {}, {}, {}
function public.accessor.LOAD(f) tinsert(LOAD, f) end
event_frame:SetScript('OnEvent', function()
if event == 'ADDON_LOADED' then
if ADDON_LOADED[arg1] then
@@ -63,11 +66,11 @@ event_frame:SetScript('OnEvent', function()
else
m[event]()
if event == 'VARIABLES_LOADED' then
for _, env in module_envs do
if env.LOAD then
env.LOAD()
end
end
-- for _, env in module_envs do
-- if env.LOAD then
-- env.LOAD()
-- end
-- end
log('v'..version..' loaded.')
end
end