JSGPlayerCardSkillBase.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. using CommonAI.Data;
  2. using CommonAI.Zone;
  3. using CommonAI.Zone.Formula;
  4. using CommonAI.Zone.Helper;
  5. using CommonAI.Zone.Instance;
  6. using CommonLang;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Diagnostics;
  10. using System.Linq;
  11. using System.Text;
  12. using System.Threading.Tasks;
  13. using XmdsCommon.JSGModule.Interface;
  14. using XmdsCommon.Plugin;
  15. using XmdsCommonServer.Plugin;
  16. using XmdsCommonServer.Plugin.XmdsSkillTemplate.Skills;
  17. using XmdsCommonServer.XLS.Data;
  18. using XmdsCommonSkill.Plugin.Buffs;
  19. using XmdsCommonSkill.Plugin.Interface;
  20. using XmdsCommonSkill.Plugin.Skills;
  21. namespace XmdsCommonSkill.Plugin.CardSkill
  22. {
  23. /** 卡牌技能基类 */
  24. public abstract class JSGCardSkillBase : XmdsSkillBase, IJSGCardSkill
  25. {
  26. //蓄势buff
  27. protected static readonly int BUFF_STOREENERGY = (int)XmdsBuffBase.XmdsBuffList.CARD_STORE_ENERGY;
  28. protected static readonly byte BUFF_STOREENERGY_TRIGGER_MIN = 3; // 蓄势触发最少球数
  29. protected static readonly int BUFF_STOREENERGY_DMG = 500; // 每一层蓄势对应的
  30. //蓄势最高层, 时间
  31. protected static int BUFF_STOREENERGY_MAXLAYER = 0;
  32. protected static int BUFF_STOREENERGY_TIME = 10000;
  33. //青龙之力,XX之力最高层数
  34. protected static int BUFF_ABILITY_MAXLAYER = 10;
  35. protected int mTriggerSameCards; //触发时相同卡的个数
  36. protected long mTriggerTime; //触发时间
  37. //触发卡牌技能
  38. public virtual void TriggerCardSkill(XmdsVirtual player, XmdsVirtual hitter, AttackSource source, CardSkillData skillData, int sameNums)
  39. {
  40. // 基础数据初始化
  41. this.mTriggerTime = CommonLang.TimeUtil.GetTimestampMS();
  42. this.mTriggerSameCards = sameNums;
  43. player.CardModule.TriggerSkillLoadStrength(skillData, sameNums);
  44. this.OnTriggerCardSkill(player, hitter, source, skillData, sameNums);
  45. if (sameNums < 1)
  46. {
  47. log.Warn("TriggerCardSkill sames not valid:" + (player == null ? "null" : player.mUnit.PlayerUUID) + ", " + skillData.skillId + ", " + sameNums);
  48. }
  49. }
  50. protected override void OnSkillDamagePerEvent(BattleParams param)
  51. {
  52. this.OnGetCardSkillDamage(param);
  53. //玩家伤害不一样(治疗不受影响)
  54. if (param.Hitter.IsPlayerUnit() && param.UseDamageType != DamageType.Heal)
  55. {
  56. param.SkillDamagePer = CUtils.CastInt(param.SkillDamagePer * XmdsConfig.Instance.CARD_PLAYER_DMG_PER);
  57. }
  58. }
  59. protected override void OnSkillLogicAftercalDamage(BattleParams param)
  60. {
  61. //整体技能伤害加成(蓄势特殊伤害,走配置,定值)
  62. IntIntData dmgStrength = param.Attacker.CardModule.GetStrengthInfo(CardStrengthenType.Dmg);
  63. if (dmgStrength != null && dmgStrength.value1 > 0)
  64. {
  65. if(dmgStrength.value1 > 50000)
  66. {
  67. log.Warn("JSGCardSkillBase OnSkillLogicAftercalDamage notice: " + this.SkillID + ", " + dmgStrength.value1);
  68. }
  69. //param.SkillDamagePer += XmdsConfig.Instance.CARD_STOREENERGY_DMG * Math.Min(dmgStrength.value2, this.GetStoreMaxLayer());
  70. param.HitResult = CUtils.CastInt(param.HitResult * (1.0f + XmdsUnitProp.PER * dmgStrength.value1));
  71. //System.Console.WriteLine("伤害强化扩展:" + dmgStrength.value1);
  72. }
  73. //按层数叠加伤害
  74. //dmgStrength = param.Attacker.CardModule.GetStrengthInfo(CardStrengthenType.Dmg_SpecialLayer);
  75. //if (dmgStrength != null && dmgStrength.value1 > 0)
  76. //{
  77. // float addPer = XmdsUnitProp.PER * dmgStrength.value1 * Math.Min(BUFF_ABILITY_MAXLAYER, dmgStrength.value2);
  78. // param.HitResult = CUtils.CastInt(param.HitResult * (1.0f + addPer));
  79. //}
  80. }
  81. //用于子类扩展继承的
  82. public virtual int GetEffectID(int skillLv, int sameNums) { return this.SkillID; }
  83. public virtual void OnTriggerCardSkill(XmdsVirtual player, XmdsVirtual hitter, AttackSource source, CardSkillData skillData, int sameNums) { }
  84. protected virtual void OnGetCardSkillDamage(BattleParams param) { }
  85. //技能数据变更
  86. protected override void OnSkillDataChange(GameSkill gs, XmdsVirtual unit)
  87. {
  88. unit.CardModule.OnSkillDataChange(gs);
  89. }
  90. protected override void OnInitOver(XmdsVirtual unit, GameSkill info)
  91. {
  92. unit.CardModule.OnInitOver(info, this);
  93. if(BUFF_STOREENERGY_MAXLAYER == 0)
  94. {
  95. this.LoadStaticData();
  96. }
  97. }
  98. //释放法术
  99. protected void unitLaunchSpell(XmdsVirtual launcher, XmdsVirtual hitter, int spellID, bool fromBody = true)
  100. {
  101. if(launcher == null)
  102. {
  103. string stackInfo = new StackTrace().ToString();
  104. log.Error("JSGCardSkillBase unitLaunchSpell launch_null 1: " + spellID + ", CardSkillID: " + this.SkillID);
  105. return;
  106. }
  107. else if(hitter == null)
  108. {
  109. //需要目标,但是没有,设定为最大仇恨目标
  110. //log.Info("card skill need target but null: " + spellID + ", CardSkillID: " + this.SkillID);
  111. InstanceUnit hateUnit = launcher.GetHateSystem().GetHated();
  112. if(hateUnit == null)
  113. {
  114. //log.Error("JSGCardSkillBase unitLaunchSpell launch_null 3: " + spellID + ", CardSkillID: " + this.SkillID);
  115. return;
  116. }
  117. hitter = hateUnit.Virtual as XmdsVirtual;
  118. if (hitter == null)
  119. {
  120. log.Error("JSGCardSkillBase unitLaunchSpell launch_null 2: " + spellID + ", CardSkillID: " + this.SkillID);
  121. return;
  122. }
  123. }
  124. LaunchSpell launchSpll = ComSpellTemplate.Instance().GetCardSpell(spellID);
  125. XmdsVirtual fromUnit = (fromBody || hitter == null) ? launcher : hitter;
  126. if (hitter == null)
  127. {
  128. launcher.mUnit.Parent.unitLaunchSpell(XmdsSkillType.cardSkill, launcher.mUnit, launchSpll, fromUnit.mUnit.X, fromUnit.mUnit.Y);
  129. }
  130. else
  131. {
  132. launcher.mUnit.Parent.unitLaunchSpell(XmdsSkillType.cardSkill, launcher.mUnit, launchSpll, fromUnit.mUnit.X, fromUnit.mUnit.Y, hitter.mUnit.ID);
  133. }
  134. }
  135. public int GetTriggerSameCards()
  136. {
  137. return this.mTriggerSameCards;
  138. }
  139. // 卡牌相同数,获取表格数据读取下标
  140. public int GetIndex2(int index)
  141. {
  142. return this.mTriggerSameCards * 2 + index - 4;
  143. }
  144. // 卡牌相同数,获取表格数据读取下标
  145. public int GetIndex3(int index)
  146. {
  147. return this.mTriggerSameCards * 3 + index - 6;
  148. }
  149. // 卡牌相同数,获取表格数据读取下标
  150. public int GetIndex4(int index)
  151. {
  152. return this.mTriggerSameCards * 4 + index - 8;
  153. }
  154. // 获得蓄势最大层
  155. private void LoadStaticData()
  156. {
  157. var bt1 = XmdsBattleSkill.GetBuffTemplate(BUFF_STOREENERGY);
  158. if (bt1 != null)
  159. {
  160. BUFF_STOREENERGY_MAXLAYER = bt1.MaxOverlay;
  161. BUFF_STOREENERGY_TIME = bt1.LifeTimeMS;
  162. }
  163. else
  164. {
  165. BUFF_STOREENERGY_MAXLAYER = 1;
  166. BUFF_STOREENERGY_TIME = 10000;
  167. }
  168. // XX之力最高层数
  169. var bt2 = XmdsBattleSkill.GetBuffTemplate(CardSkill_QingLongBase.BuffID_TYPE_ABILITY);
  170. if (bt2 != null)
  171. {
  172. BUFF_ABILITY_MAXLAYER = bt2.MaxOverlay;
  173. }
  174. else
  175. {
  176. BUFF_ABILITY_MAXLAYER = 10;
  177. }
  178. }
  179. protected void AddXuShi(XmdsVirtual player, int addLayers)
  180. {
  181. CardLayerRule layerRule = new CardLayerRule(BUFF_STOREENERGY, CardLayerType.Layers, BUFF_STOREENERGY_MAXLAYER);
  182. NextCardStrengthenInfo data = player.CardModule.AddNextStrengthInfo(CommonAI.Data.CardType.Max, CardStrengthenType.Dmg,
  183. XmdsConfig.Instance.CARD_STOREENERGY_DMG, addLayers, BUFF_STOREENERGY_TIME, 1, BUFF_STOREENERGY_TRIGGER_MIN, DamageType.Damage, layerRule);
  184. if(data != null)
  185. {
  186. data.bindBuffID = BUFF_STOREENERGY;
  187. }
  188. }
  189. }
  190. }