mame/plugins/data/data_mameinfo.lua
2016-10-26 16:33:57 -05:00

28 lines
476 B
Lua

local dat = {}
local ver, info
local datread = require("data/load_dat")
datread, ver = datread.open("mameinfo.dat", "# MAMEINFO.DAT")
function dat.check(set, softlist)
if softlist or not datread then
return nil
end
local status
status, info = pcall(datread, "mame", "info", set)
if not status or not info then
return nil
end
info = info:gsub("\n\n", "\n")
return "Mameinfo"
end
function dat.get()
return info
end
function dat.ver()
return ver
end
return dat