2017-01-26 17:34:15 +01:00
|
|
|
-- define global
|
2017-01-22 23:54:42 +01:00
|
|
|
hopper = {}
|
2017-01-26 17:34:15 +01:00
|
|
|
|
2017-02-03 04:14:10 +01:00
|
|
|
-- internationalization boilerplate
|
2017-02-03 04:03:24 +01:00
|
|
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
local S, NS = dofile(MP.."/intllib.lua")
|
|
|
|
|
2017-02-25 15:12:21 +01:00
|
|
|
if minetest.get_modpath("default") then
|
2017-03-31 08:58:28 +02:00
|
|
|
hopper.formspec_bg = default.gui_bg .. default.gui_bg_img .. default.gui_slots
|
2017-01-22 23:54:42 +01:00
|
|
|
else
|
2017-03-31 08:58:28 +02:00
|
|
|
hopper.formspec_bg = "bgcolor[#080808BB;true]" .. "listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]"
|
2017-02-05 05:29:23 +01:00
|
|
|
end
|
|
|
|
|
2017-03-31 08:58:28 +02:00
|
|
|
dofile(MP.."/config.lua")
|
|
|
|
dofile(MP.."/api.lua")
|
|
|
|
dofile(MP.."/utility.lua")
|
|
|
|
dofile(MP.."/doc.lua")
|
|
|
|
dofile(MP.."/nodes/hoppers.lua")
|
|
|
|
dofile(MP.."/nodes/chute.lua")
|
|
|
|
dofile(MP.."/nodes/sorter.lua")
|
|
|
|
dofile(MP.."/crafts.lua")
|
|
|
|
dofile(MP.."/abms.lua")
|
2017-02-05 05:29:23 +01:00
|
|
|
|
|
|
|
|
2017-02-24 04:36:40 +01:00
|
|
|
-------------------------------------------------------------------------------------------
|
|
|
|
-- Formspec handling
|
|
|
|
|
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
|
|
if "hopper_formspec:" == string.sub(formname, 1, 16) then
|
|
|
|
local pos = minetest.string_to_pos(string.sub(formname, 17, -1))
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local eject_setting = meta:get_string("eject") == "true"
|
|
|
|
if fields.eject then
|
|
|
|
if eject_setting then
|
|
|
|
meta:set_string("eject", nil)
|
|
|
|
else
|
|
|
|
meta:set_string("eject", "true")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
2016-11-12 12:00:09 +01:00
|
|
|
|
2017-01-22 23:54:42 +01:00
|
|
|
-- add lucky blocks
|
2016-11-12 12:00:09 +01:00
|
|
|
if minetest.get_modpath("lucky_block") then
|
|
|
|
lucky_block:add_blocks({
|
|
|
|
{"dro", {"hopper:hopper"}, 3},
|
|
|
|
{"nod", "default:lava_source", 1},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2017-03-31 08:58:28 +02:00
|
|
|
print (S("[MOD] Hopper loaded"))
|