mirror of
https://github.com/theFox6/microexpansion.git
synced 2024-11-22 15:13:51 +01:00
add pipeworks support
This commit is contained in:
parent
d351ec7527
commit
d1f7d633c8
@ -1 +1,2 @@
|
|||||||
default
|
default
|
||||||
|
pipeworks?
|
||||||
|
1
mod.conf
1
mod.conf
@ -1,3 +1,4 @@
|
|||||||
name = microexpansion
|
name = microexpansion
|
||||||
description = A storage managing solution to get an overview over all your items.
|
description = A storage managing solution to get an overview over all your items.
|
||||||
depends = default
|
depends = default
|
||||||
|
optional_depends = pipeworks
|
||||||
|
@ -220,7 +220,7 @@ local function create_inventory(net)
|
|||||||
local slots, items = 0, 0
|
local slots, items = 0, 0
|
||||||
-- Get amount of items in drive
|
-- Get amount of items in drive
|
||||||
for i = 1, max_slots do
|
for i = 1, max_slots do
|
||||||
local dstack = inv:get_stack("main", i)
|
local dstack = inv:get_stack(listname, i)
|
||||||
if dstack:get_name() ~= "" then
|
if dstack:get_name() ~= "" then
|
||||||
slots = slots + 1
|
slots = slots + 1
|
||||||
local num = dstack:get_count()
|
local num = dstack:get_count()
|
||||||
|
@ -10,11 +10,13 @@ local function load_drives()
|
|||||||
if f then
|
if f then
|
||||||
netdrives = minetest.deserialize(f:read("*all")) or {}
|
netdrives = minetest.deserialize(f:read("*all")) or {}
|
||||||
f:close()
|
f:close()
|
||||||
|
--[[
|
||||||
if type(res) == "table" then
|
if type(res) == "table" then
|
||||||
for _,d in pairs(res) do
|
for _,d in pairs(res) do
|
||||||
table.insert(netdrives,d)
|
table.insert(netdrives,d)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
]]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
-- microexpansion/machines.lua
|
-- microexpansion/machines.lua
|
||||||
|
|
||||||
local me = microexpansion
|
local me = microexpansion
|
||||||
|
local pipeworks_enabled = minetest.get_modpath("pipeworks") and true or false
|
||||||
|
|
||||||
-- [me chest] Get formspec
|
-- [me chest] Get formspec
|
||||||
local function chest_formspec(pos, start_id, listname, page_max, q)
|
local function chest_formspec(pos, start_id, listname, page_max, q)
|
||||||
@ -80,9 +81,6 @@ local function update_chest(pos,_,ev)
|
|||||||
meta:set_string("formspec", chest_formspec(pos, 1, "main", page_max))
|
meta:set_string("formspec", chest_formspec(pos, 1, "main", page_max))
|
||||||
end
|
end
|
||||||
|
|
||||||
--FIXME: items inserted in a search inventory vanish
|
|
||||||
--TODO: add a main inv that transfers to the network
|
|
||||||
|
|
||||||
-- [me chest] Register node
|
-- [me chest] Register node
|
||||||
microexpansion.register_node("term", {
|
microexpansion.register_node("term", {
|
||||||
description = "ME Terminal",
|
description = "ME Terminal",
|
||||||
@ -104,7 +102,7 @@ microexpansion.register_node("term", {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = { cracky = 1, me_connect = 1 },
|
groups = { cracky = 1, me_connect = 1, tubedevice = 1, tubedevice_receiver = 1 },
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
me_update = update_chest,
|
me_update = update_chest,
|
||||||
@ -121,14 +119,50 @@ microexpansion.register_node("term", {
|
|||||||
end,
|
end,
|
||||||
after_destruct = function(pos)
|
after_destruct = function(pos)
|
||||||
me.send_event(pos,"disconnect")
|
me.send_event(pos,"disconnect")
|
||||||
|
end,
|
||||||
|
on_metadata_inventory_put = function(pos, listname, _, stack)
|
||||||
|
local net = me.get_connected_network(pos)
|
||||||
|
local inv = net:get_inventory()
|
||||||
|
me.insert_item(stack, inv, "main")
|
||||||
end,
|
end,
|
||||||
on_metadata_inventory_take = function(pos, listname, _, stack)
|
on_metadata_inventory_take = function(pos, listname, _, stack)
|
||||||
if listname == "search" then
|
local net = me.get_connected_network(pos)
|
||||||
local net = me.get_connected_network(pos)
|
local inv = net:get_inventory()
|
||||||
local inv = net:get_inventory()
|
inv:remove_item("main", stack)
|
||||||
inv:remove_item("main", stack)
|
|
||||||
end
|
|
||||||
end,
|
end,
|
||||||
|
tube = {
|
||||||
|
can_insert = function(pos, _, stack) --pos, node, stack, direction
|
||||||
|
local net = me.get_connected_network(pos)
|
||||||
|
local inv = net:get_inventory()
|
||||||
|
local max_slots = inv:get_size("main")
|
||||||
|
local max_items = net.capacity_cache
|
||||||
|
|
||||||
|
local slots, items = 0, 0
|
||||||
|
-- Get amount of items in drive
|
||||||
|
for i = 1, max_slots do
|
||||||
|
local dstack = inv:get_stack("main", i)
|
||||||
|
if dstack:get_name() ~= "" then
|
||||||
|
slots = slots + 1
|
||||||
|
local num = dstack:get_count()
|
||||||
|
if num == 0 then num = 1 end
|
||||||
|
items = items + num
|
||||||
|
end
|
||||||
|
end
|
||||||
|
items = items + stack:get_count()
|
||||||
|
return max_items > items
|
||||||
|
end,
|
||||||
|
insert_object = function(pos, _, stack)
|
||||||
|
local net = me.get_connected_network(pos)
|
||||||
|
local inv = net:get_inventory()
|
||||||
|
me.insert_item(stack, inv, "main")
|
||||||
|
net:set_storage_space(true)
|
||||||
|
--TODO: leftover
|
||||||
|
return ItemStack()
|
||||||
|
end,
|
||||||
|
connect_sides = {left=1, right=1, front=1, back=1, top=1, bottom=1},
|
||||||
|
},
|
||||||
|
after_place_node = pipeworks_enabled and pipeworks.after_place,
|
||||||
|
after_dig_node = pipeworks_enabled and pipeworks.after_dig,
|
||||||
on_receive_fields = function(pos, _, fields, sender)
|
on_receive_fields = function(pos, _, fields, sender)
|
||||||
local net,cp = me.get_connected_network(pos)
|
local net,cp = me.get_connected_network(pos)
|
||||||
if net then
|
if net then
|
||||||
|
Loading…
Reference in New Issue
Block a user