2022-08-13 15:03:12 +02:00
|
|
|
local S = digilines.S
|
|
|
|
|
2013-03-24 22:27:03 +01:00
|
|
|
local GET_COMMAND = "GET"
|
|
|
|
|
|
|
|
local rtc_nodebox =
|
|
|
|
{
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 }, -- bottom slab
|
|
|
|
|
|
|
|
{ -7/16, -7/16, -7/16, 7/16, -5/16, 7/16 },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
local rtc_selbox =
|
|
|
|
{
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {{ -8/16, -8/16, -8/16, 8/16, -3/16, 8/16 }}
|
|
|
|
}
|
|
|
|
|
2017-03-01 11:31:48 +01:00
|
|
|
local on_digiline_receive = function (pos, _, channel, msg)
|
2014-02-13 21:45:31 +01:00
|
|
|
local setchan = minetest.get_meta(pos):get_string("channel")
|
2013-03-24 22:27:03 +01:00
|
|
|
if channel == setchan and msg == GET_COMMAND then
|
2014-02-13 21:45:31 +01:00
|
|
|
local timeofday = minetest.get_timeofday()
|
2017-03-01 11:26:20 +01:00
|
|
|
digilines.receptor_send(pos, digilines.rules.default, channel, timeofday)
|
2013-03-24 22:27:03 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-28 01:08:53 +02:00
|
|
|
minetest.register_alias("digilines_rtc:rtc", "digilines:rtc")
|
|
|
|
minetest.register_node("digilines:rtc", {
|
2022-08-13 15:03:12 +02:00
|
|
|
description = S("Digiline Real Time Clock (RTC)"),
|
2013-03-24 22:27:03 +01:00
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {"digilines_rtc.png"},
|
|
|
|
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
groups = {dig_immediate=2},
|
|
|
|
selection_box = rtc_selbox,
|
|
|
|
node_box = rtc_nodebox,
|
2021-01-21 17:47:55 +01:00
|
|
|
digilines =
|
2013-03-24 22:27:03 +01:00
|
|
|
{
|
|
|
|
receptor = {},
|
|
|
|
effector = {
|
|
|
|
action = on_digiline_receive
|
|
|
|
},
|
|
|
|
},
|
|
|
|
on_construct = function(pos)
|
2014-02-13 21:45:31 +01:00
|
|
|
local meta = minetest.get_meta(pos)
|
2013-03-24 22:27:03 +01:00
|
|
|
meta:set_string("formspec", "field[channel;Channel;${channel}]")
|
|
|
|
end,
|
2017-03-01 11:31:48 +01:00
|
|
|
on_receive_fields = function(pos, _, fields, sender)
|
2016-05-23 20:13:24 +02:00
|
|
|
local name = sender:get_player_name()
|
|
|
|
if minetest.is_protected(pos, name) and not minetest.check_player_privs(name, {protection_bypass=true}) then
|
|
|
|
return
|
|
|
|
end
|
2014-04-24 10:59:16 +02:00
|
|
|
if (fields.channel) then
|
|
|
|
minetest.get_meta(pos):set_string("channel", fields.channel)
|
|
|
|
end
|
2013-03-24 22:27:03 +01:00
|
|
|
end,
|
|
|
|
})
|
2021-05-13 15:33:58 +02:00
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "digilines:rtc",
|
|
|
|
recipe = {
|
|
|
|
{"", "dye:black", ""},
|
|
|
|
{"default:steel_ingot", "default:mese_crystal_fragment", "default:steel_ingot"},
|
|
|
|
{"", "digilines:wire_std_00000000", ""}
|
|
|
|
}
|
|
|
|
})
|