2014-11-29 15:40:55 +01:00
|
|
|
--[[
|
|
|
|
Sprint mod for Minetest by GunshipPenguin
|
|
|
|
|
|
|
|
To the extent possible under law, the author(s)
|
2015-06-10 17:14:58 +02:00
|
|
|
have dedicated all copyright and related and neighboring rights
|
2014-11-29 15:40:55 +01:00
|
|
|
to this software to the public domain worldwide. This software is
|
2015-06-10 17:14:58 +02:00
|
|
|
distributed without any warranty.
|
2014-11-29 15:40:55 +01:00
|
|
|
]]
|
|
|
|
|
2015-07-27 19:13:30 +02:00
|
|
|
sprint.players = {}
|
2014-11-29 15:40:55 +01:00
|
|
|
local staminaHud = {}
|
|
|
|
|
2015-07-26 01:05:10 +02:00
|
|
|
-- Lil' helping functions
|
|
|
|
sprint.set_maxstamina = function(pname, mstamina)
|
2015-07-27 19:13:30 +02:00
|
|
|
if sprint.players[pname] and mstamina > 0 then
|
|
|
|
sprint.players[pname].maxStamina = mstamina
|
2015-07-28 22:33:43 +02:00
|
|
|
if sprint.players[pname].stamina > sprint.players[pname].maxStamina then
|
|
|
|
sprint.players[pname].stamina = sprint.players[pname].maxStamina
|
|
|
|
end
|
2015-07-31 21:46:31 +02:00
|
|
|
hb.change_hudbar(minetest.get_player_by_name(pname), "sprint", sprint.players[pname].stamina, sprint.players[pname].maxStamina)
|
2015-07-26 01:05:10 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
sprint.get_maxstamina = function(pname)
|
2015-07-27 19:13:30 +02:00
|
|
|
if sprint.players[pname] then
|
|
|
|
return sprint.players[pname].maxStamina
|
2015-07-26 01:05:10 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
sprint.increase_maxstamina = function(pname, sincrease)
|
|
|
|
local stamina = sprint.get_maxstamina(pname)
|
|
|
|
if stamina then
|
|
|
|
sprint.set_maxstamina(pname, stamina + sincrease)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-07-31 21:46:31 +02:00
|
|
|
sprint.decrease_maxstamina = function(pname, sdicrease)
|
2015-07-26 01:05:10 +02:00
|
|
|
local stamina = sprint.get_maxstamina(pname)
|
|
|
|
if stamina then
|
|
|
|
sprint.set_maxstamina(pname, stamina - sdicrease)
|
|
|
|
end
|
|
|
|
end
|
2015-07-31 21:46:31 +02:00
|
|
|
-- When you write shit english, don't write shit code.
|
|
|
|
-- Writing it in your native language would be less of a pain.
|
|
|
|
-- - gravgun
|
|
|
|
sprint.dicrease_maxstamina = sprint.decrease_maxstamina
|
2015-07-26 01:05:10 +02:00
|
|
|
|
2015-07-27 19:13:30 +02:00
|
|
|
sprint.set_default_maxstamina = function(pname)
|
2015-07-31 21:46:31 +02:00
|
|
|
sprint.set_maxstamina(pname, SPRINT_STAMINA)
|
2015-07-27 19:13:30 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2015-07-26 01:05:10 +02:00
|
|
|
|
2014-11-29 15:40:55 +01:00
|
|
|
minetest.register_on_joinplayer(function(player)
|
2015-01-11 21:25:25 +01:00
|
|
|
local playerName = player:get_player_name()
|
2015-03-18 03:11:20 +01:00
|
|
|
|
2015-07-27 19:13:30 +02:00
|
|
|
sprint.players[playerName] = {
|
2014-11-29 15:40:55 +01:00
|
|
|
sprinting = false,
|
2015-06-10 17:14:58 +02:00
|
|
|
timeOut = 0,
|
|
|
|
stamina = SPRINT_STAMINA,
|
2015-06-16 19:22:40 +02:00
|
|
|
shouldSprint = false,
|
2015-07-26 01:05:10 +02:00
|
|
|
maxStamina = SPRINT_STAMINA
|
2015-03-18 03:11:20 +01:00
|
|
|
}
|
|
|
|
if SPRINT_HUDBARS_USED then
|
|
|
|
hb.init_hudbar(player, "sprint")
|
|
|
|
else
|
2015-07-27 19:13:30 +02:00
|
|
|
sprint.players[playerName].hud = player:hud_add({
|
2014-11-29 15:40:55 +01:00
|
|
|
hud_elem_type = "statbar",
|
|
|
|
position = {x=0.5,y=1},
|
|
|
|
size = {x=24, y=24},
|
2015-06-19 21:17:23 +02:00
|
|
|
text = "stamina.png",
|
2014-11-29 15:40:55 +01:00
|
|
|
number = 20,
|
|
|
|
alignment = {x=0,y=1},
|
|
|
|
offset = {x=-320, y=-186},
|
|
|
|
}
|
2015-03-18 03:11:20 +01:00
|
|
|
)
|
|
|
|
end
|
2014-11-29 15:40:55 +01:00
|
|
|
end)
|
|
|
|
minetest.register_on_leaveplayer(function(player)
|
2015-01-11 21:25:25 +01:00
|
|
|
local playerName = player:get_player_name()
|
2015-07-27 19:13:30 +02:00
|
|
|
sprint.players[playerName] = nil
|
2014-11-29 15:40:55 +01:00
|
|
|
end)
|
2015-06-19 21:17:23 +02:00
|
|
|
local gameTime = 0
|
2014-11-29 15:40:55 +01:00
|
|
|
minetest.register_globalstep(function(dtime)
|
|
|
|
--Get the gametime
|
2015-06-19 21:17:23 +02:00
|
|
|
gameTime = gameTime + dtime
|
2014-11-29 15:40:55 +01:00
|
|
|
|
2015-07-27 19:13:30 +02:00
|
|
|
--Loop through all connected sprint.players
|
|
|
|
for playerName,playerInfo in pairs(sprint.players) do
|
2014-11-29 15:40:55 +01:00
|
|
|
local player = minetest.get_player_by_name(playerName)
|
|
|
|
if player ~= nil then
|
2015-06-16 19:22:40 +02:00
|
|
|
--Check if the player should be sprinting
|
|
|
|
if player:get_player_control()["aux1"] and player:get_player_control()["up"] then
|
2015-07-27 19:13:30 +02:00
|
|
|
sprint.players[playerName]["shouldSprint"] = true
|
2015-03-18 03:11:20 +01:00
|
|
|
else
|
2015-07-27 19:13:30 +02:00
|
|
|
sprint.players[playerName]["shouldSprint"] = false
|
2014-11-29 15:40:55 +01:00
|
|
|
end
|
2015-06-19 21:17:23 +02:00
|
|
|
--Stop sprinting if the player is pressing the LMB or RMB
|
|
|
|
if player:get_player_control()["LMB"] or player:get_player_control()["RMB"] then
|
|
|
|
setSprinting(playerName, false)
|
|
|
|
playerInfo["timeOut"] = 3
|
|
|
|
end
|
2015-06-10 17:14:58 +02:00
|
|
|
|
2015-06-19 21:17:23 +02:00
|
|
|
if gameTime > 0.4 then
|
|
|
|
local pos = player:getpos()
|
|
|
|
-- From playerplus :
|
|
|
|
-- am I near a cactus?
|
|
|
|
pos.y = pos.y + 0.1
|
|
|
|
if minetest.find_node_near(pos, 1, "default:cactus") and player:get_hp() > 0 then
|
2015-06-16 19:22:40 +02:00
|
|
|
player:set_hp(player:get_hp()-1)
|
2015-03-18 03:11:20 +01:00
|
|
|
end
|
2015-06-10 17:14:58 +02:00
|
|
|
|
2015-06-19 21:17:23 +02:00
|
|
|
--If the player is sprinting, create particles behind him/her
|
|
|
|
if playerInfo["sprinting"] == true then
|
|
|
|
local numParticles = math.random(1, 2)
|
|
|
|
local playerPos = player:getpos()
|
|
|
|
local playerNode = minetest.get_node({x=playerPos["x"], y=playerPos["y"]-1, z=playerPos["z"]})
|
|
|
|
if playerNode["name"] ~= "air" then
|
|
|
|
for i=1, numParticles, 1 do
|
|
|
|
minetest.add_particle({
|
|
|
|
pos = {x=playerPos["x"]+math.random(-1,1)*math.random()/2,y=playerPos["y"]+0.1,z=playerPos["z"]+math.random(-1,1)*math.random()/2},
|
|
|
|
vel = {x=0, y=5, z=0},
|
|
|
|
acc = {x=0, y=-13, z=0},
|
|
|
|
expirationtime = math.random(),
|
|
|
|
size = math.random()+0.5,
|
|
|
|
collisiondetection = true,
|
|
|
|
vertical = false,
|
|
|
|
texture = "sprint_particle.png",
|
|
|
|
})
|
|
|
|
end
|
2014-11-29 15:40:55 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
--Adjust player states
|
2015-07-27 19:13:30 +02:00
|
|
|
if sprint.players[playerName]["shouldSprint"] == true and playerInfo["timeOut"] == 0 then --Stopped
|
2014-11-29 15:40:55 +01:00
|
|
|
setSprinting(playerName, true)
|
2015-07-27 19:13:30 +02:00
|
|
|
elseif sprint.players[playerName]["shouldSprint"] == false then
|
2014-11-29 15:40:55 +01:00
|
|
|
setSprinting(playerName, false)
|
|
|
|
end
|
2015-06-10 17:14:58 +02:00
|
|
|
|
2015-06-19 21:17:23 +02:00
|
|
|
if playerInfo["timeOut"] > 0 then
|
|
|
|
playerInfo["timeOut"] = playerInfo["timeOut"] - dtime
|
|
|
|
if playerInfo["timeOut"] < 0 then
|
|
|
|
playerInfo["timeOut"] = 0
|
2014-11-29 15:40:55 +01:00
|
|
|
end
|
2015-06-19 21:17:23 +02:00
|
|
|
else
|
|
|
|
--Lower the player's stamina by dtime if he/she is sprinting and set his/her state to 0 if stamina is zero
|
|
|
|
if playerInfo["sprinting"] == true then
|
|
|
|
playerInfo["stamina"] = playerInfo["stamina"] - dtime
|
|
|
|
if playerInfo["stamina"] <= 0 then
|
|
|
|
playerInfo["stamina"] = 0
|
|
|
|
setSprinting(playerName, false)
|
|
|
|
playerInfo["timeOut"] = 1
|
|
|
|
minetest.sound_play("default_breathless",{object=player})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-06-10 17:14:58 +02:00
|
|
|
|
2014-11-29 15:40:55 +01:00
|
|
|
--Increase player's stamina if he/she is not sprinting and his/her stamina is less than SPRINT_STAMINA
|
2015-07-26 01:05:10 +02:00
|
|
|
if playerInfo["sprinting"] == false and playerInfo["stamina"] < playerInfo["maxStamina"] then
|
2014-11-29 15:40:55 +01:00
|
|
|
playerInfo["stamina"] = playerInfo["stamina"] + dtime
|
|
|
|
end
|
2015-03-18 03:11:20 +01:00
|
|
|
-- Cap stamina at SPRINT_STAMINA
|
2015-07-27 02:56:33 +02:00
|
|
|
if playerInfo["stamina"] > playerInfo["maxStamina"] then
|
|
|
|
playerInfo["stamina"] = playerInfo["maxStamina"]
|
2015-03-18 03:11:20 +01:00
|
|
|
end
|
2015-06-10 17:14:58 +02:00
|
|
|
|
2015-07-27 19:13:30 +02:00
|
|
|
--Update the sprint.players's hud sprint stamina bar
|
2015-03-18 03:11:20 +01:00
|
|
|
|
|
|
|
if SPRINT_HUDBARS_USED then
|
|
|
|
hb.change_hudbar(player, "sprint", playerInfo["stamina"])
|
|
|
|
else
|
2015-07-26 01:05:10 +02:00
|
|
|
local numBars = (playerInfo["stamina"]/playerInfo["maxStamina"])*20
|
2015-03-18 03:11:20 +01:00
|
|
|
player:hud_change(playerInfo["hud"], "number", numBars)
|
|
|
|
end
|
2014-11-29 15:40:55 +01:00
|
|
|
end
|
|
|
|
end
|
2015-06-19 21:17:23 +02:00
|
|
|
if gameTime > 0.4 then
|
|
|
|
gameTime = 0
|
|
|
|
end
|
2014-11-29 15:40:55 +01:00
|
|
|
end)
|
|
|
|
|
|
|
|
function setSprinting(playerName, sprinting) --Sets the state of a player (0=stopped/moving, 1=sprinting)
|
|
|
|
local player = minetest.get_player_by_name(playerName)
|
2015-07-27 19:13:30 +02:00
|
|
|
if sprint.players[playerName] then
|
|
|
|
sprint.players[playerName]["sprinting"] = sprinting
|
2014-11-29 15:40:55 +01:00
|
|
|
if sprinting == true then
|
|
|
|
player:set_physics_override({speed=SPRINT_SPEED,jump=SPRINT_JUMP})
|
|
|
|
elseif sprinting == false then
|
|
|
|
player:set_physics_override({speed=1.0,jump=1.0})
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|