|
@@ -65,6 +65,8 @@ namespace XmdsCommonServer.Plugin
|
|
|
|
|
|
|
|
|
readonly private List<OnAddOtherHPEvnet> mAddOtherHPList = new List<OnAddOtherHPEvnet>();
|
|
|
+
|
|
|
+ readonly private List<OnShareMasterDmgEvent> mShareMasterDmgList = new List<OnShareMasterDmgEvent>();
|
|
|
|
|
|
readonly private List<OnReduceOtherMpEvnet> mReduceMPList = new List<OnReduceOtherMpEvnet>();
|
|
|
|
|
@@ -281,6 +283,16 @@ namespace XmdsCommonServer.Plugin
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ protected class OnShareMasterDmgEvent : IHandle
|
|
|
+ {
|
|
|
+ public readonly IShareMasterDmgEvent m_hand;
|
|
|
+ public OnShareMasterDmgEvent(IShareMasterDmgEvent handler, GameSkill skill) : base(skill, true)
|
|
|
+ {
|
|
|
+ this.m_hand = handler;
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
class OnReduceOtherMpEvnet : IHandle
|
|
|
{
|
|
|
public readonly IReduceOtherMpEvent m_hand;
|
|
@@ -929,6 +941,32 @@ namespace XmdsCommonServer.Plugin
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+ public int RegistShareMasterDmgEvent(IShareMasterDmgEvent call, GameSkill gs)
|
|
|
+ {
|
|
|
+ OnShareMasterDmgEvent handle = new OnShareMasterDmgEvent(call, gs);
|
|
|
+ int ret = HandleUUIDCreate();
|
|
|
+ mShareMasterDmgList.Add(handle);
|
|
|
+ mHandleMap.Add(ret, handle);
|
|
|
+ return ret;
|
|
|
+ }
|
|
|
+
|
|
|
+ public bool UnRegistShareMasterDmgEvent(int handleUUID)
|
|
|
+ {
|
|
|
+ bool ret = false;
|
|
|
+ IHandle handle = null;
|
|
|
+
|
|
|
+ if (mHandleMap.TryGetValue(handleUUID, out handle))
|
|
|
+ {
|
|
|
+ if (handle != null && handle is OnShareMasterDmgEvent)
|
|
|
+ {
|
|
|
+ ret = mShareMasterDmgList.Remove(handle as OnShareMasterDmgEvent);
|
|
|
+ mHandleMap.Remove(handleUUID);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return ret;
|
|
|
+ }
|
|
|
+
|
|
|
public int RegistReduceMPEvent(IReduceOtherMpEvent call, GameSkill gs)
|
|
|
{
|
|
|
OnReduceOtherMpEvnet handle = new OnReduceOtherMpEvnet(call, gs);
|
|
@@ -1463,7 +1501,20 @@ namespace XmdsCommonServer.Plugin
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
+ public void DispatchShareMasterDmgEvent(int shareDmg, InstanceUnit sender)
|
|
|
+ {
|
|
|
+ for (int i = mShareMasterDmgList.Count - 1; i >= 0; --i)
|
|
|
+ {
|
|
|
+ OnShareMasterDmgEvent hitend = mShareMasterDmgList[i];
|
|
|
+ if (hitend.m_hand.Invoke(shareDmg, sender, this.mUnit))
|
|
|
+ {
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
public void DispatchAddMPEvent(int mp, InstanceUnit hitter, out int finalMP, AttackSource source)
|
|
|
{
|
|
@@ -1622,6 +1673,7 @@ namespace XmdsCommonServer.Plugin
|
|
|
this.mTryAddCardBallList.Clear();
|
|
|
this.mReduceMPList.Clear();
|
|
|
this.mTriggerCardSkillList.Clear();
|
|
|
+ this.mShareMasterDmgList.Clear();
|
|
|
|
|
|
mHandleUUID = 0;
|
|
|
}
|
|
@@ -1742,6 +1794,10 @@ namespace XmdsCommonServer.Plugin
|
|
|
{
|
|
|
result = UnRegistTriggerCardSkillEvent(uuid);
|
|
|
}
|
|
|
+ else if(handle is OnShareMasterDmgEvent)
|
|
|
+ {
|
|
|
+ result = UnRegistShareMasterDmgEvent(uuid);
|
|
|
+ }
|
|
|
else
|
|
|
{
|
|
|
log.Error("RemoveEventByUUID not process type: " + handle);
|