- 重构了 BattleSkillEntity 结构,改名为 SkillEntity - 优化了 Input 结构,移除了冗余的 Effect 容器 - 调整了 Effect 接口,增加了 SetInput 和 Alive 方法 - 重构了战斗逻辑中的技能使用和效果处理流程 - 优化了代码结构,提高了可读性和可维护性
61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
package input
|
|
|
|
import (
|
|
"blazing/logic/service/common"
|
|
"blazing/logic/service/fight/info"
|
|
|
|
"github.com/jinzhu/copier"
|
|
"github.com/mohae/deepcopy"
|
|
"github.com/shopspring/decimal"
|
|
)
|
|
|
|
type Input struct {
|
|
CanChange bool //是否可以死亡切换CanChange
|
|
CurrentPet *info.BattlePetEntity //当前精灵
|
|
AllPet []*info.BattlePetEntity
|
|
Player common.PlayerI
|
|
Finished bool //是否加载完成
|
|
*info.AttackValue
|
|
FightC common.FightI
|
|
// info.BattleActionI
|
|
Effects []Effect //effects 实际上全局就是effect无限回合 //effects容器 技能的
|
|
// Prop NodeManager //属性容器
|
|
// Status NodeManager //状态容器
|
|
//NewSeIdx NodeManager //全局容器
|
|
Damage decimal.Decimal //造成伤害
|
|
First bool //是否先手
|
|
}
|
|
|
|
func NewInput(c common.FightI, p common.PlayerI) *Input {
|
|
ret := &Input{FightC: c, Player: p}
|
|
t := NodeM[1000000]
|
|
ret.AddEffect(deepcopy.Copy(t).(Effect)) //添加默认基类,实现继承
|
|
p.SetFightC(c) //给玩家设置战斗容器
|
|
return ret
|
|
|
|
}
|
|
func (i *Input) GetPetInfo() *info.BattlePetEntity {
|
|
|
|
return i.CurrentPet
|
|
|
|
}
|
|
|
|
// 这个每回合都会调用
|
|
func (i *Input) InitAttackValue() {
|
|
i.AttackValue = info.NewAttackValue(i.Player.ID())
|
|
|
|
}
|
|
func (i *Input) GetPet(id uint32) (ii *info.BattlePetEntity, Reason info.ChangePetInfo) {
|
|
for _, v := range i.AllPet {
|
|
if v.Info.CatchTime == uint32(id) {
|
|
copier.Copy(&Reason, &v.Info)
|
|
Reason.UserId = i.Player.ID()
|
|
|
|
ii = v
|
|
}
|
|
|
|
}
|
|
return
|
|
|
|
}
|