miao-plugin/models/profile/AttrCalc.js

270 lines
6.3 KiB
JavaScript
Raw Normal View History

2022-11-20 20:45:27 +00:00
/**
* 面板属性计算
* @type {{}}
*/
2023-05-21 18:13:38 +00:00
import { Weapon, ProfileAttr, ArtifactSet } from '../index.js'
2023-03-07 17:52:11 +00:00
import { Format } from '#miao'
2022-11-26 21:51:36 +00:00
import { weaponBuffs } from '../../resources/meta/weapon/index.js'
2022-11-20 20:45:27 +00:00
import lodash from 'lodash'
class AttrCalc {
constructor (profile) {
this.profile = profile
this.char = profile.char
2023-05-18 20:23:19 +00:00
this.game = this.char.game
2022-11-20 20:45:27 +00:00
}
get isGs () {
return this.game === 'gs'
}
get isSr () {
return this.game === 'sr'
}
/**
* 静态调用入口
* @param profile
* @returns {AttrCalc}
*/
static create (profile) {
return new AttrCalc(profile)
2022-11-20 20:45:27 +00:00
}
// 只有原神才需要
static calcPromote (lv) {
if (lv === 20) {
return 1
}
if (lv === 90) {
return 6
}
let lvs = [1, 20, 40, 50, 60, 70, 80, 90]
let promote = 0
for (let idx = 0; idx < lvs.length - 1; idx++) {
if (lv >= lvs[idx] && lv <= lvs[idx + 1]) {
return promote
}
promote++
}
return promote
}
/**
* 面板属性计算
* @returns {{}}
*/
calc () {
this.attr = ProfileAttr.create(this.char, {})
if (this.isGs) {
this.addAttr('recharge', 100, true)
this.addAttr('cpct', 5, true)
this.addAttr('cdmg', 50, true)
}
this.setCharAttr()
2022-11-20 20:45:27 +00:00
this.setWeaponAttr()
this.setArtisAttr()
return this.attr.getAttr()
2023-05-18 20:23:19 +00:00
2022-11-20 20:45:27 +00:00
}
getBase () {
return this.attr.getBase()
}
addAttr (key, val, isBase = false) {
this.attr.addAttr(key, val, isBase)
}
/**
* 计算角色属性
* @param affix
*/
setCharAttr (affix = '') {
let { char, level, promote, trees } = this.profile
2022-11-20 20:45:27 +00:00
let metaAttr = char.detail?.attr || {}
2023-05-18 20:23:19 +00:00
let self = this
if (this.isSr) {
// 星铁面板属性
let attr = char.getLvAttr(level, promote)
lodash.forEach(attr, (v, k) => {
k = k + (['hp', 'atk', 'def'].includes(k) ? 'Base' : '')
self.addAttr(k, v, true)
})
let tree = char.detail?.tree || {}
lodash.forEach(trees || [], (tid) => {
let tCfg = tree[tid]
if (tCfg) {
let key = tCfg.key
if (['atk', 'hp', 'def'].includes(key)) {
key = key + 'Pct'
}
self.addAttr(key, tCfg.value)
}
})
2023-05-18 20:23:19 +00:00
return
}
let { keys = {}, details = {} } = metaAttr
2022-11-20 20:45:27 +00:00
let lvLeft = 0
let lvRight = 0
let lvStep = [1, 20, 40, 50, 60, 70, 80, 90]
let currPromote = 0
2022-11-20 20:45:27 +00:00
for (let idx = 0; idx < lvStep.length - 1; idx++) {
if (currPromote === promote) {
if (level >= lvStep[idx] && level <= lvStep[idx + 1]) {
lvLeft = lvStep[idx]
lvRight = lvStep[idx + 1]
break
}
2022-11-20 20:45:27 +00:00
}
currPromote++
2022-11-20 20:45:27 +00:00
}
let detailLeft = details[lvLeft + '+'] || details[lvLeft] || {}
let detailRight = details[lvRight] || {}
2022-11-20 20:45:27 +00:00
let getLvData = (idx, step = false) => {
2022-11-20 20:45:27 +00:00
let valueLeft = detailLeft[idx]
let valueRight = detailRight[idx]
if (!step) {
return valueLeft * 1 + ((valueRight - valueLeft) * (level - lvLeft) / (lvRight - lvLeft))
} else {
return valueLeft * 1 + ((valueRight - valueLeft) * Math.floor((level - lvLeft) / 5) / Math.round(((lvRight - lvLeft) / 5)))
}
2022-11-20 20:45:27 +00:00
}
this.addAttr('hpBase', getLvData(0), true)
this.addAttr('atkBase', getLvData(1), true)
this.addAttr('defBase', getLvData(2), true)
this.addAttr(keys[3], getLvData(3, true), !/(hp|atk|def)/.test(keys[3]))
let charBuffs = char.getCalcRule()
lodash.forEach(charBuffs.buffs, (buff) => {
if (!buff.isStatic) {
return true
}
if (buff) {
lodash.forEach(buff.data, (val, key) => {
this.addAttr(key, val)
})
}
})
2022-11-20 20:45:27 +00:00
}
/**
* 计算武器属性
*/
2022-11-20 20:45:27 +00:00
setWeaponAttr () {
2023-02-08 20:55:54 +00:00
let wData = this.profile?.weapon || {}
if (!wData || !wData.name) {
return false
}
let weapon = Weapon.get(wData?.name || wData?.id, this.game)
if (!weapon) {
return false
}
2023-02-21 19:49:49 +00:00
let wCalcRet = weapon.calcAttr(wData.level, wData.promote)
2023-05-18 20:23:19 +00:00
let self = this
if (this.isSr) {
// 星铁面板属性
lodash.forEach(wCalcRet, (v, k) => {
k = k + (['hp', 'atk', 'def'].includes(k) ? 'Base' : '')
self.addAttr(k, v, true)
})
// 检查武器类型
if (weapon.type === this.char.weapon) {
// todo sr&gs 统一
2023-05-21 18:13:38 +00:00
let wBuffs = weapon.getWeaponAffixBuffs(wData.affix, true)
lodash.forEach(wBuffs, (buff) => {
lodash.forEach(buff.data || [], (v, k) => {
self.addAttr(k, v)
})
})
}
2023-05-18 20:23:19 +00:00
return
}
2023-02-21 19:49:49 +00:00
// 原神属性
2023-02-21 19:49:49 +00:00
if (wCalcRet) {
this.addAttr('atkBase', wCalcRet.atkBase)
this.addAttr(wCalcRet.attr?.key, wCalcRet.attr?.value)
2022-11-20 20:45:27 +00:00
}
let wBuffs = weaponBuffs[weapon.name] || []
if (lodash.isPlainObject(wBuffs)) {
wBuffs = [wBuffs]
}
let affix = wData.affix || 1
lodash.forEach(wBuffs, (buff) => {
if (!buff.isStatic) {
return true
}
if (buff) {
lodash.forEach(buff.refine, (r, key) => {
this.addAttr(key, r[affix - 1] * (buff.buffCount || 1))
})
}
})
2022-11-20 20:45:27 +00:00
}
/**
* 计算圣遗物属性
*/
2022-11-20 20:45:27 +00:00
setArtisAttr () {
let artis = this.profile?.artis
// 计算圣遗物词条
2022-11-20 20:45:27 +00:00
artis.forEach((arti) => {
this.calcArtisAttr(arti.main, this.char)
2022-11-20 20:45:27 +00:00
lodash.forEach(arti.attrs, (ds) => {
2023-05-18 20:23:19 +00:00
this.calcArtisAttr(ds, this.char)
2022-11-20 20:45:27 +00:00
})
})
// 计算圣遗物静态加成
artis.eachArtisSet((set, num) => {
2023-05-21 18:13:38 +00:00
let buffs = ArtifactSet.getArtisSetBuff(set.name, num, this.game)
if (!buffs) return true
lodash.forEach(buffs, (buff) => {
if (!buff.isStatic) {
return true
}
if (buff.elem && !this.char.isElem(buff.elem)) {
return true
}
lodash.forEach(buff.data, (val, key) => {
this.addAttr(key, val)
})
})
})
2022-11-20 20:45:27 +00:00
}
/**
* 计算单条圣遗物词缀
* @param ds
2023-05-18 20:23:19 +00:00
* @param char
* @param autoPct
* @returns {boolean}
*/
calcArtisAttr (ds, char) {
if (!ds) {
return false
}
let key = ds.key
if (Format.isElem(key) && char.elem === key) {
2022-11-20 20:45:27 +00:00
key = 'dmg'
}
2022-11-20 20:45:27 +00:00
if (!key) {
return false
}
if (['atk', 'hp', 'def'].includes(key)) {
key = key + 'Pct'
}
this.attr.addAttr(key, ds.value * 1)
2022-11-20 20:45:27 +00:00
}
}
export default AttrCalc