Mineclonia/mods/PLAYER/mcl_sprint/init.lua

178 lines
5.4 KiB
Lua
Raw Normal View History

--[[
Sprint mod for Minetest by GunshipPenguin
To the extent possible under law, the author(s)
have dedicated all copyright and related and neighboring rights
to this software to the public domain worldwide. This software is
distributed without any warranty.
]]
--Configuration variables, these are all explained in README.md
2017-02-21 14:45:48 +00:00
mcl_sprint = {}
2017-02-21 14:45:48 +00:00
mcl_sprint.SPEED = 1.3
2017-05-20 17:18:37 +00:00
local players = {}
-- Returns true if the player with the given name is sprinting, false if not.
-- Returns nil if player does not exist.
mcl_sprint.is_sprinting = function(playername)
if players[playername] then
return players[playername].sprinting
else
return nil
end
end
2017-05-20 17:18:37 +00:00
minetest.register_on_joinplayer(function(player)
local playerName = player:get_player_name()
players[playerName] = {
sprinting = false,
timeOut = 0,
2017-05-20 17:18:37 +00:00
shouldSprint = false,
2019-02-01 05:33:07 +00:00
lastPos = player:get_pos(),
2017-05-20 17:18:37 +00:00
sprintDistance = 0,
fov = 1.0
2017-05-20 17:18:37 +00:00
}
end)
minetest.register_on_leaveplayer(function(player)
local playerName = player:get_player_name()
players[playerName] = nil
end)
local function setSprinting(playerName, sprinting) --Sets the state of a player (0=stopped/moving, 1=sprinting)
local player = minetest.get_player_by_name(playerName)
if players[playerName] then
players[playerName].sprinting = sprinting
local fov_old = players[playerName].fov
local fov_new
if sprinting == true then
fov_new = math.min(players[playerName].fov + 0.05, 1.2)
playerphysics.add_physics_factor(player, "speed", "mcl_sprint:sprint", mcl_sprint.SPEED)
elseif sprinting == false then
fov_new = math.max(players[playerName].fov - 0.05, 1.0)
playerphysics.remove_physics_factor(player, "speed", "mcl_sprint:sprint")
end
if fov_new ~= fov_old then
players[playerName].fov = fov_new
player:set_fov(fov_new, true, 0.15)
end
return true
end
return false
end
2020-07-10 12:51:39 +00:00
-- Given the param2 and paramtype2 of a node, returns the tile that is facing upwards
local function get_top_node_tile(param2, paramtype2)
if paramtype2 == "colorwallmounted" then
paramtype2 = "wallmounted"
param2 = param2 % 8
elseif paramtype2 == "colorfacedir" then
paramtype2 = "facedir"
param2 = param2 % 32
end
if paramtype2 == "wallmounted" then
if param2 == 0 then
return 2
elseif param2 == 1 then
return 1
else
return 5
end
elseif paramtype2 == "facedir" then
if param2 >= 0 and param2 <= 3 then
return 1
elseif param2 == 4 or param2 == 10 or param2 == 13 or param2 == 19 then
return 6
elseif param2 == 5 or param2 == 11 or param2 == 14 or param2 == 16 then
return 3
elseif param2 == 6 or param2 == 8 or param2 == 15 or param2 == 17 then
return 5
elseif param2 == 7 or param2 == 9 or param2 == 12 or param2 == 18 then
return 4
elseif param2 >= 20 and param2 <= 23 then
return 2
else
return 1
end
else
return 1
end
end
2017-05-20 17:18:37 +00:00
minetest.register_globalstep(function(dtime)
--Get the gametime
local gameTime = minetest.get_gametime()
--Loop through all connected players
for playerName,playerInfo in pairs(players) do
local player = minetest.get_player_by_name(playerName)
if player ~= nil then
local ctrl = player:get_player_control()
2017-05-20 17:18:37 +00:00
--Check if the player should be sprinting
if ctrl.aux1 and ctrl.up and not ctrl.sneak then
2017-05-20 17:18:37 +00:00
players[playerName]["shouldSprint"] = true
else
players[playerName]["shouldSprint"] = false
end
2019-02-01 05:33:07 +00:00
local playerPos = player:get_pos()
2017-05-20 17:18:37 +00:00
--If the player is sprinting, create particles behind and cause exhaustion
2021-02-22 09:41:44 +00:00
if playerInfo["sprinting"] == true and not player:get_attach() and gameTime % 0.1 == 0 then
2017-05-20 17:18:37 +00:00
-- Exhaust player for sprinting
local lastPos = players[playerName].lastPos
local dist = vector.distance({x=lastPos.x, y=0, z=lastPos.z}, {x=playerPos.x, y=0, z=playerPos.z})
players[playerName].sprintDistance = players[playerName].sprintDistance + dist
if players[playerName].sprintDistance >= 1 then
local superficial = math.floor(players[playerName].sprintDistance)
mcl_hunger.exhaust(playerName, mcl_hunger.EXHAUST_SPRINT * superficial)
players[playerName].sprintDistance = players[playerName].sprintDistance - superficial
end
2020-07-10 12:23:03 +00:00
-- Sprint node particles
2017-05-20 17:18:37 +00:00
local playerNode = minetest.get_node({x=playerPos["x"], y=playerPos["y"]-1, z=playerPos["z"]})
2020-03-15 07:23:40 +00:00
local def = minetest.registered_nodes[playerNode.name]
if def and def.walkable then
2020-07-10 12:23:03 +00:00
minetest.add_particlespawner({
amount = math.random(1, 2),
time = 1,
minpos = {x=-0.5, y=0.1, z=-0.5},
maxpos = {x=0.5, y=0.1, z=0.5},
minvel = {x=0, y=5, z=0},
maxvel = {x=0, y=5, z=0},
minacc = {x=0, y=-13, z=0},
maxacc = {x=0, y=-13, z=0},
minexptime = 0.1,
maxexptime = 1,
minsize = 0.5,
maxsize = 1.5,
collisiondetection = true,
attached = player,
vertical = false,
node = playerNode,
2020-07-10 12:51:39 +00:00
node_tile = get_top_node_tile(playerNode.param2, def.paramtype2),
2020-07-10 12:23:03 +00:00
})
2017-05-20 17:18:37 +00:00
end
end
--Adjust player states
players[playerName].lastPos = playerPos
if players[playerName]["shouldSprint"] == true then --Stopped
local sprinting
-- Prevent sprinting if hungry or sleeping
2021-02-22 09:41:44 +00:00
if (mcl_hunger.active and mcl_hunger.get_hunger(player) <= 6) or (player:get_meta():get_string("mcl_beds:sleeping") == "true") then
2017-05-20 17:18:37 +00:00
sprinting = false
else
sprinting = true
end
setSprinting(playerName, sprinting)
elseif players[playerName]["shouldSprint"] == false then
setSprinting(playerName, false)
end
2017-05-20 17:18:37 +00:00
end
end
end)