mirror of
https://github.com/t-affeldt/climate_api.git
synced 2024-11-12 05:30:23 +01:00
63 lines
1.7 KiB
Lua
63 lines
1.7 KiB
Lua
climate_api.register_influence("heat",
|
|
climate_api.environment.get_heat
|
|
)
|
|
|
|
climate_api.register_influence("base_heat",
|
|
minetest.get_heat
|
|
)
|
|
|
|
climate_api.register_influence("humidity",
|
|
climate_api.environment.get_humidity
|
|
)
|
|
|
|
climate_api.register_influence("base_humidity",
|
|
minetest.get_humidity
|
|
)
|
|
|
|
-- see https://en.wikipedia.org/wiki/Dew_point#Simple_approximation
|
|
climate_api.register_influence("dewpoint", function(pos)
|
|
local heat = climate_api.environment.get_heat(pos)
|
|
local humidity = climate_api.environment.get_humidity(pos)
|
|
return heat - (9/25 * (100 - humidity))
|
|
end)
|
|
|
|
climate_api.register_influence("base_dewpoint", function(pos)
|
|
local heat = minetest.get_heat(pos)
|
|
local humidity = minetest.get_humidity(pos)
|
|
return heat - (9/25 * (100 - humidity))
|
|
end)
|
|
|
|
climate_api.register_influence("biome", function(pos)
|
|
local data = minetest.get_biome_data(pos)
|
|
local biome = minetest.get_biome_name(data.biome)
|
|
return biome
|
|
end)
|
|
|
|
climate_api.register_influence("windspeed", function(pos)
|
|
local wind = climate_api.environment.get_wind(pos)
|
|
return vector.length(wind)
|
|
end)
|
|
|
|
climate_api.register_global_influence("wind_yaw", function()
|
|
local wind = climate_api.environment.get_wind({x = 0, y = 0, z = 0})
|
|
if vector.length(wind) == 0 then return 0 end
|
|
return minetest.dir_to_yaw(wind)
|
|
end)
|
|
|
|
climate_api.register_influence("height", function(pos)
|
|
return pos.y
|
|
end)
|
|
|
|
climate_api.register_influence("light", function(pos)
|
|
pos = vector.add(pos, {x = 0, y = 1, z = 0})
|
|
return minetest.env:get_node_light(pos) or 0
|
|
end)
|
|
|
|
climate_api.register_influence("daylight", function(pos)
|
|
pos = vector.add(pos, {x = 0, y = 1, z = 0})
|
|
return minetest.env:get_node_light(pos, 0.5) or 0
|
|
end)
|
|
|
|
climate_api.register_global_influence("time",
|
|
minetest.get_timeofday
|
|
) |