2020-05-31 23:31:18 +03:00
|
|
|
--[[
|
|
|
|
|
|
|
|
Signs Bot
|
|
|
|
=========
|
|
|
|
|
2021-05-14 19:50:16 +03:00
|
|
|
Copyright (C) 2019-2021 Joachim Stolberg
|
2020-05-31 23:31:18 +03:00
|
|
|
|
|
|
|
GPL v3
|
|
|
|
See LICENSE.txt for more information
|
2022-09-24 12:01:30 +03:00
|
|
|
|
2020-05-31 23:31:18 +03:00
|
|
|
Bot Sensor
|
|
|
|
(passive node, the Bot detects the sensor and sends the signal)
|
|
|
|
]]--
|
|
|
|
|
|
|
|
-- for lazy programmers
|
2021-05-14 19:50:16 +03:00
|
|
|
local P2S = function(pos) if pos then return minetest.pos_to_string(pos) end end
|
|
|
|
local S2P = minetest.string_to_pos
|
2020-05-31 23:31:18 +03:00
|
|
|
local M = minetest.get_meta
|
|
|
|
|
2021-05-14 19:50:16 +03:00
|
|
|
-- Load support for I18n.
|
|
|
|
local S = signs_bot.S
|
2020-05-31 23:31:18 +03:00
|
|
|
|
|
|
|
local function update_infotext(pos, dest_pos, cmnd)
|
2021-05-14 19:50:16 +03:00
|
|
|
M(pos):set_string("infotext", S("Bot Sensor: Connected with").." "..P2S(dest_pos).." / "..cmnd)
|
2022-09-24 12:01:30 +03:00
|
|
|
end
|
2020-05-31 23:31:18 +03:00
|
|
|
|
|
|
|
minetest.register_node("signs_bot:bot_sensor", {
|
2021-05-14 19:50:16 +03:00
|
|
|
description = S("Bot Sensor"),
|
2020-05-31 23:31:18 +03:00
|
|
|
inventory_image = "signs_bot_sensor_bot_inv.png",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -11/32, -1/2, -11/32, 11/32, -5/16, 11/32},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
tiles = {
|
|
|
|
-- up, down, right, left, back, front
|
|
|
|
"signs_bot_sensor2.png^signs_bot_sensor_bot.png",
|
|
|
|
"signs_bot_sensor2.png",
|
|
|
|
"signs_bot_sensor2.png",
|
|
|
|
"signs_bot_sensor2.png",
|
|
|
|
"signs_bot_sensor2.png",
|
|
|
|
"signs_bot_sensor2.png",
|
|
|
|
},
|
2022-09-24 12:01:30 +03:00
|
|
|
|
2020-05-31 23:31:18 +03:00
|
|
|
after_place_node = function(pos, placer)
|
|
|
|
local meta = M(pos)
|
2021-05-14 19:50:16 +03:00
|
|
|
meta:set_string("infotext", S("Bot Sensor: Not connected"))
|
2020-05-31 23:31:18 +03:00
|
|
|
end,
|
2022-09-24 12:01:30 +03:00
|
|
|
|
2020-05-31 23:31:18 +03:00
|
|
|
update_infotext = update_infotext,
|
|
|
|
on_rotate = screwdriver.disallow,
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype2 = "facedir",
|
2021-05-14 19:50:16 +03:00
|
|
|
use_texture_alpha = signs_bot.CLIP,
|
2020-05-31 23:31:18 +03:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {sign_bot_sensor = 1, cracky = 1},
|
|
|
|
sounds = default.node_sound_metal_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("signs_bot:bot_sensor_on", {
|
2021-05-14 19:50:16 +03:00
|
|
|
description = S("Bot Sensor"),
|
2020-05-31 23:31:18 +03:00
|
|
|
drawtype = "nodebox",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -11/32, -1/2, -11/32, 11/32, -5/16, 11/32},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
tiles = {
|
|
|
|
-- up, down, right, left, back, front
|
|
|
|
"signs_bot_sensor2.png^signs_bot_sensor_bot_on.png",
|
|
|
|
"signs_bot_sensor2.png",
|
|
|
|
"signs_bot_sensor2.png",
|
|
|
|
"signs_bot_sensor2.png",
|
|
|
|
"signs_bot_sensor2.png",
|
|
|
|
"signs_bot_sensor2.png",
|
|
|
|
},
|
2022-09-24 12:01:30 +03:00
|
|
|
|
2020-05-31 23:31:18 +03:00
|
|
|
-- Called from the Bot
|
|
|
|
after_place_node = function(pos)
|
|
|
|
minetest.get_node_timer(pos):start(1)
|
|
|
|
signs_bot.send_signal(pos)
|
|
|
|
signs_bot.lib.activate_extender_nodes(pos, true)
|
|
|
|
end,
|
2022-09-24 12:01:30 +03:00
|
|
|
|
2020-05-31 23:31:18 +03:00
|
|
|
on_timer = function(pos)
|
2021-02-07 16:37:07 +03:00
|
|
|
local node = tubelib2.get_node_lvm(pos)
|
2020-05-31 23:31:18 +03:00
|
|
|
node.name = "signs_bot:bot_sensor"
|
|
|
|
minetest.swap_node(pos, node)
|
|
|
|
return false
|
|
|
|
end,
|
2022-09-24 12:01:30 +03:00
|
|
|
|
2020-05-31 23:31:18 +03:00
|
|
|
update_infotext = update_infotext,
|
|
|
|
on_rotate = screwdriver.disallow,
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype2 = "facedir",
|
2021-05-14 19:50:16 +03:00
|
|
|
use_texture_alpha = signs_bot.CLIP,
|
2020-05-31 23:31:18 +03:00
|
|
|
is_ground_content = false,
|
|
|
|
diggable = false,
|
|
|
|
groups = {sign_bot_sensor = 1, not_in_creative_inventory = 1},
|
|
|
|
sounds = default.node_sound_metal_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "signs_bot:bot_sensor",
|
|
|
|
recipe = {
|
|
|
|
{"", "", ""},
|
|
|
|
{"dye:black", "group:wood", "dye:yellow"},
|
|
|
|
{"default:steel_ingot", "default:mese_crystal_fragment", "default:steel_ingot"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if minetest.get_modpath("doc") then
|
|
|
|
doc.add_entry("signs_bot", "bot_sensor", {
|
2021-05-14 19:50:16 +03:00
|
|
|
name = S("Bot Sensor"),
|
2020-05-31 23:31:18 +03:00
|
|
|
data = {
|
|
|
|
item = "signs_bot:bot_sensor",
|
|
|
|
text = table.concat({
|
2021-05-14 19:50:16 +03:00
|
|
|
S("The Bot Sensor detects any bot and sends a signal, if a bot is nearby."),
|
2022-09-24 12:01:30 +03:00
|
|
|
S("the sensor range is one node/meter."),
|
2021-05-14 19:50:16 +03:00
|
|
|
S("The sensor direction does not care."),
|
2022-09-24 12:01:30 +03:00
|
|
|
}, "\n")
|
2020-05-31 23:31:18 +03:00
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|