--[[ TechAge ======= Copyright (C) 2019-2020 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, dir, tlib2) 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_stone_defaults(), networks = { pipe2 = { sides = {B=1}, -- Pipe connection sides ntype = "pump", }, }, }) 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, "B")) 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(), networks = { pipe2 = { sides = {F=1}, -- Pipe connection sides ntype = "tank", }, }, }) 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(), networks = { pipe2 = { sides = {B=1}, -- Pipe connection sides ntype = "pump", }, }, }) 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(), networks = { pipe2 = { sides = {U=1}, -- Pipe connection sides ntype = "pump", }, }, }) Pipe:add_secondary_node_names({ "techage:ta3_distiller_base", "techage:ta3_distiller1", "techage:ta3_distiller3", "techage:ta3_distiller4", }) local Liquids = { [-1] = "techage:bitumen", [2] = "techage:fueloil", [4] = "techage:naphtha", [6] = "techage:gasoline", [7] = "techage:gas", } techage.register_node({"techage:ta3_distiller1"}, { on_transfer = function(pos, in_dir, topic, payload) if topic == "put" then local leftover = 0 local outdir = M(pos):get_int("outdir") for _,y in ipairs({-1, 2, 4, 6, 7}) do local pos2 = {x = pos.x, y = pos.y + y, z = pos.z} if y == 7 then outdir = 6 end leftover = leftover + liquid.put(pos2, outdir, Liquids[y], 1) end return leftover end end, }) minetest.register_craft({ output = 'techage:ta3_distiller2', recipe = { {'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'}, {'techage:iron_ingot', 'techage:ta3_barrel_empty', 'techage:iron_ingot'}, {'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'}, } }) minetest.register_craft({ output = 'techage:ta3_distiller1', recipe = { {'', '', ''}, {'techage:ta3_pipeS', 'techage:ta3_distiller2', ''}, {'', '', ''}, } }) minetest.register_craft({ output = 'techage:ta3_distiller3', recipe = { {'', '', ''}, {'', 'techage:ta3_distiller2', 'techage:ta3_pipeS'}, {'', '', ''}, } }) minetest.register_craft({ output = 'techage:ta3_distiller4', recipe = { {'', 'techage:ta3_pipeS', ''}, {'', 'techage:ta3_distiller2', ''}, {'', '', ''}, } }) minetest.register_craft({ output = 'techage:ta3_distiller_base', recipe = { {'basic_materials:concrete_block', 'techage:ta3_pipeS', 'basic_materials:concrete_block'}, {'', 'techage:ta3_pipeS', 'techage:ta3_pipeS'}, {'basic_materials:concrete_block', '', 'basic_materials:concrete_block'}, } })