miao-plugin/apps/profile/ProfileArtis.js
2024-04-04 02:01:01 +08:00

103 lines
2.6 KiB
JavaScript

/*
* 角色圣遗物评分详情
*
* */
import lodash from 'lodash'
import { Cfg, Common, Meta } from '#miao'
import { getTargetUid, profileHelp, getProfileRefresh } from './ProfileCommon.js'
import { Artifact, Button, Character, Player } from '#miao.models'
import ArtisMarkCfg from '../../models/artis/ArtisMarkCfg.js'
/*
* 角色圣遗物面板
* */
export async function profileArtis (e) {
let { uid, avatar } = e
let profile = e._profile || await getProfileRefresh(e, avatar)
if (!profile) {
return true
}
if (!profile.hasArtis()) {
e.reply('未能获得圣遗物详情,请重新获取面板信息后查看')
return true
}
let char = profile.char
let { game } = char
let charCfg = ArtisMarkCfg.getCfg(profile)
let { attrMap } = Meta.getMeta(game, 'arti')
let artisDetail = profile.getArtisMark()
let artisKeyTitle = Artifact.getArtisKeyTitle(game)
// 渲染图像
return e.reply([await Common.render('character/artis-mark', {
uid,
elem: char.elem,
splash: profile.costumeSplash,
imgs: profile.imgs,
data: profile,
costume: profile.costume ? '2' : '',
artisDetail,
artisKeyTitle,
attrMap,
charCfg,
game,
changeProfile: e._profileMsg
}, { e, scale: 1.6 / 1.1, retType: 'base64' }), new Button(e).profile(char, uid)])
}
/*
* 圣遗物列表
* */
export async function profileArtisList (e) {
let game = /星铁|遗器/.test(e.msg) ? 'sr' : 'gs'
e.isSr = game === 'sr'
let uid = await getTargetUid(e)
if (!uid) {
return true
}
let artis = []
let player = Player.create(uid, game)
player.forEachAvatar((avatar) => {
let profile = avatar.getProfile()
if (!profile) {
return true
}
let name = profile.name
let char = Character.get(name, game)
if (!profile.hasData || !profile.hasArtis()) {
return true
}
let profileArtis = profile.getArtisMark()
lodash.forEach(profileArtis.artis, (arti, idx) => {
arti.charWeight = profileArtis.charWeight
arti.avatar = name
arti.side = char.side
artis.push(arti)
})
})
if (artis.length === 0) {
let artisName = game === 'gs' ? '圣遗物' : '遗器'
e.reply(`请先获取角色面板数据后再查看${artisName}列表...`)
await profileHelp(e)
return true
}
artis = lodash.sortBy(artis, '_mark')
artis = artis.reverse()
let number = Cfg.get('artisNumber', 28)
artis = artis.slice(0, `${number}`)
let artisKeyTitle = Artifact.getArtisKeyTitle(game)
// 渲染图像
return await Common.render('character/artis-list', {
save_id: uid,
uid,
artis,
artisKeyTitle
}, { e, scale: 1.4 })
}