summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFaceDeer <derksenmobile@gmail.com>2017-09-10 23:24:09 -0600
committerFaceDeer <derksenmobile@gmail.com>2017-09-10 23:24:09 -0600
commit9103c455ddb85b6eaa55f304a8ec0f6d7bff5adf (patch)
tree605124289a7ac5612c011d5b1c539dded179da4d
parentb6ccd1c714412c394f5ae0526167ff7bf45a5e0b (diff)
appears to be a timing issue with doc.show_entryorigin/extrusion
-rw-r--r--node_builders.lua37
-rw-r--r--node_controllers.lua2
-rw-r--r--node_crate.lua2
-rw-r--r--node_diggers.lua2
4 files changed, 36 insertions, 7 deletions
diff --git a/node_builders.lua b/node_builders.lua
index c5b794c..424eb67 100644
--- a/node_builders.lua
+++ b/node_builders.lua
@@ -4,8 +4,36 @@ local S, NS = dofile(MP.."/intllib.lua")
-- Note: builders go in group 4 and have both test_build and execute_build methods.
-local builder_formspec =
- "size[8,5.2]" ..
+local builder_formspec = nil
+
+if minetest.get_modpath("doc") then
+ builder_formspec = "size[8,5.2]" ..
+ default.gui_bg ..
+ default.gui_bg_img ..
+ default.gui_slots ..
+ "list[current_name;main;0,0;1,1;]" ..
+ "label[0,0.8;" .. S("Block to build") .. "]" ..
+ "field[1.3,0.8;1,0.1;extrusion;" .. S("Extrusion") .. ";${extrusion}]" ..
+ "tooltip[extrusion;" .. S("Builder will extrude this many blocks in the direction it is facing.\nCan be set from 1 to @1.\nNote that Digtron won't build into unloaded map regions.", digtron.maximum_extrusion) .. "]" ..
+ "field[2.3,0.8;1,0.1;period;" .. S("Periodicity") .. ";${period}]" ..
+ "tooltip[period;" .. S("Builder will build once every n steps.\nThese steps are globally aligned, so all builders with the\nsame period and offset will build on the same location.") .. "]" ..
+ "field[3.3,0.8;1,0.1;offset;" .. S("Offset") .. ";${offset}]" ..
+ "tooltip[offset;" .. S("Offsets the start of periodicity counting by this amount.\nFor example, a builder with period 2 and offset 0 builds\nevery even-numbered block and one with period 2 and\noffset 1 builds every odd-numbered block.") .. "]" ..
+ "button_exit[4.0,0.5;1,0.1;set;" .. S("Save &\nShow") .. "]" ..
+ "tooltip[set;" .. S("Saves settings") .. "]" ..
+ "field[5.3,0.8;1,0.1;build_facing;" .. S("Facing") .. ";${build_facing}]" ..
+ "tooltip[build_facing;" .. S("Value from 0-23. Not all block types make use of this.\nUse the 'Read & Save' button to copy the facing of the block\ncurrently in the builder output location.") .. "]" ..
+ "button_exit[6.0,0.5;1,0.1;read;" .. S("Read &\nSave") .. "]" ..
+ "tooltip[read;" .. S("Reads the facing of the block currently in the build location,\nthen saves all settings.") .. "]" ..
+ "list[current_player;main;0,1.3;8,1;]" ..
+ default.get_hotbar_bg(0,1.3) ..
+ "list[current_player;main;0,2.5;8,3;8]" ..
+ "listring[current_player;main]" ..
+ "listring[current_name;main]" ..
+ "button_exit[7.0,0.5;1,0.1;help;" .. S("Help") .. "]" ..
+ "tooltip[help;" .. S("Show documentation about this block") .. "]"
+else
+ builder_formspec = "size[8,5.2]" ..
default.gui_bg ..
default.gui_bg_img ..
default.gui_slots ..
@@ -28,7 +56,8 @@ local builder_formspec =
"list[current_player;main;0,2.5;8,3;8]" ..
"listring[current_player;main]" ..
"listring[current_name;main]"
-
+end
+
-- Builds objects in the targeted node. This is a complicated beastie.
minetest.register_node("digtron:builder", {
description = S("Digtron Builder Module"),
@@ -147,7 +176,7 @@ minetest.register_node("digtron:builder", {
end
if fields.help and minetest.get_modpath("doc") then --check for mod in case someone disabled it after this digger was built
- doc.show_entry(sender:get_player_name(), "nodes", "digtron:builder")
+ minetest.after(0.5, doc.show_entry, sender:get_player_name(), "nodes", "digtron:builder", true)
end
digtron.update_builder_item(pos)
diff --git a/node_controllers.lua b/node_controllers.lua
index 37805ef..a09cfbe 100644
--- a/node_controllers.lua
+++ b/node_controllers.lua
@@ -275,7 +275,7 @@ minetest.register_node("digtron:auto_controller", {
end
if fields.help and minetest.get_modpath("doc") then --check for mod in case someone disabled it after this digger was built
- doc.show_entry(sender:get_player_name(), "nodes", "digtron:auto_controller")
+ minetest.after(0.5, doc.show_entry, sender:get_player_name(), "nodes", "digtron:auto_controller", true)
end
end,
diff --git a/node_crate.lua b/node_crate.lua
index 7e41a8e..017023d 100644
--- a/node_crate.lua
+++ b/node_crate.lua
@@ -100,7 +100,7 @@ minetest.register_node("digtron:loaded_crate", {
end
if fields.help and minetest.get_modpath("doc") then --check for mod in case someone disabled it after this digger was built
- doc.show_entry(sender:get_player_name(), "nodes", "digtron:loaded_crate")
+ minetest.after(0.5, doc.show_entry, sender:get_player_name(), "nodes", "digtron:loaded_crate", true)
end
if not (fields.unpack or fields.show) then
diff --git a/node_diggers.lua b/node_diggers.lua
index dc8ddfc..c12b46c 100644
--- a/node_diggers.lua
+++ b/node_diggers.lua
@@ -63,7 +63,7 @@ local intermittent_on_receive_fields = function(pos, formname, fields, sender)
end
if fields.help and minetest.get_modpath("doc") then --check for mod in case someone disabled it after this digger was built
local node_name = minetest.get_node(pos).name
- doc.show_entry(sender:get_player_name(), "nodes", node_name)
+ minetest.after(0.5, doc.show_entry, sender:get_player_name(), "nodes", node_name, true)
end
end,