mirror of
https://github.com/ldericher/fftcgtool
synced 2025-01-15 15:02:59 +00:00
77 lines
2.1 KiB
Python
77 lines
2.1 KiB
Python
import json
|
|
|
|
from .carddb import CardDB
|
|
from .code import Code
|
|
|
|
|
|
class TTSDeck(list[dict[str, any]]):
|
|
def __init__(self, codes: list[Code], carddb: CardDB):
|
|
super().__init__([carddb[str(code)] for code in codes])
|
|
|
|
def __str__(self) -> str:
|
|
face_urls = list(set([entry["file"] for entry in self]))
|
|
|
|
custom_deck = {
|
|
str(i + 1): {
|
|
"NumWidth": "10",
|
|
"NumHeight": "7",
|
|
"FaceURL": url,
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/948455238665576576/85063172B8C340602E8D6C783A457122F53F7843/",
|
|
} for i, url in enumerate(face_urls)
|
|
}
|
|
|
|
custom_deck_inv = {
|
|
url: i + 1
|
|
for i, url in enumerate(face_urls)
|
|
}
|
|
|
|
common_dict = {
|
|
"Transform": {
|
|
"scaleX": 2.17822933,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.17822933
|
|
},
|
|
|
|
"Locked": False,
|
|
"Grid": True,
|
|
"Snap": True,
|
|
"Autoraise": True,
|
|
"Sticky": True,
|
|
"Tooltip": True,
|
|
"GridProjection": False,
|
|
}
|
|
|
|
contained_objects = [
|
|
{
|
|
"Name": "Card",
|
|
"Nickname": entry["card"].name,
|
|
"Description": entry["card"].text,
|
|
|
|
"CardID": 100 * custom_deck_inv[entry["file"]] + entry["index"],
|
|
|
|
"Hands": True,
|
|
"SidewaysCard": False,
|
|
} | common_dict for entry in self
|
|
]
|
|
|
|
deck_ids = [
|
|
contained_object["CardID"]
|
|
for contained_object in contained_objects
|
|
]
|
|
|
|
jsondict = {"ObjectStates": [
|
|
{
|
|
"Name": "Deck",
|
|
"Nickname": "TODO Deck Name",
|
|
"Description": "TODO Deck Description",
|
|
|
|
"Hands": False,
|
|
"SidewaysCard": False,
|
|
|
|
"DeckIDs": deck_ids,
|
|
"CustomDeck": custom_deck,
|
|
"ContainedObjects": contained_objects,
|
|
} | common_dict
|
|
]}
|
|
|
|
return json.dumps(jsondict, indent=2)
|