2022-09-25 13:56:10 +00:00
|
|
|
|
/*
|
|
|
|
|
* 角色数据
|
|
|
|
|
*
|
|
|
|
|
* 支持角色查询及Meta元数据获取
|
|
|
|
|
* 兼容处理自定义角色
|
|
|
|
|
* */
|
2022-07-23 20:32:10 +00:00
|
|
|
|
import lodash from 'lodash'
|
2022-08-18 10:13:42 +00:00
|
|
|
|
import Base from './Base.js'
|
|
|
|
|
import { Data } from '../components/index.js'
|
2022-09-03 21:08:57 +00:00
|
|
|
|
import CharImg from './character-lib/CharImg.js'
|
|
|
|
|
import CharTalent from './character-lib/CharTalent.js'
|
|
|
|
|
import CharId from './character-lib/CharId.js'
|
2022-09-04 21:03:23 +00:00
|
|
|
|
import CharMeta from './character-lib/CharMeta.js'
|
2022-07-23 20:32:10 +00:00
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
let { abbrMap, wifeMap, idSort, idMap } = CharId
|
|
|
|
|
|
|
|
|
|
let getMeta = function (name) {
|
|
|
|
|
return Data.readJSON(`resources/meta/character/${name}/data.json`)
|
|
|
|
|
}
|
2022-06-29 23:05:31 +00:00
|
|
|
|
|
2022-03-26 08:21:44 +00:00
|
|
|
|
class Character extends Base {
|
2022-09-03 21:08:57 +00:00
|
|
|
|
constructor ({ id, name = '', elem = '' }) {
|
2022-07-23 20:32:10 +00:00
|
|
|
|
super()
|
2022-09-03 21:08:57 +00:00
|
|
|
|
// 检查缓存
|
2022-09-04 21:03:23 +00:00
|
|
|
|
let cacheObj = this._getCache(CharId.isTraveler(id) ? `character:${id}:${elem || 'anemo'}` : `character:${id}`)
|
2022-09-03 21:08:57 +00:00
|
|
|
|
if (cacheObj) {
|
|
|
|
|
return cacheObj
|
2022-04-10 05:36:31 +00:00
|
|
|
|
}
|
2022-09-03 21:08:57 +00:00
|
|
|
|
// 设置数据
|
2022-09-05 19:02:06 +00:00
|
|
|
|
this._id = id
|
2022-07-23 20:32:10 +00:00
|
|
|
|
this.name = name
|
2022-09-03 21:08:57 +00:00
|
|
|
|
if (!this.isCustom) {
|
|
|
|
|
let meta = getMeta(name)
|
|
|
|
|
this.meta = meta
|
2022-09-04 21:03:23 +00:00
|
|
|
|
this.elem = CharId.getElem(elem || meta.elem) || 'anemo'
|
2022-09-03 21:08:57 +00:00
|
|
|
|
} else {
|
|
|
|
|
this.meta = {}
|
2022-04-10 05:36:31 +00:00
|
|
|
|
}
|
2022-09-08 20:34:32 +00:00
|
|
|
|
return this._cache()
|
2022-03-27 20:58:02 +00:00
|
|
|
|
}
|
2022-04-08 21:52:05 +00:00
|
|
|
|
|
2022-09-04 21:03:23 +00:00
|
|
|
|
// 默认获取的数据
|
2022-09-03 21:08:57 +00:00
|
|
|
|
_dataKey = 'id,name,abbr,title,star,elem,allegiance,weapon,birthday,astro,cncv,jpcv,ver,desc,talentCons'
|
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 是否为官方角色
|
|
|
|
|
get isOfficial () {
|
|
|
|
|
return /[12]0\d{6}/.test(this._id)
|
2022-09-05 19:02:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 是否为实装官方角色
|
|
|
|
|
get isRelease () {
|
2022-09-30 13:02:24 +00:00
|
|
|
|
if (this.isCustom) {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
if (this.eta) {
|
|
|
|
|
return this.eta * 1 < new Date() * 1
|
|
|
|
|
}
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 是否为自定义角色
|
|
|
|
|
get isCustom () {
|
|
|
|
|
return !/[12]0\d{6}/.test(this._id)
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-05 19:02:06 +00:00
|
|
|
|
get id () {
|
|
|
|
|
return this.isCustom ? this._id : this._id * 1
|
2022-09-03 21:08:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 获取短名字
|
2022-09-18 20:54:01 +00:00
|
|
|
|
get sName () {
|
|
|
|
|
let name = this.name
|
|
|
|
|
let abbr = this.abbr
|
|
|
|
|
return name.length <= 4 ? name : (abbr || name)
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-03 21:08:57 +00:00
|
|
|
|
// 是否是旅行者
|
|
|
|
|
get isTraveler () {
|
|
|
|
|
return CharId.isTraveler(this.id)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取武器类型
|
2022-08-31 18:26:36 +00:00
|
|
|
|
get weaponType () {
|
2022-08-24 07:05:47 +00:00
|
|
|
|
const map = {
|
|
|
|
|
sword: '单手剑',
|
|
|
|
|
catalyst: '法器',
|
|
|
|
|
bow: '弓',
|
|
|
|
|
claymore: '双手剑',
|
|
|
|
|
polearm: '长柄武器'
|
|
|
|
|
}
|
|
|
|
|
let weaponType = this.weapon || ''
|
|
|
|
|
return map[weaponType.toLowerCase()] || ''
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-03 21:08:57 +00:00
|
|
|
|
// 获取元素名称
|
|
|
|
|
get elemName () {
|
|
|
|
|
return CharId.getElemName(this.elem)
|
2022-08-24 07:05:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 获取角色描述
|
2022-09-05 03:32:33 +00:00
|
|
|
|
get desc () {
|
|
|
|
|
return CharMeta.getDesc(this.meta.desc || '')
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-03 21:08:57 +00:00
|
|
|
|
// 获取头像
|
|
|
|
|
get face () {
|
|
|
|
|
return this.getImgs().face
|
2022-08-24 07:05:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-03 21:08:57 +00:00
|
|
|
|
// 获取侧脸图像
|
|
|
|
|
get side () {
|
|
|
|
|
return this.getImgs().side
|
|
|
|
|
}
|
2022-03-27 20:58:02 +00:00
|
|
|
|
|
2022-09-24 21:05:22 +00:00
|
|
|
|
get gacha () {
|
|
|
|
|
return this.getImgs().gacha
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-18 20:54:01 +00:00
|
|
|
|
get imgs () {
|
|
|
|
|
return this.getImgs()
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-03 21:08:57 +00:00
|
|
|
|
// 获取详情数据
|
|
|
|
|
get detail () {
|
|
|
|
|
return this.getDetail()
|
|
|
|
|
}
|
2022-04-08 21:52:05 +00:00
|
|
|
|
|
2022-10-18 18:13:23 +00:00
|
|
|
|
get talentCons () {
|
|
|
|
|
if (this.isTraveler) {
|
|
|
|
|
return this.elem === 'dendro' ? { e: 3, q: 5 } : { e: 5, q: 3 }
|
|
|
|
|
}
|
|
|
|
|
return this.meta?.talentCons || {}
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-04 21:03:23 +00:00
|
|
|
|
getAttrList () {
|
2022-09-11 19:26:07 +00:00
|
|
|
|
let { meta } = this
|
2022-09-04 21:03:23 +00:00
|
|
|
|
return CharMeta.getAttrList(meta.baseAttr, meta.growAttr, this.elemName)
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-07 13:13:46 +00:00
|
|
|
|
getMaterials (type = 'all') {
|
|
|
|
|
return CharMeta.getMaterials(this, type)
|
2022-09-04 21:03:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-21 19:28:33 +00:00
|
|
|
|
getLvStat () {
|
|
|
|
|
return CharMeta.getLvStat(this)
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 获取生日
|
2022-09-04 21:03:23 +00:00
|
|
|
|
get birthday () {
|
2022-09-11 19:26:07 +00:00
|
|
|
|
let birth = this.birth
|
2022-09-04 21:03:23 +00:00
|
|
|
|
if (!birth) {
|
|
|
|
|
return ''
|
|
|
|
|
}
|
|
|
|
|
birth = birth.split('-')
|
|
|
|
|
return `${birth[0]}月${birth[1]}日`
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-03 21:08:57 +00:00
|
|
|
|
// 获取角色character-img图片
|
|
|
|
|
getCardImg (se = false, def = true) {
|
2022-09-04 06:15:00 +00:00
|
|
|
|
if (this.name === '旅行者') {
|
|
|
|
|
return CharImg.getCardImg(['空', '荧'], se, def)
|
2022-04-10 05:36:31 +00:00
|
|
|
|
}
|
2022-09-04 06:15:00 +00:00
|
|
|
|
return CharImg.getCardImg(this.name, se, def)
|
2022-04-10 05:36:31 +00:00
|
|
|
|
}
|
2022-06-05 07:53:13 +00:00
|
|
|
|
|
2022-08-31 18:26:36 +00:00
|
|
|
|
getAvatarTalent (talent = {}, cons = 0, mode = 'level') {
|
2022-09-03 21:08:57 +00:00
|
|
|
|
return CharTalent.getAvatarTalent(this.id, talent, cons, mode, this.talentCons)
|
2022-06-29 20:40:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-31 18:26:36 +00:00
|
|
|
|
checkWifeType (type) {
|
2022-07-23 20:32:10 +00:00
|
|
|
|
return !!wifeMap[type][this.id]
|
2022-06-29 23:05:31 +00:00
|
|
|
|
}
|
2022-08-31 18:26:36 +00:00
|
|
|
|
|
|
|
|
|
checkCostume (id) {
|
2022-09-03 21:08:57 +00:00
|
|
|
|
let costume = this.meta?.costume || []
|
|
|
|
|
return costume.includes(id * 1)
|
2022-08-31 18:26:36 +00:00
|
|
|
|
}
|
2022-09-01 20:09:59 +00:00
|
|
|
|
|
2022-09-04 09:33:14 +00:00
|
|
|
|
// 获取角色插画
|
2022-09-04 07:59:30 +00:00
|
|
|
|
getImgs (costume = '') {
|
2022-11-17 18:55:06 +00:00
|
|
|
|
if (!lodash.isArray(costume)) {
|
|
|
|
|
costume = [costume, false]
|
2022-09-10 19:59:45 +00:00
|
|
|
|
}
|
2022-11-17 18:55:06 +00:00
|
|
|
|
let costumeCfg = [this.checkCostume(costume[0]) ? '2' : '', costume[1] || 'normal']
|
|
|
|
|
|
|
|
|
|
let cacheId = `costume${costumeCfg.join('')}`
|
2022-09-04 07:59:30 +00:00
|
|
|
|
if (!this._imgs) {
|
|
|
|
|
this._imgs = {}
|
2022-09-01 20:09:59 +00:00
|
|
|
|
}
|
2022-09-04 07:59:30 +00:00
|
|
|
|
if (this._imgs[cacheId]) {
|
|
|
|
|
return this._imgs[cacheId]
|
|
|
|
|
}
|
2022-11-17 18:55:06 +00:00
|
|
|
|
this._imgs[cacheId] = CharImg.getImgs(this.name, costumeCfg, this.isTraveler ? this.elem : '', this.source === 'amber' ? 'png' : 'webp')
|
2022-09-04 07:59:30 +00:00
|
|
|
|
return this._imgs[cacheId]
|
2022-09-03 21:08:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取详情数据
|
|
|
|
|
getDetail (elem = '') {
|
|
|
|
|
if (this._detail) {
|
|
|
|
|
return this._detail
|
2022-09-01 20:09:59 +00:00
|
|
|
|
}
|
2022-09-03 21:08:57 +00:00
|
|
|
|
if (this.isCustom) {
|
|
|
|
|
return {}
|
2022-09-01 20:09:59 +00:00
|
|
|
|
}
|
2022-09-04 09:33:14 +00:00
|
|
|
|
const path = 'resources/meta/character'
|
2022-09-03 21:08:57 +00:00
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if (this.isTraveler) {
|
2022-09-04 09:33:14 +00:00
|
|
|
|
this._detail = Data.readJSON(`${path}/旅行者/${this.elem}/detail.json`)
|
2022-09-03 21:08:57 +00:00
|
|
|
|
} else {
|
2022-09-04 09:33:14 +00:00
|
|
|
|
this._detail = Data.readJSON(`${path}/${this.name}/detail.json`)
|
2022-09-03 21:08:57 +00:00
|
|
|
|
}
|
|
|
|
|
} catch (e) {
|
|
|
|
|
console.log(e)
|
2022-09-01 20:09:59 +00:00
|
|
|
|
}
|
2022-09-03 21:08:57 +00:00
|
|
|
|
return this._detail
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 设置旅行者数据
|
|
|
|
|
// TODO:迁移至Avatar
|
2022-09-04 06:15:00 +00:00
|
|
|
|
setTraveler (uid = '') {
|
|
|
|
|
if (this.isTraveler && uid && uid.toString().length === 9) {
|
2022-09-18 20:54:01 +00:00
|
|
|
|
Data.setCacheJSON(`miao:uid-traveler:${uid}`, {
|
2022-09-04 06:15:00 +00:00
|
|
|
|
id: CharId.getTravelerId(this.id),
|
|
|
|
|
elem: this.elem
|
2022-09-04 09:33:14 +00:00
|
|
|
|
}, 3600 * 24 * 120)
|
2022-09-04 06:15:00 +00:00
|
|
|
|
}
|
2022-09-03 21:08:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 获取旅行者数据
|
2022-09-04 06:15:00 +00:00
|
|
|
|
async getTraveler (uid) {
|
|
|
|
|
if (this.isTraveler) {
|
2022-09-18 20:54:01 +00:00
|
|
|
|
let tData = await Data.getCacheJSON(`miao:uid-traveler:${uid}`)
|
2022-09-04 06:15:00 +00:00
|
|
|
|
return Character.get({
|
|
|
|
|
id: CharId.getTravelerId(tData.id || this.id),
|
|
|
|
|
elem: tData.elem || (this.elem !== 'multi' ? this.elem : 'anemo')
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
return this
|
|
|
|
|
}
|
2022-09-03 21:08:57 +00:00
|
|
|
|
|
2022-09-04 06:15:00 +00:00
|
|
|
|
async checkAvatars (avatars, uid = '') {
|
|
|
|
|
if (!this.isTraveler) {
|
|
|
|
|
return this
|
|
|
|
|
}
|
|
|
|
|
if (lodash.isObject(avatars) && avatars.id) {
|
|
|
|
|
avatars = [avatars]
|
|
|
|
|
}
|
|
|
|
|
for (let avatar of avatars) {
|
|
|
|
|
if (CharId.isTraveler(avatar.id)) {
|
|
|
|
|
let char = Character.get({
|
|
|
|
|
id: avatar.id,
|
2022-09-08 09:38:15 +00:00
|
|
|
|
elem: (avatar.elem || avatar.element || 'anemo').toLowerCase()
|
2022-09-04 06:15:00 +00:00
|
|
|
|
})
|
|
|
|
|
char.setTraveler(uid)
|
|
|
|
|
return char
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return await this.getTraveler(uid)
|
2022-09-01 20:09:59 +00:00
|
|
|
|
}
|
2022-03-24 13:14:22 +00:00
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 基于角色名获取Character
|
|
|
|
|
static get (val) {
|
|
|
|
|
let id = CharId.getId(val)
|
|
|
|
|
if (!id) {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
return new Character(id)
|
|
|
|
|
}
|
2022-03-24 14:40:59 +00:00
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
static forEach (fn, type = 'all') {
|
|
|
|
|
lodash.forEach(idMap, (name, id) => {
|
|
|
|
|
let char = Character.get({ id, name })
|
|
|
|
|
if (type === 'release' && !char.isRelease) {
|
|
|
|
|
return true
|
|
|
|
|
}
|
2022-10-07 13:13:46 +00:00
|
|
|
|
if (type === 'official' && !char.isOfficial) {
|
2022-10-06 22:20:46 +00:00
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return fn(char) !== false
|
|
|
|
|
})
|
2022-06-26 00:55:14 +00:00
|
|
|
|
}
|
2022-04-10 05:36:31 +00:00
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 基于角色名获取Character
|
|
|
|
|
// 当获取角色为旅行者时,会考虑当前uid的账号情况返回对应旅行者
|
|
|
|
|
static async getAvatar (name, uid) {
|
|
|
|
|
let char = Character.get(name)
|
|
|
|
|
return await char.getTraveler(uid)
|
|
|
|
|
}
|
2022-07-23 20:32:10 +00:00
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 获取别名数据
|
|
|
|
|
// TODO:待废弃
|
|
|
|
|
static getAbbr () {
|
|
|
|
|
return abbrMap
|
|
|
|
|
}
|
2022-04-04 21:36:44 +00:00
|
|
|
|
|
2022-10-06 22:20:46 +00:00
|
|
|
|
// 检查wife类型
|
|
|
|
|
// TODO:待废弃
|
|
|
|
|
static checkWifeType (charid, type) {
|
|
|
|
|
return !!wifeMap[type][charid]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取排序ID
|
|
|
|
|
static sortIds (arr) {
|
|
|
|
|
return arr.sort((a, b) => (idSort[a] || 300) - (idSort[b] || 300))
|
|
|
|
|
}
|
2022-05-04 20:53:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-23 20:32:10 +00:00
|
|
|
|
export default Character
|