skyeweave/atlasimagecomposer/cli/cli.py

79 lines
2.8 KiB
Python
Raw Normal View History

2024-08-09 16:57:33 +00:00
import argparse
import pathlib
import sys
2024-10-05 12:01:50 +00:00
from typing import List
2024-08-09 16:57:33 +00:00
2024-10-04 18:18:56 +00:00
from .. import __version__
from ..backend import compose
2024-10-05 12:01:50 +00:00
from ..config import Paths, AtlasDefaults
from ..utils.filesystem import rmdir
2024-08-09 16:57:33 +00:00
# pylint: disable=too-few-public-methods
class Arguments(argparse.Namespace):
"""
Default Arguments when calling the CLI
"""
output: str
2024-10-05 12:01:50 +00:00
cacheclear: bool
filter: List[str]
timeout: int
2024-08-09 16:57:33 +00:00
def parse_arguments():
"""
Create a parser and parse the arguments of sys.argv based on the Arguments Namespace
Returns arguments and extra arguments separately
"""
parser = argparse.ArgumentParser(
prog="atlasimagecomposer",
2024-10-05 12:01:50 +00:00
description="CLI tool to automatically generate expression sheets for servants",
epilog="If there are any issues during execution, it helps to clear the cache from time to time")
2024-08-09 16:57:33 +00:00
parser.add_argument("--version", action="version", version=f"atlasimagecomposer {__version__}")
2024-10-05 12:01:50 +00:00
parser.add_argument("--output", action="store", type=str, default=None, dest="output", help="Set the output location. This can be an absolute or relative path")
parser.add_argument("--filter", action="extend", nargs="+", dest="filter", help='Specify one or more spritesheet ids that will be fetched')
parser.add_argument("--timeout", action="store", type=int, default=None, dest="timeout", help="Set the timeout for all requests towards AtlasAcademy, default is 10s")
parser.add_argument("--clear-cache", action="store_true", default=False, dest="cacheclear", help="Clear cached assets before downloading files for a servant")
2024-08-09 16:57:33 +00:00
args = Arguments()
args, extra_args = parser.parse_known_args(sys.argv[1:], namespace=args)
return args, extra_args
2024-10-04 18:18:56 +00:00
def welcome():
print("-------------------------------------------------")
print(" Welcome to the FGO Sprite loader and composer ")
print(" developed by Firq ")
print("-------------------------------------------------")
2024-08-09 16:57:33 +00:00
2024-10-05 12:01:50 +00:00
def run_cli():
2024-10-04 18:18:56 +00:00
args, _ = parse_arguments()
if args.output:
Paths.OUTPUT = pathlib.Path(args.output)
2024-10-05 12:01:50 +00:00
if args.timeout and args.timeout >= 0:
AtlasDefaults.TIMEOUT = args.timeout
2024-10-04 18:18:56 +00:00
welcome()
2024-10-05 12:01:50 +00:00
input_id = input("Enter servantId/charaId: ")
2024-10-05 12:01:50 +00:00
try:
t = int(input_id)
2024-10-05 12:01:50 +00:00
if t <= 0:
raise ValueError
except ValueError:
print("Servant ID has to be a valid integer above 0")
sys.exit(1)
if args.cacheclear:
cachepath = Paths.IMAGES / str(input_id)
if input_id > 10000:
cachepath = Paths.IMAGES / "manual" / str(input_id)
2024-10-05 12:01:50 +00:00
if cachepath.exists():
rmdir(cachepath)
print("Successfully cleared cached assets")
else:
print("No cache to clear was found, continuing")
compose(int(input_id), args.filter)