2019-03-08 20:22:01 +01:00
|
|
|
local S = minetest.get_translator("mcl_playerplus")
|
|
|
|
|
2017-05-22 23:16:27 +02:00
|
|
|
-- Internal player state
|
2017-05-23 00:52:31 +02:00
|
|
|
local mcl_playerplus_internal = {}
|
2017-05-22 23:16:27 +02:00
|
|
|
|
2017-01-16 11:36:30 +01:00
|
|
|
local def = {}
|
|
|
|
local time = 0
|
|
|
|
|
|
|
|
minetest.register_globalstep(function(dtime)
|
|
|
|
|
|
|
|
time = time + dtime
|
|
|
|
|
2017-05-23 00:35:27 +02:00
|
|
|
-- Update jump status immediately since we need this info in real time.
|
|
|
|
-- WARNING: This section is HACKY as hell since it is all just based on heuristics.
|
|
|
|
for _,player in pairs(minetest.get_connected_players()) do
|
|
|
|
local name = player:get_player_name()
|
2017-05-23 00:52:31 +02:00
|
|
|
if mcl_playerplus_internal[name].jump_cooldown > 0 then
|
|
|
|
mcl_playerplus_internal[name].jump_cooldown = mcl_playerplus_internal[name].jump_cooldown - dtime
|
2017-05-23 00:35:27 +02:00
|
|
|
end
|
2017-05-23 00:52:31 +02:00
|
|
|
if player:get_player_control().jump and mcl_playerplus_internal[name].jump_cooldown <= 0 then
|
2017-05-23 00:35:27 +02:00
|
|
|
|
2019-02-01 06:33:07 +01:00
|
|
|
local pos = player:get_pos()
|
2017-05-23 00:35:27 +02:00
|
|
|
|
2017-08-04 19:23:06 +02:00
|
|
|
local node_stand = mcl_playerinfo[name].node_stand
|
|
|
|
local node_stand_below = mcl_playerinfo[name].node_stand_below
|
|
|
|
local node_head = mcl_playerinfo[name].node_head
|
|
|
|
local node_feet = mcl_playerinfo[name].node_feet
|
|
|
|
if not node_stand or not node_stand_below or not node_head or not node_feet then
|
|
|
|
return
|
|
|
|
end
|
2017-05-23 00:35:27 +02:00
|
|
|
|
|
|
|
-- Cause buggy exhaustion for jumping
|
|
|
|
|
|
|
|
--[[ Checklist we check to know the player *actually* jumped:
|
|
|
|
* Not on or in liquid
|
|
|
|
* Not on or at climbable
|
|
|
|
* On walkable
|
|
|
|
* Not on disable_jump
|
|
|
|
FIXME: This code is pretty hacky and it is possible to miss some jumps or detect false
|
|
|
|
jumps because of delays, rounding errors, etc.
|
|
|
|
What this code *really* needs is some kind of jumping “callback” which this engine lacks
|
|
|
|
as of 0.4.15.
|
|
|
|
]]
|
|
|
|
|
2017-05-23 00:52:31 +02:00
|
|
|
if minetest.get_item_group(node_feet, "liquid") == 0 and
|
|
|
|
minetest.get_item_group(node_stand, "liquid") == 0 and
|
|
|
|
not minetest.registered_nodes[node_feet].climbable and
|
|
|
|
not minetest.registered_nodes[node_stand].climbable and
|
|
|
|
(minetest.registered_nodes[node_stand].walkable or minetest.registered_nodes[node_stand_below].walkable)
|
|
|
|
and minetest.get_item_group(node_stand, "disable_jump") == 0
|
|
|
|
and minetest.get_item_group(node_stand_below, "disable_jump") == 0 then
|
2017-05-23 00:35:27 +02:00
|
|
|
-- Cause exhaustion for jumping
|
2017-08-04 19:49:03 +02:00
|
|
|
if mcl_sprint.is_sprinting(name) then
|
|
|
|
mcl_hunger.exhaust(name, mcl_hunger.EXHAUST_SPRINT_JUMP)
|
|
|
|
else
|
|
|
|
mcl_hunger.exhaust(name, mcl_hunger.EXHAUST_JUMP)
|
|
|
|
end
|
2017-05-23 00:35:27 +02:00
|
|
|
|
|
|
|
-- Reset cooldown timer
|
2017-05-23 00:52:31 +02:00
|
|
|
mcl_playerplus_internal[name].jump_cooldown = 0.45
|
2017-05-23 00:35:27 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Run the rest of the code every 0.5 seconds
|
2017-01-16 11:36:30 +01:00
|
|
|
if time < 0.5 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
-- reset time for next check
|
|
|
|
-- FIXME: Make sure a regular check interval applies
|
|
|
|
time = 0
|
|
|
|
|
|
|
|
-- check players
|
|
|
|
for _,player in pairs(minetest.get_connected_players()) do
|
|
|
|
-- who am I?
|
|
|
|
local name = player:get_player_name()
|
|
|
|
|
|
|
|
-- where am I?
|
2019-02-01 06:33:07 +01:00
|
|
|
local pos = player:get_pos()
|
2017-01-16 11:36:30 +01:00
|
|
|
|
|
|
|
-- what is around me?
|
2017-08-04 19:23:06 +02:00
|
|
|
local node_stand = mcl_playerinfo[name].node_stand
|
|
|
|
local node_stand_below = mcl_playerinfo[name].node_stand_below
|
|
|
|
local node_head = mcl_playerinfo[name].node_head
|
|
|
|
local node_feet = mcl_playerinfo[name].node_feet
|
|
|
|
if not node_stand or not node_stand_below or not node_head or not node_feet then
|
|
|
|
return
|
|
|
|
end
|
2017-05-23 00:35:27 +02:00
|
|
|
|
2017-01-16 11:36:30 +01:00
|
|
|
-- set defaults
|
|
|
|
def.speed = 1
|
|
|
|
|
2018-05-07 20:10:53 +02:00
|
|
|
-- Standing on soul sand? If so, walk slower
|
2017-08-04 19:23:06 +02:00
|
|
|
if node_stand == "mcl_nether:soul_sand" then
|
2017-02-20 17:06:19 +01:00
|
|
|
-- TODO: Tweak walk speed
|
2017-02-09 01:56:55 +01:00
|
|
|
-- TODO: Also slow down mobs
|
2018-05-07 20:10:53 +02:00
|
|
|
-- Slow down even more when soul sand is above certain block
|
|
|
|
if node_stand_below == "mcl_core:ice" or node_stand_below == "mcl_core:packed_ice" or node_stand_below == "mcl_core:slimeblock" or node_stand_below == "mcl_core:water_source" then
|
2018-10-23 18:51:19 +02:00
|
|
|
playerphysics.add_physics_factor(player, "speed", "mcl_playerplus:surface", 0.1)
|
2017-02-20 17:06:19 +01:00
|
|
|
else
|
2018-10-23 18:51:19 +02:00
|
|
|
playerphysics.add_physics_factor(player, "speed", "mcl_playerplus:surface", 0.4)
|
2017-02-20 17:06:19 +01:00
|
|
|
end
|
2018-05-07 20:10:53 +02:00
|
|
|
else
|
|
|
|
-- Reset speed decrease
|
2018-10-23 18:51:19 +02:00
|
|
|
playerphysics.remove_physics_factor(player, "speed", "mcl_playerplus:surface")
|
2017-06-11 14:44:37 +02:00
|
|
|
end
|
2017-01-16 11:36:30 +01:00
|
|
|
|
2017-03-14 04:33:11 +01:00
|
|
|
-- Is player suffocating inside node? (Only for solid full opaque cube type nodes
|
|
|
|
-- without group disable_suffocation=1)
|
2017-08-04 19:23:06 +02:00
|
|
|
local ndef = minetest.registered_nodes[node_head]
|
2017-01-16 11:36:30 +01:00
|
|
|
|
|
|
|
if (ndef.walkable == nil or ndef.walkable == true)
|
|
|
|
and (ndef.collision_box == nil or ndef.collision_box.type == "regular")
|
|
|
|
and (ndef.node_box == nil or ndef.node_box.type == "regular")
|
|
|
|
and (ndef.groups.disable_suffocation ~= 1)
|
2017-03-14 04:33:11 +01:00
|
|
|
and (ndef.groups.opaque == 1)
|
2017-11-21 20:20:17 +01:00
|
|
|
and (node_head ~= "ignore")
|
2017-01-16 11:36:30 +01:00
|
|
|
-- Check privilege, too
|
|
|
|
and (not minetest.check_player_privs(name, {noclip = true})) then
|
|
|
|
if player:get_hp() > 0 then
|
2019-03-08 20:22:01 +01:00
|
|
|
mcl_death_messages.player_damage(player, S("@1 suffocated to death.", name))
|
2017-01-16 11:36:30 +01:00
|
|
|
player:set_hp(player:get_hp() - 1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-06 21:42:37 +02:00
|
|
|
-- Am I near a cactus?
|
2017-01-31 23:32:56 +01:00
|
|
|
local near = minetest.find_node_near(pos, 1, "mcl_core:cactus")
|
2017-09-06 21:42:37 +02:00
|
|
|
if not near then
|
|
|
|
near = minetest.find_node_near({x=pos.x, y=pos.y-1, z=pos.z}, 1, "mcl_core:cactus")
|
|
|
|
end
|
2017-01-16 11:36:30 +01:00
|
|
|
if near then
|
2017-09-06 21:42:37 +02:00
|
|
|
-- Am I touching the cactus? If so, it hurts
|
|
|
|
local dist = vector.distance(pos, near)
|
|
|
|
local dist_feet = vector.distance({x=pos.x, y=pos.y-1, z=pos.z}, near)
|
|
|
|
if dist < 1.1 or dist_feet < 1.1 then
|
|
|
|
if player:get_hp() > 0 then
|
2019-03-08 20:22:01 +01:00
|
|
|
mcl_death_messages.player_damage(player, S("@1 was prickled to death by a cactus.", name))
|
2020-02-17 18:37:23 +01:00
|
|
|
player:set_hp(player:get_hp() - 1, { type = "punch", from = "mod" })
|
2017-01-16 11:36:30 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-22 23:51:08 +02:00
|
|
|
--[[ Swimming: Cause exhaustion.
|
|
|
|
NOTE: As of 0.4.15, it only counts as swimming when you are with the feet inside the liquid!
|
|
|
|
Head alone does not count. We respect that for now. ]]
|
2017-08-04 19:23:06 +02:00
|
|
|
if minetest.get_item_group(node_feet, "liquid") ~= 0 or
|
|
|
|
minetest.get_item_group(node_stand, "liquid") ~= 0 then
|
2017-05-23 00:52:31 +02:00
|
|
|
local lastPos = mcl_playerplus_internal[name].lastPos
|
2017-05-22 23:16:27 +02:00
|
|
|
if lastPos then
|
|
|
|
local dist = vector.distance(lastPos, pos)
|
2017-05-23 00:52:31 +02:00
|
|
|
mcl_playerplus_internal[name].swimDistance = mcl_playerplus_internal[name].swimDistance + dist
|
|
|
|
if mcl_playerplus_internal[name].swimDistance >= 1 then
|
|
|
|
local superficial = math.floor(mcl_playerplus_internal[name].swimDistance)
|
2017-05-22 23:16:27 +02:00
|
|
|
mcl_hunger.exhaust(name, mcl_hunger.EXHAUST_SWIM * superficial)
|
2017-05-23 00:52:31 +02:00
|
|
|
mcl_playerplus_internal[name].swimDistance = mcl_playerplus_internal[name].swimDistance - superficial
|
2017-05-22 23:16:27 +02:00
|
|
|
end
|
|
|
|
end
|
2017-05-22 23:51:08 +02:00
|
|
|
|
2017-05-22 23:21:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-- Underwater: Spawn bubble particles
|
2017-08-04 19:23:06 +02:00
|
|
|
if minetest.get_item_group(node_head, "water") ~= 0 then
|
2017-05-22 23:16:27 +02:00
|
|
|
|
2017-05-22 22:43:25 +02:00
|
|
|
minetest.add_particlespawner({
|
|
|
|
amount = 10,
|
|
|
|
time = 0.15,
|
|
|
|
minpos = { x = -0.25, y = 0.3, z = -0.25 },
|
|
|
|
maxpos = { x = 0.25, y = 0.7, z = 0.75 },
|
|
|
|
attached = player,
|
|
|
|
minvel = {x = -0.2, y = 0, z = -0.2},
|
|
|
|
maxvel = {x = 0.5, y = 0, z = 0.5},
|
|
|
|
minacc = {x = -0.4, y = 4, z = -0.4},
|
|
|
|
maxacc = {x = 0.5, y = 1, z = 0.5},
|
|
|
|
minexptime = 0.3,
|
|
|
|
maxexptime = 0.8,
|
|
|
|
minsize = 0.7,
|
|
|
|
maxsize = 2.4,
|
|
|
|
texture = "mcl_particles_bubble.png"
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2017-02-24 06:24:16 +01:00
|
|
|
-- Show positions of barriers when player is wielding a barrier
|
2017-08-08 23:19:44 +02:00
|
|
|
local wi = player:get_wielded_item():get_name()
|
|
|
|
if wi == "mcl_core:barrier" or wi == "mcl_core:realm_barrier" then
|
2019-02-01 06:33:07 +01:00
|
|
|
local pos = vector.round(player:get_pos())
|
2017-02-24 06:24:16 +01:00
|
|
|
local r = 8
|
|
|
|
local vm = minetest.get_voxel_manip()
|
|
|
|
local emin, emax = vm:read_from_map({x=pos.x-r, y=pos.y-r, z=pos.z-r}, {x=pos.x+r, y=pos.y+r, z=pos.z+r})
|
|
|
|
local area = VoxelArea:new{
|
|
|
|
MinEdge = emin,
|
|
|
|
MaxEdge = emax,
|
|
|
|
}
|
|
|
|
local data = vm:get_data()
|
|
|
|
for x=pos.x-r, pos.x+r do
|
|
|
|
for y=pos.y-r, pos.y+r do
|
|
|
|
for z=pos.z-r, pos.z+r do
|
2017-08-08 23:19:44 +02:00
|
|
|
local vi = area:indexp({x=x, y=y, z=z})
|
|
|
|
local nodename = minetest.get_name_from_content_id(data[vi])
|
|
|
|
local tex
|
|
|
|
if nodename == "mcl_core:barrier" then
|
|
|
|
tex = "mcl_core_barrier.png"
|
|
|
|
elseif nodename == "mcl_core:realm_barrier" then
|
|
|
|
tex = "mcl_core_barrier.png^[colorize:#FF00FF:127^[transformFX"
|
|
|
|
end
|
|
|
|
if tex then
|
2017-02-24 06:24:16 +01:00
|
|
|
minetest.add_particle({
|
|
|
|
pos = {x=x, y=y, z=z},
|
|
|
|
expirationtime = 1,
|
|
|
|
size = 8,
|
2017-08-08 23:19:44 +02:00
|
|
|
texture = tex,
|
2019-03-08 03:47:14 +01:00
|
|
|
glow = 14,
|
2017-05-22 23:16:27 +02:00
|
|
|
playername = name
|
2017-02-24 06:24:16 +01:00
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-22 23:16:27 +02:00
|
|
|
-- Update internal values
|
2017-05-23 00:52:31 +02:00
|
|
|
mcl_playerplus_internal[name].lastPos = pos
|
2017-05-22 23:16:27 +02:00
|
|
|
|
2017-01-16 11:36:30 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- set to blank on join (for 3rd party mods)
|
|
|
|
minetest.register_on_joinplayer(function(player)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
|
2017-05-23 00:52:31 +02:00
|
|
|
mcl_playerplus_internal[name] = {
|
2017-05-22 23:16:27 +02:00
|
|
|
lastPos = nil,
|
|
|
|
swimDistance = 0,
|
2017-05-23 00:35:27 +02:00
|
|
|
jump_cooldown = -1, -- Cooldown timer for jumping, we need this to prevent the jump exhaustion to increase rapidly
|
2017-05-22 23:16:27 +02:00
|
|
|
}
|
2017-01-16 11:36:30 +01:00
|
|
|
end)
|
|
|
|
|
|
|
|
-- clear when player leaves
|
|
|
|
minetest.register_on_leaveplayer(function(player)
|
2017-05-22 23:16:27 +02:00
|
|
|
local name = player:get_player_name()
|
2017-01-16 11:36:30 +01:00
|
|
|
|
2017-05-23 00:52:31 +02:00
|
|
|
mcl_playerplus_internal[name] = nil
|
2017-01-16 11:36:30 +01:00
|
|
|
end)
|