mirror of
https://git.0x7be.net/dirk/uniham.git
synced 2024-11-22 15:23:46 +01:00
37 lines
1.1 KiB
Lua
37 lines
1.1 KiB
Lua
-- Localize & Initialize
|
|
local register_hammer = uniham.register_hammer
|
|
local modpath = uniham.modpath
|
|
local log_prefix = '['..minetest.get_current_modname()..'] '
|
|
local registry = modpath..DIR_DELIM..'registry'
|
|
|
|
|
|
-- Check if a file exists
|
|
--
|
|
-- This function validates the existence of a file by trying to open the file
|
|
-- for reading. If this succeeds the file is present.
|
|
--
|
|
-- @param file_name The file name (path) to be checked
|
|
local file_exists = function (file_name)
|
|
local f = io.open(file_name ,'r')
|
|
if f ~= nil then
|
|
io.close(f)
|
|
return true
|
|
else
|
|
return false
|
|
end
|
|
end
|
|
|
|
|
|
-- Load built-in support for supported mods
|
|
local config = Settings(modpath..DIR_DELIM..'mod.conf')
|
|
local depends = config:get('depends')..', '..config:get('optional_depends')
|
|
|
|
for modname in depends:gmatch('[0-9a-z_-]+') do
|
|
local registry_file = registry..DIR_DELIM..modname..'.lua'
|
|
if file_exists(registry_file) and minetest.get_modpath(modname) then
|
|
dofile(registry_file)
|
|
local message = 'Loaded built-in '..modname..' support'
|
|
minetest.log('action', log_prefix..message)
|
|
end
|
|
end
|