89 lines
2.2 KiB
Lua
89 lines
2.2 KiB
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local math, minetest, nodecore, pairs, vector
|
|
= math, minetest, nodecore, pairs, vector
|
|
local math_exp, math_random, math_sqrt
|
|
= math.exp, math.random, math.sqrt
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
local ppos = {}
|
|
local cache = {}
|
|
|
|
local function envcheck(player)
|
|
local pname = player:get_player_name()
|
|
|
|
if player:get_breath() < 11 then return end
|
|
|
|
local pos = player:get_pos()
|
|
local eyeheight = player:get_properties().eye_height or 1.625
|
|
pos.y = pos.y + eyeheight
|
|
|
|
local old = ppos[pname] or pos
|
|
ppos[pname] = pos
|
|
local moving = not vector.equals(pos, old)
|
|
|
|
local stats = {}
|
|
|
|
stats.light = minetest.get_node_light(pos) or 0
|
|
|
|
local target = vector.add(pos, {
|
|
x = math_random() * 128 - 64,
|
|
y = math_random() * 128 - 64,
|
|
z = math_random() * 128 - 64
|
|
})
|
|
local hit = minetest.raycast(pos, target, false)()
|
|
hit = hit and hit.under or target
|
|
|
|
stats.space = vector.distance(pos, hit)
|
|
|
|
local node = minetest.get_node(hit)
|
|
local def = minetest.registered_items[node.name] or {}
|
|
local groups = def.groups or {}
|
|
|
|
stats.green = groups.green or 0
|
|
stats.water = groups.water or 0 + stats.green / 5
|
|
|
|
local agg = cache[pname]
|
|
if not agg then
|
|
agg = {}
|
|
local raw = player:get_meta():get_string("healthenv")
|
|
if raw and raw ~= "" then
|
|
agg = minetest.deserialize(raw)
|
|
end
|
|
cache[pname] = agg
|
|
end
|
|
for k, v in pairs(stats) do
|
|
agg[k] = ((agg[k] or 0) * 99 + v) / 100
|
|
end
|
|
agg.dirty = (agg.dirty or 0) + 1
|
|
if agg.dirty >= 5 then
|
|
agg.dirty = nil
|
|
player:get_meta():set_string("healthenv",
|
|
minetest.serialize(agg))
|
|
for k, v in pairs(agg) do
|
|
agg[k] = 1 - math_exp(-v)
|
|
end
|
|
local heal = 0.1
|
|
+ (agg.green * agg.green) * 4
|
|
+ (agg.water * agg.water) * 2
|
|
+ (agg.space * agg.space)
|
|
+ (agg.light * agg.light)
|
|
heal = math_sqrt(heal)
|
|
if moving then heal = heal / 2 end
|
|
nodecore.addphealth(player, heal)
|
|
end
|
|
|
|
end
|
|
|
|
minetest.register_on_dieplayer(function(player)
|
|
player:get_meta():set_string("healthenv", "")
|
|
cache[player:get_player_name()] = nil
|
|
end)
|
|
|
|
local function timer()
|
|
minetest.after(0.5, timer)
|
|
for _, p in pairs(minetest.get_connected_players()) do
|
|
if p:get_hp() > 0 then envcheck(p) end
|
|
end
|
|
end
|
|
timer()
|