techage_modpack/techage/energy_storage/turbine.lua

166 lines
4.3 KiB
Lua
Raw Permalink Normal View History

2020-05-31 23:31:18 +03:00
--[[
TechAge
=======
2021-08-01 12:00:22 +03:00
Copyright (C) 2019-2021 Joachim Stolberg
2020-05-31 23:31:18 +03:00
2020-10-25 23:32:47 +03:00
AGPL v3
2020-05-31 23:31:18 +03:00
See LICENSE.txt for more information
2022-01-04 21:43:30 +03:00
2020-05-31 23:31:18 +03:00
TA4 TES Gas Turbine
]]--
-- for lazy programmers
local M = minetest.get_meta
local S = techage.S
local Pipe = techage.LiquidPipe
2021-08-01 12:00:22 +03:00
local function generator_cmnd(pos, topic, payload)
2022-01-04 21:43:30 +03:00
return techage.transfer(pos, "R", topic, payload, nil,
2020-05-31 23:31:18 +03:00
{"techage:ta4_generator", "techage:ta4_generator_on"})
end
local function swap_node(pos, name)
local node = techage.get_node_lvm(pos)
if node.name == name then
return
end
node.name = name
minetest.swap_node(pos, node)
end
local function play_sound(pos)
local mem = techage.get_mem(pos)
if not mem.handle or mem.handle == -1 then
mem.handle = minetest.sound_play("techage_turbine", {
2022-01-04 21:43:30 +03:00
pos = pos,
2020-05-31 23:31:18 +03:00
gain = 0.4,
max_hear_distance = 10,
loop = true})
if mem.handle == -1 then
minetest.after(1, play_sound, pos)
end
end
end
local function stop_sound(pos)
local mem = techage.get_mem(pos)
if mem.handle then
minetest.sound_stop(mem.handle)
mem.handle = nil
end
end
minetest.register_node("techage:ta4_turbine", {
description = S("TA4 Turbine"),
tiles = {
-- up, down, right, left, back, front
"techage_filling_ta4.png^techage_frame_ta4_top.png^techage_appl_hole_pipe.png",
"techage_filling_ta4.png^techage_frame_ta4.png",
"techage_filling_ta4.png^techage_appl_open.png^techage_frame_ta4.png",
"techage_filling_ta4.png^techage_frame_ta4.png^techage_appl_hole_pipe.png",
2023-05-09 19:41:56 +03:00
"techage_filling_ta4.png^techage_appl_turbine.png^techage_frame_ta4.png^[transformFX",
2020-05-31 23:31:18 +03:00
"techage_filling_ta4.png^techage_appl_turbine.png^techage_frame_ta4.png",
},
2022-01-04 21:43:30 +03:00
2021-08-01 12:00:22 +03:00
after_place_node = function(pos)
Pipe:after_place_node(pos)
end,
after_dig_node = function(pos, oldnode)
stop_sound(pos)
Pipe:after_dig_node(pos)
techage.del_mem(pos)
end,
networks = {
pipe2 = {},
},
2020-05-31 23:31:18 +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:ta4_turbine_on", {
tiles = {
-- up, down, right, left, back, front
"techage_filling_ta4.png^techage_frame_ta4_top.png^techage_appl_hole_pipe.png",
"techage_filling_ta4.png^techage_frame_ta4.png",
"techage_filling_ta4.png^techage_appl_open.png^techage_frame_ta4.png",
"techage_filling_ta4.png^techage_frame_ta4.png^techage_appl_hole_pipe.png",
{
2023-05-09 19:41:56 +03:00
name = "techage_filling4_ta4.png^techage_appl_turbine4.png^techage_frame4_ta4.png^[transformFX",
2020-05-31 23:31:18 +03:00
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 0.4,
},
},
{
2023-05-09 19:41:56 +03:00
name = "techage_filling4_ta4.png^techage_appl_turbine4.png^techage_frame4_ta4.png",
2020-05-31 23:31:18 +03:00
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 0.4,
},
},
},
2022-01-04 21:43:30 +03:00
tubelib2_on_update2 = function(pos, outdir, tlib2, node)
2021-08-01 12:00:22 +03:00
swap_node(pos, "techage:ta4_turbine")
stop_sound(pos)
generator_cmnd(pos, "stop")
end,
networks = {
pipe2 = {},
},
2020-05-31 23:31:18 +03:00
paramtype2 = "facedir",
groups = {not_in_creative_inventory=1},
diggable = false,
on_rotate = screwdriver.disallow,
is_ground_content = false,
sounds = default.node_sound_wood_defaults(),
})
Pipe:add_secondary_node_names({"techage:ta4_turbine", "techage:ta4_turbine_on"})
2021-08-01 12:00:22 +03:00
Pipe:set_valid_sides("techage:ta4_turbine", {"L", "U"})
Pipe:set_valid_sides("techage:ta4_turbine_on", {"L", "U"})
2020-05-31 23:31:18 +03:00
techage.register_node({"techage:ta4_turbine", "techage:ta4_turbine_on"}, {
on_transfer = function(pos, in_dir, topic, payload)
local nvm = techage.get_nvm(pos)
2021-08-01 12:00:22 +03:00
if topic == "start" then -- used by heatexchanger1
2020-05-31 23:31:18 +03:00
swap_node(pos, "techage:ta4_turbine_on")
play_sound(pos)
2021-08-01 12:00:22 +03:00
return generator_cmnd(pos, topic, payload)
elseif topic == "stop" then -- used by heatexchanger1
2020-05-31 23:31:18 +03:00
swap_node(pos, "techage:ta4_turbine")
stop_sound(pos)
2021-08-01 12:00:22 +03:00
return generator_cmnd(pos, topic, payload)
else -- used by heatexchanger1
return generator_cmnd(pos, topic, payload)
2020-05-31 23:31:18 +03:00
end
end,
on_node_load = function(pos, node)
if node.name == "techage:ta4_turbine_on" then
play_sound(pos)
2022-01-04 21:43:30 +03:00
end
2020-05-31 23:31:18 +03:00
end,
})
minetest.register_craft({
output = "techage:ta4_turbine",
recipe = {
{"", "dye:blue", ""},
{"", "techage:turbine", ""},
{"", "techage:ta4_wlanchip", ""},
},
})