mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
31 lines
538 B
Lua
31 lines
538 B
Lua
local dat = {}
|
|
local info, ver
|
|
local datread = require("data/load_dat")
|
|
do
|
|
local convert = require("data/button_char")
|
|
datread, ver = datread.open("command.dat", "# Command List%-.+hand", convert)
|
|
end
|
|
|
|
function dat.check(set, softlist)
|
|
if softlist or not datread then
|
|
return nil
|
|
end
|
|
local status
|
|
status, info = pcall(datread, "cmd", "info", set)
|
|
if not status or not info then
|
|
return nil
|
|
end
|
|
info = "#jf\n" .. info
|
|
return _("Command")
|
|
end
|
|
|
|
function dat.get()
|
|
return info
|
|
end
|
|
|
|
function dat.ver()
|
|
return ver
|
|
end
|
|
|
|
return dat
|