mirror of
https://github.com/pyrollo/display_modpack.git
synced 2024-12-12 16:03:14 +01:00
Atempt to fix "unknown object" issue + code rework
This commit is contained in:
parent
e7856f70a7
commit
9ca3474360
92
init.lua
92
init.lua
@ -24,6 +24,9 @@ display_api = {}
|
|||||||
-- variable as spacing between entity and node
|
-- variable as spacing between entity and node
|
||||||
display_api.entity_spacing = 0.002
|
display_api.entity_spacing = 0.002
|
||||||
|
|
||||||
|
-- Maximum entity position relative to the node pos
|
||||||
|
local max_entity_pos = 1.5
|
||||||
|
|
||||||
-- Miscelaneous values depending on wallmounted param2
|
-- Miscelaneous values depending on wallmounted param2
|
||||||
local wallmounted_values = {
|
local wallmounted_values = {
|
||||||
[2]={dx=-1, dz=0, rx=0, rz=-1, yaw=-math.pi/2},
|
[2]={dx=-1, dz=0, rx=0, rz=-1, yaw=-math.pi/2},
|
||||||
@ -54,27 +57,18 @@ local function get_values(node)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Checks if the object is related to the given position
|
|
||||||
local function check_entity_pos(pos, objref)
|
|
||||||
local real_pos = vector.round(objref:get_pos())
|
|
||||||
local pos_hash = objref:get_luaentity().pos
|
|
||||||
if pos_hash == nil then
|
|
||||||
return vector.equals(real_pos, vector.round(pos))
|
|
||||||
else
|
|
||||||
return vector.equals(minetest.get_position_from_hash(pos_hash), pos)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
--- Gets the display entities attached with a node. Removes extra ones
|
--- Gets the display entities attached with a node. Removes extra ones
|
||||||
local function get_entities(pos)
|
local function get_entities(pos)
|
||||||
local objrefs = {}
|
local objrefs = {}
|
||||||
local ndef = minetest.registered_nodes[minetest.get_node(pos).name]
|
local ndef = minetest.registered_nodes[minetest.get_node(pos).name]
|
||||||
if ndef and ndef.display_entities then
|
if ndef and ndef.display_entities then
|
||||||
for _, objref in ipairs(minetest.get_objects_inside_radius(pos, 1.5)) do
|
for _, objref in
|
||||||
|
ipairs(minetest.get_objects_inside_radius(pos, max_entity_pos)) do
|
||||||
local entity = objref:get_luaentity()
|
local entity = objref:get_luaentity()
|
||||||
if entity and ndef.display_entities[entity.name] and check_entity_pos(pos, objref) then
|
if entity and ndef.display_entities[entity.name] and
|
||||||
|
entity.nodepos and vector.equals(pos, entity.nodepos) then
|
||||||
if objrefs[entity.name] then
|
if objrefs[entity.name] then
|
||||||
objref:remove()
|
objref:remove() -- Remove duplicates
|
||||||
else
|
else
|
||||||
objrefs[entity.name] = objref
|
objrefs[entity.name] = objref
|
||||||
end
|
end
|
||||||
@ -86,7 +80,7 @@ end
|
|||||||
|
|
||||||
local function clip_pos_prop(posprop)
|
local function clip_pos_prop(posprop)
|
||||||
if posprop then
|
if posprop then
|
||||||
return math.max(-1.5, math.min(1.5, posprop))
|
return math.max(-max_entity_pos, math.min(max_entity_pos, posprop))
|
||||||
else
|
else
|
||||||
return 0
|
return 0
|
||||||
end
|
end
|
||||||
@ -100,13 +94,13 @@ local function place_entities(pos)
|
|||||||
local objrefs = get_entities(pos)
|
local objrefs = get_entities(pos)
|
||||||
|
|
||||||
if values and ndef and ndef.display_entities then
|
if values and ndef and ndef.display_entities then
|
||||||
|
|
||||||
for entity_name, props in pairs(ndef.display_entities) do
|
for entity_name, props in pairs(ndef.display_entities) do
|
||||||
local depth = clip_pos_prop(props.depth)
|
local depth = clip_pos_prop(props.depth)
|
||||||
local right = clip_pos_prop(props.right)
|
local right = clip_pos_prop(props.right)
|
||||||
local top = clip_pos_prop(props.top)
|
local top = clip_pos_prop(props.top)
|
||||||
if not objrefs[entity_name] then
|
if not objrefs[entity_name] then
|
||||||
objrefs[entity_name] = minetest.add_entity(pos, entity_name)
|
objrefs[entity_name] = minetest.add_entity(pos, entity_name,
|
||||||
|
minetest.serialize({ nodepos = pos }))
|
||||||
end
|
end
|
||||||
|
|
||||||
objrefs[entity_name]:setpos({
|
objrefs[entity_name]:setpos({
|
||||||
@ -120,21 +114,30 @@ local function place_entities(pos)
|
|||||||
return objrefs
|
return objrefs
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Call on_display_update callback of a node for one of its display entities
|
|
||||||
local function call_node_on_display_update(pos, objref)
|
--- Entity update
|
||||||
local ndef = minetest.registered_nodes[minetest.get_node(pos).name]
|
function update_entity(entity)
|
||||||
local entity = objref:get_luaentity()
|
if not entity.nodepos then
|
||||||
if ndef and ndef.display_entities and entity and ndef.display_entities[entity.name] then
|
entity.object:remove() -- Remove old/buggy entity
|
||||||
ndef.display_entities[entity.name].on_display_update(pos, objref)
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local node = minetest.get_node(entity.nodepos)
|
||||||
|
local ndef = minetest.registered_nodes[node.name]
|
||||||
|
if ndef and ndef.display_entities and
|
||||||
|
ndef.display_entities[entity.name] and
|
||||||
|
ndef.display_entities[entity.name].on_display_update
|
||||||
|
then
|
||||||
|
-- Call on_display_update callback of a node for one of its display entities
|
||||||
|
ndef.display_entities[entity.name].on_display_update(entity.nodepos,
|
||||||
|
entity.object)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Force entity update
|
--- Force entity update
|
||||||
function display_api.update_entities(pos)
|
function display_api.update_entities(pos)
|
||||||
local objrefs = place_entities(pos)
|
for _, objref in pairs(place_entities(pos)) do
|
||||||
for _, objref in pairs(objrefs) do
|
update_entity(objref:get_luaentity())
|
||||||
objref:get_luaentity().pos = minetest.hash_node_position(pos)
|
|
||||||
call_node_on_display_update(pos, objref)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -145,29 +148,21 @@ function display_api.on_activate(entity, staticdata)
|
|||||||
if string.sub(staticdata, 1, string.len("return")) == "return" then
|
if string.sub(staticdata, 1, string.len("return")) == "return" then
|
||||||
local data = core.deserialize(staticdata)
|
local data = core.deserialize(staticdata)
|
||||||
if data and type(data) == "table" then
|
if data and type(data) == "table" then
|
||||||
entity.pos = data.pos
|
entity.nodepos = data.nodepos
|
||||||
end
|
|
||||||
end
|
end
|
||||||
entity.object:set_armor_groups({immortal=1})
|
entity.object:set_armor_groups({immortal=1})
|
||||||
local pos
|
|
||||||
if entity.pos then
|
|
||||||
pos = minetest.get_position_from_hash(entity.pos)
|
|
||||||
else
|
|
||||||
pos = entity.object:getpos()
|
|
||||||
end
|
end
|
||||||
display_api.update_entities(pos)
|
update_entity(entity)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--- On_place callback for display_api items. Does nothing more than preventing item
|
--- On_place callback for display_api items.
|
||||||
--- from being placed on ceiling or ground
|
-- Does nothing more than preventing node from being placed on ceiling or ground
|
||||||
function display_api.on_place(itemstack, placer, pointed_thing, override_param2)
|
function display_api.on_place(itemstack, placer, pointed_thing, override_param2)
|
||||||
local ndef = itemstack:get_definition()
|
local ndef = itemstack:get_definition()
|
||||||
local above = pointed_thing.above
|
local above = pointed_thing.above
|
||||||
local under = pointed_thing.under
|
local under = pointed_thing.under
|
||||||
local dir = {x = under.x - above.x,
|
local dir = {x = under.x - above.x, y = 0, z = under.z - above.z}
|
||||||
y = 0,
|
|
||||||
z = under.z - above.z}
|
|
||||||
|
|
||||||
-- If item is not placed on a wall, use the player's view direction instead
|
-- If item is not placed on a wall, use the player's view direction instead
|
||||||
if dir.x == 0 and dir.z == 0 then
|
if dir.x == 0 and dir.z == 0 then
|
||||||
@ -184,19 +179,20 @@ function display_api.on_place(itemstack, placer, pointed_thing, override_param2)
|
|||||||
param2 = minetest.dir_to_facedir(dir)
|
param2 = minetest.dir_to_facedir(dir)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return minetest.item_place(itemstack, placer, pointed_thing, param2 + (override_param2 or 0))
|
return minetest.item_place(itemstack, placer, pointed_thing,
|
||||||
|
param2 + (override_param2 or 0))
|
||||||
end
|
end
|
||||||
|
|
||||||
--- On_construct callback for display_api items. Creates entities and update them.
|
--- On_construct callback for display_api items.
|
||||||
|
-- Creates entities and update them.
|
||||||
function display_api.on_construct(pos)
|
function display_api.on_construct(pos)
|
||||||
display_api.update_entities(pos)
|
display_api.update_entities(pos)
|
||||||
end
|
end
|
||||||
|
|
||||||
--- On_destruct callback for display_api items. Removes entities.
|
--- On_destruct callback for display_api items.
|
||||||
|
-- Removes entities.
|
||||||
function display_api.on_destruct(pos)
|
function display_api.on_destruct(pos)
|
||||||
local objrefs = get_entities(pos)
|
for _, objref in pairs(get_entities(pos)) do
|
||||||
|
|
||||||
for _, objref in pairs(objrefs) do
|
|
||||||
objref:remove()
|
objref:remove()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -222,9 +218,7 @@ function display_api.register_display_entity(entity_name)
|
|||||||
textures = {},
|
textures = {},
|
||||||
on_activate = display_api.on_activate,
|
on_activate = display_api.on_activate,
|
||||||
get_staticdata = function(self)
|
get_staticdata = function(self)
|
||||||
return minetest.serialize({
|
return minetest.serialize({ nodepos = self.nodepos })
|
||||||
pos = self.pos,
|
|
||||||
})
|
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user