47 lines
1.4 KiB
Lua
47 lines
1.4 KiB
Lua
ham_radio.digiline_effector = function(pos, _, channel, msg)
|
|
local command_channel = ham_radio.settings.digiline_channel -- static channel
|
|
local rds_channel = ham_radio.settings.digiline_rds_channel
|
|
|
|
if channel ~= command_channel and channel ~= rds_channel then
|
|
return
|
|
end
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
-- RDS channel - text message
|
|
if channel == rds_channel then
|
|
if type(msg) == "string" then
|
|
meta:set_string("rds_message", msg)
|
|
ham_radio.transmitter_update_infotext(meta)
|
|
ham_radio.save_transmitter(pos, meta)
|
|
end
|
|
return
|
|
end
|
|
|
|
-- command channel
|
|
|
|
if type(msg) ~= "table" then
|
|
return
|
|
end
|
|
|
|
if msg.command == "get" then
|
|
digilines.receptor_send(pos, digilines.rules.default, digiline_channel, {
|
|
frequency = meta:get_string("frequency"),
|
|
rds_message = meta:get_string("rds_message"),
|
|
})
|
|
|
|
elseif msg.command == "frequency" then
|
|
local new_frequency = msg.value
|
|
if ham_radio.validate_frequency(new_frequency).result then
|
|
meta:set_string("frequency", new_frequency)
|
|
ham_radio.transmitter_update_infotext(meta)
|
|
ham_radio.save_transmitter(pos, meta)
|
|
end
|
|
|
|
elseif msg.command == "rds" or msg.command == "message" or msg.command == "rds_message" then
|
|
meta:set_string("rds_message", msg.value)
|
|
ham_radio.transmitter_update_infotext(meta)
|
|
ham_radio.save_transmitter(pos, meta)
|
|
|
|
end
|
|
end |