2019-10-27 13:14:37 +03:00
|
|
|
--[[
|
|
|
|
|
|
|
|
TechAge
|
|
|
|
=======
|
|
|
|
|
|
|
|
Copyright (C) 2019 Joachim Stolberg
|
|
|
|
|
|
|
|
GPL v3
|
|
|
|
See LICENSE.txt for more information
|
|
|
|
|
|
|
|
TA3/TA4 Tank
|
|
|
|
|
|
|
|
]]--
|
|
|
|
|
|
|
|
local S2P = minetest.string_to_pos
|
|
|
|
local P2S = minetest.pos_to_string
|
|
|
|
local M = minetest.get_meta
|
|
|
|
local S = techage.S
|
2019-11-03 01:39:10 +03:00
|
|
|
local LQD = function(pos) return (minetest.registered_nodes[techage.get_node_lvm(pos).name] or {}).liquid end
|
2019-10-27 13:14:37 +03:00
|
|
|
local Pipe = techage.LiquidPipe
|
|
|
|
local liquid = techage.liquid
|
|
|
|
|
2019-11-03 01:39:10 +03:00
|
|
|
local CAPACITY = 1000
|
|
|
|
|
|
|
|
|
|
|
|
local function formspec_tank(x, y, mem)
|
2019-10-27 13:14:37 +03:00
|
|
|
local itemname = "techage:liquid"
|
2019-11-03 01:39:10 +03:00
|
|
|
if mem.liquid and mem.liquid.amount and mem.liquid.amount > 0 and mem.liquid.name then
|
|
|
|
itemname = mem.liquid.name.." "..mem.liquid.amount
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
|
|
|
return "container["..x..","..y.."]"..
|
|
|
|
"background[0,0;3,2.05;techage_form_grey.png]"..
|
|
|
|
"image[0,0;1,1;techage_form_input_arrow.png]"..
|
|
|
|
techage.item_image(1, 0, itemname)..
|
|
|
|
"image[2,0;1,1;techage_form_output_arrow.png]"..
|
|
|
|
"image[1,1;1,1;techage_form_arrow.png]"..
|
|
|
|
"list[context;src;0,1;1,1;]"..
|
|
|
|
"list[context;dst;2,1;1,1;]"..
|
|
|
|
--"listring[]"..
|
|
|
|
"container_end[]"
|
|
|
|
end
|
|
|
|
|
2019-11-03 01:39:10 +03:00
|
|
|
local function formspec(mem)
|
|
|
|
local update = ((mem.countdown or 0) > 0 and mem.countdown) or S("Update")
|
2019-10-27 13:14:37 +03:00
|
|
|
return "size[8,6]"..
|
|
|
|
default.gui_bg..
|
|
|
|
default.gui_bg_img..
|
|
|
|
default.gui_slots..
|
2019-11-03 01:39:10 +03:00
|
|
|
formspec_tank(2, 0, mem)..
|
|
|
|
"button[5.5,0.5;2,1;update;"..update.."]"..
|
2019-10-27 13:14:37 +03:00
|
|
|
"list[current_player;main;0,2.3;8,4;]"
|
|
|
|
end
|
|
|
|
|
2019-11-03 01:39:10 +03:00
|
|
|
local function fill_container(pos, inv)
|
|
|
|
local mem = tubelib2.get_mem(pos)
|
|
|
|
mem.liquid = mem.liquid or {}
|
|
|
|
mem.liquid.amount = mem.liquid.amount or 0
|
|
|
|
local empty_container = inv:get_stack("src", 1):get_name()
|
|
|
|
local full_container = liquid.get_full_container(empty_container, mem.liquid.name)
|
|
|
|
local ldef = liquid.get_liquid_def(full_container)
|
|
|
|
if ldef and mem.liquid.amount - ldef.size >= 0 then
|
|
|
|
if inv:room_for_item("dst", ItemStack(full_container)) then
|
|
|
|
inv:remove_item("src", ItemStack(empty_container))
|
|
|
|
inv:add_item("dst", ItemStack(full_container))
|
|
|
|
mem.liquid.amount = mem.liquid.amount - ldef.size
|
|
|
|
if mem.liquid.amount == 0 then
|
|
|
|
mem.liquid.name = nil
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-03 01:39:10 +03:00
|
|
|
local function empty_container(pos, inv)
|
|
|
|
local mem = tubelib2.get_mem(pos)
|
|
|
|
mem.liquid = mem.liquid or {}
|
|
|
|
mem.liquid.amount = mem.liquid.amount or 0
|
|
|
|
local stack = inv:get_stack("src", 1)
|
|
|
|
local ldef = liquid.get_liquid_def(stack:get_name())
|
|
|
|
if ldef and (not mem.liquid.name or ldef.inv_item == mem.liquid.name) then
|
|
|
|
local capa = LQD(pos).capa
|
|
|
|
local amount = stack:get_count() * ldef.size
|
|
|
|
if mem.liquid.amount + amount <= capa then
|
|
|
|
if inv:room_for_item("dst", ItemStack(ldef.container)) then
|
|
|
|
inv:remove_item("src", stack)
|
|
|
|
inv:add_item("dst", ItemStack(ldef.container))
|
|
|
|
mem.liquid.amount = mem.liquid.amount + amount
|
|
|
|
mem.liquid.name = ldef.inv_item
|
|
|
|
end
|
|
|
|
end
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-03 01:39:10 +03:00
|
|
|
local function move_item(pos, stack)
|
2019-10-27 13:14:37 +03:00
|
|
|
local mem = tubelib2.get_mem(pos)
|
|
|
|
local inv = M(pos):get_inventory()
|
2019-11-03 01:39:10 +03:00
|
|
|
if liquid.is_container_empty(stack:get_name()) then
|
|
|
|
fill_container(pos, inv)
|
|
|
|
else
|
|
|
|
empty_container(pos, inv)
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
2019-11-03 01:39:10 +03:00
|
|
|
M(pos):set_string("formspec", formspec(mem))
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
local function allow_metadata_inventory_put(pos, listname, index, stack, player)
|
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return 0
|
|
|
|
end
|
2019-11-03 01:39:10 +03:00
|
|
|
return 1
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
local function allow_metadata_inventory_take(pos, listname, index, stack, player)
|
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
return stack:get_count()
|
|
|
|
end
|
|
|
|
|
2019-11-03 01:39:10 +03:00
|
|
|
local function allow_metadata_inventory_move()
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
|
|
|
|
local function on_metadata_inventory_put(pos, listname, index, stack, player)
|
|
|
|
minetest.after(0.5, move_item, pos, stack)
|
|
|
|
end
|
|
|
|
|
2019-10-27 13:14:37 +03:00
|
|
|
local function on_rightclick(pos)
|
|
|
|
local mem = tubelib2.get_mem(pos)
|
2019-11-03 01:39:10 +03:00
|
|
|
mem.countdown = 10
|
|
|
|
M(pos):set_string("formspec", formspec(mem))
|
|
|
|
minetest.get_node_timer(pos):start(2)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function on_receive_fields(pos, formname, fields, player)
|
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local mem = tubelib2.get_mem(pos)
|
|
|
|
mem.countdown = 10
|
|
|
|
M(pos):set_string("formspec", formspec(mem))
|
|
|
|
minetest.get_node_timer(pos):start(2)
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
local function can_dig(pos, player)
|
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return false
|
|
|
|
end
|
2019-11-03 01:39:10 +03:00
|
|
|
local mem = tubelib2.get_mem(pos)
|
2019-10-27 13:14:37 +03:00
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
2019-11-03 01:39:10 +03:00
|
|
|
return inv:is_empty("src") and inv:is_empty("dst") and (mem.liquid.amount or 0) == 0
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_node("techage:ta3_tank", {
|
|
|
|
description = S("TA3 Tank"),
|
|
|
|
tiles = {
|
|
|
|
-- up, down, right, left, back, front
|
|
|
|
"techage_filling_ta3.png^techage_frame_ta3_top.png",
|
|
|
|
"techage_filling_ta3.png^techage_frame_ta3.png",
|
2019-11-03 01:39:10 +03:00
|
|
|
"techage_filling_ta3.png^techage_frame_ta3.png^techage_appl_tank.png",
|
|
|
|
"techage_filling_ta3.png^techage_frame_ta3.png^techage_appl_tank.png",
|
2019-10-27 13:14:37 +03:00
|
|
|
"techage_filling_ta3.png^techage_frame_ta3.png^techage_appl_tank.png",
|
|
|
|
"techage_filling_ta3.png^techage_frame_ta3.png^techage_appl_tank.png",
|
|
|
|
},
|
|
|
|
on_construct = function(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
inv:set_size('src', 1)
|
|
|
|
inv:set_size('dst', 1)
|
|
|
|
end,
|
|
|
|
after_place_node = function(pos, placer)
|
|
|
|
local meta = M(pos)
|
|
|
|
local mem = tubelib2.init_mem(pos)
|
|
|
|
mem.liquid = {}
|
|
|
|
local number = techage.add_node(pos, "techage:ta3_tank")
|
|
|
|
meta:set_string("node_number", number)
|
|
|
|
meta:set_string("owner", placer:get_player_name())
|
2019-11-03 01:39:10 +03:00
|
|
|
meta:set_string("formspec", formspec(mem))
|
2019-10-27 13:14:37 +03:00
|
|
|
meta:set_string("infotext", S("TA3 Tank").." "..number)
|
|
|
|
Pipe:after_place_node(pos)
|
|
|
|
end,
|
2019-11-03 01:39:10 +03:00
|
|
|
tubelib2_on_update2 = function(pos, dir, tlib2, node)
|
|
|
|
liquid.update_network(pos)
|
|
|
|
end,
|
|
|
|
on_timer = function(pos, elapsed)
|
|
|
|
local mem = tubelib2.get_mem(pos)
|
|
|
|
mem.countdown = mem.countdown - 1
|
|
|
|
M(pos):set_string("formspec", formspec(mem))
|
|
|
|
return mem.countdown > 0
|
2019-10-27 13:14:37 +03:00
|
|
|
end,
|
|
|
|
after_dig_node = function(pos, oldnode, oldmetadata, digger)
|
|
|
|
Pipe:after_dig_node(pos)
|
|
|
|
techage.remove_node(pos)
|
|
|
|
end,
|
|
|
|
liquid = {
|
2019-11-03 01:39:10 +03:00
|
|
|
capa = CAPACITY,
|
|
|
|
peek = liquid.srv_peek,
|
2019-10-27 13:14:37 +03:00
|
|
|
put = function(pos, indir, name, amount)
|
2019-11-03 01:39:10 +03:00
|
|
|
local leftover = liquid.srv_put(pos, indir, name, amount)
|
|
|
|
local inv = M(pos):get_inventory()
|
|
|
|
if not inv:is_empty("src") and inv:is_empty("dst") then
|
|
|
|
fill_container(pos, inv)
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
2019-11-03 01:39:10 +03:00
|
|
|
return leftover
|
2019-10-27 13:14:37 +03:00
|
|
|
end,
|
2019-11-03 01:39:10 +03:00
|
|
|
take = liquid.srv_take,
|
2019-10-27 13:14:37 +03:00
|
|
|
},
|
|
|
|
networks = {
|
|
|
|
pipe = {
|
2019-11-03 01:39:10 +03:00
|
|
|
sides = techage.networks.AllSides, -- Pipe connection sides
|
2019-10-27 13:14:37 +03:00
|
|
|
ntype = "tank",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
on_rightclick = on_rightclick,
|
2019-11-03 01:39:10 +03:00
|
|
|
on_receive_fields = on_receive_fields,
|
2019-10-27 13:14:37 +03:00
|
|
|
can_dig = can_dig,
|
|
|
|
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
|
|
|
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
2019-11-03 01:39:10 +03:00
|
|
|
allow_metadata_inventory_move = allow_metadata_inventory_move,
|
|
|
|
on_metadata_inventory_put = on_metadata_inventory_put,
|
2019-10-27 13:14:37 +03:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_rotate = screwdriver.disallow,
|
|
|
|
groups = {cracky=2},
|
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_metal_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
Pipe:add_secondary_node_names({"techage:ta3_tank"})
|
|
|
|
|
|
|
|
--minetest.register_node("techage:ta4_tank", {
|
|
|
|
-- description = S("TA4 Tank"),
|
|
|
|
-- tiles = {
|
|
|
|
-- -- up, down, right, left, back, front
|
|
|
|
-- "techage_filling_ta4.png^techage_frame_ta4_top.png",
|
|
|
|
-- "techage_filling_ta4.png^techage_frame_ta4.png",
|
2019-11-03 01:39:10 +03:00
|
|
|
-- "techage_filling_ta4.png^techage_frame_ta4.png^techage_appl_hole_pipe.png",
|
2019-10-27 13:14:37 +03:00
|
|
|
-- "techage_filling_ta4.png^techage_frame_ta4.png^techage_appl_hole_tube.png",
|
|
|
|
-- "techage_filling_ta4.png^techage_frame_ta4.png^techage_appl_tank.png",
|
|
|
|
-- "techage_filling_ta4.png^techage_frame_ta4.png^techage_appl_tank.png",
|
|
|
|
-- },
|
|
|
|
|
|
|
|
-- on_construct = function(pos)
|
|
|
|
-- local meta = minetest.get_meta(pos)
|
|
|
|
-- local inv = meta:get_inventory()
|
|
|
|
-- inv:set_size('src', 1)
|
|
|
|
-- inv:set_size('dst', 1)
|
|
|
|
-- end,
|
|
|
|
|
|
|
|
-- liquid = {
|
|
|
|
-- peek = function(pos, indir)
|
|
|
|
-- if indir == M(pos):get_int("indir") then
|
|
|
|
-- return liquid.srv_peek(pos, "main")
|
|
|
|
-- end
|
|
|
|
-- end,
|
|
|
|
-- put = function(pos, indir, name, amount)
|
|
|
|
-- if indir == M(pos):get_int("indir") then
|
|
|
|
-- return liquid.srv_put(pos, "main", name, amount)
|
|
|
|
-- end
|
|
|
|
-- end,
|
|
|
|
-- take = function(pos, indir, name, amount)
|
|
|
|
-- if indir == M(pos):get_int("indir") then
|
|
|
|
-- return liquid.srv_take(pos, "main", name, amount)
|
|
|
|
-- end
|
|
|
|
-- end,
|
|
|
|
|
|
|
|
-- },
|
|
|
|
-- on_rightclick = on_rightclick,
|
|
|
|
-- can_dig = can_dig,
|
|
|
|
-- allow_metadata_inventory_put = allow_metadata_inventory_put,
|
|
|
|
-- allow_metadata_inventory_take = allow_metadata_inventory_take,
|
|
|
|
-- paramtype2 = "facedir",
|
|
|
|
-- on_rotate = screwdriver.disallow,
|
|
|
|
-- groups = {cracky=2},
|
|
|
|
-- is_ground_content = false,
|
|
|
|
-- sounds = default.node_sound_metal_defaults(),
|
|
|
|
--})
|
|
|
|
|
|
|
|
---- for mechanical pipe connections
|
|
|
|
--techage.power.register_node({"techage:ta4_tank"}, {
|
|
|
|
-- conn_sides = {"R"},
|
|
|
|
-- power_network = Pipe,
|
|
|
|
-- after_place_node = function(pos, placer)
|
|
|
|
-- local meta = M(pos)
|
|
|
|
-- local mem = tubelib2.init_mem(pos)
|
|
|
|
-- mem.liquid = mem.liquid or {}
|
|
|
|
-- local number = techage.add_node(pos, "techage:ta4_tank")
|
|
|
|
-- meta:set_string("node_number", number)
|
|
|
|
-- meta:set_string("owner", placer:get_player_name())
|
|
|
|
-- local node = minetest.get_node(pos)
|
|
|
|
-- local indir = techage.side_to_indir("R", node.param2)
|
|
|
|
-- meta:set_int("indir", indir) -- from liquid point of view
|
2019-11-03 01:39:10 +03:00
|
|
|
-- meta:set_string("formspec", formspec(mem))
|
2019-10-27 13:14:37 +03:00
|
|
|
-- meta:set_string("infotext", S("TA4 Tank").." "..number)
|
|
|
|
-- end,
|
|
|
|
-- after_dig_node = function(pos, oldnode, oldmetadata, digger)
|
|
|
|
-- techage.remove_node(pos)
|
|
|
|
-- end,
|
|
|
|
--})
|
|
|
|
|
|
|
|
|
|
|
|
techage.register_node({"techage:ta3_tank", "techage:ta4_tank"}, {
|
|
|
|
on_pull_item = function(pos, in_dir, num)
|
2019-11-03 01:39:10 +03:00
|
|
|
local inv = M(pos):get_inventory()
|
|
|
|
if not inv:is_empty("dst") then
|
|
|
|
local taken = techage.get_items(inv, "dst", num)
|
|
|
|
if not inv:is_empty("src") then
|
|
|
|
fill_container(pos, inv)
|
|
|
|
end
|
|
|
|
return taken
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
on_push_item = function(pos, in_dir, stack)
|
2019-11-03 01:39:10 +03:00
|
|
|
local inv = M(pos):get_inventory()
|
|
|
|
if inv:room_for_item("src", stack) then
|
|
|
|
inv:add_item("src", stack)
|
|
|
|
if liquid.is_container_empty(stack:get_name()) then
|
|
|
|
fill_container(pos, inv)
|
|
|
|
else
|
|
|
|
empty_container(pos, inv)
|
|
|
|
end
|
|
|
|
return true
|
2019-10-27 13:14:37 +03:00
|
|
|
end
|
2019-11-03 01:39:10 +03:00
|
|
|
return false
|
2019-10-27 13:14:37 +03:00
|
|
|
end,
|
|
|
|
on_unpull_item = function(pos, in_dir, stack)
|
|
|
|
local meta = M(pos)
|
2019-11-03 01:39:10 +03:00
|
|
|
local inv = meta:get_inventory()
|
|
|
|
return techage.put_items(inv, "dst", stack)
|
2019-10-27 13:14:37 +03:00
|
|
|
end,
|
|
|
|
on_recv_message = function(pos, src, topic, payload)
|
|
|
|
if topic == "state" then
|
|
|
|
local meta = M(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
return techage.get_inv_state(inv, "main")
|
|
|
|
else
|
|
|
|
return "unsupported"
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|