227 lines
5.5 KiB
Lua
227 lines
5.5 KiB
Lua
|
--[[
|
||
|
|
||
|
TechAge
|
||
|
=======
|
||
|
|
||
|
Copyright (C) 2019 Joachim Stolberg
|
||
|
|
||
|
GPL v3
|
||
|
See LICENSE.txt for more information
|
||
|
|
||
|
TA3 Distillation Tower
|
||
|
|
||
|
]]--
|
||
|
|
||
|
local S2P = minetest.string_to_pos
|
||
|
local P2S = minetest.pos_to_string
|
||
|
local M = minetest.get_meta
|
||
|
local S = techage.S
|
||
|
local Pipe = techage.LiquidPipe
|
||
|
local networks = techage.networks
|
||
|
local liquid = techage.liquid
|
||
|
|
||
|
|
||
|
local function orientation(pos, names)
|
||
|
local node = minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z})
|
||
|
for _,name in ipairs(names) do
|
||
|
if node.name == name then
|
||
|
local param2 = node.param2
|
||
|
node = minetest.get_node(pos)
|
||
|
node.param2 = param2
|
||
|
minetest.swap_node(pos, node)
|
||
|
return
|
||
|
end
|
||
|
end
|
||
|
minetest.remove_node(pos)
|
||
|
return true
|
||
|
end
|
||
|
|
||
|
local function after_place_node(pos, placer)
|
||
|
Pipe:after_place_node(pos)
|
||
|
end
|
||
|
|
||
|
local function tubelib2_on_update2(pos, dir, tlib2, node)
|
||
|
liquid.update_network(pos)
|
||
|
end
|
||
|
|
||
|
local function after_dig_node(pos, oldnode, oldmetadata, digger)
|
||
|
Pipe:after_dig_node(pos)
|
||
|
end
|
||
|
|
||
|
minetest.register_node("techage:ta3_distiller_base", {
|
||
|
description = S("TA3 Distillation Tower Base"),
|
||
|
tiles = {
|
||
|
-- up, down, right, left, back, front
|
||
|
"techage_concrete.png^techage_appl_arrowXL.png^techage_appl_hole_pipe.png",
|
||
|
"techage_concrete.png",
|
||
|
"techage_concrete.png",
|
||
|
"techage_concrete.png",
|
||
|
"techage_concrete.png^techage_appl_hole_pipe.png",
|
||
|
"techage_concrete.png",
|
||
|
},
|
||
|
drawtype = "nodebox",
|
||
|
paramtype = "light",
|
||
|
node_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-6/8, -4/8, -6/8, 6/8, 4/8, 6/8},
|
||
|
},
|
||
|
selection_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, 1/2, 1/2},
|
||
|
},
|
||
|
collision_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, 1/2, 1/2},
|
||
|
},
|
||
|
|
||
|
after_place_node = after_place_node,
|
||
|
tubelib2_on_update2 = tubelib2_on_update2,
|
||
|
after_dig_node = after_dig_node,
|
||
|
|
||
|
paramtype2 = "facedir",
|
||
|
on_rotate = screwdriver.disallow,
|
||
|
groups = {cracky=2},
|
||
|
is_ground_content = false,
|
||
|
sounds = default.node_sound_metal_defaults(),
|
||
|
})
|
||
|
|
||
|
minetest.register_node("techage:ta3_distiller1", {
|
||
|
description = S("TA3 Distillation Tower 1"),
|
||
|
tiles = {"techage_distiller1.png"},
|
||
|
drawtype = "mesh",
|
||
|
mesh = "techage_cylinder_14.obj",
|
||
|
selection_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, 1/2, 1/2},
|
||
|
},
|
||
|
collision_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, 1/2, 1/2},
|
||
|
},
|
||
|
|
||
|
after_place_node = function(pos, placer)
|
||
|
local res = orientation(pos, {"techage:ta3_distiller_base"})
|
||
|
M(pos):set_int("outdir", networks.side_to_outdir(pos, "R"))
|
||
|
after_place_node(pos, placer)
|
||
|
return res
|
||
|
end,
|
||
|
|
||
|
tubelib2_on_update2 = tubelib2_on_update2,
|
||
|
after_dig_node = after_dig_node,
|
||
|
|
||
|
paramtype = "light",
|
||
|
paramtype2 = "facedir",
|
||
|
on_rotate = screwdriver.disallow,
|
||
|
groups = {cracky=2},
|
||
|
is_ground_content = false,
|
||
|
sounds = default.node_sound_metal_defaults(),
|
||
|
})
|
||
|
|
||
|
minetest.register_node("techage:ta3_distiller2", {
|
||
|
description = S("TA3 Distillation Tower 2"),
|
||
|
tiles = {"techage_distiller2.png"},
|
||
|
drawtype = "mesh",
|
||
|
mesh = "techage_cylinder_14.obj",
|
||
|
selection_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, 1/2, 1/2},
|
||
|
},
|
||
|
collision_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, 1/2, 1/2},
|
||
|
},
|
||
|
|
||
|
after_place_node = function(pos, placer)
|
||
|
return orientation(pos, {"techage:ta3_distiller1", "techage:ta3_distiller3"})
|
||
|
end,
|
||
|
|
||
|
paramtype = "light",
|
||
|
paramtype2 = "facedir",
|
||
|
on_rotate = screwdriver.disallow,
|
||
|
groups = {cracky=2},
|
||
|
is_ground_content = false,
|
||
|
sounds = default.node_sound_metal_defaults(),
|
||
|
})
|
||
|
|
||
|
minetest.register_node("techage:ta3_distiller3", {
|
||
|
description = S("TA3 Distillation Tower 3"),
|
||
|
tiles = {"techage_distiller3.png"},
|
||
|
drawtype = "mesh",
|
||
|
mesh = "techage_cylinder_14.obj",
|
||
|
selection_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, 1/2, 1/2},
|
||
|
},
|
||
|
collision_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, 1/2, 1/2},
|
||
|
},
|
||
|
|
||
|
after_place_node = function(pos, placer)
|
||
|
local res = orientation(pos, {"techage:ta3_distiller2"})
|
||
|
return res
|
||
|
end,
|
||
|
|
||
|
tubelib2_on_update2 = tubelib2_on_update2,
|
||
|
after_dig_node = after_dig_node,
|
||
|
|
||
|
paramtype = "light",
|
||
|
paramtype2 = "facedir",
|
||
|
on_rotate = screwdriver.disallow,
|
||
|
groups = {cracky=2},
|
||
|
is_ground_content = false,
|
||
|
sounds = default.node_sound_metal_defaults(),
|
||
|
})
|
||
|
|
||
|
minetest.register_node("techage:ta3_distiller4", {
|
||
|
description = S("TA3 Distillation Tower 4"),
|
||
|
tiles = {"techage_distiller4.png"},
|
||
|
drawtype = "mesh",
|
||
|
mesh = "techage_cylinder_14.obj",
|
||
|
selection_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, 1/2, 1/2},
|
||
|
},
|
||
|
collision_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, 1/2, 1/2},
|
||
|
},
|
||
|
|
||
|
after_place_node = function(pos, placer)
|
||
|
local res = orientation(pos, {"techage:ta3_distiller3"})
|
||
|
after_place_node(pos, placer)
|
||
|
return res
|
||
|
end,
|
||
|
|
||
|
tubelib2_on_update2 = tubelib2_on_update2,
|
||
|
after_dig_node = after_dig_node,
|
||
|
|
||
|
paramtype = "light",
|
||
|
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_distiller_base",
|
||
|
"techage:ta3_distiller1", "techage:ta3_distiller2",
|
||
|
"techage:ta3_distiller3", "techage:ta3_distiller4",
|
||
|
})
|
||
|
|
||
|
techage.register_node({"techage:ta3_distiller1"}, {
|
||
|
on_recv_message = function(pos, src, topic, payload)
|
||
|
if topic == "put" then
|
||
|
local pos2 = {x = pos.x, y = pos.y + payload.height, z = pos.z}
|
||
|
local outdir = 6
|
||
|
if payload.height ~= 7 then
|
||
|
outdir = M(pos):get_int("outdir")
|
||
|
end
|
||
|
techage.mark_position("singleplayer", pos2, "put", "", 1)------------------------debug
|
||
|
return liquid.put(pos2, outdir, payload.name, payload.amount)
|
||
|
end
|
||
|
end,
|
||
|
})
|