summaryrefslogtreecommitdiffstatshomepage
path: root/plugins/boot.lua
blob: 7acf23ca19ffac97a4f39160d57cf1cbfc9e2be3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
-- license:BSD-3-Clause
-- copyright-holders:Miodrag Milanovic
require('lfs')
local dir = manager:options().entries.pluginspath:value()
package.path = dir .. "/?.lua;" .. dir .. "/?/init.lua"

local json = require('json')
function readAll(file)
    local f = io.open(file, "rb")
    local content = f:read("*all")
    f:close()
    return content
end

for file in lfs.dir(dir) do
	if (file~="." and file~=".." and lfs.attributes(dir .. "/" .. file,"mode")=="directory") then
		local filename = dir .. "/" .. file .. "/plugin.json"
		local meta = json.parse(readAll(filename))
		if (meta["plugin"]["type"]=="plugin") and (mame_manager:plugins().entries[meta["plugin"]["name"]]~=nil) then
			local entry = mame_manager:plugins().entries[meta["plugin"]["name"]]	
			if (entry:value()==true) then
				emu.print_verbose("Starting plugin " .. meta["plugin"]["name"] .. "...")
				plugin = require(meta["plugin"]["name"])
				if plugin.set_folder~=nil then plugin.set_folder(dir .. "/" .. file) end
				plugin.startplugin();
			end
		end
	end
end