Updated .gitignore. Added --verbose parameter to gcdstruct.py.
This commit is contained in:
parent
d33ed7ef55
commit
98263e6af2
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,6 @@
|
||||
__pycache__/
|
||||
*.bin
|
||||
*.rcp
|
||||
*.gcd
|
||||
*.rgn
|
||||
/docs/
|
||||
|
16
gcdstruct.py
16
gcdstruct.py
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user