climate_api/init.lua

69 lines
2.5 KiB
Lua
Raw Normal View History

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 get_setting_bool(name, default)
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 get_setting_number(name, default)
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 = {
particles = get_setting_bool("particles", true),
skybox = get_setting_bool("skybox", true),
sound = get_setting_bool("sound", true),
hud_overlay = get_setting_bool("hud_overlay", true),
wind = get_setting_bool("wind", true),
seasons = get_setting_bool("seasons", true),
fahrenheit = get_setting_bool("fahrenheit", false),
block_updates = get_setting_bool("block_updates", true),
heat = get_setting_number("heat_base", 0),
humidity = get_setting_number("humidity_base", 0),
time_spread = get_setting_number("time_spread", 1),
particle_count = get_setting_number("particle_count", 1),
tick_speed = get_setting_number("tick_speed", 1),
volume = get_setting_number("volume", 1)
2020-04-09 09:03:02 +02:00
}
-- initiate empty registers
climate_mod.weathers = {}
climate_mod.effects = {}
climate_mod.cycles = {}
climate_mod.global_environment = {}
climate_mod.global_influences = {}
climate_mod.influences = {}
climate_mod.current_weather = {}
climate_mod.current_effects = {}
climate_mod.forced_weather = {}
climate_mod.forced_wind = nil
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.skybox = dofile(modpath .. "/lib/skybox_merger.lua")
dofile(modpath .. "/lib/influences.lua")
2020-04-13 01:55:39 +02:00
climate_api.environment = dofile(modpath .. "/lib/environment.lua")
--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")
dofile(modpath.."/lib/commands.lua")
2020-04-13 01:55:39 +02:00
-- import predefined environment effects
dofile(modpath .. "/ca_effects/hud_overlay.lua")
2020-04-13 01:55:39 +02:00
dofile(modpath .. "/ca_effects/particles.lua")
dofile(modpath .. "/ca_effects/skybox.lua")
dofile(modpath .. "/ca_effects/sound.lua")