mirror of
https://github.com/minetest-mods/digtron.git
synced 2024-11-13 02:23:45 +01:00
254 lines
9.5 KiB
Lua
254 lines
9.5 KiB
Lua
|
-- internationalization boilerplate
|
||
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
||
|
local S, NS = dofile(MP.."/intllib.lua")
|
||
|
|
||
|
|
||
|
-- Note: builders go in group 4
|
||
|
|
||
|
-- TODO make this global
|
||
|
local player_interacting_with_builder_pos = {}
|
||
|
|
||
|
local get_formspec = function(pos)
|
||
|
local meta = minetest.get_meta(pos)
|
||
|
|
||
|
local period = meta:get_int("period")
|
||
|
if period < 1 then period = 1 end
|
||
|
local offset = meta:get_int("offset")
|
||
|
local extrusion = meta:get_int("extrusion")
|
||
|
local build_facing = meta:get_int("build_facing")
|
||
|
local item_name = meta:get_string("build_item")
|
||
|
|
||
|
return "size[8,5.2]" ..
|
||
|
"item_image[0,0;1,1;" .. item_name .. "]"..
|
||
|
"listcolors[#00000069;#5A5A5A00;#141318;#30434C;#FFF]" ..
|
||
|
"list[detached:digtron:builder_item;main;0,0;1,1;]" ..
|
||
|
"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.config.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[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[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[detached:digtron:builder_item;main]"
|
||
|
end
|
||
|
|
||
|
----------------------------------------------------------------------
|
||
|
-- Detached inventory for setting the builder item
|
||
|
|
||
|
local inv = minetest.create_detached_inventory("digtron:builder_item", {
|
||
|
allow_move = function(inv, from_list, from_index, to_list, to_index, count, player)
|
||
|
return 0
|
||
|
end,
|
||
|
allow_put = function(inv, listname, index, stack, player)
|
||
|
-- Always disallow put, but use this to read what the player *tried* adding and set the builder appropriately
|
||
|
local item = stack:get_name()
|
||
|
|
||
|
-- Ignore unknown items
|
||
|
if minetest.registered_items[item] == nil then return 0 end
|
||
|
|
||
|
local player_name = player:get_player_name()
|
||
|
local pos = player_interacting_with_builder_pos[player_name]
|
||
|
if pos == nil then
|
||
|
return 0
|
||
|
end
|
||
|
|
||
|
local node = minetest.get_node(pos)
|
||
|
if node.name ~= "digtron:builder" then
|
||
|
minetest.log("warning", "[Digtron] builder detached inventory had player " .. player_name
|
||
|
.. " attempt to set " .. item .. " at " .. minetest.pos_to_string(pos) ..
|
||
|
" but the node at that location was a " .. node.name)
|
||
|
return 0
|
||
|
end
|
||
|
|
||
|
local meta = minetest.get_meta(pos)
|
||
|
local digtron_id = meta:get_string("digtron_id")
|
||
|
if digtron_id ~= "" then
|
||
|
minetest.log("warning", "[Digtron] builder detached inventory had player " .. player_name
|
||
|
.. " attempt to set " .. item .. " at " .. minetest.pos_to_string(pos) ..
|
||
|
" but the builder node at that location was already assembled into " .. digtron_id)
|
||
|
return 0
|
||
|
end
|
||
|
|
||
|
meta:set_string("build_item", item)
|
||
|
minetest.show_formspec(player_name, "digtron:builder", get_formspec(pos))
|
||
|
|
||
|
return 0
|
||
|
end,
|
||
|
allow_take = function(inv, listname, index, stack, player)
|
||
|
return 0
|
||
|
end,
|
||
|
-- on_move = function(inv, from_list, from_index, to_list, to_index, count, player)
|
||
|
-- end,
|
||
|
-- on_take = function(inv, listname, index, stack, player)
|
||
|
-- end,
|
||
|
-- on_put = function(inv, listname, index, stack, player)
|
||
|
-- end
|
||
|
})
|
||
|
inv:set_size("main", 1)
|
||
|
|
||
|
local builder_on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
|
||
|
local returnstack, success = digtron.on_rightclick(pos, node, clicker, itemstack, pointed_thing)
|
||
|
if returnstack then
|
||
|
return returnstack, success
|
||
|
end
|
||
|
|
||
|
if clicker == nil then return end
|
||
|
local player_name = clicker:get_player_name()
|
||
|
|
||
|
local meta = minetest.get_meta(pos)
|
||
|
|
||
|
local digtron_id = meta:get_string("digtron_id")
|
||
|
if digtron_id ~= "" then
|
||
|
minetest.sound_play({name = "digtron_error", gain = 0.1}, {to_player=account.name})
|
||
|
minetest.chat_send_player(player_name, "This Digtron is active, interact with it via the controller node.")
|
||
|
return
|
||
|
end
|
||
|
|
||
|
player_interacting_with_builder_pos[player_name] = pos
|
||
|
minetest.show_formspec(player_name,
|
||
|
"digtron:builder",
|
||
|
get_formspec(pos))
|
||
|
end
|
||
|
|
||
|
minetest.register_on_player_receive_fields(function(sender, formname, fields)
|
||
|
if formname ~= "digtron:builder" then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
local player_name = sender:get_player_name()
|
||
|
local pos = player_interacting_with_builder_pos[player_name]
|
||
|
if pos == nil then
|
||
|
minetest.log("error", "[Digtron] ".. player_name .. " tried interacting with a Digtron builder but"
|
||
|
.. " no position was recorded.")
|
||
|
return
|
||
|
end
|
||
|
|
||
|
local meta = minetest.get_meta(pos)
|
||
|
local period = tonumber(fields.period)
|
||
|
local offset = tonumber(fields.offset)
|
||
|
local build_facing = tonumber(fields.build_facing)
|
||
|
local extrusion = tonumber(fields.extrusion)
|
||
|
|
||
|
if period and period > 0 then
|
||
|
meta:set_int("period", math.floor(tonumber(fields.period)))
|
||
|
else
|
||
|
period = meta:get_int("period")
|
||
|
end
|
||
|
if offset then
|
||
|
meta:set_int("offset", math.floor(tonumber(fields.offset)))
|
||
|
else
|
||
|
offset = meta:get_int("offset")
|
||
|
end
|
||
|
if build_facing and build_facing >= 0 and build_facing < 24 then
|
||
|
local inv = meta:get_inventory()
|
||
|
local target_item = inv:get_stack("main",1)
|
||
|
if target_item:get_definition().paramtype2 == "wallmounted" then
|
||
|
if build_facing < 6 then
|
||
|
meta:set_int("build_facing", math.floor(build_facing))
|
||
|
-- wallmounted facings only run from 0-5
|
||
|
end
|
||
|
else
|
||
|
meta:set_int("build_facing", math.floor(build_facing))
|
||
|
end
|
||
|
end
|
||
|
if extrusion and extrusion > 0 and extrusion <= digtron.config.maximum_extrusion then
|
||
|
meta:set_int("extrusion", math.floor(tonumber(fields.extrusion)))
|
||
|
else
|
||
|
extrusion = meta:get_int("extrusion")
|
||
|
end
|
||
|
|
||
|
-- if fields.set then
|
||
|
-- digtron.show_offset_markers(pos, offset, period)
|
||
|
--
|
||
|
-- elseif fields.read then
|
||
|
-- local facing = minetest.get_node(pos).param2
|
||
|
-- local buildpos = digtron.find_new_pos(pos, facing)
|
||
|
-- local target_node = minetest.get_node(buildpos)
|
||
|
-- if target_node.name ~= "air" and minetest.get_item_group(target_node.name, "digtron") == 0 then
|
||
|
-- local meta = minetest.get_meta(pos)
|
||
|
-- local inv = meta:get_inventory()
|
||
|
-- local target_name = digtron.builder_read_item_substitutions[target_node.name] or target_node.name
|
||
|
-- inv:set_stack("main", 1, target_name)
|
||
|
-- meta:set_int("build_facing", target_node.param2)
|
||
|
-- end
|
||
|
-- end
|
||
|
|
||
|
if fields.help then
|
||
|
minetest.after(0.5, doc.show_entry, sender:get_player_name(), "nodes", "digtron:builder", true)
|
||
|
end
|
||
|
|
||
|
digtron.update_builder_item(pos)
|
||
|
end)
|
||
|
|
||
|
|
||
|
-- Builds objects in the targeted node. This is a complicated beastie.
|
||
|
minetest.register_node("digtron:builder", {
|
||
|
description = S("Digtron Builder Module"),
|
||
|
_doc_items_longdesc = digtron.doc.builder_longdesc,
|
||
|
_doc_items_usagehelp = digtron.doc.builder_usagehelp,
|
||
|
groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 4},
|
||
|
drop = "digtron:builder",
|
||
|
sounds = default.node_sound_metal_defaults(),
|
||
|
paramtype = "light",
|
||
|
paramtype2= "facedir",
|
||
|
is_ground_content = false,
|
||
|
tiles = {
|
||
|
"digtron_plate.png^[transformR90",
|
||
|
"digtron_plate.png^[transformR270",
|
||
|
"digtron_plate.png",
|
||
|
"digtron_plate.png^[transformR180",
|
||
|
"digtron_plate.png^digtron_builder.png",
|
||
|
"digtron_plate.png",
|
||
|
},
|
||
|
|
||
|
drawtype = "nodebox",
|
||
|
node_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {
|
||
|
{-0.25, 0.3125, 0.3125, 0.25, 0.5, 0.5}, -- FrontFrame_top
|
||
|
{-0.25, -0.5, 0.3125, 0.25, -0.3125, 0.5}, -- FrontFrame_bottom
|
||
|
{0.3125, -0.25, 0.3125, 0.5, 0.25, 0.5}, -- FrontFrame_right
|
||
|
{-0.5, -0.25, 0.3125, -0.3125, 0.25, 0.5}, -- FrontFrame_left
|
||
|
{-0.5, 0.25, -0.5, -0.25, 0.5, 0.5}, -- edge_topright
|
||
|
{-0.5, -0.5, -0.5, -0.25, -0.25, 0.5}, -- edge_bottomright
|
||
|
{0.25, 0.25, -0.5, 0.5, 0.5, 0.5}, -- edge_topleft
|
||
|
{0.25, -0.5, -0.5, 0.5, -0.25, 0.5}, -- edge_bottomleft
|
||
|
{-0.25, 0.4375, -0.5, 0.25, 0.5, -0.4375}, -- backframe_top
|
||
|
{-0.25, -0.5, -0.5, 0.25, -0.4375, -0.4375}, -- backframe_bottom
|
||
|
{-0.5, -0.25, -0.5, -0.4375, 0.25, -0.4375}, -- backframe_left
|
||
|
{0.4375, -0.25, -0.5, 0.5, 0.25, -0.4375}, -- Backframe_right
|
||
|
{-0.0625, -0.3125, 0.3125, 0.0625, 0.3125, 0.375}, -- frontcross_vertical
|
||
|
{-0.3125, -0.0625, 0.3125, 0.3125, 0.0625, 0.375}, -- frontcross_horizontal
|
||
|
}
|
||
|
},
|
||
|
|
||
|
on_construct = function(pos)
|
||
|
local meta = minetest.get_meta(pos)
|
||
|
meta:set_int("period", 1)
|
||
|
meta:set_int("offset", 0)
|
||
|
meta:set_int("build_facing", 0)
|
||
|
meta:set_int("extrusion", 1)
|
||
|
end,
|
||
|
|
||
|
on_rightclick = builder_on_rightclick,
|
||
|
|
||
|
on_destruct = function(pos)
|
||
|
digtron.remove_builder_item(pos)
|
||
|
end,
|
||
|
|
||
|
after_place_node = function(pos)
|
||
|
digtron.update_builder_item(pos)
|
||
|
end,
|
||
|
|
||
|
can_dig = digtron.can_dig,
|
||
|
on_blast = digtron.on_blast,
|
||
|
})
|