2020-04-13 01:55:39 +02:00
|
|
|
local environment = {}
|
2020-04-09 20:25:02 +02:00
|
|
|
|
2020-04-13 01:55:39 +02:00
|
|
|
function environment.get_heat(pos)
|
2020-05-13 16:03:28 +02:00
|
|
|
if climate_mod.forced_enviroment.heat ~= nil then
|
|
|
|
return climate_mod.forced_enviroment.heat
|
|
|
|
end
|
2020-04-13 01:55:39 +02:00
|
|
|
local base = climate_mod.settings.heat
|
|
|
|
local biome = minetest.get_heat(pos)
|
2020-05-13 16:03:28 +02:00
|
|
|
local height = climate_api.utility.rangelim((-pos.y + 10) / 15, -10, 10)
|
|
|
|
local time = climate_api.utility.normalized_cycle(minetest.get_timeofday()) * 0.6 + 0.7
|
2020-04-13 13:40:05 +02:00
|
|
|
local random = climate_mod.state:get_float("heat_random");
|
2020-04-24 01:35:07 +02:00
|
|
|
return (base + biome + height) * time * random
|
2020-04-09 09:03:02 +02:00
|
|
|
end
|
|
|
|
|
2020-04-13 01:55:39 +02:00
|
|
|
function environment.get_humidity(pos)
|
2020-05-13 16:03:28 +02:00
|
|
|
if climate_mod.forced_enviroment.humidity ~= nil then
|
|
|
|
return climate_mod.forced_enviroment.humidity
|
|
|
|
end
|
2020-04-13 01:55:39 +02:00
|
|
|
local base = climate_mod.settings.humidity
|
|
|
|
local biome = minetest.get_humidity(pos)
|
2020-04-13 13:40:05 +02:00
|
|
|
local random = climate_mod.state:get_float("humidity_random");
|
|
|
|
local random_base = climate_mod.state:get_float("humidity_base");
|
|
|
|
return (base + biome * 0.7 + random_base * 0.3) * random
|
2020-04-09 20:25:02 +02:00
|
|
|
end
|
|
|
|
|
2020-05-13 16:03:28 +02:00
|
|
|
function environment.get_wind(pos)
|
|
|
|
if climate_mod.forced_enviroment.wind ~= nil then
|
|
|
|
return climate_mod.forced_enviroment.wind
|
2020-04-18 11:12:47 +02:00
|
|
|
end
|
2020-04-18 08:35:03 +02:00
|
|
|
local wind_x = climate_mod.state:get_float("wind_x")
|
|
|
|
local wind_z = climate_mod.state:get_float("wind_z")
|
2020-05-13 16:03:28 +02:00
|
|
|
local base_wind = vector.new({ x = wind_x, y = 0, z = wind_z })
|
|
|
|
local height_modifier = climate_api.utility.sigmoid(pos.y, 2, 0.02, 1)
|
|
|
|
return vector.multiply(base_wind, height_modifier)
|
2020-04-18 08:35:03 +02:00
|
|
|
end
|
|
|
|
|
2020-04-14 05:44:46 +02:00
|
|
|
function environment.get_weather_presets(player)
|
|
|
|
local pname = player:get_player_name()
|
|
|
|
local weathers = climate_mod.current_weather[pname]
|
|
|
|
if type(weathers) == "nil" then weathers = {} end
|
|
|
|
return weathers
|
|
|
|
end
|
|
|
|
|
|
|
|
function environment.get_effects(player)
|
|
|
|
local pname = player:get_player_name()
|
|
|
|
local effects = {}
|
|
|
|
for effect, players in pairs(climate_mod.current_effects) do
|
|
|
|
if type(players[pname]) ~= "nil" then
|
|
|
|
table.insert(effects, effect)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return effects
|
|
|
|
end
|
|
|
|
|
2020-04-13 01:55:39 +02:00
|
|
|
return environment
|