Improve TA2 clutch
This commit is contained in:
parent
9111d7287c
commit
aee918d025
@ -20,9 +20,36 @@ local S = techage.S
|
|||||||
local DESCR = S("TA2 Clutch")
|
local DESCR = S("TA2 Clutch")
|
||||||
|
|
||||||
local Axle = techage.Axle
|
local Axle = techage.Axle
|
||||||
|
local power = networks.power
|
||||||
|
local control = networks.control
|
||||||
|
|
||||||
|
-- Search for a gearbox, which is part of the axle network
|
||||||
|
local function get_gearbox_pos(pos)
|
||||||
|
local outdir = M(pos):get_int("outdir")
|
||||||
|
local pos1, dir1 = Axle:get_connected_node_pos(pos, outdir)
|
||||||
|
if pos1 then
|
||||||
|
local node = minetest.get_node(pos1)
|
||||||
|
--print("get_gearbox_pos", node.name)
|
||||||
|
if node.name == "techage:gearbox_on" or node.name == "techage:gearbox" then
|
||||||
|
return pos1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Send to the winches
|
||||||
|
local function control_cmnd(pos, topic)
|
||||||
|
-- The clutch is not part of the axle network,
|
||||||
|
-- so we have to use a helper function to be able
|
||||||
|
-- to send a command into the network.
|
||||||
|
local pos1 = get_gearbox_pos(pos)
|
||||||
|
if pos1 then
|
||||||
|
control.send(pos1, Axle, 0, "sto", topic)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
local function switch_on(pos, node)
|
local function switch_on(pos, node)
|
||||||
if node.name == "techage:ta2_clutch_off" then
|
if node.name == "techage:ta2_clutch_off" then
|
||||||
|
control_cmnd(pos, "on")
|
||||||
node.name = "techage:ta2_clutch_on"
|
node.name = "techage:ta2_clutch_on"
|
||||||
minetest.swap_node(pos, node)
|
minetest.swap_node(pos, node)
|
||||||
Axle:after_place_tube(pos)
|
Axle:after_place_tube(pos)
|
||||||
@ -35,8 +62,8 @@ end
|
|||||||
|
|
||||||
local function switch_off(pos, node)
|
local function switch_off(pos, node)
|
||||||
if node.name == "techage:ta2_clutch_on" then
|
if node.name == "techage:ta2_clutch_on" then
|
||||||
node.name = "techage:ta2_clutch_off"
|
control_cmnd(pos, "off")
|
||||||
minetest.swap_node(pos, node)
|
minetest.swap_node(pos, {name = "techage:ta2_clutch_off", param2 = M(pos):get_int("outdir") - 1})
|
||||||
Axle:after_dig_tube(pos, node)
|
Axle:after_dig_tube(pos, node)
|
||||||
minetest.sound_play("techage_button", {
|
minetest.sound_play("techage_button", {
|
||||||
pos = pos,
|
pos = pos,
|
||||||
@ -48,24 +75,16 @@ end
|
|||||||
minetest.register_node("techage:ta2_clutch_off", {
|
minetest.register_node("techage:ta2_clutch_off", {
|
||||||
description = DESCR,
|
description = DESCR,
|
||||||
tiles = {
|
tiles = {
|
||||||
-- back, front, up, down, right, left
|
-- up, down, right, left, back, front
|
||||||
"techage_filling_ta2.png^techage_appl_clutch.png^techage_frame_ta2.png^[transformR90",
|
"techage_filling_ta2.png^techage_appl_clutch.png^techage_appl_arrow3.png^techage_frame_ta2.png^[transformR90",
|
||||||
"techage_filling_ta2.png^techage_appl_clutch.png^techage_frame_ta2.png^[transformR90",
|
"techage_filling_ta2.png^techage_appl_clutch.png^techage_appl_arrow3.png^techage_frame_ta2.png^[transformR270",
|
||||||
"techage_filling_ta2.png^techage_appl_clutch.png^techage_frame_ta2.png",
|
|
||||||
"techage_filling_ta2.png^techage_appl_clutch.png^techage_frame_ta2.png",
|
"techage_filling_ta2.png^techage_appl_clutch.png^techage_frame_ta2.png",
|
||||||
|
"techage_filling_ta2.png^techage_appl_clutch.png^techage_frame_ta2.png^[transformR180",
|
||||||
"techage_filling_ta2.png^techage_frame_ta2.png^techage_clutch_clutch.png",
|
"techage_filling_ta2.png^techage_frame_ta2.png^techage_clutch_clutch.png",
|
||||||
"techage_filling_ta2.png^techage_frame_ta2.png^techage_clutch_clutch.png",
|
"techage_filling_ta2.png^techage_frame_ta2.png^techage_clutch_clutch.png",
|
||||||
},
|
},
|
||||||
|
|
||||||
after_place_node = function(pos, placer, itemstack, pointed_thing)
|
after_place_node = function(pos, placer, itemstack, pointed_thing)
|
||||||
if not Axle:after_place_tube(pos, placer, pointed_thing) then
|
M(pos):set_int("outdir", networks.side_to_outdir(pos, "B"))
|
||||||
minetest.remove_node(pos)
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
return false
|
|
||||||
end,
|
|
||||||
after_dig_node = function(pos, oldnode, oldmetadata, digger)
|
|
||||||
Axle:after_dig_tube(pos, oldnode, oldmetadata)
|
|
||||||
end,
|
end,
|
||||||
on_rightclick = switch_on,
|
on_rightclick = switch_on,
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@ -78,11 +97,11 @@ minetest.register_node("techage:ta2_clutch_off", {
|
|||||||
minetest.register_node("techage:ta2_clutch_on", {
|
minetest.register_node("techage:ta2_clutch_on", {
|
||||||
description = DESCR,
|
description = DESCR,
|
||||||
tiles = {
|
tiles = {
|
||||||
-- back, front, up, down, right, left
|
-- up, down, right, left, back, front
|
||||||
"techage_filling_ta2.png^techage_appl_clutch_on.png^techage_frame_ta2.png^[transformR90",
|
|
||||||
"techage_filling_ta2.png^techage_appl_clutch_on.png^techage_frame_ta2.png^[transformR90",
|
"techage_filling_ta2.png^techage_appl_clutch_on.png^techage_frame_ta2.png^[transformR90",
|
||||||
|
"techage_filling_ta2.png^techage_appl_clutch_on.png^techage_frame_ta2.png^[transformR270",
|
||||||
"techage_filling_ta2.png^techage_appl_clutch_on.png^techage_frame_ta2.png",
|
"techage_filling_ta2.png^techage_appl_clutch_on.png^techage_frame_ta2.png",
|
||||||
"techage_filling_ta2.png^techage_appl_clutch_on.png^techage_frame_ta2.png",
|
"techage_filling_ta2.png^techage_appl_clutch_on.png^techage_frame_ta2.png^[transformR180",
|
||||||
"techage_filling_ta2.png^techage_frame_ta2.png^techage_clutch_clutch.png",
|
"techage_filling_ta2.png^techage_frame_ta2.png^techage_clutch_clutch.png",
|
||||||
"techage_filling_ta2.png^techage_frame_ta2.png^techage_clutch_clutch.png",
|
"techage_filling_ta2.png^techage_frame_ta2.png^techage_clutch_clutch.png",
|
||||||
},
|
},
|
||||||
|
@ -24,6 +24,7 @@ local CYCLE_TIME = 2
|
|||||||
|
|
||||||
local Axle = techage.Axle
|
local Axle = techage.Axle
|
||||||
local power = networks.power
|
local power = networks.power
|
||||||
|
local control = networks.control
|
||||||
|
|
||||||
|
|
||||||
local function chest_pos(pos)
|
local function chest_pos(pos)
|
||||||
@ -136,6 +137,11 @@ minetest.register_node("techage:ta2_winch", {
|
|||||||
nvm.capa = nvm.capa or 1
|
nvm.capa = nvm.capa or 1
|
||||||
nvm.load = nvm.load or 0
|
nvm.load = nvm.load or 0
|
||||||
|
|
||||||
|
if nvm.blocked then
|
||||||
|
-- Keep the network active
|
||||||
|
power.get_storage_load(pos, Axle, outdir, nvm.capa)
|
||||||
|
return true
|
||||||
|
end
|
||||||
if not nvm.running and power.power_available(pos, Axle, outdir) and chest_full(pos) then
|
if not nvm.running and power.power_available(pos, Axle, outdir) and chest_full(pos) then
|
||||||
remove_chest(pos)
|
remove_chest(pos)
|
||||||
nvm.running = true
|
nvm.running = true
|
||||||
@ -169,7 +175,7 @@ minetest.register_node("techage:ta2_winch", {
|
|||||||
get_storage_data = function(pos, outdir, tlib2)
|
get_storage_data = function(pos, outdir, tlib2)
|
||||||
local nvm = techage.get_nvm(pos)
|
local nvm = techage.get_nvm(pos)
|
||||||
nvm.capa = nvm.capa or 1
|
nvm.capa = nvm.capa or 1
|
||||||
if nvm.running then
|
if nvm.running and not nvm.blocked then
|
||||||
return {level = (nvm.load or 0) / nvm.capa, capa = nvm.capa}
|
return {level = (nvm.load or 0) / nvm.capa, capa = nvm.capa}
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
@ -192,6 +198,23 @@ techage.register_node({"techage:ta2_winch"}, {
|
|||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
control.register_nodes({"techage:ta2_winch"}, {
|
||||||
|
on_receive = function(pos, tlib2, topic, payload)
|
||||||
|
--print("on_receive", topic)
|
||||||
|
local nvm = techage.get_nvm(pos)
|
||||||
|
if topic == "on" then
|
||||||
|
nvm.blocked = false
|
||||||
|
local outdir = M(pos):get_int("outdir")
|
||||||
|
power.start_storage_calc(pos, Axle, outdir)
|
||||||
|
elseif topic == "off" then
|
||||||
|
nvm.blocked = true
|
||||||
|
local outdir = M(pos):get_int("outdir")
|
||||||
|
power.start_storage_calc(pos, Axle, outdir)
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "techage:ta2_winch",
|
output = "techage:ta2_winch",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
BIN
textures/techage_appl_arrow3.png
Normal file
BIN
textures/techage_appl_arrow3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 112 B |
Binary file not shown.
Before Width: | Height: | Size: 196 B After Width: | Height: | Size: 201 B |
Binary file not shown.
Before Width: | Height: | Size: 201 B After Width: | Height: | Size: 165 B |
Loading…
Reference in New Issue
Block a user