Convert aircraft warning light to animated textures

master
cheapie 2016-01-14 13:12:59 -06:00
parent 08a391e4cc
commit 37fa30cb0f
7 changed files with 43 additions and 107 deletions

View File

@ -1,119 +1,55 @@
-- Aircraft warning light
minetest.register_abm( {
nodenames = {"infrastructure:aircraft_warning_light_bright", "infrastructure:aircraft_warning_light_dark"},
interval = 2,
chance = 1,
action = function(pos, node)
local node = minetest.env:get_node(pos)
if node.name == "infrastructure:aircraft_warning_light_bright" then
minetest.swap_node(pos, {name = "infrastructure:aircraft_warning_light_dark", param2 = node.param2})
elseif node.name == "infrastructure:aircraft_warning_light_dark" then
minetest.swap_node(pos, {name = "infrastructure:aircraft_warning_light_bright", param2 = node.param2})
end
end
})
minetest.register_node("infrastructure:aircraft_warning_light", {
description = "Aircraft warning light",
tiles = {
{name="infrastructure_aircraft_warning_light_top_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=4}},
"infrastructure_traffic_lights_side.png",
{name="infrastructure_aircraft_warning_light_side_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=4}},
{name="infrastructure_aircraft_warning_light_side_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=4}},
{name="infrastructure_aircraft_warning_light_side_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=4}},
{name="infrastructure_aircraft_warning_light_side_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=4}}
},
drawtype = "nodebox",
paramtype = "light",
groups = {cracky = 1},
light_source = AIRCRAFT_WARNING_LIGHT_LIGHT_RANGE,
node_box = {
type = "fixed",
fixed = {
{-1/128, 1/4, -1/128, 1/128, 3/8, 1/128},
minetest.register_node("infrastructure:aircraft_warning_light_bright", {
description = "Aircraft warning light",
tiles = {
"infrastructure_aircraft_warning_light_top_bright.png",
"infrastructure_traffic_lights_side.png",
"infrastructure_aircraft_warning_light_side_bright.png",
"infrastructure_aircraft_warning_light_side_bright.png",
"infrastructure_aircraft_warning_light_side_bright.png",
"infrastructure_aircraft_warning_light_side_bright.png"
},
drawtype = "nodebox",
paramtype = "light",
groups = {cracky = 1},
light_source = AIRCRAFT_WARNING_LIGHT_LIGHT_RANGE,
node_box = {
type = "fixed",
fixed = {
{-1/128, 1/4, -1/128, 1/128, 3/8, 1/128},
{-1/4, -1/8, 0, 1/4, 1/4, 0},
{0, -1/8, -1/4, 0, 1/4, 1/4},
{-1/4, -1/8, 0, 1/4, 1/4, 0},
{0, -1/8, -1/4, 0, 1/4, 1/4},
{-1/16, -1/8, -1/16, 1/16, 1/16, 1/16},
{-1/16, -1/8, -1/16, 1/16, 1/16, 1/16},
{-1/4, -1/4, -1/8, 1/4, -1/8, 1/8},
{-1/8, -1/4, -1/4, 1/8, -1/8, 1/4},
{-1/4, -1/4, -1/8, 1/4, -1/8, 1/8},
{-1/8, -1/4, -1/4, 1/8, -1/8, 1/4},
{-1/8, -3/8, -1/8, 1/8, -1/4, 1/8},
{-1/8, -3/8, -1/8, 1/8, -1/4, 1/8},
{-3/16, -1/2, -3/16, 3/16, -3/8, 3/16}
}
},
selection_box = {
type = "fixed",
fixed = {
{-1/128, 1/4, -1/128, 1/128, 3/8, 1/128},
{-3/16, -1/2, -3/16, 3/16, -3/8, 3/16}
}
},
selection_box = {
type = "fixed",
fixed = {
{-1/128, 1/4, -1/128, 1/128, 3/8, 1/128},
{-1/4, -1/8, 0, 1/4, 1/4, 0},
{0, -1/8, -1/4, 0, 1/4, 1/4},
{-1/4, -1/8, 0, 1/4, 1/4, 0},
{0, -1/8, -1/4, 0, 1/4, 1/4},
{-1/16, -1/8, -1/16, 1/16, 1/16, 1/16},
{-1/16, -1/8, -1/16, 1/16, 1/16, 1/16},
{-1/4, -1/4, -1/8, 1/4, -1/8, 1/8},
{-1/8, -1/4, -1/4, 1/8, -1/8, 1/4},
{-1/4, -1/4, -1/8, 1/4, -1/8, 1/8},
{-1/8, -1/4, -1/4, 1/8, -1/8, 1/4},
{-1/8, -3/8, -1/8, 1/8, -1/4, 1/8},
{-1/8, -3/8, -1/8, 1/8, -1/4, 1/8},
{-3/16, -1/2, -3/16, 3/16, -3/8, 3/16}
}
}
})
{-3/16, -1/2, -3/16, 3/16, -3/8, 3/16}
}
}
})
minetest.register_node("infrastructure:aircraft_warning_light_dark", {
tiles = {
"infrastructure_aircraft_warning_light_top_dark.png",
"infrastructure_traffic_lights_side.png",
"infrastructure_aircraft_warning_light_side_dark.png",
"infrastructure_aircraft_warning_light_side_dark.png",
"infrastructure_aircraft_warning_light_side_dark.png",
"infrastructure_aircraft_warning_light_side_dark.png"
},
drawtype = "nodebox",
paramtype = "light",
groups = {cracky = 1, not_in_creative_inventory = 1},
drop = "infrastructure:aircraft_warning_light_bright",
node_box = {
type = "fixed",
fixed = {
{-1/128, 1/4, -1/128, 1/128, 3/8, 1/128},
{-1/4, -1/8, 0, 1/4, 1/4, 0},
{0, -1/8, -1/4, 0, 1/4, 1/4},
{-1/16, -1/8, -1/16, 1/16, 1/16, 1/16},
{-1/4, -1/4, -1/8, 1/4, -1/8, 1/8},
{-1/8, -1/4, -1/4, 1/8, -1/8, 1/4},
{-1/8, -3/8, -1/8, 1/8, -1/4, 1/8},
{-3/16, -1/2, -3/16, 3/16, -3/8, 3/16}
}
},
selection_box = {
type = "fixed",
fixed = {
{-1/128, 1/4, -1/128, 1/128, 3/8, 1/128},
{-1/4, -1/8, 0, 1/4, 1/4, 0},
{0, -1/8, -1/4, 0, 1/4, 1/4},
{-1/16, -1/8, -1/16, 1/16, 1/16, 1/16},
{-1/4, -1/4, -1/8, 1/4, -1/8, 1/8},
{-1/8, -1/4, -1/4, 1/8, -1/8, 1/4},
{-1/8, -3/8, -1/8, 1/8, -1/4, 1/8},
{-3/16, -1/2, -3/16, 3/16, -3/8, 3/16}
}
}
})
minetest.register_alias("infrastructure:aircraft_warning_light", "infrastructure:aircraft_warning_light_bright")
minetest.register_alias("infrastructure:aircraft_warning_light_bright", "infrastructure:aircraft_warning_light")
minetest.register_alias("infrastructure:aircraft_warning_light_dark", "infrastructure:aircraft_warning_light")

Binary file not shown.

After

Width:  |  Height:  |  Size: 550 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 399 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 411 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 597 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 601 B