2022-11-20 20:45:27 +00:00
|
|
|
/**
|
|
|
|
* 面板属性计算
|
|
|
|
* @type {{}}
|
|
|
|
*/
|
|
|
|
|
2022-11-23 20:26:07 +00:00
|
|
|
import { Weapon, ProfileAttr } from '../index.js'
|
2023-03-07 17:52:11 +00:00
|
|
|
import { Format } from '#miao'
|
2022-11-21 21:26:06 +00:00
|
|
|
import { calc as artisBuffs } from '../../resources/meta/artifact/index.js'
|
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
|
|
|
}
|
|
|
|
|
2023-05-16 19:15:00 +00:00
|
|
|
get isGs () {
|
|
|
|
return this.game === 'gs'
|
|
|
|
}
|
|
|
|
|
|
|
|
get isSr () {
|
|
|
|
return this.game === 'sr'
|
|
|
|
}
|
|
|
|
|
2022-11-21 21:26:06 +00:00
|
|
|
/**
|
|
|
|
* 静态调用入口
|
|
|
|
* @param profile
|
2022-11-24 16:31:36 +00:00
|
|
|
* @returns {AttrCalc}
|
2022-11-21 21:26:06 +00:00
|
|
|
*/
|
2022-11-24 16:31:36 +00:00
|
|
|
static create (profile) {
|
|
|
|
return new AttrCalc(profile)
|
2022-11-20 20:45:27 +00:00
|
|
|
}
|
|
|
|
|
2023-05-16 19:15:00 +00:00
|
|
|
// 只有原神才需要
|
2023-02-13 08:31:23 +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
|
|
|
|
}
|
|
|
|
|
2022-11-21 21:26:06 +00:00
|
|
|
/**
|
2022-11-24 16:31:36 +00:00
|
|
|
* 面板属性计算
|
|
|
|
* @returns {{}}
|
2022-11-21 21:26:06 +00:00
|
|
|
*/
|
2022-11-24 16:31:36 +00:00
|
|
|
calc () {
|
2023-05-18 20:23:19 +00:00
|
|
|
console.log('calc,hahahaha')
|
2023-05-16 19:15:00 +00:00
|
|
|
this.attr = ProfileAttr.create({}, this.game)
|
|
|
|
if (this.isGs) {
|
2023-05-16 05:04:43 +00:00
|
|
|
this.addAttr('recharge', 100, true)
|
|
|
|
this.addAttr('cpct', 5, true)
|
|
|
|
this.addAttr('cdmg', 50, true)
|
|
|
|
}
|
2022-11-24 16:31:36 +00:00
|
|
|
this.setCharAttr()
|
2022-11-20 20:45:27 +00:00
|
|
|
this.setWeaponAttr()
|
|
|
|
this.setArtisAttr()
|
2022-11-22 20:25:36 +00:00
|
|
|
return this.attr.getAttr()
|
2023-05-18 20:23:19 +00:00
|
|
|
|
2022-11-20 20:45:27 +00:00
|
|
|
}
|
|
|
|
|
2023-03-05 07:21:44 +00:00
|
|
|
getBase () {
|
|
|
|
return this.attr.getBase()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
addAttr (key, val, isBase = false) {
|
2023-05-18 20:23:19 +00:00
|
|
|
if (key === 'cpct') {
|
|
|
|
console.log('isCpct', val, isBase)
|
|
|
|
}
|
2023-03-05 07:21:44 +00:00
|
|
|
this.attr.addAttr(key, val, isBase)
|
2022-11-21 21:26:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 计算角色属性
|
|
|
|
* @param affix
|
|
|
|
*/
|
2022-11-24 16:31:36 +00:00
|
|
|
setCharAttr (affix = '') {
|
2022-11-22 20:25:36 +00:00
|
|
|
let { char, level, promote } = 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)
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-11-21 21:26:06 +00:00
|
|
|
let { keys = {}, details = {} } = metaAttr
|
2022-11-20 20:45:27 +00:00
|
|
|
let lvLeft = 0
|
|
|
|
let lvRight = 0
|
2022-11-22 20:25:36 +00:00
|
|
|
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++) {
|
2022-11-22 20:25:36 +00:00
|
|
|
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
|
|
|
}
|
2022-11-22 20:25:36 +00:00
|
|
|
currPromote++
|
2022-11-20 20:45:27 +00:00
|
|
|
}
|
2022-11-21 21:26:06 +00:00
|
|
|
let detailLeft = details[lvLeft + '+'] || details[lvLeft] || {}
|
|
|
|
let detailRight = details[lvRight] || {}
|
2022-11-20 20:45:27 +00:00
|
|
|
|
2022-11-22 20:25:36 +00:00
|
|
|
let getLvData = (idx, step = false) => {
|
2022-11-20 20:45:27 +00:00
|
|
|
let valueLeft = detailLeft[idx]
|
|
|
|
let valueRight = detailRight[idx]
|
2022-11-22 20:25:36 +00:00
|
|
|
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
|
|
|
}
|
2023-03-05 07:21:44 +00:00
|
|
|
this.addAttr('hpBase', getLvData(0), true)
|
|
|
|
this.addAttr('atkBase', getLvData(1), true)
|
|
|
|
this.addAttr('defBase', getLvData(2), true)
|
2023-03-25 20:22:35 +00:00
|
|
|
this.addAttr(keys[3], getLvData(3, true), !/(hp|atk|def)/.test(keys[3]))
|
2022-11-22 20:25:36 +00:00
|
|
|
|
2022-11-24 16:31:36 +00:00
|
|
|
let charBuffs = char.getCalcRule()
|
2022-11-22 20:25:36 +00:00
|
|
|
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-21 21:26:06 +00:00
|
|
|
/**
|
|
|
|
* 计算武器属性
|
|
|
|
*/
|
2022-11-20 20:45:27 +00:00
|
|
|
setWeaponAttr () {
|
2023-02-08 20:55:54 +00:00
|
|
|
let wData = this.profile?.weapon || {}
|
2023-05-16 05:04:43 +00:00
|
|
|
let weapon = Weapon.get(wData?.name || wData?.id, this.game)
|
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)
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2023-02-21 19:49:49 +00:00
|
|
|
|
|
|
|
if (wCalcRet) {
|
|
|
|
this.addAttr('atkBase', wCalcRet.atkBase)
|
2023-02-22 02:15:55 +00:00
|
|
|
this.addAttr(wCalcRet.attr?.key, wCalcRet.attr?.value)
|
2022-11-20 20:45:27 +00:00
|
|
|
}
|
2022-11-21 21:26:06 +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-21 21:26:06 +00:00
|
|
|
/**
|
|
|
|
* 计算圣遗物属性
|
|
|
|
*/
|
2022-11-20 20:45:27 +00:00
|
|
|
setArtisAttr () {
|
|
|
|
let artis = this.profile?.artis
|
2022-11-21 21:26:06 +00:00
|
|
|
// 计算圣遗物词条
|
2022-11-20 20:45:27 +00:00
|
|
|
artis.forEach((arti) => {
|
2022-11-22 20:25:36 +00:00
|
|
|
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
|
|
|
})
|
|
|
|
})
|
2022-11-21 21:26:06 +00:00
|
|
|
// 计算圣遗物静态加成
|
|
|
|
artis.eachArtisSet((set, num) => {
|
|
|
|
let buff = artisBuffs[set.name] && artisBuffs[set.name][num]
|
2022-11-22 20:25:36 +00:00
|
|
|
if (!buff || !buff.isStatic) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if (buff.elem && !this.char.isElem(buff.elem)) {
|
2022-11-21 21:26:06 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
lodash.forEach(buff.data, (val, key) => {
|
|
|
|
this.addAttr(key, val)
|
|
|
|
})
|
|
|
|
})
|
2022-11-20 20:45:27 +00:00
|
|
|
}
|
|
|
|
|
2022-11-21 21:26:06 +00:00
|
|
|
/**
|
|
|
|
* 计算单条圣遗物词缀
|
|
|
|
* @param ds
|
2023-05-18 20:23:19 +00:00
|
|
|
* @param char
|
|
|
|
* @param autoPct
|
2022-11-21 21:26:06 +00:00
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2022-11-22 20:25:36 +00:00
|
|
|
calcArtisAttr (ds, char) {
|
2023-02-09 17:17:18 +00:00
|
|
|
if (!ds) {
|
|
|
|
return false
|
|
|
|
}
|
2022-11-23 20:26:07 +00:00
|
|
|
let key = ds.key
|
|
|
|
if (Format.isElem(key) && char.elem === key) {
|
2022-11-20 20:45:27 +00:00
|
|
|
key = 'dmg'
|
2022-11-22 20:25:36 +00:00
|
|
|
}
|
2022-11-20 20:45:27 +00:00
|
|
|
if (!key) {
|
|
|
|
return false
|
|
|
|
}
|
2023-05-18 20:23:19 +00:00
|
|
|
console.log(key, ds.value)
|
2022-11-20 20:45:27 +00:00
|
|
|
if (['atk', 'hp', 'def'].includes(key)) {
|
|
|
|
key = key + 'Pct'
|
|
|
|
}
|
2022-11-21 21:26:06 +00:00
|
|
|
this.attr.addAttr(key, ds.value * 1)
|
2022-11-20 20:45:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default AttrCalc
|