2012-03-05 19:21:26 +01:00
|
|
|
-- Solar Panel
|
|
|
|
minetest.register_node("mesecons_solarpanel:solar_panel", {
|
2012-08-02 06:53:45 +02:00
|
|
|
drawtype = "nodebox",
|
2012-03-05 19:21:26 +01:00
|
|
|
tile_images = {"jeija_solar_panel.png"},
|
|
|
|
inventory_image = "jeija_solar_panel.png",
|
|
|
|
wield_image = "jeija_solar_panel.png",
|
|
|
|
paramtype = "light",
|
2012-08-02 06:53:45 +02:00
|
|
|
paramtype2 = "wallmounted",
|
2012-03-05 19:21:26 +01:00
|
|
|
walkable = false,
|
|
|
|
is_ground_content = true,
|
2012-08-02 06:53:45 +02:00
|
|
|
node_box = {
|
|
|
|
type = "wallmounted",
|
2012-08-10 03:44:05 +02:00
|
|
|
wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 },
|
|
|
|
wall_top = { -7/16, 7/16, -7/16, 7/16, 8/16, 7/16 },
|
|
|
|
wall_side = { -8/16, -7/16, -7/16, -7/16, 7/16, 7/16 },
|
2012-08-02 06:53:45 +02:00
|
|
|
},
|
2012-03-05 19:21:26 +01:00
|
|
|
selection_box = {
|
2012-08-02 06:53:45 +02:00
|
|
|
type = "wallmounted",
|
2012-08-10 03:44:05 +02:00
|
|
|
wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 },
|
|
|
|
wall_top = { -7/16, 7/16, -7/16, 7/16, 8/16, 7/16 },
|
|
|
|
wall_side = { -8/16, -7/16, -7/16, -7/16, 7/16, 7/16 },
|
2012-03-05 19:21:26 +01:00
|
|
|
},
|
|
|
|
furnace_burntime = 5,
|
2012-08-10 23:35:54 +02:00
|
|
|
groups = {dig_immediate=3, mesecon = 1},
|
2012-03-05 19:21:26 +01:00
|
|
|
description="Solar Panel",
|
2012-08-02 06:53:45 +02:00
|
|
|
after_dig_node = function(pos, node, digger)
|
|
|
|
mesecon:receptor_off(pos)
|
|
|
|
end,
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = '"mesecons_solarpanel:solar_panel" 1',
|
|
|
|
recipe = {
|
|
|
|
{'"mesecons_materials:silicon"', '"mesecons_materials:silicon"'},
|
|
|
|
{'"mesecons_materials:silicon"', '"mesecons_materials:silicon"'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_abm(
|
|
|
|
{nodenames = {"mesecons_solarpanel:solar_panel"},
|
|
|
|
interval = 0.1,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
local light = minetest.env:get_node_light(pos, nil)
|
|
|
|
if light == nil then light = 0 end
|
|
|
|
if light >= 12 then
|
|
|
|
mesecon:receptor_on(pos)
|
|
|
|
else
|
|
|
|
mesecon:receptor_off(pos)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|