2021-05-14 19:50:16 +03:00
|
|
|
--[[
|
|
|
|
|
|
|
|
Signs Bot
|
|
|
|
=========
|
|
|
|
|
|
|
|
Copyright (C) 2019-2021 Joachim Stolberg
|
|
|
|
|
|
|
|
GPLv3
|
|
|
|
See LICENSE.txt for more information
|
2022-09-24 12:01:30 +03:00
|
|
|
|
2023-08-26 11:27:15 +03:00
|
|
|
Signs Bot: Ingame Documentation
|
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
|
|
|
signs_bot.doc = {}
|
|
|
|
|
|
|
|
if not minetest.get_modpath("doc") then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local function formspec(data)
|
|
|
|
if data.image then
|
|
|
|
local image = "image["..(doc.FORMSPEC.ENTRY_WIDTH - 3)..",0;3,2;"..data.image.."]"
|
|
|
|
local formstring = doc.widgets.text(data.text, doc.FORMSPEC.ENTRY_START_X, doc.FORMSPEC.ENTRY_START_Y+1.6, doc.FORMSPEC.ENTRY_WIDTH, doc.FORMSPEC.ENTRY_HEIGHT - 1.6)
|
|
|
|
return image..formstring
|
|
|
|
elseif data.item then
|
|
|
|
local box = "box["..(doc.FORMSPEC.ENTRY_WIDTH - 1.6)..",0;1,1.1;#BBBBBB]"
|
|
|
|
local image = "item_image["..(doc.FORMSPEC.ENTRY_WIDTH - 1.5)..",0.1;1,1;"..data.item.."]"
|
|
|
|
local formstring = doc.widgets.text(data.text, doc.FORMSPEC.ENTRY_START_X, doc.FORMSPEC.ENTRY_START_Y+0.8, doc.FORMSPEC.ENTRY_WIDTH, doc.FORMSPEC.ENTRY_HEIGHT - 0.8)
|
|
|
|
return box..image..formstring
|
|
|
|
else
|
|
|
|
return doc.entry_builders.text(data.text)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local start_doc = table.concat({
|
2021-05-14 19:50:16 +03:00
|
|
|
S("After you have placed the Signs Bot Box, you can start the bot by means of the 'On' button in the box menu."),
|
|
|
|
S("If the bot returns to its box right away, you will likely need to charge it with electrical energy (techage) first."),
|
|
|
|
S("The bot then runs straight up until it reaches an obstacle (a step with two or more blocks up or down or a sign.)"),
|
|
|
|
S("If the bot first reaches a sign it will execute the commands on the sign."),
|
|
|
|
S("If the command(s) on the sign is e.g. 'turn_around', the bot turns and goes back."),
|
|
|
|
S("In this case, the bot reaches his box again and turns off."),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("The Signs Bot Box has an inventory with 6 stacks for signs and 8 stacks for other items (to be placed/dug by the bot)."),
|
|
|
|
S("This inventory simulates the bot internal inventory."),
|
|
|
|
S("That means you will only have access to the inventory if the bot is turned off ('sitting' in his box)."),
|
2020-05-31 23:31:18 +03:00
|
|
|
}, "\n")
|
|
|
|
|
|
|
|
local control_doc = table.concat({
|
2021-05-14 19:50:16 +03:00
|
|
|
S("You simply control the direction of the bot by means of the 'turn left' and 'turn right' signs (signs with the arrow)."),
|
|
|
|
S("The bot can run over steps (one block up/down). But there are also commands to move the bot up and down."),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("It is not necessary to mark a way back to the box."),
|
|
|
|
S("With the command 'turn_off' the bot will turn off and be back in his box from every position."),
|
|
|
|
S("The same applies if you turn off the bot by the box menu."),
|
|
|
|
S("If the bot reaches a sign from the wrong direction (from back or sides) the sign will be ignored."),
|
|
|
|
S("The bot will walk over."),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("All predefined signs have a menu with a list of the bot commands."),
|
|
|
|
S("These signs can't be changed, but you can craft and program your own signs."),
|
|
|
|
S("For this you have to use the 'command' sign."),
|
|
|
|
S("This sign has an edit field for your commands and a help page with all available commands."),
|
|
|
|
S("The help page has a copy button to simplify the programming."),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("Also for your own signs it is important to know:"),
|
|
|
|
S("After the execution of the last command of the sign, the bot falls back into its default behaviour and runs in its taken direction."),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("A standard job for the bot is to move items from one chest to another"),
|
|
|
|
S("(chest or node with a chest like inventory)."),
|
|
|
|
S("This can be done by means of the two signs 'take item' and 'add item'."),
|
|
|
|
S("These signs have to be placed on top of chest nodes."),
|
2020-05-31 23:31:18 +03:00
|
|
|
}, "\n")
|
|
|
|
|
|
|
|
local sensor_doc = table.concat({
|
2021-05-14 19:50:16 +03:00
|
|
|
S("In addition to the signs the bot can be controlled by means of sensors."),
|
|
|
|
S("Sensors like the Bot Sensor have two states: on and off."),
|
|
|
|
S("If the Bot Sensor detects a bot it will switch to the state 'on' and"),
|
|
|
|
S("sends a signal to a connected block, called an actuator."),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("Sensors are:"),
|
|
|
|
S("- Bot Sensor: Sends a signal when the robot passes by"),
|
|
|
|
S("- Node Sensor: Sends a signal when it detects any node"),
|
|
|
|
S("- Crop Sensor: Sends a signal when, for example wheat is fully grown"),
|
|
|
|
S("- Bot Chest: Sends a signal depending on the chest state (empty, full)"),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("Actuators are:"),
|
|
|
|
S("- Signs Bot Box: Can turn the bot off and on"),
|
|
|
|
S("- Control Unit: Can be used to exchange the sign to lead the bot"),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("Additional sensors and actuator can be added by other mods."),
|
2020-05-31 23:31:18 +03:00
|
|
|
}, "\n")
|
|
|
|
|
|
|
|
|
|
|
|
local tool_doc = table.concat({
|
2021-05-14 19:50:16 +03:00
|
|
|
S("To send a signal from a sensor to an actuator, the sensor has to be connected (paired) with actuator."),
|
|
|
|
S("To connect sensor and actuator, the Sensor Connection Tool has to be used."),
|
|
|
|
S("Simply click with the tool on both blocks and the sensor will be connected with the actuator."),
|
|
|
|
S("A successful connection is indicated by a ping/pong noise."),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("Before you connect sensor with actuator, take care that the actuator is in the requested state."),
|
|
|
|
S("For example: If you want to start the Bot with a sensor, connect the sensor with the Bot Box,"),
|
|
|
|
S("when the Bot is in the state 'on'. Otherwise the sensor signal will stop the Bot,"),
|
|
|
|
S("instead of starting it."),
|
2020-05-31 23:31:18 +03:00
|
|
|
}, "\n")
|
|
|
|
|
|
|
|
|
|
|
|
local inventory_doc = table.concat({
|
2021-05-14 19:50:16 +03:00
|
|
|
S("The following applies to all commands that are used to place items in the bot inventory, like:"),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("- take_item <num> <slot>"),
|
|
|
|
S("- pickup_items <slot>"),
|
|
|
|
S("- trash_sign <slot>"),
|
|
|
|
S("- harvest <slot>"),
|
|
|
|
S("- dig_front <slot> <lvl>"),
|
|
|
|
S("- dig_left <slot> <lvl>"),
|
|
|
|
S("- dig_right <slot> <lvl>"),
|
|
|
|
S("- dig_below <slot> <lvl>"),
|
|
|
|
S("- dig_above <slot> <lvl>"),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("If no slot or slot 0 was specified with the command (case A), all 8 slots of the bot inventory "),
|
|
|
|
S("are checked one after the other. If a slot was specified (case B), only this slot is checked."),
|
|
|
|
S("In both cases the following applies: If the slot is preconfigured and fits the item, "),
|
|
|
|
S("or if the slot is not configured and empty, or is only partially filled with the item type "),
|
|
|
|
S("(which should be added), then the items are added."),
|
|
|
|
S("If not all items can be added, the remaining slots will be tried out in case A."),
|
|
|
|
S("Anything that could not be added to your own inventory goes back."),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("The following applies to all commands that are used to take items from the bot inventory, like:"),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("- add_item <num> <slot>"),
|
2020-05-31 23:31:18 +03:00
|
|
|
"",
|
2021-05-14 19:50:16 +03:00
|
|
|
S("It doesn't matter whether a slot is configured or not. The bot takes the first stack that "),
|
|
|
|
S("it can find from its own inventory and tries to use it."),
|
|
|
|
S("If a slot is specified, it only takes this, if no slot has been specified, it checks all of "),
|
|
|
|
S("them one after the other, starting from slot 1 until it finds something."),
|
|
|
|
S("If the number found is smaller than requested, he tries to take the rest out of any slot."),
|
2020-05-31 23:31:18 +03:00
|
|
|
}, "\n")
|
|
|
|
|
|
|
|
|
2023-05-09 19:41:56 +03:00
|
|
|
local sorting_data = {"start", "control", "sensor_doc", "tool", "invent",
|
|
|
|
"box", "bot_flap", "duplicator",
|
|
|
|
"bot_sensor", "node_sensor", "crop_sensor", "chest", "timer",
|
|
|
|
"changer", "sensor_extender", "and", "delayer",
|
|
|
|
"farming", "pattern", "copy3x3x3", "flowers", "aspen",
|
|
|
|
"sign_cmnd", "sign_right", "sign_left", "sign_take", "sign_add", "sign_stop", "sign_blank"}
|
|
|
|
|
|
|
|
if minetest.global_exists("minecart") then
|
|
|
|
table.insert(sorting_data, "cart_sensor")
|
|
|
|
table.insert(sorting_data, "sign_add_cart")
|
|
|
|
table.insert(sorting_data, "sign_take_cart")
|
|
|
|
end
|
|
|
|
|
|
|
|
if minetest.global_exists("xdecor") then
|
|
|
|
table.insert(sorting_data, "water")
|
|
|
|
table.insert(sorting_data, "soup")
|
|
|
|
end
|
|
|
|
|
2020-05-31 23:31:18 +03:00
|
|
|
doc.add_category("signs_bot",
|
|
|
|
{
|
2021-05-14 19:50:16 +03:00
|
|
|
name = S("Signs Bot"),
|
|
|
|
description = S("A robot controlled by signs, used for automated work"),
|
2020-05-31 23:31:18 +03:00
|
|
|
sorting = "custom",
|
|
|
|
build_formspec = formspec,
|
2023-05-09 19:41:56 +03:00
|
|
|
sorting_data = sorting_data,
|
2020-05-31 23:31:18 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
doc.add_entry("signs_bot", "start", {
|
2021-05-14 19:50:16 +03:00
|
|
|
name = S("Start the Bot"),
|
2020-05-31 23:31:18 +03:00
|
|
|
data = {text = start_doc, image = "signs_bot_doc_image.png"},
|
|
|
|
})
|
|
|
|
|
|
|
|
doc.add_entry("signs_bot", "control", {
|
2021-05-14 19:50:16 +03:00
|
|
|
name = S("Control the Bot"),
|
2020-05-31 23:31:18 +03:00
|
|
|
data = {text = control_doc, image = "signs_bot_doc_image.png"},
|
|
|
|
})
|
|
|
|
|
|
|
|
doc.add_entry("signs_bot", "sensor_doc", {
|
2021-05-14 19:50:16 +03:00
|
|
|
name = S("Sensors and Actuators"),
|
2020-05-31 23:31:18 +03:00
|
|
|
data = {text = sensor_doc, image = "signs_bot_doc_image.png"},
|
|
|
|
})
|
|
|
|
|
|
|
|
doc.add_entry("signs_bot", "tool", {
|
2021-05-14 19:50:16 +03:00
|
|
|
name = S("Connecting sensors and actuator"),
|
2020-05-31 23:31:18 +03:00
|
|
|
data = {text = tool_doc, image = "signs_bot_doc_image.png"},
|
|
|
|
})
|
|
|
|
|
2023-05-09 19:41:56 +03:00
|
|
|
doc.add_entry("signs_bot", "invent", {
|
2021-05-14 19:50:16 +03:00
|
|
|
name = S("Bot inventory behavior"),
|
2020-05-31 23:31:18 +03:00
|
|
|
data = {text = inventory_doc, image = "signs_bot_doc_image.png"},
|
|
|
|
})
|