JSGCardModuleBase.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using CommonAI.Data;
  7. using CommonAI.Zone.Formula;
  8. using XmdsCommon.JSGModule.Interface;
  9. using XmdsCommon.Plugin;
  10. using XmdsCommonServer.XLS.Data;
  11. using XmdsCommonSkill.Plugin.CardSkill;
  12. using XmdsCommonServer.Plugin.Base;
  13. using CommonAI.data;
  14. using CommonLang.Log;
  15. namespace XmdsCommonServer.Plugin.CardSkill
  16. {
  17. public abstract class JSGCardModuleBase : IJSCardSkillModule
  18. {
  19. protected static Logger log = LoggerFactory.GetLogger("JSGCardModuleBase");
  20. public static readonly int S_TRIGGER_DLAY = 1500;
  21. //得球率,间隔配置
  22. private static XmdsCardCfg[] S_CARD_CFG;
  23. protected XmdsCardCfg mCardCfg;
  24. //下一次得球时间
  25. protected long mNextGetCardTime;
  26. //卡牌珠清理时间 - 重置时间
  27. private long mClearCardTime;
  28. protected XmdsVirtual mOwner;
  29. protected bool mIsInitOK = true;
  30. //玩家当前卡牌数据
  31. protected JSGCardDataBase mCardData;
  32. //触发卡牌技能数据
  33. protected TriggerCardSkillDelayData mTriggerSkillDelay = new TriggerCardSkillDelayData();
  34. //外层接口
  35. public virtual void AddCard(int nums, bool random) { }
  36. public virtual void AddCard(CardType type, int nums) { }
  37. public virtual NextCardStrengthenInfo AddNextStrengthInfo(CardType type, CardStrengthenType strenghType, int value1, int value2, int validTime,
  38. int validTimes = -1, byte needSames = 0, DamageType dmgType = DamageType.None, CardLayerRule layerRules = null) {return null;}
  39. public virtual void ChangeCardWeight(CardType type, CardRateChgType chgType, int value, int validTime,
  40. bool isPrecent = true, int validTimes = -1, int uniqueID = 0) { }
  41. public virtual GetCardData GetLastCardData() { return null; }
  42. public virtual IntIntData GetStrengthInfo(CardStrengthenType strgnthenType) { return null; }
  43. public void Init(XmdsVirtual owner)
  44. {
  45. this.mOwner = owner;
  46. bool notifyClient = true;
  47. if(mClearCardTime > 0 && this.mClearCardTime < CommonLang.CUtils.localTimeMS)
  48. {
  49. notifyClient = false;
  50. this.mClearCardTime = 0;
  51. this.ReSet(false, true);
  52. }
  53. this.InitCardCfg();
  54. this.mIsInitOK = this.OnInit(owner, notifyClient);
  55. }
  56. public virtual void OnHitDamage(XmdsVirtual attacker, AttackSource source, int damage, DamageType damageType) { }
  57. public virtual void OnHitOther(XmdsVirtual hitter, AttackSource source, int damage, DamageType damageType) { }
  58. public virtual void OnSkillDataChange(GameSkill info) { }
  59. public virtual void OnInitOver(GameSkill info, IJSGCardSkill cardSkill) { }
  60. public virtual void TriggerSkillLoadStrength(CardSkillData skillData, int sameNums) { }
  61. public virtual void ReloadCardSkillWeight() { }
  62. public void Dispose()
  63. {
  64. this.mClearCardTime = CommonLang.CUtils.localTimeMS + XmdsConfig.Instance.CARD_OUTBATTLE_VALID_TIME;
  65. }
  66. //扩展接口
  67. protected virtual void OnUpdate(XmdsVirtual player, int interval, bool slowRefresh) { }
  68. protected virtual void ReSet(bool IsInit, bool notifyClient){ }
  69. protected virtual bool IsNeedUpdate() { return true; }
  70. protected virtual bool OnInit(XmdsVirtual owner, bool notifyClient) { return true; }
  71. // 内部接口
  72. public virtual void Update(int interval, bool slowRefresh)
  73. {
  74. this.mTriggerSkillDelay.CheckTriggerSkill();
  75. if (!slowRefresh || this.mOwner == null || mCardData == null)
  76. {
  77. return;
  78. }
  79. if (this.mOwner.GetBattleStatus() > BattleStatus.ReadyBattle)
  80. {
  81. this.mClearCardTime = 0;
  82. }
  83. else if (this.mClearCardTime == 0)
  84. {
  85. this.mClearCardTime = CommonLang.CUtils.localTimeMS + XmdsConfig.Instance.CARD_OUTBATTLE_VALID_TIME;
  86. }
  87. else if (this.mClearCardTime < CommonLang.CUtils.localTimeMS)
  88. {
  89. this.mClearCardTime = 0;
  90. if (this.mCardData.GetCardNums() > 0)
  91. {
  92. this.ReSet(false, true);
  93. }
  94. }
  95. this.OnUpdate(this.mOwner, interval, slowRefresh);
  96. }
  97. public ICardData GetCardInterface()
  98. {
  99. return this.mCardData;
  100. }
  101. private void InitCardCfg()
  102. {
  103. if (S_CARD_CFG == null)
  104. {
  105. S_CARD_CFG = new XmdsCardCfg[(int)XmdsUnitPro.Max];
  106. foreach (XmdsCardCfg cfgTemp in XmdsConfig.Instance.CARD_CFG)
  107. {
  108. int pro = (int)cfgTemp.pro;
  109. if(pro < 0 || pro >= S_CARD_CFG.Length)
  110. {
  111. log.Warn("出球概率配置错误:" + cfgTemp.pro);
  112. continue;
  113. }
  114. S_CARD_CFG[pro] = cfgTemp;
  115. }
  116. if(S_CARD_CFG[0] == null)
  117. {
  118. S_CARD_CFG[0] = new XmdsCardCfg();
  119. }
  120. }
  121. if (this.mOwner.mUnit.IsMonster)
  122. {
  123. this.mCardCfg = S_CARD_CFG[0];
  124. }
  125. else
  126. {
  127. XmdsCardCfg cfg = S_CARD_CFG[(int)this.mOwner.GetUnitPro()];
  128. this.mCardCfg = cfg == null ? S_CARD_CFG[0] : cfg;
  129. }
  130. }
  131. }
  132. }