techage/steam_engine/cylinder.lua

151 lines
3.8 KiB
Lua
Raw Normal View History

2019-03-02 14:24:48 +03:00
--[[
TechAge
=======
Copyright (C) 2019 Joachim Stolberg
LGPLv2.1+
See LICENSE.txt for more information
TA2 Steam Engine Cylinder
]]--
-- for lazy programmers
local S = function(pos) if pos then return minetest.pos_to_string(pos) end end
local P = minetest.string_to_pos
local M = minetest.get_meta
-- Load support for intllib.
2019-03-17 17:33:13 +03:00
local MP = minetest.get_modpath("techage")
2019-03-02 14:24:48 +03:00
local I,_ = dofile(MP.."/intllib.lua")
2019-03-08 23:18:55 +03:00
local Pipe = techage.SteamPipe
2019-03-02 14:24:48 +03:00
local function swap_node(pos, name)
local node = minetest.get_node(pos)
if node.name == name then
return
end
node.name = name
minetest.swap_node(pos, node)
end
2019-03-08 01:12:07 +03:00
-- called from flywheel
local function start_cylinder(pos, on)
local mem = tubelib2.get_mem(pos)
2019-03-08 23:18:55 +03:00
if on and mem.running then
2019-03-04 00:19:30 +03:00
swap_node(pos, "techage:cylinder_on")
2019-05-21 01:05:53 +03:00
techage.power.power_distribution(pos)
2019-03-08 01:12:07 +03:00
return true
2019-03-04 00:19:30 +03:00
else
swap_node(pos, "techage:cylinder")
2019-05-21 01:05:53 +03:00
techage.power.power_distribution(pos)
return false
2019-03-04 00:19:30 +03:00
end
2019-03-02 22:51:16 +03:00
end
2019-06-08 23:57:01 +03:00
-- called with any pipe change
local function after_tube_update(node, pos, out_dir, peer_pos, peer_in_dir)
local mem = tubelib2.get_mem(pos)
mem.running = false
end
2019-03-02 14:24:48 +03:00
minetest.register_node("techage:cylinder", {
description = I("TA2 Cylinder"),
tiles = {
-- up, down, right, left, back, front
"techage_filling_ta2.png^techage_frame_ta2.png",
"techage_filling_ta2.png^techage_frame_ta2.png",
2019-03-02 22:51:16 +03:00
"techage_filling_ta2.png^techage_appl_open.png^techage_frame_ta2.png",
"techage_filling_ta2.png^techage_frame_ta2.png^techage_steam_hole.png",
2019-03-02 14:24:48 +03:00
"techage_filling_ta2.png^techage_cylinder.png^techage_frame_ta2.png",
"techage_filling_ta2.png^techage_cylinder.png^techage_frame_ta2.png",
},
2019-05-21 01:05:53 +03:00
on_construct = tubelib2.init_mem,
start_cylinder = start_cylinder,
2019-03-08 01:12:07 +03:00
2019-03-02 14:24:48 +03:00
paramtype2 = "facedir",
groups = {cracky=2, crumbly=2, choppy=2},
on_rotate = screwdriver.disallow,
is_ground_content = false,
sounds = default.node_sound_wood_defaults(),
})
minetest.register_node("techage:cylinder_on", {
description = I("TA2 Cylinder"),
tiles = {
-- up, down, right, left, back, front
"techage_filling_ta2.png^techage_frame_ta2.png",
"techage_filling_ta2.png^techage_frame_ta2.png",
2019-03-02 22:51:16 +03:00
"techage_filling_ta2.png^techage_appl_open.png^techage_frame_ta2.png",
"techage_filling_ta2.png^techage_frame_ta2.png^techage_steam_hole.png",
2019-03-02 14:24:48 +03:00
{
image = "techage_filling4_ta2.png^techage_cylinder4.png^techage_frame4_ta2.png",
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 0.4,
},
},
{
image = "techage_filling4_ta2.png^techage_cylinder4.png^techage_frame4_ta2.png",
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 0.4,
},
},
},
2019-03-02 22:51:16 +03:00
2019-05-21 01:05:53 +03:00
start_cylinder = start_cylinder,
2019-06-08 23:57:01 +03:00
after_tube_update = after_tube_update,
2019-03-02 22:51:16 +03:00
2019-03-02 14:24:48 +03:00
paramtype2 = "facedir",
2019-03-02 22:51:16 +03:00
groups = {not_in_creative_inventory=1},
diggable = false,
2019-03-02 14:24:48 +03:00
on_rotate = screwdriver.disallow,
is_ground_content = false,
2019-03-02 22:51:16 +03:00
sounds = default.node_sound_wood_defaults(),
2019-03-02 14:24:48 +03:00
})
2019-05-21 01:05:53 +03:00
techage.power.register_node({"techage:cylinder", "techage:cylinder_on"}, {
conn_sides = {"L"},
power_network = Pipe,
})
2019-06-08 23:57:01 +03:00
-- used by firebox
techage.register_node({"techage:cylinder", "techage:cylinder_on"}, {
on_transfer = function(pos, in_dir, topic, payload)
local mem = tubelib2.get_mem(pos)
if topic == "start" then
mem.running = true
return true
elseif topic == "stop" then
mem.running = false
return false
end
end
})
2019-04-28 17:04:45 +03:00
minetest.register_craft({
output = "techage:cylinder",
recipe = {
{"basic_materials:steel_bar", "techage:iron_ingot", "default:wood"},
{"techage:steam_pipeS", "basic_materials:gear_steel", ""},
{"default:wood", "techage:iron_ingot", "basic_materials:steel_bar"},
},
})
2019-05-02 00:01:14 +03:00
techage.register_help_page(I("TA2 Cylinder"),
I([[Part of the steam engine.
Has to be placed side by side
with the TA2 Flywheel.
2019-06-08 23:57:01 +03:00
(see TA2 Steam Engine)]]), "techage:cylinder")