JSGCardRateModule.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. using CommonAI.Data;
  2. using CommonLang;
  3. using CommonLang.Log;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using XmdsCommon.JSGModule;
  9. using XmdsCommon.Plugin;
  10. using XmdsCommonServer.Plugin;
  11. using XmdsCommonSkill.Plugin.CardSkill;
  12. namespace CommonAI.ZoneServer.JSGModule
  13. {
  14. //卡牌权重变更模块
  15. public class JSGCardRateModule
  16. {
  17. private String mUniqueInfo;
  18. protected static Logger log = LoggerFactory.GetLogger("JSGCardRateModule");
  19. // 卡牌权重变更列表
  20. private List<CardRateChgData> mCardRateChgLists = new List<CardRateChgData>();
  21. // 权重计算辅助结构
  22. private CardWeigthExt mCardWeightExt = new CardWeigthExt();
  23. public JSGCardRateModule() { }
  24. public void initUniqueInfo(String uniqueInfo)
  25. {
  26. this.mUniqueInfo = uniqueInfo;
  27. }
  28. public void Update()
  29. {
  30. for(int i = mCardRateChgLists.Count - 1; i >= 0; i--)
  31. {
  32. CardRateChgData data = mCardRateChgLists[i];
  33. if(data.validTime <= CommonLang.CUtils.localTimeMS || data.validTimes == 0)
  34. {
  35. mCardRateChgLists.RemoveAt(i);
  36. }
  37. }
  38. }
  39. public void AddChanges(CardRateChgData data)
  40. {
  41. if(data.uniqueID > 0)
  42. {
  43. for (int i = 0; i < mCardRateChgLists.Count; i++)
  44. {
  45. CardRateChgData temp = mCardRateChgLists[i];
  46. if (temp.uniqueID == data.uniqueID)
  47. {
  48. temp.copy(data);
  49. return;
  50. }
  51. }
  52. }
  53. this.mCardRateChgLists.Add(data);
  54. }
  55. public GenCardData GetRandomCardType(CardSkillData [] playerCardSkill)
  56. {
  57. mCardWeightExt.Reset(playerCardSkill);
  58. //处理卡牌珠生成逻辑,优先处理最近的
  59. for (int i = mCardRateChgLists.Count - 1; i >= 0; i--)
  60. {
  61. CardRateChgData data = mCardRateChgLists[i];
  62. if(data.validTime < CommonLang.CUtils.localTimeMS || data.validTimes == 0)
  63. {
  64. continue;
  65. }
  66. if(data.validTimes > 0) {data.validTimes--;}
  67. // 本类型或者全局已设置,跳过
  68. if (mCardWeightExt.GetSetFlag(data.cardType) || mCardWeightExt.GetSetFlag(CardType.Max))
  69. {
  70. continue;
  71. }
  72. // 区分,能否设置的属性
  73. if (data.chgType == CardRateChgType.Double)
  74. {
  75. mCardWeightExt.AddDoubleRate(data.cardType, data.value);
  76. }
  77. else
  78. {
  79. int finalWeightChg = GetWeightFinalValue(playerCardSkill, data.cardType, data);
  80. if (data.chgType == CardRateChgType.Add)
  81. {
  82. mCardWeightExt.AddWeight(data.cardType, finalWeightChg);
  83. }
  84. else if (data.chgType == CardRateChgType.Del)
  85. {
  86. mCardWeightExt.AddWeight(data.cardType, -finalWeightChg);
  87. }
  88. else if (data.chgType == CardRateChgType.Set)
  89. {
  90. mCardWeightExt.SetWeight(data.cardType, finalWeightChg);
  91. }
  92. }
  93. }
  94. #if JSG_CARD_TEST
  95. log.Warn("GetRandomCardType: 权重列表" + mCardWeightExt.ToString());
  96. #endif
  97. GenCardData cardData = mCardWeightExt.GetWeightIndex();
  98. if (cardData == null)
  99. {
  100. log.Error("JSGCardRateModule GetRandomCardType异常:" + mCardWeightExt.ToString() + ", " +
  101. (this.mUniqueInfo == null ? "null" : this.mUniqueInfo));
  102. }
  103. return cardData;
  104. }
  105. public CardType GetCardByWeight(bool random)
  106. {
  107. return this.mCardWeightExt.GetCardOnlyByWeight(random);
  108. }
  109. /** 获取牌珠实际权重变更值 */
  110. private int GetWeightFinalValue(CardSkillData[] playerCardSkill, CardType cardType, CardRateChgData data)
  111. {
  112. if (data.isPrecent)
  113. {
  114. return CUtils.CastInt(data.value * XmdsUnitProp.PER * playerCardSkill[(int)cardType].GetWeight());
  115. }
  116. return data.value;
  117. }
  118. }
  119. // 卡牌权重数据辅助模块
  120. public class CardWeigthExt
  121. {
  122. protected static Logger log = LoggerFactory.GetLogger("CardWeigthExt");
  123. protected int[] cardWeight = new int[(int)CardType.Max+1];
  124. private bool[] weightFlag = new bool[(int)CardType.Max+1]; // 是否设置概率
  125. private int [] doubleRate = new int[(int)CardType.Max+1]; // 双球概率
  126. public override string ToString()
  127. {
  128. return "CardWeigthExt: " + cardWeight[0] + ", " + cardWeight[1] + ", " + cardWeight[2] + ", " + cardWeight[3];
  129. }
  130. public void Reset(CardSkillData [] cardSkill)
  131. {
  132. for (int i = 0; i <= (int)CardType.Max; i++)
  133. {
  134. this.cardWeight[i] = cardSkill[i].GetWeight();
  135. this.weightFlag[i] = false;
  136. this.doubleRate[i] = 0;
  137. }
  138. }
  139. public bool GetSetFlag(CardType type)
  140. {
  141. return weightFlag[(int)type];
  142. }
  143. public void AddWeight(CardType type, int value)
  144. {
  145. this.cardWeight[(int)type] += value;
  146. }
  147. //public short GetWeight(CardType type)
  148. //{
  149. // return this.cardWeight[(int)type];
  150. //}
  151. public void SetWeight(CardType type, int value)
  152. {
  153. this.cardWeight[(int)type] = value;
  154. this.weightFlag[(int)type] = true;
  155. }
  156. public void AddDoubleRate(CardType type, int value)
  157. {
  158. this.doubleRate[(int)type] += value;
  159. }
  160. // 考虑各种加成后, 以及双倍效果
  161. public GenCardData GetWeightIndex()
  162. {
  163. int totalWeight = 0;
  164. for (int i = 0; i < (int)CardType.Max; i++)
  165. {
  166. //本类型未设置的情况下,全局设置了数据
  167. if(!weightFlag[i] && weightFlag[(int)CardType.Max])
  168. {
  169. this.cardWeight[i] = this.cardWeight[(int)CardType.Max];
  170. }
  171. totalWeight += this.cardWeight[i];
  172. }
  173. if(totalWeight <= 0)
  174. {
  175. log.Warn("概率出问题了!");
  176. return new GenCardData((CardType)(GlobalData.gRandom.Next() % ((int)CardType.Max)), 1);
  177. }
  178. int randValue = GlobalData.gRandom.Next() % totalWeight;
  179. for (int i = 0; i < (int)CardType.Max; i++)
  180. {
  181. if (randValue < this.cardWeight[i])
  182. {
  183. bool doubleCreate = GlobalData.gRandom.Next() % GlobalData.RATE_BASE < doubleRate[i] + doubleRate[(int)CardType.Max];
  184. return new GenCardData((CardType)(i), doubleCreate ? 2 : 1);
  185. }
  186. randValue -= this.cardWeight[i];
  187. }
  188. return null;
  189. }
  190. // 单纯根据权重获取卡牌
  191. public CardType GetCardOnlyByWeight(bool random)
  192. {
  193. if (random)
  194. {
  195. int totalWeight = 0;
  196. for (int i = 0; i < (int)CardType.Max; i++)
  197. {
  198. totalWeight += this.cardWeight[i];
  199. }
  200. if(totalWeight <= 0)
  201. {
  202. log.Error("卡牌总权重为0 : " + totalWeight);
  203. return (CardType)(GlobalData.gRandom.Next() % (int)CardType.Max);
  204. }
  205. else
  206. {
  207. int randValue = GlobalData.gRandom.Next() % totalWeight;
  208. for (int i = 0; i < (int)CardType.Max; i++)
  209. {
  210. if (randValue < this.cardWeight[i])
  211. {
  212. return (CardType)i;
  213. }
  214. randValue -= this.cardWeight[i];
  215. }
  216. return CardType.Max;
  217. }
  218. }
  219. else
  220. {
  221. int maxWeight = 0, maxIndex = -1;
  222. for (int i = 0; i < (int)CardType.Max; i++)
  223. {
  224. if (maxWeight < this.cardWeight[i])
  225. {
  226. maxWeight = this.cardWeight[i];
  227. maxIndex = i;
  228. }
  229. }
  230. return (maxIndex == -1) ? CardType.Max : (CardType)(maxIndex);
  231. }
  232. }
  233. }
  234. }