techage/power/drive_axle.lua

195 lines
4.2 KiB
Lua
Raw Normal View History

2019-03-02 14:24:48 +03:00
--[[
TechAge
=======
2021-06-05 12:42:30 +03:00
Copyright (C) 2019-2021 Joachim Stolberg
2019-03-02 14:24:48 +03:00
2020-10-19 20:09:17 +03:00
AGPL v3
2019-03-02 14:24:48 +03:00
See LICENSE.txt for more information
2022-01-03 23:40:31 +03:00
2019-03-02 14:24:48 +03:00
TA2 Drive Axles for the Steam Engine
]]--
-- for lazy programmers
local P = minetest.string_to_pos
local M = minetest.get_meta
local S = techage.S
2019-03-02 14:24:48 +03:00
2021-06-05 12:42:30 +03:00
local power = networks.power
2019-03-02 14:24:48 +03:00
local Axle = tubelib2.Tube:new({
dirs_to_check = {1,2,3,4,5,6},
2021-06-14 22:36:58 +03:00
max_tube_length = 10,
2019-03-02 14:24:48 +03:00
show_infotext = false,
2019-05-11 02:21:03 +03:00
tube_type = "axle",
2023-08-26 22:26:22 +03:00
primary_node_names = {"techage:axle", "techage:axle_on", "techage:ta2_clutch_on"},
2021-06-05 12:42:30 +03:00
secondary_node_names = {},
2019-03-02 14:24:48 +03:00
after_place_tube = function(pos, param2, tube_type, num_tubes, state)
2023-08-26 22:26:22 +03:00
local node = minetest.get_node(pos)
local name = node.name
if name == "techage:axle_on" or name == "techage:axle" then
if state == "on" then -- texture state
minetest.swap_node(pos, {name = "techage:axle_on", param2 = param2})
else
minetest.swap_node(pos, {name = "techage:axle", param2 = param2})
end
2019-03-02 14:24:48 +03:00
else
2023-08-26 22:26:22 +03:00
minetest.swap_node(pos, {name = name, param2 = param2})
2019-03-02 14:24:48 +03:00
end
end,
})
2021-06-05 12:42:30 +03:00
-- Use global callback instead of node related functions
Axle:register_on_tube_update2(function(pos, outdir, tlib2, node)
power.update_network(pos, outdir, tlib2, node)
end)
2019-03-02 14:24:48 +03:00
minetest.register_node("techage:axle", {
description = S("TA2 Drive Axle"),
2019-03-02 14:24:48 +03:00
tiles = {
"techage_axleR.png",
"techage_axleR.png",
"techage_axle.png",
"techage_axle.png",
"techage_axle_clutch.png",
"techage_axle_clutch.png",
},
2022-01-03 23:40:31 +03:00
2019-03-02 14:24:48 +03:00
after_place_node = function(pos, placer, itemstack, pointed_thing)
if not Axle:after_place_tube(pos, placer, pointed_thing) then
minetest.remove_node(pos)
return true
end
return false
end,
2022-01-03 23:40:31 +03:00
2019-03-02 14:24:48 +03:00
after_dig_node = function(pos, oldnode, oldmetadata, digger)
Axle:after_dig_tube(pos, oldnode, oldmetadata)
end,
2022-01-03 23:40:31 +03:00
2019-03-02 14:24:48 +03:00
paramtype2 = "facedir", -- important!
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
{-3/16, -3/16, -4/8, 3/16, 3/16, 4/8},
},
},
on_rotate = screwdriver.disallow, -- important!
paramtype = "light",
use_texture_alpha = techage.CLIP,
2019-03-02 14:24:48 +03:00
sunlight_propagates = true,
is_ground_content = false,
groups = {crumbly = 3, cracky = 3, snappy = 3},
2019-03-02 22:51:16 +03:00
sounds = default.node_sound_wood_defaults(),
2019-03-02 14:24:48 +03:00
})
minetest.register_node("techage:axle_on", {
description = S("TA2 Drive Axle"),
2019-03-02 14:24:48 +03:00
tiles = {
{
name = "techage_axle4R.png",
2019-03-02 14:24:48 +03:00
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 0.6,
},
},
{
name = "techage_axle4R.png",
2019-03-02 14:24:48 +03:00
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 0.6,
},
},
{
name = "techage_axle4.png",
2019-03-02 14:24:48 +03:00
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 0.6,
},
},
{
name = "techage_axle4.png",
2019-03-02 14:24:48 +03:00
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 0.6,
},
},
{
name = "techage_axle_clutch4.png",
2019-03-02 14:24:48 +03:00
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 0.6,
},
},
{
name = "techage_axle_clutch4.png",
2019-03-02 14:24:48 +03:00
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 0.6,
},
},
},
2022-01-03 23:40:31 +03:00
2019-03-02 14:24:48 +03:00
after_place_node = function(pos, placer, itemstack, pointed_thing)
if not Axle:after_place_tube(pos, placer, pointed_thing) then
minetest.remove_node(pos)
return true
end
return false
end,
2022-01-03 23:40:31 +03:00
2019-03-02 14:24:48 +03:00
after_dig_node = function(pos, oldnode, oldmetadata, digger)
Axle:after_dig_tube(pos, oldnode, oldmetadata)
end,
2022-01-03 23:40:31 +03:00
2019-03-02 14:24:48 +03:00
paramtype2 = "facedir", -- important!
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
{-3/16, -3/16, -4/8, 3/16, 3/16, 4/8},
},
},
on_rotate = screwdriver.disallow, -- important!
paramtype = "light",
use_texture_alpha = techage.CLIP,
2019-03-02 14:24:48 +03:00
sunlight_propagates = true,
is_ground_content = false,
diggable = false,
groups = {not_in_creative_inventory = 1},
2019-03-02 22:51:16 +03:00
sounds = default.node_sound_wood_defaults(),
2019-03-02 14:24:48 +03:00
})
2019-04-28 17:04:45 +03:00
minetest.register_craft({
output = "techage:axle 3",
recipe = {
{"default:junglewood", "", "default:wood"},
{"", "techage:iron_ingot", ""},
{"default:wood", "", "default:junglewood"},
},
})
2019-05-21 01:05:53 +03:00
techage.Axle = Axle