mirror of
https://github.com/ldericher/fftcgtool
synced 2025-01-15 15:02:59 +00:00
174 lines
4.2 KiB
Python
Executable file
174 lines
4.2 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
import argparse
|
|
import logging
|
|
import os
|
|
import sys
|
|
import zipfile
|
|
|
|
import fftcg
|
|
|
|
# constants
|
|
OUT_DIR_NAME = "out" # name of output directory
|
|
|
|
|
|
def opus_decks(args: argparse.Namespace) -> list[fftcg.TTSDeck]:
|
|
carddb = fftcg.CardDB()
|
|
decks: list[fftcg.TTSDeck] = []
|
|
for opus_id in args.opus_ids:
|
|
# import an opus
|
|
opus = fftcg.Opus(opus_id, args.language)
|
|
book = fftcg.Book(opus, args.language, args.num_requests)
|
|
book.save()
|
|
|
|
carddb.update(opus)
|
|
decks.extend(opus.elemental_decks)
|
|
|
|
carddb.upload_prompt()
|
|
|
|
# create elemental decks for opus
|
|
return decks
|
|
|
|
|
|
def ffdecks_decks(args: argparse.Namespace) -> list[fftcg.TTSDeck]:
|
|
decks: list[fftcg.TTSDeck] = []
|
|
for deck_id in args.deck_ids:
|
|
# import a deck
|
|
decks.append(fftcg.TTSDeck.from_ffdecks_deck(deck_id))
|
|
|
|
return decks
|
|
|
|
|
|
def main() -> None:
|
|
# set up CLI
|
|
|
|
# main parser
|
|
parser = argparse.ArgumentParser(
|
|
prog="fftcgtool",
|
|
description="Imports FFTCG cards for TT-Sim.",
|
|
)
|
|
|
|
parser.add_argument(
|
|
"-v", "--verbose",
|
|
help="increase output verbosity",
|
|
action="count",
|
|
)
|
|
|
|
parser.add_argument(
|
|
"-l", "--language",
|
|
type=fftcg.Language,
|
|
default="en",
|
|
metavar="LANG",
|
|
help="language for imported objects",
|
|
)
|
|
|
|
parser.add_argument(
|
|
"-s", "--stdout",
|
|
action="store_true",
|
|
help="print the deck files in a zip archive to stdout, skip creating JSONs on disk",
|
|
)
|
|
|
|
subparsers = parser.add_subparsers(
|
|
description="Import either an Opus to extend the mod, or import a deck to play right away.",
|
|
dest="subcommand",
|
|
help="valid subcommands",
|
|
required=True,
|
|
)
|
|
|
|
# "opus" subcommand
|
|
opuses_parser = subparsers.add_parser(
|
|
"opuses",
|
|
description="Imports Opuses from the square API and creates its elemental decks as JSON files.",
|
|
)
|
|
|
|
opuses_parser.set_defaults(
|
|
func=opus_decks
|
|
)
|
|
|
|
opuses_parser.add_argument(
|
|
"opus_ids",
|
|
type=str,
|
|
nargs="+",
|
|
metavar="Opus_ID",
|
|
help="the Opuses to import",
|
|
)
|
|
|
|
opuses_parser.add_argument(
|
|
"-n", "--num_requests",
|
|
type=int,
|
|
default=20,
|
|
metavar="COUNT",
|
|
help="maximum number of concurrent requests",
|
|
)
|
|
|
|
# "ffdecks" subcommand
|
|
ffdecks_parser = subparsers.add_parser(
|
|
"ffdecks",
|
|
description="Imports Decks from the ffdecks.com API and creates it as a JSON file.",
|
|
)
|
|
|
|
ffdecks_parser.set_defaults(
|
|
func=ffdecks_decks
|
|
)
|
|
|
|
ffdecks_parser.add_argument(
|
|
"deck_ids",
|
|
type=str,
|
|
nargs="+",
|
|
metavar="Deck_ID",
|
|
help="the Decks to import",
|
|
)
|
|
|
|
# parse arguments
|
|
args = parser.parse_args()
|
|
|
|
# set up logging
|
|
if args.verbose is None:
|
|
args.verbose = logging.WARN
|
|
elif args.verbose == 1:
|
|
args.verbose = logging.INFO
|
|
else:
|
|
args.verbose = logging.DEBUG
|
|
|
|
logging.basicConfig(
|
|
level=args.verbose,
|
|
format="%(levelname)s: %(processName)s %(message)s",
|
|
)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
logger.info("fftcgtool started.")
|
|
logger.debug(f"{args = }")
|
|
|
|
# output directory
|
|
if not os.path.exists(OUT_DIR_NAME):
|
|
os.mkdir(OUT_DIR_NAME)
|
|
|
|
os.chdir(OUT_DIR_NAME)
|
|
|
|
# load the current carddb
|
|
carddb = fftcg.CardDB()
|
|
carddb.load()
|
|
|
|
# call function based on args
|
|
decks = args.func(args)
|
|
|
|
# decide what to do with the decks
|
|
if args.stdout:
|
|
# print out a zip file
|
|
with open(sys.stdout.fileno(), "wb", closefd=False, buffering=0) as raw_stdout:
|
|
with zipfile.ZipFile(raw_stdout, "w", compression=zipfile.ZIP_DEFLATED) as zip_file:
|
|
# put the decks into that zip file
|
|
for deck in decks:
|
|
zip_file.writestr(deck.file_name, deck.get_json(args.language))
|
|
|
|
else:
|
|
# save the decks to disk
|
|
for deck in decks:
|
|
deck.save(args.language)
|
|
|
|
# bye
|
|
print("Done. Put the generated JSON files in your 'Saved Objects' Folder.")
|
|
print("Thanks for using fftcgtool!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|