Possibly added hopper support
This commit is contained in:
parent
ac3c80eaba
commit
765786d44c
|
@ -9,10 +9,10 @@ function get_element_constructor_formspec()
|
|||
"label[5,1;Output]",
|
||||
"list[context;dst;5,2;1,1;]",
|
||||
"list[current_player;main;0,5;8,4;]",
|
||||
"listring[context;fuel]",
|
||||
"listring[current_player;main]",
|
||||
"listring[context;src]",
|
||||
"listring[current_player;main]",
|
||||
"listring[context;fuel]",
|
||||
"listring[current_player;main]",
|
||||
"listring[context;dst]",
|
||||
"listring[current_player;main]"
|
||||
}
|
||||
|
@ -33,10 +33,10 @@ function get_element_constructor_formspec()
|
|||
mcl_formspec.get_itemslot_bg(0,5,9,3),
|
||||
"list[current_player;main;0,8.5;9,1;]",
|
||||
mcl_formspec.get_itemslot_bg(0,8.5,9,1),
|
||||
"listring[context;fuel]",
|
||||
"listring[current_player;main]",
|
||||
"listring[context;src]",
|
||||
"listring[current_player;main]",
|
||||
"listring[context;fuel]",
|
||||
"listring[current_player;main]",
|
||||
"listring[context;dst]",
|
||||
"listring[current_player;main]"
|
||||
}
|
||||
|
@ -159,7 +159,7 @@ minetest.register_node("exchangeclone:element_constructor", {
|
|||
"ee_constructor_right.png",
|
||||
"ee_constructor_right.png"
|
||||
},
|
||||
groups = {cracky = 2},
|
||||
groups = {cracky = 2, container = 4},
|
||||
is_ground_content = false,
|
||||
can_dig=can_dig,
|
||||
on_timer = on_timer,
|
||||
|
|
|
@ -1,15 +1,17 @@
|
|||
--Renamed "fuel" inventory to "main" to work with hoppers
|
||||
|
||||
function get_element_deconstructor_formspec()
|
||||
if not exchangeclone.mineclone then
|
||||
local formspec = {
|
||||
"size[8,9]",
|
||||
"label[2,1;Fuel]",
|
||||
"list[context;fuel;2,2;1,1;]",
|
||||
"list[context;main;2,2;1,1;]",
|
||||
"label[5,1;Orb]",
|
||||
"list[context;dst;5,2;1,1;]",
|
||||
"list[current_player;main;0,5;8,4;]",
|
||||
"listring[context;dst]",
|
||||
"listring[context;main]",
|
||||
"listring[current_player;main]",
|
||||
"listring[context;fuel]",
|
||||
"listring[context;dst]",
|
||||
"listring[current_player;main]"
|
||||
}
|
||||
return table.concat(formspec, "")
|
||||
|
@ -17,7 +19,7 @@ function get_element_deconstructor_formspec()
|
|||
local formspec = {
|
||||
"size[9,10]",
|
||||
"label[2,1;Fuel]",
|
||||
"list[context;fuel;2,2;1,1;]",
|
||||
"list[context;main;2,2;1,1;]",
|
||||
mcl_formspec.get_itemslot_bg(2,2,1,1),
|
||||
"label[5,1;Orb]",
|
||||
"list[context;dst;5,2;1,1;]",
|
||||
|
@ -26,10 +28,10 @@ function get_element_deconstructor_formspec()
|
|||
mcl_formspec.get_itemslot_bg(0,5,9,3),
|
||||
"list[current_player;main;0,8.5;9,1;]",
|
||||
mcl_formspec.get_itemslot_bg(0,8.5,9,1),
|
||||
"listring[context;main]",
|
||||
"listring[current_player;main]",
|
||||
"listring[context;fuel]",
|
||||
"listring[current_player;main]",
|
||||
"listring[context;dst]"
|
||||
"listring[context;dst]",
|
||||
"listring[current_player;main]"
|
||||
}
|
||||
return table.concat(formspec, "")
|
||||
end
|
||||
|
@ -38,7 +40,7 @@ end
|
|||
local function can_dig(pos, player)
|
||||
local meta = minetest.get_meta(pos);
|
||||
local inv = meta:get_inventory()
|
||||
return inv:is_empty("fuel") and inv:is_empty("dst")
|
||||
return inv:is_empty("main") and inv:is_empty("dst")
|
||||
end
|
||||
|
||||
local function on_timer(pos, elapsed)
|
||||
|
@ -47,12 +49,12 @@ local function on_timer(pos, elapsed)
|
|||
local update = true
|
||||
while elapsed > 0 and update do
|
||||
update = false
|
||||
if not inv:is_empty("dst") and not inv:is_empty("fuel") then
|
||||
if not inv:is_empty("dst") and not inv:is_empty("main") then
|
||||
-- remove one item from fuel inventory
|
||||
local fuel_stack = inv:get_stack("fuel", 1)
|
||||
local fuel_stack = inv:get_stack("main", 1)
|
||||
local energy_value = get_item_energy(fuel_stack:get_name())
|
||||
fuel_stack:set_count(fuel_stack:get_count() - 1)
|
||||
inv:set_stack("fuel", 1, fuel_stack)
|
||||
inv:set_stack("main", 1, fuel_stack)
|
||||
|
||||
-- only get 1 orb as we can only use one
|
||||
local dest_orb = inv:get_stack("dst", 1)
|
||||
|
@ -71,7 +73,7 @@ end
|
|||
local function on_construct(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local inv = meta:get_inventory()
|
||||
inv:set_size("fuel", 1)
|
||||
inv:set_size("main", 1)
|
||||
inv:set_size("dst", 1)
|
||||
meta:set_string("formspec", get_element_deconstructor_formspec())
|
||||
meta:set_string("infotext", "Element Deconstructor")
|
||||
|
@ -91,7 +93,7 @@ local function allow_metadata_inventory_put(pos, listname, index, stack, player)
|
|||
else
|
||||
return 0
|
||||
end
|
||||
elseif listname == "fuel" then
|
||||
elseif listname == "main" then
|
||||
return stack:get_count()
|
||||
end
|
||||
end
|
||||
|
@ -112,7 +114,7 @@ end
|
|||
|
||||
local function on_blast(pos)
|
||||
local drops = {}
|
||||
default.get_inventory_drops(pos, "fuel", drops)
|
||||
default.get_inventory_drops(pos, "main", drops)
|
||||
default.get_inventory_drops(pos, "dst", drops)
|
||||
drops[#drops+1] = "exchangeclone:element_deconstructor"
|
||||
minetest.remove_node(pos)
|
||||
|
@ -129,7 +131,7 @@ minetest.register_node("exchangeclone:element_deconstructor", {
|
|||
"ee_deconstructor_right.png",
|
||||
"ee_deconstructor_right.png"
|
||||
},
|
||||
groups = {cracky = 2},
|
||||
groups = {cracky = 2, container = 3},
|
||||
is_ground_content = false,
|
||||
can_dig = can_dig,
|
||||
on_timer = on_timer,
|
||||
|
|
|
@ -3,9 +3,9 @@ function get_energy_collector_formspec()
|
|||
local formspec = {
|
||||
"size[8,9]",
|
||||
"label[3,2;Orb]",
|
||||
"list[context;dst;4,2;1,1;]",
|
||||
"list[context;main;4,2;1,1;]",
|
||||
"list[current_player;main;0,5;8,4;]",
|
||||
"listring[context;dst]",
|
||||
"listring[context;main]",
|
||||
"listring[current_player;main]"
|
||||
}
|
||||
return table.concat(formspec, "")
|
||||
|
@ -13,14 +13,14 @@ function get_energy_collector_formspec()
|
|||
local formspec = {
|
||||
"size[9,10]",
|
||||
"label[3,2;Orb]",
|
||||
"list[context;dst;4,2;1,1;]",
|
||||
"list[context;main;4,2;1,1;]",
|
||||
mcl_formspec.get_itemslot_bg(4,2,1,1),
|
||||
"list[current_player;main;0,5;9,3;9]",
|
||||
mcl_formspec.get_itemslot_bg(0,5,9,3),
|
||||
"list[current_player;main;0,8.5;9,1;]",
|
||||
mcl_formspec.get_itemslot_bg(0,8.5,9,1),
|
||||
"listring[current_player;main]",
|
||||
"listring[context;dst]"
|
||||
"listring[context;main]"
|
||||
}
|
||||
return table.concat(formspec, "")
|
||||
end
|
||||
|
@ -29,7 +29,7 @@ end
|
|||
local function can_dig(pos, player)
|
||||
local meta = minetest.get_meta(pos);
|
||||
local inv = meta:get_inventory()
|
||||
return inv:is_empty("dst")
|
||||
return inv:is_empty("main")
|
||||
end
|
||||
|
||||
local function on_timer(pos, elapsed)
|
||||
|
@ -39,18 +39,18 @@ local function on_timer(pos, elapsed)
|
|||
-- get block above
|
||||
pos.y = pos.y + 1
|
||||
|
||||
if inv:is_empty("dst") then
|
||||
if inv:is_empty("main") then
|
||||
-- stop timer
|
||||
minetest.get_node_timer(pos):stop()
|
||||
return false
|
||||
end
|
||||
|
||||
if minetest.get_natural_light(pos) == 15 then
|
||||
local dest_orb = inv:get_stack("dst", 1)
|
||||
local dest_orb = inv:get_stack("main", 1)
|
||||
local stored = dest_orb:get_meta():get_int("stored_charge") or 0
|
||||
stored = stored + 1
|
||||
dest_orb:get_meta():set_int("stored_charge", stored)
|
||||
inv:set_stack("dst", 1, dest_orb)
|
||||
inv:set_stack("main", 1, dest_orb)
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
@ -58,7 +58,7 @@ end
|
|||
local function on_construct(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local inv = meta:get_inventory()
|
||||
inv:set_size("dst", 1)
|
||||
inv:set_size("main", 1)
|
||||
meta:set_string("formspec", get_energy_collector_formspec())
|
||||
meta:set_string("infotext", "Energy Collector")
|
||||
on_timer(pos, 0)
|
||||
|
@ -70,7 +70,7 @@ local function allow_metadata_inventory_put(pos, listname, index, stack, player)
|
|||
end
|
||||
local meta = minetest.get_meta(pos)
|
||||
local inv = meta:get_inventory()
|
||||
if listname == "dst" then
|
||||
if listname == "main" then
|
||||
if stack:get_name() == "exchangeclone:exchange_orb" then
|
||||
return stack:get_count()
|
||||
else
|
||||
|
@ -95,7 +95,7 @@ end
|
|||
|
||||
local function on_blast(pos)
|
||||
local drops = {}
|
||||
default.get_inventory_drops(pos, "dst", drops)
|
||||
default.get_inventory_drops(pos, "main", drops)
|
||||
drops[#drops+1] = "exchangeclone:energy_collector"
|
||||
minetest.remove_node(pos)
|
||||
return drops
|
||||
|
@ -111,7 +111,7 @@ minetest.register_node("exchangeclone:energy_collector", {
|
|||
"ee_energy_collector_right.png",
|
||||
"ee_energy_collector_right.png"
|
||||
},
|
||||
groups = {cracky = 2},
|
||||
groups = {cracky = 2, container = 2},
|
||||
is_ground_content = false,
|
||||
can_dig = can_dig,
|
||||
on_timer = on_timer,
|
||||
|
|
Loading…
Reference in New Issue