iidx: update api to support qpros in catalog
This commit is contained in:
parent
c77d834091
commit
84e731aabb
@ -155,11 +155,30 @@ class CatalogObject(BaseObject):
|
|||||||
else:
|
else:
|
||||||
return {"emblems": []}
|
return {"emblems": []}
|
||||||
|
|
||||||
|
def __format_iidx_extras(self) -> Dict[str, List[Dict[str, Any]]]:
|
||||||
|
# Gotta look up the unlock catalog
|
||||||
|
items = self.data.local.game.get_items(self.game, self.version)
|
||||||
|
|
||||||
|
return {
|
||||||
|
"qpros": [
|
||||||
|
{
|
||||||
|
"identifier": item.data.get_str("identifier"),
|
||||||
|
"id": str(item.id),
|
||||||
|
"name": item.data.get_str("name"),
|
||||||
|
"type": item.type[3:],
|
||||||
|
}
|
||||||
|
for item in items
|
||||||
|
if item.type in ['qp_body', 'qp_face', 'qp_hair', 'qp_hand', 'qp_head']
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
def __format_extras(self) -> Dict[str, List[Dict[str, Any]]]:
|
def __format_extras(self) -> Dict[str, List[Dict[str, Any]]]:
|
||||||
if self.game == GameConstants.SDVX:
|
if self.game == GameConstants.SDVX:
|
||||||
return self.__format_sdvx_extras()
|
return self.__format_sdvx_extras()
|
||||||
elif self.game == GameConstants.JUBEAT:
|
elif self.game == GameConstants.JUBEAT:
|
||||||
return self.__format_jubeat_extras()
|
return self.__format_jubeat_extras()
|
||||||
|
elif self.game == GameConstants.IIDX:
|
||||||
|
return self.__format_iidx_extras()
|
||||||
else:
|
else:
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
|
@ -38,6 +38,17 @@ class GlobalGameData(BaseGlobalData):
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def __translate_iidx_qpros(self, entry: Dict[str, Any]) -> Item:
|
||||||
|
return Item(
|
||||||
|
f'qp_{entry["type"]}',
|
||||||
|
int(entry["id"]),
|
||||||
|
{
|
||||||
|
"identifier": entry["identifier"],
|
||||||
|
"name": entry["name"],
|
||||||
|
"type": entry["type"],
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
def get_items(self, game: str, version: int) -> List[Item]:
|
def get_items(self, game: str, version: int) -> List[Item]:
|
||||||
"""
|
"""
|
||||||
Given a game/userid, find all items in the catalog.
|
Given a game/userid, find all items in the catalog.
|
||||||
@ -68,6 +79,10 @@ class GlobalGameData(BaseGlobalData):
|
|||||||
translation = {
|
translation = {
|
||||||
"emblems": self.__translate_jubeat_emblems,
|
"emblems": self.__translate_jubeat_emblems,
|
||||||
}.get(catalogtype, None)
|
}.get(catalogtype, None)
|
||||||
|
elif game == GameConstants.IIDX:
|
||||||
|
translation = {
|
||||||
|
"qpros": self.__translate_iidx_qpros,
|
||||||
|
}.get(catalogtype, None)
|
||||||
else:
|
else:
|
||||||
translation = None
|
translation = None
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user