mesecons_window/init.lua

215 lines
6.5 KiB
Lua
Raw Normal View History

2019-08-22 23:24:21 -07:00
local S = minetest.get_translator("mesecons_window")
2016-12-09 07:34:10 -08:00
-- Window Block
2017-02-15 05:03:39 -08:00
local sfx
2017-02-15 05:12:11 -08:00
if minetest.get_modpath("default") then
2017-02-15 05:03:39 -08:00
sfx = default.node_sound_glass_defaults()
end
2016-12-09 07:34:10 -08:00
minetest.register_node("mesecons_window:window_closed", {
2019-08-22 23:24:21 -07:00
description=S("Mesecon Window"),
_doc_items_longdesc = S("A Mesecon receptor which is opaque when it isn't powered and is fully transparent to light and sunlight when powered."),
tiles = {"mesecons_window_window_closed.png"},
2016-12-09 07:34:10 -08:00
is_ground_content = false,
groups = {cracky=3, oddly_breakable_by_hand=3},
2017-02-15 05:03:39 -08:00
sounds = sfx,
2016-12-09 07:34:10 -08:00
mesecons = {conductor = {
state = mesecon.state.off,
rules = { --axes
{x = -1, y = 0, z = 0},
{x = 1, y = 0, z = 0},
{x = 0, y = -1, z = 0},
{x = 0, y = 1, z = 0},
{x = 0, y = 0, z = -1},
{x = 0, y = 0, z = 1},
},
onstate = "mesecons_window:window_open"
}}
})
minetest.register_node("mesecons_window:window_open", {
2019-08-22 23:24:21 -07:00
description=S("Mesecon Window"),
2016-12-09 07:34:10 -08:00
_doc_items_create_entry = false,
drawtype = "glasslike_framed",
sunlight_propagates = true,
tiles = {"mesecons_window_window_open.png", "mesecons_window_window_open_detail.png"},
2016-12-09 07:34:10 -08:00
is_ground_content = false,
paramtype = "light",
groups = {cracky=3, oddly_breakable_by_hand=3, not_in_creative_inventory=1},
drop = "mesecons_window:window_closed",
2017-02-15 05:03:39 -08:00
sounds = sfx,
2016-12-09 07:34:10 -08:00
mesecons = {conductor = {
state = mesecon.state.on,
rules = {
{x = -1, y = 0, z = 0},
{x = 1, y = 0, z = 0},
{x = 0, y = -1, z = 0},
{x = 0, y = 1, z = 0},
{x = 0, y = 0, z = -1},
{x = 0, y = 0, z = 1},
},
offstate = "mesecons_window:window_closed"
}},
on_construct = function(pos)
-- remove shadow
shadowpos = vector.add(pos, vector.new(0, 1, 0))
if (minetest.get_node(shadowpos).name == "air") then
minetest.dig_node(shadowpos)
end
end
})
minetest.register_node("mesecons_window:filter_closed", {
2019-08-22 23:24:21 -07:00
description=S("Mesecon Filter Window"),
tiles = {"mesecons_window_filter_closed.png"},
2019-08-22 23:24:21 -07:00
_doc_items_longdesc = S("A Mesecon receptor which is opaque when it isn't powered and is semi-transparent to light when powered."),
2016-12-09 07:34:10 -08:00
is_ground_content = false,
groups = {cracky=3, oddly_breakable_by_hand=3},
2017-02-15 05:03:39 -08:00
sounds = sfx,
2016-12-09 07:34:10 -08:00
mesecons = {conductor = {
state = mesecon.state.off,
rules = { --axes
{x = -1, y = 0, z = 0},
{x = 1, y = 0, z = 0},
{x = 0, y = -1, z = 0},
{x = 0, y = 1, z = 0},
{x = 0, y = 0, z = -1},
{x = 0, y = 0, z = 1},
},
onstate = "mesecons_window:filter_open"
}}
})
minetest.register_node("mesecons_window:filter_open", {
2019-08-22 23:24:21 -07:00
description=S("Mesecon Filter Window"),
2016-12-09 07:34:10 -08:00
drawtype = "glasslike_framed",
_doc_items_create_entry = false,
sunlight_propagates = false,
tiles = {"mesecons_window_filter_open.png", "mesecons_window_filter_open_detail.png"},
2016-12-09 07:34:10 -08:00
is_ground_content = false,
paramtype = "light",
groups = {cracky=3, oddly_breakable_by_hand=3, not_in_creative_inventory=1},
drop = "mesecons_window:filter_closed",
2017-02-15 05:03:39 -08:00
sounds = sfx,
2016-12-09 07:34:10 -08:00
mesecons = {conductor = {
state = mesecon.state.on,
rules = {
{x = -1, y = 0, z = 0},
{x = 1, y = 0, z = 0},
{x = 0, y = -1, z = 0},
{x = 0, y = 1, z = 0},
{x = 0, y = 0, z = -1},
{x = 0, y = 0, z = 1},
},
offstate = "mesecons_window:filter_closed"
}},
on_construct = function(pos)
-- remove shadow
shadowpos = vector.add(pos, vector.new(0, 1, 0))
if (minetest.get_node(shadowpos).name == "air") then
minetest.dig_node(shadowpos)
end
end
})
minetest.register_node("mesecons_window:filter2_closed", {
2019-08-22 23:24:21 -07:00
description=S("Mesecon Filter Glass"),
_doc_items_longdesc = S("A Mesecon receptor which lets light through. When not powered, it is semi-transparent, i.e. it is transparent to light, but filters out sunlight. When powered, it is fully transparent to light and sunlight."),
2016-12-09 07:34:10 -08:00
drawtype="glasslike_framed",
tiles = {"mesecons_window_filter2_closed.png", "mesecons_window_filter2_closed_detail.png"},
2016-12-09 07:34:10 -08:00
is_ground_content = false,
groups = {cracky=3, oddly_breakable_by_hand=3},
2017-02-15 05:03:39 -08:00
sounds = sfx,
2016-12-09 07:34:10 -08:00
paramtype = "light",
sunlight_propagates = false,
mesecons = {conductor = {
state = mesecon.state.off,
rules = { --axes
{x = -1, y = 0, z = 0},
{x = 1, y = 0, z = 0},
{x = 0, y = -1, z = 0},
{x = 0, y = 1, z = 0},
{x = 0, y = 0, z = -1},
{x = 0, y = 0, z = 1},
},
onstate = "mesecons_window:filter2_open"
}},
on_construct = function(pos)
-- remove shadow
shadowpos = vector.add(pos, vector.new(0, 1, 0))
if (minetest.get_node(shadowpos).name == "air") then
minetest.dig_node(shadowpos)
end
end
})
minetest.register_node("mesecons_window:filter2_open", {
2019-08-22 23:24:21 -07:00
description=S("Mesecon Filter Glass"),
2016-12-09 07:34:10 -08:00
_doc_items_create_entry = false,
drawtype = "glasslike_framed",
sunlight_propagates = false,
tiles = {"mesecons_window_filter2_open.png", "mesecons_window_filter2_open_detail.png"},
2016-12-09 07:34:10 -08:00
is_ground_content = false,
paramtype = "light",
sunlight_propagates = true,
groups = {cracky=3, oddly_breakable_by_hand=3, not_in_creative_inventory=1},
drop = "mesecons_window:filter2_closed",
2017-02-15 05:03:39 -08:00
sounds = sfx,
2016-12-09 07:34:10 -08:00
mesecons = {conductor = {
state = mesecon.state.on,
rules = {
{x = -1, y = 0, z = 0},
{x = 1, y = 0, z = 0},
{x = 0, y = -1, z = 0},
{x = 0, y = 1, z = 0},
{x = 0, y = 0, z = -1},
{x = 0, y = 0, z = 1},
},
offstate = "mesecons_window:filter2_closed"
}},
on_construct = function(pos)
-- remove shadow
shadowpos = vector.add(pos, vector.new(0, 1, 0))
if (minetest.get_node(shadowpos).name == "air") then
minetest.dig_node(shadowpos)
end
end
})
2017-02-14 18:48:03 -08:00
if minetest.get_modpath("default") then
minetest.register_craft({
output = 'mesecons_window:window_closed 3',
2017-02-14 18:48:03 -08:00
recipe = {
{"default:cobble", "default:cobble", "default:cobble"},
{"", "group:mesecon_conductor_craftable", ""},
{"default:glass", "default:glass", "default:glass"},
2017-02-14 18:48:03 -08:00
}
})
2016-12-09 07:34:10 -08:00
2017-02-14 18:48:03 -08:00
minetest.register_craft({
output = 'mesecons_window:filter_closed 3',
2017-02-14 18:48:03 -08:00
recipe = {
{"default:cobble", "default:cobble", "default:cobble"},
2017-02-15 07:18:34 -08:00
{"group:leaves", "group:mesecon_conductor_craftable", "group:leaves"},
{"default:glass", "default:glass", "default:glass"},
2017-02-14 18:48:03 -08:00
}
})
2016-12-09 07:34:10 -08:00
2017-02-14 18:48:03 -08:00
minetest.register_craft({
output = 'mesecons_window:filter2_closed 3',
2017-02-14 18:48:03 -08:00
recipe = {
2017-02-15 07:18:34 -08:00
{"group:leaves", "group:leaves", "group:leaves"},
{"", "group:mesecon_conductor_craftable", ""},
{"default:glass", "default:glass", "default:glass"},
2017-02-14 18:48:03 -08:00
}
})
2017-02-14 18:48:03 -08:00
end
2017-02-14 18:48:03 -08:00
if minetest.get_modpath("doc") then
doc.add_entry_alias("nodes", "mesecons_window:window_closed", "nodes", "mesecons_window:window_open")
doc.add_entry_alias("nodes", "mesecons_window:filter_closed", "nodes", "mesecons_window:filter_open")
doc.add_entry_alias("nodes", "mesecons_window:filter2_closed", "nodes", "mesecons_window:filter2_open")
end