Add registered_ores and registered_decorations

This commit is contained in:
ShadowNinja 2015-01-04 21:30:55 -05:00 committed by Nils Dagsson Moskopp
parent c2450727a1
commit 43ee012597
Signed by: erle
GPG Key ID: A3BC671C35191080
1 changed files with 22 additions and 7 deletions

View File

@ -226,13 +226,6 @@ function core.register_alias(name, convert_to)
end
end
local register_biome_raw = core.register_biome
core.registered_biomes = {}
function core.register_biome(biome)
core.registered_biomes[biome.name] = biome
register_biome_raw(biome)
end
function core.on_craft(itemstack, player, old_craft_list, craft_inv)
for _, func in ipairs(core.registered_on_crafts) do
itemstack = func(itemstack, player, old_craft_list, craft_inv) or itemstack
@ -375,6 +368,13 @@ end
-- Callback registration
--
local register_biome_raw = core.register_biome
core.registered_biomes = {}
function core.register_biome(biome)
core.registered_biomes[biome.name] = biome
register_biome_raw(biome)
end
local function make_registration()
local t = {}
local registerfunc = function(func) table.insert(t, func) end
@ -387,6 +387,21 @@ local function make_registration_reverse()
return t, registerfunc
end
local function make_registration_wrap(name)
local list = {}
local full_name = "register_"..name
local orig_func = core[full_name]
core[full_name] = function(def)
table.insert(list, def)
orig_func(def)
end
return list
end
core.registered_ores = make_registration_wrap("ore")
core.registered_decorations = make_registration_wrap("decoration")
core.registered_on_chat_messages, core.register_on_chat_message = make_registration()
core.registered_globalsteps, core.register_globalstep = make_registration()
core.registered_playerevents, core.register_playerevent = make_registration()