Mineclonia/mods/ITEMS/mcl_itemframes/init.lua

164 lines
5.1 KiB
Lua
Raw Normal View History

minetest.register_entity("mcl_itemframes:item",{
2015-06-29 17:55:56 +00:00
hp_max = 1,
2018-05-12 17:06:44 +00:00
visual = "wielditem",
visual_size = {x=0.3,y=0.3},
2015-06-29 17:55:56 +00:00
collisionbox = {0,0,0,0,0,0},
2018-05-12 17:06:44 +00:00
physical = false,
textures = { "empty.png" },
2015-06-29 17:55:56 +00:00
on_activate = function(self, staticdata)
2018-05-12 17:06:44 +00:00
if staticdata ~= nil and staticdata ~= "" then
local data = staticdata:split(';')
if data and data[1] and data[2] then
self._nodename = data[1]
self._texture = data[2]
2015-06-29 17:55:56 +00:00
end
end
2018-05-12 17:06:44 +00:00
if self._texture ~= nil then
self.object:set_properties({textures={self._texture}})
2015-06-29 17:55:56 +00:00
end
end,
get_staticdata = function(self)
2018-05-12 17:06:44 +00:00
if self._nodename ~= nil and self._texture ~= nil then
return self._nodename .. ';' .. self._texture
2015-06-29 17:55:56 +00:00
end
return ""
end,
2018-05-12 17:06:44 +00:00
_update_texture = function(self)
if self._texture ~= nil then
self.object:set_properties({textures={self._texture}})
end
end,
2015-06-29 17:55:56 +00:00
})
local facedir = {}
facedir[0] = {x=0,y=0,z=1}
facedir[1] = {x=1,y=0,z=0}
facedir[2] = {x=0,y=0,z=-1}
facedir[3] = {x=-1,y=0,z=0}
local remove_item_entity = function(pos, node)
2015-06-29 17:55:56 +00:00
local objs = nil
if node.name == "mcl_itemframes:item_frame" then
objs = minetest.get_objects_inside_radius(pos, .5)
2015-06-29 17:55:56 +00:00
end
if objs then
for _, obj in ipairs(objs) do
if obj and obj:get_luaentity() and obj:get_luaentity().name == "mcl_itemframes:item" then
2015-06-29 17:55:56 +00:00
obj:remove()
end
end
end
end
local update_item_entity = function(pos, node)
remove_item_entity(pos, node)
local meta = minetest.get_meta(pos)
2015-06-29 17:55:56 +00:00
if meta:get_string("item") ~= "" then
if node.name == "mcl_itemframes:item_frame" then
2015-06-29 17:55:56 +00:00
local posad = facedir[node.param2]
pos.x = pos.x + posad.x*6.5/16
pos.y = pos.y + posad.y*6.5/16
pos.z = pos.z + posad.z*6.5/16
end
local e = minetest.add_entity(pos,"mcl_itemframes:item")
2018-05-12 17:06:44 +00:00
local lua = e:get_luaentity()
lua._nodename = node.name
lua._texture = ItemStack(meta:get_string("item")):get_name()
lua:_update_texture()
if node.name == "mcl_itemframes:item_frame" then
2015-06-29 17:55:56 +00:00
local yaw = math.pi*2 - node.param2 * math.pi/2
e:setyaw(yaw)
end
end
end
2017-03-30 00:38:08 +00:00
local drop_item = function(pos, node, meta)
2015-06-29 17:55:56 +00:00
if meta:get_string("item") ~= "" then
if node.name == "mcl_itemframes:item_frame" and not minetest.settings:get_bool("creative_mode") then
local item = ItemStack(minetest.deserialize(meta:get_string("itemdata")))
minetest.add_item(pos, item)
2015-06-29 17:55:56 +00:00
end
meta:set_string("item", "")
meta:set_string("itemdata", "")
meta:set_string("infotext", "")
2015-06-29 17:55:56 +00:00
end
remove_item_entity(pos, node)
2015-06-29 17:55:56 +00:00
end
2017-12-05 13:09:39 +00:00
local on_rotate
if minetest.get_modpath("screwdriver") then
on_rotate = screwdriver.disallow
end
minetest.register_node("mcl_itemframes:item_frame",{
2017-01-04 05:51:26 +00:00
description = "Item Frame",
_doc_items_longdesc = "Item frames are decorative blocks in which items can be placed.",
_doc_items_usagehelp = "Hold any item in your hand and right-click the item frame to place the item into the frame. Rightclick the item frame again to retrieve the item.",
2017-08-03 14:01:23 +00:00
drawtype = "mesh",
is_ground_content = false,
mesh = "mcl_itemframes_itemframe1facedir.obj",
2017-08-03 14:01:23 +00:00
selection_box = { type = "fixed", fixed = {-6/16, -6/16, 7/16, 6/16, 6/16, 0.5} },
collision_box = { type = "fixed", fixed = {-6/16, -6/16, 7/16, 6/16, 6/16, 0.5} },
tiles = {"mcl_itemframes_itemframe_background.png", "mcl_itemframes_itemframe_background.png", "mcl_itemframes_itemframe_background.png", "mcl_itemframes_itemframe_background.png", "default_wood.png", "mcl_itemframes_itemframe_background.png"},
inventory_image = "mcl_itemframes_item_frame.png",
wield_image = "mcl_itemframes_item_frame.png",
2015-06-29 17:55:56 +00:00
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = true,
groups = { dig_immediate=3,deco_block=1,dig_by_piston=1},
sounds = mcl_sounds.node_sound_defaults(),
2015-06-29 17:55:56 +00:00
on_rightclick = function(pos, node, clicker, itemstack)
if not itemstack then return end
local meta = minetest.get_meta(pos)
2017-12-10 22:06:03 +00:00
drop_item(pos, node, meta)
-- item holds the itemstring
meta:set_string("item", itemstack:get_name())
local put_itemstack = ItemStack(itemstack)
put_itemstack:set_count(1)
local itemdata = minetest.serialize(put_itemstack:to_table())
-- itemdata holds the serialized itemstack in table form
update_item_entity(pos,node)
-- Add node infotext when item has been named
2017-12-10 22:06:03 +00:00
meta:set_string("itemdata", itemdata)
local imeta = itemstack:get_meta()
local iname = imeta:get_string("name")
if iname then
meta:set_string("infotext", iname)
end
2017-12-10 22:06:03 +00:00
if not minetest.settings:get_bool("creative_mode") then
itemstack:take_item()
2015-06-29 17:55:56 +00:00
end
return itemstack
end,
2017-03-30 00:38:08 +00:00
on_destruct = function(pos)
local meta = minetest.get_meta(pos)
2017-03-30 00:38:08 +00:00
local node = minetest.get_node(pos)
drop_item(pos, node, meta)
2015-06-29 17:55:56 +00:00
end,
2017-12-05 13:09:39 +00:00
on_rotate = on_rotate,
2015-06-29 17:55:56 +00:00
})
2017-01-12 02:04:58 +00:00
minetest.register_craft({
output = 'mcl_itemframes:item_frame',
2017-01-12 02:04:58 +00:00
recipe = {
2017-01-31 22:32:56 +00:00
{'mcl_core:stick', 'mcl_core:stick', 'mcl_core:stick'},
{'mcl_core:stick', 'mcl_mobitems:leather', 'mcl_core:stick'},
{'mcl_core:stick', 'mcl_core:stick', 'mcl_core:stick'},
2017-01-12 02:04:58 +00:00
}
})
minetest.register_lbm({
label = "Update legacy item frames",
name = "mcl_itemframes:update_legacy_item_frames",
nodenames = {"itemframes:frame"},
action = function(pos, node)
-- Swap legacy node, then respawn entity
node.name = "mcl_itemframes:item_frame"
minetest.swap_node(pos, node)
update_item_entity(pos, node)
end,
})