Updated .gitignore. Added --verbose parameter to gcdstruct.py.

This commit is contained in:
Markus Birth 2019-10-11 16:30:01 +02:00
parent d33ed7ef55
commit 98263e6af2
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A
2 changed files with 17 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
__pycache__/
*.bin
*.rcp
*.gcd
*.rgn
/docs/

View File

@ -8,11 +8,23 @@ Prints out the structure of the given GCD file.
from grmn import Gcd, ChkSum
import sys
FILE = sys.argv[1]
if len(sys.argv) <= 2:
VERBOSE = False
FILE = sys.argv[1]
elif sys.argv[1] == "--verbose":
VERBOSE = True
FILE = sys.argv[2]
elif sys.argv[2] == "--verbose":
VERBOSE = True
FILE = sys.argv[1]
print("Opening {}".format(FILE))
gcd = Gcd(FILE)
gcd.print_struct()
if VERBOSE:
gcd.print_struct_full()
else:
gcd.print_struct()
gcd.validate(True)