mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-21 13:48:19 +00:00
♻️ Refactor get fight prop rule
This commit is contained in:
parent
b3c9273776
commit
30bae18edf
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -2,6 +2,3 @@
|
|||||||
path = gram_core
|
path = gram_core
|
||||||
url = https://github.com/PaiGramTeam/GramCore.git
|
url = https://github.com/PaiGramTeam/GramCore.git
|
||||||
branch = v4
|
branch = v4
|
||||||
[submodule "modules/playercards/metadata"]
|
|
||||||
path = modules/playercards/metadata
|
|
||||||
url = https://github.com/PaiGramTeam/FightPropRule.git
|
|
||||||
|
@ -9,12 +9,19 @@ from httpx import URL, AsyncClient, RemoteProtocolError, Response
|
|||||||
from utils.const import AMBR_HOST, PROJECT_ROOT
|
from utils.const import AMBR_HOST, PROJECT_ROOT
|
||||||
from utils.log import logger
|
from utils.log import logger
|
||||||
|
|
||||||
__all__ = ["update_metadata_from_ambr", "update_metadata_from_github", "make_github_fast", "RESOURCE_DEFAULT_PATH"]
|
__all__ = [
|
||||||
|
"update_metadata_from_ambr",
|
||||||
|
"update_metadata_from_github",
|
||||||
|
"make_github_fast",
|
||||||
|
"RESOURCE_DEFAULT_PATH",
|
||||||
|
"RESOURCE_FightPropRule_URL",
|
||||||
|
]
|
||||||
GENSHIN_PY_DATA_REPO = parse_token("aHR0cHM6Ly9naXRsYWIuY29tL0RpbWJyZWF0aC9nYW1lZGF0YS8tL3Jhdy9tYXN0ZXIv").decode()
|
GENSHIN_PY_DATA_REPO = parse_token("aHR0cHM6Ly9naXRsYWIuY29tL0RpbWJyZWF0aC9nYW1lZGF0YS8tL3Jhdy9tYXN0ZXIv").decode()
|
||||||
RESOURCE_REPO = "PaiGramTeam/PaiGram_Resources"
|
RESOURCE_REPO = "PaiGramTeam/PaiGram_Resources"
|
||||||
RESOURCE_BRANCH = "remote"
|
RESOURCE_BRANCH = "remote"
|
||||||
RESOURCE_ROOT = "Resources"
|
RESOURCE_ROOT = "Resources"
|
||||||
RESOURCE_DEFAULT_PATH = f"{RESOURCE_REPO}/{RESOURCE_BRANCH}/{RESOURCE_ROOT}/"
|
RESOURCE_DEFAULT_PATH = f"{RESOURCE_REPO}/{RESOURCE_BRANCH}/{RESOURCE_ROOT}/"
|
||||||
|
RESOURCE_FightPropRule_URL = "https://fightproprule.paimon.vip/"
|
||||||
|
|
||||||
client = AsyncClient()
|
client = AsyncClient()
|
||||||
|
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
from typing import List, Dict
|
from typing import List, Dict
|
||||||
|
|
||||||
from httpx import AsyncClient, HTTPError
|
from httpx import AsyncClient
|
||||||
|
|
||||||
from metadata.scripts.metadatas import RESOURCE_DEFAULT_PATH
|
from metadata.scripts.metadatas import RESOURCE_DEFAULT_PATH, RESOURCE_FightPropRule_URL
|
||||||
|
from utils.log import logger
|
||||||
|
|
||||||
|
|
||||||
class Remote:
|
class Remote:
|
||||||
@ -12,6 +13,7 @@ class Remote:
|
|||||||
CALENDAR = f"{BASE_URL}calendar.json"
|
CALENDAR = f"{BASE_URL}calendar.json"
|
||||||
BIRTHDAY = f"{BASE_URL}birthday.json"
|
BIRTHDAY = f"{BASE_URL}birthday.json"
|
||||||
MATERIAL = f"{BASE_URL}roles_material.json"
|
MATERIAL = f"{BASE_URL}roles_material.json"
|
||||||
|
RULE = f"{RESOURCE_FightPropRule_URL}FightPropRule_starrail.json"
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
async def get_remote_calendar() -> Dict[str, Dict]:
|
async def get_remote_calendar() -> Dict[str, Dict]:
|
||||||
@ -22,7 +24,8 @@ class Remote:
|
|||||||
if req.status_code == 200:
|
if req.status_code == 200:
|
||||||
return req.json()
|
return req.json()
|
||||||
return {}
|
return {}
|
||||||
except HTTPError:
|
except Exception as exc:
|
||||||
|
logger.error("获取云端日历失败: %s", exc_info=exc)
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
@ -34,7 +37,8 @@ class Remote:
|
|||||||
if req.status_code == 200:
|
if req.status_code == 200:
|
||||||
return req.json()
|
return req.json()
|
||||||
return {}
|
return {}
|
||||||
except HTTPError:
|
except Exception as exc:
|
||||||
|
logger.error("获取云端生日失败: %s", exc_info=exc)
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
@ -46,5 +50,19 @@ class Remote:
|
|||||||
if req.status_code == 200:
|
if req.status_code == 200:
|
||||||
return req.json()
|
return req.json()
|
||||||
return {}
|
return {}
|
||||||
except HTTPError:
|
except Exception as exc:
|
||||||
|
logger.error("获取云端角色材料失败: %s", exc_info=exc)
|
||||||
|
return {}
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
async def get_fight_prop_rule_data() -> Dict[str, Dict[str, float]]:
|
||||||
|
"""获取云端圣遗物评分规则"""
|
||||||
|
try:
|
||||||
|
async with AsyncClient() as client:
|
||||||
|
req = await client.get(Remote.RULE)
|
||||||
|
if req.status_code == 200:
|
||||||
|
return req.json()
|
||||||
|
return {}
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("获取云端圣遗物评分规则失败: %s", exc_info=exc)
|
||||||
return {}
|
return {}
|
||||||
|
@ -1,18 +1,12 @@
|
|||||||
import os
|
import os
|
||||||
|
from typing import Dict
|
||||||
import ujson as json
|
|
||||||
|
|
||||||
from modules.playercards.fight_prop import FightPropScore, EquipmentsStats, nameToFightProp, FightProp
|
from modules.playercards.fight_prop import FightPropScore, EquipmentsStats, nameToFightProp, FightProp
|
||||||
from modules.wiki.models.enums import RelicAffix
|
from modules.wiki.models.enums import RelicAffix
|
||||||
|
|
||||||
_project_path = os.path.dirname(__file__)
|
|
||||||
_fight_prop_rule_file = os.path.join(_project_path, "metadata", "FightPropRule_starrail.json")
|
|
||||||
with open(_fight_prop_rule_file, "r", encoding="utf-8") as f:
|
|
||||||
fight_prop_rule_data: dict = json.load(f)
|
|
||||||
|
|
||||||
|
|
||||||
class ArtifactStatsTheory:
|
class ArtifactStatsTheory:
|
||||||
def __init__(self, character_name: str):
|
def __init__(self, character_name: str, fight_prop_rule_data: Dict[str, Dict[str, float]]):
|
||||||
self.character_name = character_name
|
self.character_name = character_name
|
||||||
self.fight_prop_rules = fight_prop_rule_data.get(self.character_name, {})
|
self.fight_prop_rules = fight_prop_rule_data.get(self.character_name, {})
|
||||||
fight_prop_rule_list = list(self.fight_prop_rules.keys())
|
fight_prop_rule_list = list(self.fight_prop_rules.keys())
|
||||||
|
@ -1 +0,0 @@
|
|||||||
Subproject commit c8e481518e29aff43244afdee1048604ab1e8148
|
|
@ -16,6 +16,7 @@ from core.services.template.services import TemplateService
|
|||||||
from core.services.wiki.services import WikiService
|
from core.services.wiki.services import WikiService
|
||||||
from metadata.shortname import roleToName, idToRole
|
from metadata.shortname import roleToName, idToRole
|
||||||
from modules.apihelper.client.components.player_cards import PlayerCards as PlayerCardsClient, PlayerInfo, Avatar, Relic
|
from modules.apihelper.client.components.player_cards import PlayerCards as PlayerCardsClient, PlayerInfo, Avatar, Relic
|
||||||
|
from modules.apihelper.client.components.remote import Remote
|
||||||
from modules.playercards.fight_prop import EquipmentsStats
|
from modules.playercards.fight_prop import EquipmentsStats
|
||||||
from modules.playercards.helpers import ArtifactStatsTheory
|
from modules.playercards.helpers import ArtifactStatsTheory
|
||||||
from utils.log import logger
|
from utils.log import logger
|
||||||
@ -47,9 +48,14 @@ class PlayerCards(Plugin):
|
|||||||
self.template_service = template_service
|
self.template_service = template_service
|
||||||
self.wiki_service = wiki_service
|
self.wiki_service = wiki_service
|
||||||
self.kitsune: Optional[str] = None
|
self.kitsune: Optional[str] = None
|
||||||
|
self.fight_prop_rule: Dict[str, Dict[str, float]] = {}
|
||||||
|
|
||||||
async def initialize(self):
|
async def initialize(self):
|
||||||
await self.client.async_init()
|
await self.client.async_init()
|
||||||
|
await self._refresh()
|
||||||
|
|
||||||
|
async def _refresh(self):
|
||||||
|
self.fight_prop_rule = await Remote.get_fight_prop_rule_data()
|
||||||
|
|
||||||
async def _load_history(self, uid) -> Optional[PlayerInfo]:
|
async def _load_history(self, uid) -> Optional[PlayerInfo]:
|
||||||
data = await self.client.player_cards_file.load_history_info(uid)
|
data = await self.client.player_cards_file.load_history_info(uid)
|
||||||
@ -173,6 +179,7 @@ class PlayerCards(Plugin):
|
|||||||
self.assets_service,
|
self.assets_service,
|
||||||
self.wiki_service,
|
self.wiki_service,
|
||||||
self.client,
|
self.client,
|
||||||
|
self.fight_prop_rule,
|
||||||
).render() # pylint: disable=W0631
|
).render() # pylint: disable=W0631
|
||||||
await render_result.reply_photo(
|
await render_result.reply_photo(
|
||||||
message,
|
message,
|
||||||
@ -293,7 +300,13 @@ class PlayerCards(Plugin):
|
|||||||
await callback_query.answer(text="正在渲染图片中 请稍等 请不要重复点击按钮", show_alert=False)
|
await callback_query.answer(text="正在渲染图片中 请稍等 请不要重复点击按钮", show_alert=False)
|
||||||
await message.reply_chat_action(ChatAction.UPLOAD_PHOTO)
|
await message.reply_chat_action(ChatAction.UPLOAD_PHOTO)
|
||||||
render_result = await RenderTemplate(
|
render_result = await RenderTemplate(
|
||||||
uid, characters, self.template_service, self.assets_service, self.wiki_service, self.client
|
uid,
|
||||||
|
characters,
|
||||||
|
self.template_service,
|
||||||
|
self.assets_service,
|
||||||
|
self.wiki_service,
|
||||||
|
self.client,
|
||||||
|
self.fight_prop_rule,
|
||||||
).render() # pylint: disable=W0631
|
).render() # pylint: disable=W0631
|
||||||
render_result.filename = f"player_card_{uid}_{result}.png"
|
render_result.filename = f"player_card_{uid}_{result}.png"
|
||||||
await render_result.edit_media(message)
|
await render_result.edit_media(message)
|
||||||
@ -440,6 +453,7 @@ class RenderTemplate:
|
|||||||
assets_service: AssetsService,
|
assets_service: AssetsService,
|
||||||
wiki_service: WikiService,
|
wiki_service: WikiService,
|
||||||
client: PlayerCardsClient,
|
client: PlayerCardsClient,
|
||||||
|
fight_prop_rule: Dict[str, Dict[str, float]],
|
||||||
):
|
):
|
||||||
self.uid = uid
|
self.uid = uid
|
||||||
self.template_service = template_service
|
self.template_service = template_service
|
||||||
@ -447,6 +461,7 @@ class RenderTemplate:
|
|||||||
self.assets_service = assets_service
|
self.assets_service = assets_service
|
||||||
self.wiki_service = wiki_service
|
self.wiki_service = wiki_service
|
||||||
self.client = client
|
self.client = client
|
||||||
|
self.fight_prop_rule = fight_prop_rule
|
||||||
|
|
||||||
async def render(self):
|
async def render(self):
|
||||||
images = await self.cache_images()
|
images = await self.cache_images()
|
||||||
@ -520,7 +535,7 @@ class RenderTemplate:
|
|||||||
def find_artifacts(self) -> List[Artifact]:
|
def find_artifacts(self) -> List[Artifact]:
|
||||||
"""在 equipments 数组中找到圣遗物,并转换成带有分数的 model。equipments 数组包含圣遗物和武器"""
|
"""在 equipments 数组中找到圣遗物,并转换成带有分数的 model。equipments 数组包含圣遗物和武器"""
|
||||||
|
|
||||||
stats = ArtifactStatsTheory(idToRole(self.character.avatarId))
|
stats = ArtifactStatsTheory(idToRole(self.character.avatarId), self.fight_prop_rule)
|
||||||
|
|
||||||
def substat_score(s: EquipmentsStats) -> float:
|
def substat_score(s: EquipmentsStats) -> float:
|
||||||
return stats.theory(s)
|
return stats.theory(s)
|
||||||
|
Loading…
Reference in New Issue
Block a user