2017-02-11 04:26:00 +01:00
|
|
|
mcl_util = {}
|
|
|
|
|
|
|
|
-- Based on minetest.rotate_and_place
|
|
|
|
|
|
|
|
--[[
|
|
|
|
Attempt to predict the desired orientation of the pillar-like node
|
|
|
|
defined by `itemstack`, and place it accordingly in one of 3 possible
|
|
|
|
orientations (X, Y or Z).
|
|
|
|
|
|
|
|
Stacks are handled normally if the `infinitestacks`
|
|
|
|
field is false or omitted (else, the itemstack is not changed).
|
|
|
|
* `invert_wall`: if `true`, place wall-orientation on the ground and ground-
|
|
|
|
orientation on wall
|
|
|
|
|
|
|
|
This function is a simplified version of minetest.rotate_and_place.
|
|
|
|
The Minetest function is seen as inappropriate because this includes mirror
|
|
|
|
images of possible orientations, causing problems with pillar shadings.
|
|
|
|
]]
|
2017-02-11 04:33:06 +01:00
|
|
|
function mcl_util.rotate_axis_and_place(itemstack, placer, pointed_thing, infinitestacks, invert_wall)
|
2017-02-11 04:26:00 +01:00
|
|
|
local unode = minetest.get_node_or_nil(pointed_thing.under)
|
|
|
|
if not unode then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local undef = minetest.registered_nodes[unode.name]
|
|
|
|
if undef and undef.on_rightclick then
|
|
|
|
undef.on_rightclick(pointed_thing.under, unode, placer,
|
|
|
|
itemstack, pointed_thing)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local fdir = minetest.dir_to_facedir(placer:get_look_dir())
|
|
|
|
local wield_name = itemstack:get_name()
|
|
|
|
|
|
|
|
local above = pointed_thing.above
|
|
|
|
local under = pointed_thing.under
|
|
|
|
local is_x = (above.x ~= under.x)
|
|
|
|
local is_y = (above.y ~= under.y)
|
|
|
|
local is_z = (above.z ~= under.z)
|
|
|
|
|
|
|
|
local anode = minetest.get_node_or_nil(above)
|
|
|
|
if not anode then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local pos = pointed_thing.above
|
|
|
|
local node = anode
|
|
|
|
|
|
|
|
if undef and undef.buildable_to then
|
|
|
|
pos = pointed_thing.under
|
|
|
|
node = unode
|
|
|
|
end
|
|
|
|
|
|
|
|
if minetest.is_protected(pos, placer:get_player_name()) then
|
|
|
|
minetest.record_protection_violation(pos, placer:get_player_name())
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local ndef = minetest.registered_nodes[node.name]
|
|
|
|
if not ndef or not ndef.buildable_to then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local p2
|
|
|
|
if is_y then
|
|
|
|
if invert_wall then
|
|
|
|
if fdir == 3 or fdir == 1 then
|
|
|
|
p2 = 12
|
|
|
|
else
|
|
|
|
p2 = 6
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elseif is_x then
|
|
|
|
if invert_wall then
|
|
|
|
p2 = 0
|
|
|
|
else
|
|
|
|
p2 = 12
|
|
|
|
end
|
|
|
|
elseif is_z then
|
|
|
|
if invert_wall then
|
|
|
|
p2 = 0
|
|
|
|
else
|
|
|
|
p2 = 6
|
|
|
|
end
|
|
|
|
end
|
|
|
|
minetest.set_node(pos, {name = wield_name, param2 = p2})
|
|
|
|
|
|
|
|
if not infinitestacks then
|
|
|
|
itemstack:take_item()
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-11 04:33:06 +01:00
|
|
|
-- Wrapper of above function for use as `on_place` callback (Recommended).
|
|
|
|
-- Similar to minetest.rotate_node.
|
|
|
|
function mcl_util.rotate_axis(itemstack, placer, pointed_thing)
|
|
|
|
mcl_util.rotate_axis_and_place(itemstack, placer, pointed_thing,
|
|
|
|
core.setting_getbool("creative_mode"),
|
|
|
|
placer:get_player_control().sneak)
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
2017-02-14 00:10:37 +01:00
|
|
|
-- Moves a single item from one inventory to another
|
2017-02-14 00:44:23 +01:00
|
|
|
--- source_inventory: Inventory to take the item from
|
|
|
|
--- source_list: List name of the source inventory from which to take the item
|
2017-02-14 01:25:02 +01:00
|
|
|
--- source_stack_id: The inventory position ID of the source inventory to take the item from (-1 for first occupied slot)
|
2017-02-14 00:44:23 +01:00
|
|
|
--- destination_inventory: Put item into this inventory
|
|
|
|
--- destination_list: List name of the destination inventory to which to put the item into
|
|
|
|
|
2017-02-14 00:10:37 +01:00
|
|
|
-- Returns true on success and false on failure
|
2017-02-14 00:44:23 +01:00
|
|
|
-- Possible failures: No item in source slot, destination inventory full
|
2017-02-14 00:10:37 +01:00
|
|
|
function mcl_util.move_item(source_inventory, source_list, source_stack_id, destination_inventory, destination_list)
|
2017-02-14 01:25:02 +01:00
|
|
|
if source_stack_id == -1 then
|
|
|
|
source_stack_id = mcl_util.get_first_occupied_inventory_slot(source_inventory, source_list)
|
|
|
|
if source_stack_id == nil then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-14 00:10:37 +01:00
|
|
|
if not source_inventory:is_empty(source_list) then
|
|
|
|
local stack = source_inventory:get_stack(source_list, source_stack_id)
|
|
|
|
local item = stack:get_name()
|
|
|
|
if not stack:is_empty() then
|
|
|
|
if not destination_inventory:room_for_item(destination_list, item) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
stack:take_item()
|
|
|
|
source_inventory:set_stack(source_list, source_stack_id, stack)
|
|
|
|
destination_inventory:add_item(destination_list, item)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
2017-02-14 00:44:23 +01:00
|
|
|
|
|
|
|
-- Moves a single item from one container node into another.
|
|
|
|
--- source_pos: Position ({x,y,z}) of the node to take the item from
|
|
|
|
--- source_list: List name of the source inventory from which to take the item
|
2017-02-14 01:25:02 +01:00
|
|
|
--- source_stack_id: The inventory position ID of the source inventory to take the item from (-1 for first occupied slot)
|
2017-02-14 00:44:23 +01:00
|
|
|
--- destination_pos: Position ({x,y,z}) of the node to put the item into
|
|
|
|
-- Returns true on success and false on failure
|
|
|
|
function mcl_util.move_item_container(source_pos, source_list, source_stack_id, destination_pos)
|
|
|
|
local smeta = minetest.get_meta(source_pos)
|
|
|
|
local dmeta = minetest.get_meta(destination_pos)
|
|
|
|
|
|
|
|
local sinv = smeta:get_inventory()
|
|
|
|
local dinv = dmeta:get_inventory()
|
|
|
|
|
|
|
|
local snodedef = minetest.registered_nodes[minetest.get_node(source_pos).name]
|
|
|
|
local dnodedef = minetest.registered_nodes[minetest.get_node(destination_pos).name]
|
|
|
|
|
2017-02-14 01:25:02 +01:00
|
|
|
if source_stack_id == -1 then
|
|
|
|
source_stack_id = mcl_util.get_first_occupied_inventory_slot(sinv, source_list)
|
|
|
|
if source_stack_id == nil then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-14 00:44:23 +01:00
|
|
|
-- If it's a container, put it into the container
|
|
|
|
if dnodedef.groups.container then
|
|
|
|
if dnodedef.groups.container == 2 or snodedef.groups.continer == 3 then
|
|
|
|
return mcl_util.move_item(sinv, source_list, source_stack_id, dinv, "main")
|
|
|
|
elseif dnodedef.groups.container == 3 then
|
|
|
|
local stack = sinv:get_stack(source_list, source_stack_id)
|
2017-02-20 16:30:07 +01:00
|
|
|
local def = minetest.registered_nodes[stack:get_name()]
|
|
|
|
if stack and (not stack:is_empty()) and (not (def and def.groups and def.groups.shulker_box)) then
|
2017-02-14 00:44:23 +01:00
|
|
|
return mcl_util.move_item(sinv, source_list, source_stack_id, dinv, "main")
|
|
|
|
end
|
|
|
|
elseif dnodedef.groups.container == 4 then
|
|
|
|
return mcl_util.move_item(sinv, source_list, source_stack_id, dinv, "src")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
2017-02-14 01:25:02 +01:00
|
|
|
|
|
|
|
-- Returns the ID of the first non-empty slot in the given inventory list
|
|
|
|
-- or nil, if inventory is empty.
|
|
|
|
function mcl_util.get_first_occupied_inventory_slot(inventory, listname)
|
|
|
|
for i=1, inventory:get_size(listname) do
|
|
|
|
local stack = inventory:get_stack(listname, i)
|
|
|
|
if not stack:is_empty() then
|
|
|
|
return i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return nil
|
|
|
|
end
|