mame/plugins/boot.lua

29 lines
978 B
Lua
Raw Normal View History

2016-03-05 11:03:34 +01:00
-- license:BSD-3-Clause
-- copyright-holders:Miodrag Milanovic
require('lfs')
2016-07-09 22:11:30 +02:00
2017-09-03 22:08:08 +02:00
_G._ = emu.lang_translate
_G.N_ = function (message) return message end
_G.N_p = function (context, message) return message end
_G.emu.plugin = {} -- table to contain plugin interfaces
-- substitute environment variables in the plugins path from options
local dirs = emu.subst_env(manager.options.entries.pluginspath:value())
-- and split the paths apart and make them suitable for package.path
package.path = ""
for dir in string.gmatch(dirs, "([^;]+)") do
if (package.path ~= "") then
package.path = package.path .. ";"
end
package.path = package.path .. dir .. "/?.lua;" .. dir .. "/?/init.lua"
end
for _,entry in pairs(manager.plugins) do
2019-07-24 13:14:56 +02:00
if (entry.type == "plugin" and entry.start) then
emu.print_verbose("Starting plugin " .. entry.name .. "...")
plugin = require(entry.name)
if plugin.set_folder~=nil then plugin.set_folder(entry.directory) end
plugin.startplugin();
end
end