mirror of
https://github.com/Wiimpathy/HatariWii.git
synced 2024-11-22 17:59:14 +01:00
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
|
#!/usr/bin/env python
|
||
|
#
|
||
|
# Utility to generate from Hatari C-code Python code for mapping
|
||
|
# Hatari configuration variable names and types of those variables.
|
||
|
#
|
||
|
# Copyright (C) 2012 by Eero Tamminen
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation; either version 2 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
|
||
|
import os, re, sys
|
||
|
|
||
|
# match first two items (variable name and type) from lines like:
|
||
|
# { "bConfirmQuit", Bool_Tag, &ConfigureParams.Log.bConfirmQuit }
|
||
|
reg = re.compile("\"([a-zA-Z0-9_]+)\",\s*([BIS][a-z]+)_Tag\s*,")
|
||
|
|
||
|
print "# content generated by %s" % os.path.basename(sys.argv[0])
|
||
|
print "conftypes = {"
|
||
|
|
||
|
for line in sys.stdin.readlines():
|
||
|
match = reg.search(line)
|
||
|
if match:
|
||
|
print """ "%s": "%s",""" % match.groups()
|
||
|
|
||
|
print "}"
|