mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
🎨 Adjust Sort Rules in avatar_list.py
This commit is contained in:
parent
3419088c89
commit
7013a61f49
@ -32,6 +32,28 @@ from utils.log import logger
|
|||||||
from utils.patch.aiohttp import AioHttpTimeoutException
|
from utils.patch.aiohttp import AioHttpTimeoutException
|
||||||
|
|
||||||
|
|
||||||
|
class SkillData(Model):
|
||||||
|
"""天赋数据"""
|
||||||
|
|
||||||
|
skill: CalculatorTalent
|
||||||
|
buffed: bool = False
|
||||||
|
"""是否得到了命座加成"""
|
||||||
|
|
||||||
|
|
||||||
|
class AvatarData(Model):
|
||||||
|
avatar: Character
|
||||||
|
detail: CalculatorCharacterDetails
|
||||||
|
icon: str
|
||||||
|
weapon: Optional[str]
|
||||||
|
skills: List[SkillData]
|
||||||
|
|
||||||
|
def sum_of_skills(self) -> int:
|
||||||
|
total_level = 0
|
||||||
|
for skilldata in self.skills:
|
||||||
|
total_level += skilldata.skill.level
|
||||||
|
return total_level
|
||||||
|
|
||||||
|
|
||||||
class AvatarListPlugin(Plugin, BasePlugin):
|
class AvatarListPlugin(Plugin, BasePlugin):
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
@ -130,15 +152,32 @@ class AvatarListPlugin(Plugin, BasePlugin):
|
|||||||
async def get_avatars_data(
|
async def get_avatars_data(
|
||||||
self, characters: Sequence[Character], client: Client, max_length: int = None
|
self, characters: Sequence[Character], client: Client, max_length: int = None
|
||||||
) -> List["AvatarData"]:
|
) -> List["AvatarData"]:
|
||||||
async def _task(c, n):
|
async def _task(c):
|
||||||
return n, await self.get_avatar_data(c, client)
|
return await self.get_avatar_data(c, client)
|
||||||
|
|
||||||
task_results = await asyncio.gather(
|
task_results = await asyncio.gather(*[_task(character) for character in characters])
|
||||||
*[_task(character, num) for num, character in enumerate(characters[:max_length])]
|
|
||||||
|
return list(
|
||||||
|
filter(
|
||||||
|
lambda x: x,
|
||||||
|
sorted(
|
||||||
|
task_results,
|
||||||
|
key=lambda x: (
|
||||||
|
x.avatar.level,
|
||||||
|
x.avatar.rarity,
|
||||||
|
x.sum_of_skills(),
|
||||||
|
x.avatar.constellation,
|
||||||
|
# TODO 如果加入武器排序条件,需要把武器转化为图片url的处理后置
|
||||||
|
# x.weapon.level,
|
||||||
|
# x.weapon.rarity,
|
||||||
|
# x.weapon.refinement,
|
||||||
|
x.avatar.friendship,
|
||||||
|
),
|
||||||
|
reverse=True,
|
||||||
|
)[:max_length],
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
return list(filter(lambda x: x, map(lambda x: x[1], sorted(task_results, key=lambda x: x[0]))))
|
|
||||||
|
|
||||||
async def get_final_data(self, client: Client, characters: Sequence[Character], update: Update):
|
async def get_final_data(self, client: Client, characters: Sequence[Character], update: Update):
|
||||||
try:
|
try:
|
||||||
response = await self.enka_client.fetch_user(client.uid)
|
response = await self.enka_client.fetch_user(client.uid)
|
||||||
@ -270,19 +309,3 @@ class AvatarListPlugin(Plugin, BasePlugin):
|
|||||||
"文件" if all_avatars else "图片",
|
"文件" if all_avatars else "图片",
|
||||||
extra={"markup": True},
|
extra={"markup": True},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class SkillData(Model):
|
|
||||||
"""天赋数据"""
|
|
||||||
|
|
||||||
skill: CalculatorTalent
|
|
||||||
buffed: bool = False
|
|
||||||
"""是否得到了命座加成"""
|
|
||||||
|
|
||||||
|
|
||||||
class AvatarData(Model):
|
|
||||||
avatar: Character
|
|
||||||
detail: CalculatorCharacterDetails
|
|
||||||
icon: str
|
|
||||||
weapon: Optional[str]
|
|
||||||
skills: Iterable[SkillData]
|
|
||||||
|
Loading…
Reference in New Issue
Block a user