mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
130 lines
3.4 KiB
JavaScript
130 lines
3.4 KiB
JavaScript
import AvatarUtil from './AvatarUtil.js'
|
|
import lodash from 'lodash'
|
|
import CharImg from '../character/CharImg.js'
|
|
|
|
import Serv from '../serv/Serv.js'
|
|
import { Cfg } from '#miao'
|
|
|
|
const ProfileAvatar = {
|
|
|
|
/**
|
|
* 更新面板数据
|
|
* @param player
|
|
* @param force
|
|
* @returns {Promise<boolean|number>}
|
|
*/
|
|
async refreshProfile (player, force = 2) {
|
|
if (!AvatarUtil.needRefresh(player._profile, force, { 0: 24, 1: 2, 2: 0 })) {
|
|
return false
|
|
}
|
|
let { uid, e } = player
|
|
if (![9, 10].includes(uid.toString().length) || !e) {
|
|
return false
|
|
}
|
|
let ret = await Serv.req(e, player)
|
|
if (ret) {
|
|
player._profile = new Date() * 1
|
|
player.save()
|
|
return player._update.length
|
|
}
|
|
},
|
|
|
|
isProfile (avatar) {
|
|
if (avatar.isSr) {
|
|
return true
|
|
}
|
|
// 检查数据源
|
|
if (!avatar._source || !['enka', 'change', 'miao', 'mgg', 'hutao', 'homo'].includes(avatar._source)) {
|
|
return false
|
|
}
|
|
// 检查武器及天赋
|
|
if (avatar.isGs && (!avatar.weapon || lodash.isUndefined(avatar.weapon.promote) || !avatar.talent)) {
|
|
return false
|
|
}
|
|
// 检查圣遗物词条是否完备
|
|
if (!avatar.artis || !avatar.artis.hasAttr) {
|
|
return false
|
|
}
|
|
// 检查旅行者
|
|
if (['空', '荧'].includes(avatar.name)) {
|
|
return !!avatar.elem
|
|
}
|
|
return true
|
|
},
|
|
|
|
getCostumeSplash (profile, game = 'gs') {
|
|
let { char, id, name } = profile
|
|
if (!Cfg.get('costumeSplash', true)) {
|
|
return char.getImgs(profile._costume).splash
|
|
}
|
|
|
|
let costume = profile._costume
|
|
costume = profile.char.checkCostume(costume) ? '2' : ''
|
|
if (!Cfg.get('costumeSplash', true)) {
|
|
return this.char.getImgs(profile._costume).splash
|
|
}
|
|
|
|
let nPath = `meta-${game}/character/${name}`
|
|
let isSuper = false
|
|
let talent = profile.talent ? lodash.map(profile.talent, (ds) => ds.original).join('') : ''
|
|
let isGs = game === 'gs'
|
|
if (isGs && (
|
|
profile.cons === 6 ||
|
|
['ACE', 'MAX'].includes(profile.artis?.markClass) ||
|
|
talent === '101010'
|
|
)) {
|
|
isSuper = true
|
|
}
|
|
|
|
let treeSet = ['101', '102', '103', '201', '202', '203', '204', '205', '206', '207', '208', '209', '210']
|
|
let treeSuper = false
|
|
if (!isGs && profile.trees) {
|
|
treeSuper = true
|
|
lodash.forEach(profile.trees, (tree, idx) => {
|
|
if (!tree.includes(treeSet[idx])) {
|
|
treeSuper = false
|
|
}
|
|
})
|
|
}
|
|
if (!isGs && (
|
|
profile.cons === 6 ||
|
|
['ACE', 'MAX'].includes(profile.artis?.markClass) ||
|
|
(talent === '6101010' && treeSuper)
|
|
)) {
|
|
isSuper = true
|
|
}
|
|
// 特殊处理开拓者的情况
|
|
if (char.isTrailblazer) {
|
|
switch (id) {
|
|
case 8001:
|
|
case 8003:
|
|
case 8005:
|
|
name = '穹'
|
|
break
|
|
case 8002:
|
|
case 8004:
|
|
case 8006:
|
|
name = '星'
|
|
break
|
|
}
|
|
}
|
|
if (isSuper) {
|
|
return CharImg.getRandomImg(
|
|
[`profile/super-character/${name}`, `profile/normal-character/${name}`],
|
|
[`${nPath}/imgs/splash0.webp`, `${nPath}/imgs/splash${costume}.webp`, `/${nPath}/imgs/splash.webp`]
|
|
)
|
|
} else {
|
|
return CharImg.getRandomImg(
|
|
[`profile/normal-character/${name}`],
|
|
[`${nPath}/imgs/splash${costume}.webp`, `/${nPath}/imgs/splash.webp`]
|
|
)
|
|
}
|
|
},
|
|
|
|
getServ (uid, game = 'gs') {
|
|
return Serv.getServ(uid, game)
|
|
}
|
|
}
|
|
|
|
export default ProfileAvatar
|