2020-04-13 01:55:39 +02:00
|
|
|
assert(minetest.add_particlespawner, "[Climate API] This mod requires a more current version of Minetest")
|
2020-04-09 09:03:02 +02:00
|
|
|
|
2020-04-13 01:55:39 +02:00
|
|
|
climate_api = {}
|
|
|
|
climate_mod = {}
|
|
|
|
|
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
2020-04-09 09:03:02 +02:00
|
|
|
|
|
|
|
local function getBoolSetting(name, default)
|
2020-04-14 05:44:46 +02:00
|
|
|
local value = minetest.settings:get_bool("climate_api_" .. name)
|
|
|
|
if type(value) == "nil" then value = default end
|
|
|
|
return minetest.is_yes(value)
|
2020-04-09 09:03:02 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function getNumericSetting(name, default)
|
2020-04-14 05:44:46 +02:00
|
|
|
local value = minetest.settings:get("climate_api_" .. name)
|
|
|
|
if type(value) == "nil" then value = default end
|
|
|
|
return tonumber(value)
|
2020-04-09 09:03:02 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-- load settings from config file
|
2020-04-13 01:55:39 +02:00
|
|
|
climate_mod.settings = {
|
2020-04-13 13:40:05 +02:00
|
|
|
particles = getBoolSetting("particles", true),
|
|
|
|
skybox = getBoolSetting("skybox", true),
|
|
|
|
sound = getBoolSetting("sound", true),
|
|
|
|
wind = getBoolSetting("wind", true),
|
|
|
|
seasons = getBoolSetting("seasons", true),
|
2020-04-14 05:44:46 +02:00
|
|
|
fahrenheit = getBoolSetting("fahrenheit", false),
|
2020-04-13 13:40:05 +02:00
|
|
|
heat = getNumericSetting("heat_base", 0),
|
|
|
|
humidity = getNumericSetting("humidity_base", 0),
|
|
|
|
time_spread = getNumericSetting("time_spread", 1),
|
|
|
|
particle_count = getNumericSetting("particle_count", 1)
|
2020-04-09 09:03:02 +02:00
|
|
|
}
|
|
|
|
|
2020-04-14 05:44:46 +02:00
|
|
|
-- initiate empty registers
|
2020-04-13 01:55:39 +02:00
|
|
|
climate_mod.current_weather = {}
|
|
|
|
climate_mod.current_effects = {}
|
2020-04-14 05:44:46 +02:00
|
|
|
climate_mod.weathers = {}
|
|
|
|
climate_mod.effects = {}
|
|
|
|
climate_mod.cycles = {}
|
2020-04-14 11:25:00 +02:00
|
|
|
climate_mod.influences = {}
|
2020-04-09 09:03:02 +02:00
|
|
|
|
|
|
|
-- import core API
|
2020-04-13 01:55:39 +02:00
|
|
|
climate_mod.state = dofile(modpath .. "/lib/datastorage.lua")
|
|
|
|
climate_api = dofile(modpath .. "/lib/api.lua")
|
|
|
|
climate_api.utility = dofile(modpath .. "/lib/api_utility.lua")
|
|
|
|
climate_api.environment = dofile(modpath .. "/lib/environment.lua")
|
2020-04-14 11:25:00 +02:00
|
|
|
--climate_api = dofile(modpath .. "/lib/influences.lua")
|
2020-04-13 01:55:39 +02:00
|
|
|
climate_mod.world = dofile(modpath .. "/lib/world.lua")
|
|
|
|
climate_mod.trigger = dofile(modpath .. "/lib/trigger.lua")
|
|
|
|
dofile(modpath.."/lib/main.lua")
|
2020-04-14 05:44:46 +02:00
|
|
|
dofile(modpath.."/lib/commands.lua")
|
2020-04-13 01:55:39 +02:00
|
|
|
|
|
|
|
-- import predefined environment effects
|
2020-04-14 11:25:00 +02:00
|
|
|
dofile(modpath .. "/ca_effects/clouds.lua")
|
2020-04-13 01:55:39 +02:00
|
|
|
dofile(modpath .. "/ca_effects/particles.lua")
|
|
|
|
dofile(modpath .. "/ca_effects/skybox.lua")
|
2020-04-14 11:25:00 +02:00
|
|
|
dofile(modpath .. "/ca_effects/sound.lua")
|