mirror of
https://github.com/technix/ham_radio.git
synced 2025-01-09 05:37:34 +01:00
digiline: plaintext messages for broadcast
This commit is contained in:
parent
125b6a0186
commit
735d285c67
@ -18,13 +18,11 @@ if minetest.get_modpath("technic") then
|
|||||||
battery = 'technic:battery'
|
battery = 'technic:battery'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
minetest.register_craftitem("ham_radio:circuit", {
|
minetest.register_craftitem("ham_radio:circuit", {
|
||||||
description = "Radio Circuit",
|
description = "Radio Circuit",
|
||||||
inventory_image = "ham_radio_circuit.png",
|
inventory_image = "ham_radio_circuit.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "ham_radio:circuit",
|
output = "ham_radio:circuit",
|
||||||
recipe = {
|
recipe = {
|
||||||
@ -33,7 +31,6 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "ham_radio:handheld_receiver",
|
output = "ham_radio:handheld_receiver",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
21
digiline.lua
21
digiline.lua
@ -1,12 +1,29 @@
|
|||||||
ham_radio.digiline_effector = function(pos, _, channel, msg)
|
ham_radio.digiline_effector = function(pos, _, channel, msg)
|
||||||
local digiline_channel = ham_radio.settings.digiline_channel -- static channel
|
local command_channel = ham_radio.settings.digiline_channel -- static channel
|
||||||
|
local broadcast_channel = ham_radio.settings.digiline_broadcast_channel
|
||||||
|
|
||||||
if type(msg) ~= "table" or channel ~= digiline_channel then
|
if channel ~= command_channel and channel ~= broadcast_channel then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
|
|
||||||
|
-- broadcast channel - text message
|
||||||
|
if channel == broadcast_channel then
|
||||||
|
if type(msg) == "string" then
|
||||||
|
meta:set_string("broadcast_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
|
if msg.command == "get" then
|
||||||
digilines.receptor_send(pos, digilines.rules.default, digiline_channel, {
|
digilines.receptor_send(pos, digilines.rules.default, digiline_channel, {
|
||||||
frequency = meta:get_string("frequency"),
|
frequency = meta:get_string("frequency"),
|
||||||
|
1
init.lua
1
init.lua
@ -28,6 +28,7 @@ ham_radio = {
|
|||||||
max = 9999999
|
max = 9999999
|
||||||
},
|
},
|
||||||
digiline_channel = "ham_radio",
|
digiline_channel = "ham_radio",
|
||||||
|
digiline_broadcast_channel = "ham_radio_broadcast",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ minetest.register_node("ham_radio:transmitter", {
|
|||||||
digiline = {
|
digiline = {
|
||||||
receptor = {action = function() end},
|
receptor = {action = function() end},
|
||||||
effector = {
|
effector = {
|
||||||
action = ham_radio.digiline_effector
|
action = ham_radio.digiline_effector
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user