2020-10-26 17:38:53 +01:00
|
|
|
-- Minetest: builtin/item_entity.lua
|
|
|
|
|
|
|
|
function core.spawn_item(pos, item)
|
|
|
|
|
|
|
|
local obj = core.add_entity(pos, "__builtin:item")
|
|
|
|
|
|
|
|
if obj then
|
2021-05-16 11:33:49 +02:00
|
|
|
obj:get_luaentity():set_item(ItemStack(item):to_string())
|
2020-10-26 17:38:53 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
return obj
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
-- If item_entity_ttl is not set, entity will have default life time
|
2020-10-26 17:38:53 +01:00
|
|
|
-- Setting it to -1 disables the feature
|
|
|
|
local time_to_live = tonumber(core.settings:get("item_entity_ttl")) or 900
|
|
|
|
local gravity = tonumber(core.settings:get("movement_gravity")) or 9.81
|
|
|
|
local destroy_item = core.settings:get_bool("destroy_item") ~= false
|
|
|
|
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- localize some math functions
|
|
|
|
local abs = math.abs
|
|
|
|
local sqrt = math.sqrt
|
|
|
|
|
|
|
|
|
|
|
|
-- water flow functions by QwertyMine3, edited by TenPlus1 and Gustavo6046
|
|
|
|
local inv_roots = {[0] = 1}
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-19 14:15:18 +01:00
|
|
|
local function to_unit_vector(dir_vector)
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
local sum = dir_vector.x * dir_vector.x + dir_vector.z * dir_vector.z
|
2021-02-25 20:49:03 +01:00
|
|
|
local invr_sum
|
2021-02-19 14:15:18 +01:00
|
|
|
|
|
|
|
-- find inverse square root if possible
|
|
|
|
if inv_roots[sum] ~= nil then
|
|
|
|
invr_sum = inv_roots[sum]
|
|
|
|
else
|
|
|
|
-- not found, compute and save the inverse square root
|
2021-02-25 20:49:03 +01:00
|
|
|
invr_sum = 1.0 / sqrt(sum)
|
2021-02-19 14:15:18 +01:00
|
|
|
inv_roots[sum] = invr_sum
|
|
|
|
end
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
return {
|
2021-02-19 14:15:18 +01:00
|
|
|
x = dir_vector.x * invr_sum,
|
2020-10-26 17:38:53 +01:00
|
|
|
y = dir_vector.y,
|
2021-02-19 14:15:18 +01:00
|
|
|
z = dir_vector.z * invr_sum
|
2020-10-26 17:38:53 +01:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local function node_ok(pos)
|
|
|
|
|
|
|
|
local node = minetest.get_node_or_nil(pos)
|
|
|
|
|
|
|
|
if node and minetest.registered_nodes[node.name] then
|
|
|
|
return node
|
|
|
|
end
|
|
|
|
|
|
|
|
return minetest.registered_nodes["default:dirt"]
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local function quick_flow_logic(node, pos_testing, direction)
|
|
|
|
|
|
|
|
local node_testing = node_ok(pos_testing)
|
2021-02-19 14:15:18 +01:00
|
|
|
local param2 = node.param2
|
|
|
|
|
|
|
|
if not minetest.registered_nodes[node.name].groups.liquid then
|
|
|
|
param2 = 0
|
|
|
|
end
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
if minetest.registered_nodes[node_testing.name].liquidtype ~= "flowing" then
|
2020-10-26 17:38:53 +01:00
|
|
|
return 0
|
|
|
|
end
|
|
|
|
|
|
|
|
local param2_testing = node_testing.param2
|
|
|
|
|
2021-02-19 14:15:18 +01:00
|
|
|
if param2_testing < param2 then
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-19 14:15:18 +01:00
|
|
|
if (param2 - param2_testing) > 6 then
|
2020-10-26 17:38:53 +01:00
|
|
|
return -direction
|
|
|
|
else
|
|
|
|
return direction
|
|
|
|
end
|
|
|
|
|
2021-02-19 14:15:18 +01:00
|
|
|
elseif param2_testing > param2 then
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-19 14:15:18 +01:00
|
|
|
if (param2_testing - param2) > 6 then
|
2020-10-26 17:38:53 +01:00
|
|
|
return direction
|
|
|
|
else
|
|
|
|
return -direction
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2021-02-19 14:15:18 +01:00
|
|
|
local function quick_flow(pos, node)
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
local x, z = 0, 0
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
x = x + quick_flow_logic(node, {x = pos.x - 1, y = pos.y, z = pos.z},-1)
|
|
|
|
x = x + quick_flow_logic(node, {x = pos.x + 1, y = pos.y, z = pos.z}, 1)
|
|
|
|
z = z + quick_flow_logic(node, {x = pos.x, y = pos.y, z = pos.z - 1},-1)
|
|
|
|
z = z + quick_flow_logic(node, {x = pos.x, y = pos.y, z = pos.z + 1}, 1)
|
|
|
|
|
|
|
|
return to_unit_vector({x = x, y = 0, z = z})
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- particle effects for when item is destroyed
|
|
|
|
local function add_effects(pos)
|
|
|
|
|
|
|
|
minetest.add_particlespawner({
|
|
|
|
amount = 1,
|
|
|
|
time = 0.25,
|
|
|
|
minpos = pos,
|
|
|
|
maxpos = pos,
|
|
|
|
minvel = {x = -1, y = 2, z = -1},
|
|
|
|
maxvel = {x = 1, y = 4, z = 1},
|
|
|
|
minacc = {x = 0, y = 0, z = 0},
|
|
|
|
maxacc = {x = 0, y = 0, z = 0},
|
|
|
|
minexptime = 1,
|
|
|
|
maxexptime = 3,
|
|
|
|
minsize = 1,
|
|
|
|
maxsize = 4,
|
2021-05-16 11:33:49 +02:00
|
|
|
texture = "tnt_smoke.png"
|
2020-10-26 17:38:53 +01:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
|
|
|
|
local water_force = tonumber(minetest.settings:get("builtin_item.waterflow_force") or 1.6)
|
|
|
|
local water_drag = tonumber(minetest.settings:get("builtin_item.waterflow_drag") or 0.8)
|
2021-05-16 11:33:49 +02:00
|
|
|
local dry_friction = tonumber(minetest.settings:get("builtin_item.friction_dry") or 2.6)
|
2021-02-25 20:49:03 +01:00
|
|
|
local air_drag = tonumber(minetest.settings:get("builtin_item.air_drag") or 0.4)
|
|
|
|
local items_collect_on_slippery = tonumber(
|
|
|
|
minetest.settings:get("builtin_item.items_collect_on_slippery") or 1) ~= 0
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2020-10-26 17:38:53 +01:00
|
|
|
core.register_entity(":__builtin:item", {
|
|
|
|
|
|
|
|
initial_properties = {
|
|
|
|
hp_max = 1,
|
|
|
|
physical = true,
|
|
|
|
collide_with_objects = false,
|
|
|
|
collisionbox = {-0.3, -0.3, -0.3, 0.3, 0.3, 0.3},
|
|
|
|
visual = "wielditem",
|
|
|
|
visual_size = {x = 0.4, y = 0.4},
|
|
|
|
textures = {""},
|
|
|
|
spritediv = {x = 1, y = 1},
|
|
|
|
initial_sprite_basepos = {x = 0, y = 0},
|
|
|
|
is_visible = false,
|
2021-02-25 20:49:03 +01:00
|
|
|
infotext = ""
|
2020-10-26 17:38:53 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
itemstring = "",
|
2021-02-25 20:49:03 +01:00
|
|
|
falling_state = true,
|
2020-10-26 17:38:53 +01:00
|
|
|
slippery_state = false,
|
2021-02-25 20:49:03 +01:00
|
|
|
waterflow_state = false,
|
2020-10-26 17:38:53 +01:00
|
|
|
age = 0,
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
accel = {x = 0, y = 0, z = 0},
|
|
|
|
|
2020-10-26 17:38:53 +01:00
|
|
|
set_item = function(self, item)
|
|
|
|
|
|
|
|
local stack = ItemStack(item or self.itemstring)
|
|
|
|
|
|
|
|
self.itemstring = stack:to_string()
|
|
|
|
|
|
|
|
if self.itemstring == "" then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local itemname = stack:is_known() and stack:get_name() or "unknown"
|
|
|
|
local max_count = stack:get_stack_max()
|
|
|
|
local count = math.min(stack:get_count(), max_count)
|
|
|
|
local size = 0.2 + 0.1 * (count / max_count) ^ (1 / 3)
|
|
|
|
local col_height = size * 0.75
|
|
|
|
local def = core.registered_nodes[itemname]
|
|
|
|
local glow = def and def.light_source
|
2021-05-16 11:33:49 +02:00
|
|
|
local c1, c2 = "", ""
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
if not(stack:get_count() == 1) then
|
2021-02-25 20:49:03 +01:00
|
|
|
c1 = " x" .. tostring(stack:get_count())
|
|
|
|
c2 = " " .. tostring(stack:get_count())
|
2020-10-26 17:38:53 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local name1 = stack:get_meta():get_string("description")
|
2021-02-08 17:57:40 +01:00
|
|
|
local name
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
if name1 == "" then
|
|
|
|
name = core.registered_items[itemname].description
|
|
|
|
else
|
|
|
|
name = name1
|
|
|
|
end
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- small random size bias to counter Z-fighting
|
|
|
|
local bias = math.random() * 1e-3
|
|
|
|
|
2020-10-26 17:38:53 +01:00
|
|
|
self.object:set_properties({
|
|
|
|
is_visible = true,
|
|
|
|
visual = "wielditem",
|
|
|
|
textures = {itemname},
|
2021-02-25 20:49:03 +01:00
|
|
|
visual_size = {x = size + bias, y = size + bias, z = size + bias},
|
2020-10-26 17:38:53 +01:00
|
|
|
collisionbox = {-size, -col_height, -size, size, col_height, size},
|
|
|
|
selectionbox = {-size, -size, -size, size, size, size},
|
|
|
|
automatic_rotate = 0.314 / size,
|
|
|
|
wield_item = self.itemstring,
|
|
|
|
glow = glow,
|
2021-02-08 17:57:40 +01:00
|
|
|
infotext = name .. c1 .. "\n(" .. itemname .. c2 .. ")"
|
2020-10-26 17:38:53 +01:00
|
|
|
})
|
|
|
|
end,
|
|
|
|
|
|
|
|
get_staticdata = function(self)
|
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
return core.serialize({
|
2020-10-26 17:38:53 +01:00
|
|
|
itemstring = self.itemstring,
|
|
|
|
age = self.age,
|
|
|
|
dropped_by = self.dropped_by
|
2021-05-16 11:33:49 +02:00
|
|
|
})
|
2020-10-26 17:38:53 +01:00
|
|
|
end,
|
|
|
|
|
|
|
|
on_activate = function(self, staticdata, dtime_s)
|
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
if string.sub(staticdata, 1, 6) == "return" then
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
local data = core.deserialize(staticdata)
|
|
|
|
|
|
|
|
if data and type(data) == "table" then
|
|
|
|
self.itemstring = data.itemstring
|
|
|
|
self.age = (data.age or 0) + dtime_s
|
|
|
|
self.dropped_by = data.dropped_by
|
|
|
|
end
|
|
|
|
else
|
|
|
|
self.itemstring = staticdata
|
|
|
|
end
|
|
|
|
|
|
|
|
self.object:set_armor_groups({immortal = 1})
|
|
|
|
self:set_item()
|
|
|
|
end,
|
|
|
|
|
|
|
|
try_merge_with = function(self, own_stack, object, entity)
|
|
|
|
|
|
|
|
if self.age == entity.age then
|
|
|
|
return false -- Can not merge with itself
|
|
|
|
end
|
|
|
|
|
|
|
|
local stack = ItemStack(entity.itemstring)
|
|
|
|
local name = stack:get_name()
|
|
|
|
|
|
|
|
if own_stack:get_name() ~= name
|
|
|
|
or own_stack:get_meta() ~= stack:get_meta()
|
|
|
|
or own_stack:get_wear() ~= stack:get_wear()
|
|
|
|
or own_stack:get_free_space() == 0 then
|
|
|
|
return false -- Can not merge different or full stack
|
|
|
|
end
|
|
|
|
|
|
|
|
local count = own_stack:get_count()
|
|
|
|
local total_count = stack:get_count() + count
|
|
|
|
local max_count = stack:get_stack_max()
|
|
|
|
|
|
|
|
if total_count > max_count then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Merge the remote stack into this one
|
|
|
|
local pos = object:get_pos()
|
2021-02-25 20:49:03 +01:00
|
|
|
|
2020-10-26 17:38:53 +01:00
|
|
|
pos.y = pos.y + ((total_count - count) / max_count) * 0.15
|
|
|
|
|
|
|
|
self.object:move_to(pos)
|
2021-06-12 20:20:04 +02:00
|
|
|
self.age = 0 -- Reset age
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- Merge velocities
|
|
|
|
local vel_a = self.object:get_velocity()
|
|
|
|
local vel_b = object:get_velocity()
|
|
|
|
|
|
|
|
self.object:set_velocity({
|
|
|
|
x = (vel_a.x + vel_b.x) / 2,
|
|
|
|
y = (vel_a.y + vel_b.y) / 2,
|
|
|
|
z = (vel_a.z + vel_b.z) / 2
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Merge stacks
|
2020-10-26 17:38:53 +01:00
|
|
|
own_stack:set_count(total_count)
|
|
|
|
self:set_item(own_stack)
|
|
|
|
|
|
|
|
entity.itemstring = ""
|
|
|
|
object:remove()
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
step_update_node_state = function(self, moveresult, dtime)
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
local pos = self.object:get_pos()
|
|
|
|
|
|
|
|
-- get nodes every 1/4 second
|
|
|
|
self.timer = (self.timer or 0) + dtime
|
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
if self.timer < 0.25 and self.node_inside then
|
|
|
|
return
|
|
|
|
end
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
self.node_inside = minetest.get_node_or_nil(pos)
|
|
|
|
self.def_inside = self.node_inside
|
|
|
|
and core.registered_nodes[self.node_inside.name]
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
-- get ground node for collision
|
|
|
|
self.node_under = nil
|
|
|
|
self.falling_state = true
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
--[[ new ground check (glitchy)
|
|
|
|
if moveresult and moveresult.touching_ground then
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
for _, info in ipairs(moveresult.collisions) do
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
if info.axis == "y" then
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
self.node_under = core.get_node_or_nil(info.node_pos)
|
|
|
|
self.falling_state = false
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
break
|
2021-02-19 14:15:18 +01:00
|
|
|
end
|
|
|
|
end
|
2021-06-12 20:20:04 +02:00
|
|
|
end]]
|
|
|
|
|
|
|
|
-- old ground check (stable)
|
|
|
|
self.node_under = minetest.get_node_or_nil({
|
|
|
|
x = pos.x,
|
|
|
|
y = pos.y + self.object:get_properties().collisionbox[2] - 0.05,
|
|
|
|
z = pos.z
|
|
|
|
})
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
self.def_under = self.node_under
|
|
|
|
and core.registered_nodes[self.node_under.name]
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
-- part of old ground check
|
|
|
|
if self.def_under and self.def_under.walkable then
|
|
|
|
self.falling_state = false
|
2020-10-26 17:38:53 +01:00
|
|
|
end
|
2021-06-12 20:20:04 +02:00
|
|
|
|
|
|
|
self.timer = 0
|
2021-02-25 20:49:03 +01:00
|
|
|
end,
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
step_node_inside_checks = function(self)
|
|
|
|
|
|
|
|
local pos = self.object:get_pos()
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
-- Delete in 'ignore' nodes
|
2021-06-12 20:20:04 +02:00
|
|
|
if (self.node_inside and self.node_inside.name == "ignore")
|
|
|
|
or self.itemstring == "" then
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
self.itemstring = ""
|
|
|
|
self.object:remove()
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
return true
|
2020-10-26 17:38:53 +01:00
|
|
|
end
|
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
local def = self.def_inside
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- item inside block, move to vacant space
|
|
|
|
if def and (def.walkable == nil or def.walkable == true)
|
|
|
|
and (def.collision_box == nil or def.collision_box.type == "regular")
|
|
|
|
and (def.node_box == nil or def.node_box.type == "regular") then
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
local npos = minetest.find_node_near(pos, 1, "air")
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
if npos then
|
|
|
|
self.object:move_to(npos)
|
|
|
|
end
|
|
|
|
|
|
|
|
self.node_inside = nil -- force get_node
|
|
|
|
end
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
-- destroy item when dropped into lava (if enabled)
|
|
|
|
if destroy_item and def and def.groups and def.groups.lava then
|
|
|
|
|
|
|
|
minetest.sound_play("builtin_item_lava", {
|
|
|
|
pos = pos,
|
|
|
|
max_hear_distance = 6,
|
|
|
|
gain = 0.5
|
2021-05-16 11:33:49 +02:00
|
|
|
}, true)
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
self.itemstring = ""
|
|
|
|
self.object:remove()
|
|
|
|
|
|
|
|
add_effects(pos)
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
return false
|
|
|
|
end,
|
|
|
|
|
|
|
|
step_check_slippery = function(self)
|
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
-- don't check for slippery if we're not on the ground
|
2021-05-16 11:33:49 +02:00
|
|
|
if self.falling_state or not self.node_under then
|
2021-02-25 20:49:03 +01:00
|
|
|
|
|
|
|
self.slippery_state = false
|
2021-05-16 11:33:49 +02:00
|
|
|
|
2020-10-26 17:38:53 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
if self.node_under and self.def_under and self.def_under.walkable then
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
local slippery = core.get_item_group(self.node_under.name, "slippery")
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
self.slippery_state = slippery ~= 0
|
|
|
|
end
|
|
|
|
end,
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
step_water_physics = function(self)
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
self.waterflow_state = self.def_inside and
|
|
|
|
self.def_inside.liquidtype == "flowing"
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
if self.waterflow_state then
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
local pos = self.object:get_pos()
|
|
|
|
local vel = self.object:get_velocity()
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- get flow velocity
|
2021-05-16 11:33:49 +02:00
|
|
|
local flow_vel = quick_flow(pos, self.node_inside)
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- calculate flow force and drag
|
|
|
|
local flow_force_x = flow_vel.x * water_force
|
|
|
|
local flow_force_z = flow_vel.z * water_force
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
local flow_drag_x = (flow_force_x - vel.x) * water_drag
|
|
|
|
local flow_drag_z = (flow_force_z - vel.z) * water_drag
|
|
|
|
|
|
|
|
-- apply water force and friction
|
|
|
|
self.accel.x = self.accel.x + flow_force_x + flow_drag_x
|
|
|
|
self.accel.z = self.accel.z + flow_force_z + flow_drag_z
|
2020-10-26 17:38:53 +01:00
|
|
|
end
|
2021-02-25 20:49:03 +01:00
|
|
|
end,
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
step_gravity = function(self)
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-07-24 12:22:10 +02:00
|
|
|
local vel = self.object:get_velocity()
|
|
|
|
|
|
|
|
-- apply gravity if falling or Y velocity not 0 (just incase)
|
|
|
|
if self.falling_state or (vel and vel.y ~= 0) then
|
2021-02-25 20:49:03 +01:00
|
|
|
self.accel.y = self.accel.y - gravity
|
2020-10-26 17:38:53 +01:00
|
|
|
end
|
2021-02-25 20:49:03 +01:00
|
|
|
end,
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
step_ground_friction = function(self)
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- don't apply ground friction when falling!
|
|
|
|
if self.falling_state then
|
|
|
|
return
|
|
|
|
end
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
local vel = self.object:get_velocity()
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
-- this stops the entity drift glitch by re-setting entity pos when not moving
|
|
|
|
if vel.x == 0 and vel.y == 0 and vel.z == 0 then
|
|
|
|
|
|
|
|
if self.is_moving == true then
|
|
|
|
|
|
|
|
self.is_moving = false
|
|
|
|
|
|
|
|
local pos = self.object:get_pos()
|
|
|
|
|
|
|
|
self.object:set_pos(pos)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
self.is_moving = true
|
|
|
|
end
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
if self.slippery_state then
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- apply slip factor (tiny friction that depends on the actual block type)
|
2021-05-16 11:33:49 +02:00
|
|
|
if abs(vel.x) > 0.2 or abs(vel.z) > 0.2 then
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
local slippery = core.get_item_group(self.node_under.name, "slippery")
|
2020-10-26 17:38:53 +01:00
|
|
|
local slip_factor = 4.0 / (slippery + 4)
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
self.accel.x = self.accel.x - vel.x * slip_factor
|
|
|
|
self.accel.z = self.accel.z - vel.z * slip_factor
|
2020-10-26 17:38:53 +01:00
|
|
|
end
|
2021-02-25 20:49:03 +01:00
|
|
|
|
|
|
|
else
|
|
|
|
self.accel.x = self.accel.x - vel.x * dry_friction
|
|
|
|
self.accel.z = self.accel.z - vel.z * dry_friction
|
2020-10-26 17:38:53 +01:00
|
|
|
end
|
2021-02-25 20:49:03 +01:00
|
|
|
end,
|
|
|
|
|
|
|
|
step_apply_forces = function(self)
|
|
|
|
self.object:set_acceleration(self.accel)
|
|
|
|
end,
|
|
|
|
|
|
|
|
step_check_timeout = function(self, dtime)
|
|
|
|
|
|
|
|
self.age = self.age + dtime
|
|
|
|
|
|
|
|
if time_to_live > 0 and self.age > time_to_live then
|
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
add_effects(self.object:get_pos())
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
self.itemstring = ""
|
|
|
|
self.object:remove()
|
|
|
|
|
|
|
|
return true
|
2020-10-26 17:38:53 +01:00
|
|
|
end
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
return false
|
|
|
|
end,
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
step_check_custom_step = function(self, dtime, moveresult)
|
2021-02-19 14:15:18 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- do custom step function
|
|
|
|
local name = ItemStack(self.itemstring):get_name() or ""
|
|
|
|
local custom = core.registered_items[name]
|
|
|
|
and core.registered_items[name].dropped_step
|
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
if custom
|
|
|
|
and custom(self, self.object:get_pos(), dtime, moveresult) == false then
|
2021-02-25 20:49:03 +01:00
|
|
|
return true -- skip further checks if false
|
|
|
|
end
|
|
|
|
|
|
|
|
return false
|
|
|
|
end,
|
|
|
|
|
|
|
|
step_try_collect = function(self)
|
|
|
|
|
|
|
|
-- Don't collect items if falling
|
|
|
|
if self.falling_state then
|
|
|
|
return
|
2020-10-26 17:38:53 +01:00
|
|
|
end
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- Check if we should collect items while sliding
|
|
|
|
if self.slippery_state and not items_collect_on_slippery then
|
2020-10-26 17:38:53 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Collect the items around to merge with
|
|
|
|
local own_stack = ItemStack(self.itemstring)
|
|
|
|
|
|
|
|
if own_stack:get_free_space() == 0 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
local self_pos = self.object:get_pos()
|
2021-02-25 20:49:03 +01:00
|
|
|
local objects = core.get_objects_inside_radius(self_pos, 1.0)
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
for _, obj in pairs(objects) do
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
local entity = obj:get_luaentity()
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
if entity and entity.name == "__builtin:item" and not entity.is_falling then
|
2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
if self:try_merge_with(own_stack, obj, entity) then
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
-- item will be moved up due to try_merge_with
|
|
|
|
self.falling_state = true
|
|
|
|
|
2020-10-26 17:38:53 +01:00
|
|
|
own_stack = ItemStack(self.itemstring)
|
|
|
|
|
|
|
|
if own_stack:get_free_space() == 0 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
2021-05-16 11:33:49 +02:00
|
|
|
step_air_drag_physics = function(self)
|
|
|
|
|
|
|
|
local vel = self.object:get_velocity()
|
|
|
|
|
|
|
|
-- apply air drag
|
|
|
|
if self.falling_state
|
|
|
|
or (self.slippery_state and not self.waterflow_state) then
|
|
|
|
self.accel.x = self.accel.x - vel.x * air_drag
|
|
|
|
self.accel.z = self.accel.z - vel.z * air_drag
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
on_step = function(self, dtime, moveresult)
|
|
|
|
|
|
|
|
-- reset acceleration
|
|
|
|
self.accel = {x = 0, y = 0, z = 0}
|
|
|
|
|
|
|
|
-- check item timeout
|
|
|
|
if self:step_check_timeout(dtime) then
|
|
|
|
return -- deleted, stop here
|
|
|
|
end
|
|
|
|
|
|
|
|
-- check custom step function
|
|
|
|
if self:step_check_custom_step(dtime, moveresult) then
|
|
|
|
return -- overriden
|
|
|
|
end
|
|
|
|
|
|
|
|
-- do general checks
|
|
|
|
self:step_update_node_state(moveresult, dtime)
|
|
|
|
|
|
|
|
if self:step_node_inside_checks() then
|
|
|
|
return -- destroyed
|
|
|
|
end
|
|
|
|
|
|
|
|
-- do physics checks, then apply
|
|
|
|
self:step_water_physics()
|
2021-06-12 20:20:04 +02:00
|
|
|
self:step_check_slippery()
|
2021-02-25 20:49:03 +01:00
|
|
|
self:step_ground_friction()
|
2021-05-16 11:33:49 +02:00
|
|
|
self:step_air_drag_physics()
|
2021-06-12 20:20:04 +02:00
|
|
|
self:step_gravity()
|
|
|
|
|
2021-02-25 20:49:03 +01:00
|
|
|
self:step_apply_forces()
|
|
|
|
|
2021-06-12 20:20:04 +02:00
|
|
|
self:step_try_collect() -- merge
|
2021-02-25 20:49:03 +01:00
|
|
|
end,
|
|
|
|
|
2020-10-26 17:38:53 +01:00
|
|
|
on_punch = function(self, hitter)
|
|
|
|
|
|
|
|
local inv = hitter:get_inventory()
|
|
|
|
|
|
|
|
if inv and self.itemstring ~= "" then
|
|
|
|
|
|
|
|
local left = inv:add_item("main", self.itemstring)
|
|
|
|
|
|
|
|
if left and not left:is_empty() then
|
2021-05-16 11:33:49 +02:00
|
|
|
|
2020-10-26 17:38:53 +01:00
|
|
|
self:set_item(left)
|
2021-05-16 11:33:49 +02:00
|
|
|
|
2020-10-26 17:38:53 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
self.itemstring = ""
|
|
|
|
self.object:remove()
|
2021-05-16 11:33:49 +02:00
|
|
|
end
|
2020-10-26 17:38:53 +01:00
|
|
|
})
|