Archived
1
0
Fork 0
This commit is contained in:
多羅狼 2023-06-21 22:32:39 +08:00 committed by GitHub
parent 91d2ebc5c1
commit 47822a15d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 8 deletions

View file

@ -2,7 +2,7 @@ from datetime import datetime
from core.utils.http import get_url
from .maimaidx_api_data import get_record, get_plate
from .maimaidx_music import *
from .maimaidx_music import TotalList
total_list = TotalList()
@ -149,7 +149,7 @@ async def get_player_score(msg, payload, input_id):
return '\n'.join(output_lines)
async def get_level_process(msg, payload, process, goal):
async def get_level_process(message, payload, process, goal):
song_played = []
song_remain = []
@ -182,8 +182,7 @@ async def get_level_process(msg, payload, process, goal):
if lv == process and [int(music.id), i + 2] not in song_played:
song_remain.append([int(music.id), i + 2])
song_remain = sorted(song_remain, key=lambda i: int(i[1]))
song_remain = sorted(song_remain, key=lambda i: int(i[0]))
song_remain = sorted(song_remain, key=lambda i: (int(i[0]), int(i[1])))
songs = []
for song in song_remain:
@ -194,7 +193,7 @@ async def get_level_process(msg, payload, process, goal):
if len(song_remain) > 0:
if len(song_remain) < 50:
song_record = [[s['id'], s['level_index']] for s in verlist]
msg += f"{msg.locale.t('maimai.message.process.level.last', process=process, goal=goal)}\n"
msg += f"{message.locale.t('maimai.message.process.level.last', process=process, goal=goal)}\n"
for i, s in enumerate(sorted(songs, key=lambda i: i[3])):
self_record = ''
if [int(s[0]), s[-1]] in song_record:
@ -209,8 +208,8 @@ async def get_level_process(msg, payload, process, goal):
self_record = list(sync_conversion.values())[list(sync_conversion.keys()).index(verlist[record_index]['fs'])].upper()
msg += f"{s[0]}\u200B.{s[1]}{' (DX)' if s[5] == 'DX' else ''} {s[2]} {s[3]} {self_record}\n".strip()
else:
msg = f"{msg.locale.t('maimai.message.process.level.last', song_remain=len(song_remain), process=process, goal=goal)}"
msg = f"{message.locale.t('maimai.message.process.level.last', song_remain=len(song_remain), process=process, goal=goal)}"
else:
msg = f"{msg.locale.t('maimai.message.process.level.completed', process=process, goal=goal)}"
msg = f"{message.locale.t('maimai.message.process.level.completed', process=process, goal=goal)}"
return msg

View file

@ -29,7 +29,7 @@
"maimai.message.music_not_found": "未找到符合要求的歌曲。",
"maimai.message.no_username": "请提供用户名!",
"maimai.message.process.level": "您还有 ${song_remain} 首 ${process} 歌曲没有达成 ${goal}。",
"maimai.message.process.level.goal": "您已达成 ${process} 歌曲全谱面 ${goal}。",
"maimai.message.process.level.completed": "您已达成 ${process} 歌曲全谱面 ${goal}。",
"maimai.message.process.level.last": "您的 ${process} 歌曲全谱面 ${goal} 剩余曲目如下:",
"maimai.message.random.error": "发生错误:无法随机歌曲,请检查输入。",
"maimai.message.rank": "截至 ${time}\n查分器共有 ${total_rank} 名用户,平均分数为 ${average_rating}\n${user} 的分数为 ${rating},排名为 #${rank}\n你已经超越了 ${surpassing_rate}% 的玩家。",