generating proper output (nw)

This commit is contained in:
Miodrag Milanovic 2015-06-20 16:35:49 +02:00
parent 71ecfcdc12
commit f84c745fbf

View File

@ -7,17 +7,24 @@ from __future__ import with_statement
import sys
## to ignore include of emu.h add it always to list
files_included = ['src/emu/emu.h']
include_dirs = ['src/emu/', 'src/mame/', 'src/mess/']
mappings = dict()
components = []
deps_files_included = [ ]
def file_exists(srcfile, folder):
deps_include_dirs = ['src/mame/', 'src/mess/']
components = [ ]
drivers = [ ]
def file_exists(srcfile, folder, inc_dir):
includes = [ folder ]
includes.extend(include_dirs)
includes.extend(inc_dir)
for line in includes:
try:
fp = open(line + srcfile, 'rb')
@ -26,6 +33,77 @@ def file_exists(srcfile, folder):
ignore=1
return ''
def add_c_if_exists(fullname):
try:
fp = open(fullname, 'rb')
deps_files_included.append(fullname)
except IOError:
ignore=1
def add_rest_if_exists(srcfile):
t = srcfile.rsplit('/', 2)
if t[1]=='includes':
t[2] = t[2].replace('.h','.c')
t[1] = 'drivers'
add_c_if_exists("/".join(t))
t[1] = 'machine'
add_c_if_exists("/".join(t))
t[1] = 'video'
add_c_if_exists("/".join(t))
t[1] = 'audio'
add_c_if_exists("/".join(t))
def parse_file_for_deps(srcfile, folder):
try:
fp = open(srcfile, 'rb')
except IOError:
sys.stderr.write("Unable to open source file '%s'\n" % srcfile)
return 1
in_comment = 0
linenum = 0
for line in fp.readlines():
content = ''
linenum+=1
srcptr = 0
while srcptr < len(line):
c = line[srcptr]
srcptr+=1
if c==13 or c==10:
if c==13 and line[srcptr]==10:
srcptr+=1
continue
if c==' ' or c==9:
continue
if in_comment==1 and c=='*' and line[srcptr]=='/' :
srcptr+=1
in_comment = 0
continue
if in_comment:
continue
if c=='/' and line[srcptr]=='*' :
srcptr+=1
in_comment = 1
continue
if c=='/' and line[srcptr]=='/' :
break
content += c
content = content.strip()
if len(content)>0:
if content.startswith('#include'):
name = content[8:]
name = name.replace('"','')
fullname = file_exists(name, folder,deps_include_dirs)
if fullname in deps_files_included:
continue
if fullname!='':
deps_files_included.append(fullname)
add_c_if_exists(fullname.replace('.h','.c'))
add_rest_if_exists(fullname)
newfolder = fullname.rsplit('/', 1)[0] + '/'
parse_file_for_deps(fullname, newfolder)
continue
return 0
def parse_file(srcfile, folder):
try:
fp = open(srcfile, 'rb')
@ -65,20 +143,60 @@ def parse_file(srcfile, folder):
if content.startswith('#include'):
name = content[8:]
name = name.replace('"','')
fullname = file_exists(name, folder)
fullname = file_exists(name, folder,include_dirs)
if fullname in files_included:
continue
if fullname!='':
if fullname in mappings.keys():
if not(mappings[fullname] in components):
components.append(mappings[fullname])
sys.stderr.write("%s\n" % mappings[fullname])
files_included.append(fullname)
newfolder = fullname.rsplit('/', 1)[0] + '/'
parse_file(fullname, newfolder)
continue
return 0
def parse_file_for_drivers(srcfile):
try:
fp = open(srcfile, 'rb')
except IOError:
sys.stderr.write("Unable to open source file '%s'\n" % srcfile)
return 1
in_comment = 0
linenum = 0
for line in fp.readlines():
content = ''
linenum+=1
srcptr = 0
while srcptr < len(line):
c = line[srcptr]
srcptr+=1
if c==13 or c==10:
if c==13 and line[srcptr]==10:
srcptr+=1
continue
if c==' ' or c==9:
continue
if in_comment==1 and c=='*' and line[srcptr]=='/' :
srcptr+=1
in_comment = 0
continue
if in_comment:
continue
if c=='/' and line[srcptr]=='*' :
srcptr+=1
in_comment = 1
continue
if c=='/' and line[srcptr]=='/' :
break
content += c
content = content.strip()
if len(content)>0:
if content.startswith('COMP') or content.startswith('CONS') or content.startswith('GAME') or content.startswith('SYST') or content.startswith('GAMEL'):
name = content[4:]
drivers.append(name.rsplit(',', 14)[1])
return 0
def parse_lua_file(srcfile):
try:
fp = open(srcfile, 'rb')
@ -95,9 +213,9 @@ def parse_lua_file(srcfile):
mappings[name.rsplit(',', 1)[0]] = name.rsplit(',', 1)[1]
return 0
if len(sys.argv) < 2:
if len(sys.argv) < 4:
print('Usage:')
print(' makedep <source.c>')
print(' makedep <source.c> <type> <target>')
sys.exit(0)
parse_lua_file('scripts/src/bus.lua')
@ -106,6 +224,61 @@ parse_lua_file('scripts/src/machine.lua')
parse_lua_file('scripts/src/sound.lua')
parse_lua_file('scripts/src/video.lua')
for filename in sys.argv[1].rsplit(',') :
deps_files_included.append(filename.replace('\\','/'))
parse_file_for_deps(filename,'')
for filename in sys.argv[1].rsplit(',') :
parse_file(filename,'')
for filename in sys.argv[1].rsplit(',') :
parse_file_for_drivers(filename)
# display output
if sys.argv[2]=='drivers':
for line in drivers:
sys.stdout.write("%s\n" % line)
if sys.argv[2]=='target':
for line in components:
sys.stdout.write("%s\n" % line)
sys.stdout.write('\n');
sys.stdout.write('function createProjects_mame_%s(_target, _subtarget)\n' % sys.argv[3]);
sys.stdout.write(' project ("mame_%s")\n' % sys.argv[3]);
sys.stdout.write(' targetsubdir(_target .."_" .. _subtarget)\n');
sys.stdout.write(' kind (LIBTYPE)\n');
sys.stdout.write(' uuid (os.uuid("drv-mame-%s"))\n' % sys.argv[3]);
sys.stdout.write(' \n');
sys.stdout.write(' options {\n');
sys.stdout.write(' "ForceCPP",\n');
sys.stdout.write(' }\n');
sys.stdout.write(' \n');
sys.stdout.write(' includedirs {\n');
sys.stdout.write(' MAME_DIR .. "src/osd",\n');
sys.stdout.write(' MAME_DIR .. "src/emu",\n');
sys.stdout.write(' MAME_DIR .. "src/mame",\n');
sys.stdout.write(' MAME_DIR .. "src/mess",\n');
sys.stdout.write(' MAME_DIR .. "src/lib",\n');
sys.stdout.write(' MAME_DIR .. "src/lib/util",\n');
sys.stdout.write(' MAME_DIR .. "3rdparty",\n');
sys.stdout.write(' GEN_DIR .. "mame/layout",\n');
sys.stdout.write(' GEN_DIR .. "mess/layout",\n');
sys.stdout.write(' }\n');
sys.stdout.write(' if _OPTIONS["with-bundled-zlib"] then\n');
sys.stdout.write(' includedirs {\n');
sys.stdout.write(' MAME_DIR .. "3rdparty/zlib",\n');
sys.stdout.write(' }\n');
sys.stdout.write(' end\n');
sys.stdout.write('\n');
sys.stdout.write(' files{\n');
for line in deps_files_included:
sys.stdout.write(' MAME_DIR .. "%s",\n' % line);
sys.stdout.write(' }\n');
sys.stdout.write('end\n');
sys.stdout.write('\n');
sys.stdout.write('function linkProjects_mame_%s(_target, _subtarget)\n' % sys.argv[3]);
sys.stdout.write(' links {\n');
sys.stdout.write(' "mame_%s",\n' % sys.argv[3]);
sys.stdout.write(' }\n');
sys.stdout.write('end\n');