JSGXmdsHackerModule.cs 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. using CommonAI.Zone.Formula;
  2. using CommonAI.Zone.Helper;
  3. using CommonAI.Zone.Instance;
  4. using CommonAI.ZoneServer.JSGModule;
  5. using CommonLang;
  6. using CommonLang.Log;
  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.Plugin;
  14. using XmdsCommonServer.Plugin.XmdsSkillTemplate.Skills;
  15. using static CommonAI.ZoneClient.ClientStruct;
  16. using static XmdsCommonServer.Plugin.XmdsVirtual;
  17. namespace XmdsCommonServer.Plugin.JSGXmdsModule
  18. {
  19. public class JSGXmdsHackerModule
  20. {
  21. #if JSGProfile
  22. protected static readonly Logger log = LoggerFactory.GetLogger("JSGXmdsHackerModule");
  23. /** 玩家击杀怪物 */
  24. public static void OnPlayerKillMonster(InstancePlayer attacker, InstanceUnit monster)
  25. {
  26. //玩家属性打印
  27. XmdsVirtual playerVir = (attacker.Virtual as XmdsVirtual);
  28. XmdsUnitProp CurProp = playerVir.MirrorProp;
  29. XmdsUnitProp oldProp = playerVir.GetOriginProp();
  30. log.Info("ID:" + attacker.PlayerUUID + ", 所在场景:" + attacker.Parent.GetSceneID());
  31. log.Info(", 当前血:" + attacker.CurrentHP + ",基础:" + oldProp.MaxAttack + ", " + oldProp.Defence + ", " + oldProp.MaxHP
  32. + ", 攻防血" + CurProp.MaxAttack + ", " + CurProp.Defence + ", " + CurProp.MaxHP + ", 妖:" + CurProp.monsterAtk + ", " + CurProp.monsterDef
  33. + ", 妖比:" + CurProp.monsterAtkPer + ", " + CurProp.monsterDefPer);
  34. log.Info("扩展属性1, 增减伤:" + CurProp.AllDmgAdd + ", " + CurProp.AllDmgReduce + ", 玩家增减伤:" + CurProp.PlayerDamageAdd + ", " + CurProp.PlayerDamageReduce
  35. + ", 神器伤:" + CurProp.ArtifactMainPer + ", boss伤害:" + CurProp.ToBossCritRate + ", " + CurProp.ToBossCritDamage + ", 杀意:" + CurProp.KillValuePer
  36. + ", 吸血" + CurProp.NormalAtkLeech + ", " + CurProp.ActiveAtkLeech + ", 怪伤害:" + CurProp.monsterDamageAdd + ", " + CurProp.monsterDamageReduce);
  37. log.Info("扩展属性1, 暴击率:" + CurProp.CritRate + ", 爆伤:" + CurProp.CritDamage + ", 回血:" + CurProp.MaxHPReborn + ", 韧性:" + CurProp.CtrlTimeReduce
  38. + ", CD缩减:" + CurProp.SkillCD + ", 治疗效果:" + CurProp.HealEffect + ", " + CurProp.HealedEffect + ", 移攻速:" + CurProp.MoveSpeed + ", " + CurProp.AttackSpeed + ", 技伤:" + CurProp.SkillDamageAdd);
  39. UnitBuffStatus[] buffStatus = attacker.GetCurrentBuffStatus();
  40. if (buffStatus != null)
  41. {
  42. foreach (UnitBuffStatus buffItem in buffStatus)
  43. {
  44. log.Info("玩家buff:" + buffItem.ToString());
  45. }
  46. }
  47. //检测基本属性是否有异常的,打印一下
  48. float rate1 = oldProp.MaxAttack == 0 ? 1 : (float)(CurProp.MaxAttack) / oldProp.MaxAttack;
  49. float rate2 = oldProp.Defence == 0 ? 1 : CurProp.Defence / oldProp.Defence;
  50. float rate3 = oldProp.MaxHP == 0 ? 1 : CurProp.MaxHP / oldProp.MaxHP;
  51. if (rate1 > 1.2f || rate2 > 1.2f || rate3 > 1.2f)
  52. {
  53. HashMap<int, PropChangeOperation> playerProps = playerVir.GetChangePropMap();
  54. foreach (PropChangeOperation chgProp in playerProps.Values)
  55. {
  56. log.Info("玩家变更属性:" + chgProp.ToString());
  57. }
  58. }
  59. else
  60. {
  61. log.Info("无特别异常属性!");
  62. }
  63. }
  64. /** 玩家伤害监测输出 */
  65. public static void CheckAndPrintDamageLog(int damageBaseValue, XmdsVirtual attacker, XmdsVirtual hitter, AttackSource source, int damage,
  66. double DefCoef, int damageReduce, int addDamage, int artifaceMainDamage)
  67. {
  68. #if JSGProfile
  69. try
  70. {
  71. do
  72. {
  73. if (damageBaseValue > 50 && (damage <= 1 || damage > 20000))
  74. {
  75. //如果基础防御或者伤害过高,就是测试号了
  76. XmdsUnitProp attckOriginProp = attacker.GetOriginProp();
  77. if (hitter.MirrorProp.Defence > 0 && attckOriginProp.Defence /hitter.MirrorProp.Defence > 10)
  78. {
  79. break;
  80. }
  81. int finalAttack = attacker.MirrorProp.GetFinalAttack(hitter.mUnit.IsMonster);
  82. if (finalAttack <= 0)
  83. {
  84. log.Warn("攻击者最大攻击属性异常:" + attacker.mUnit.Parent.GetSceneID() + ", " + finalAttack);
  85. }
  86. else if(damage * 1.0f / finalAttack < 2)
  87. {
  88. break;
  89. }
  90. XmdsSkillType FromSkillType = source == null ? XmdsSkillType.none : source.FromSkillType;
  91. XmdsVirtual.FormatLog(LoggerLevel.ERROR, "1. 伤害异常 : {0}, {1}, {2}, 实际伤害值:{3}, 防御信息:{4}, {5}, {6}", attacker.mInfo.Name, hitter.mInfo.Name,
  92. FromSkillType, damage, hitter.MirrorProp.Defence, attacker.MirrorProp.IgnoreDefense, attacker.MirrorProp.IgnoreDefensePer);
  93. int spellInfo = (source == null || source.FromSpell == null) ? 0 : source.FromSpell.ID;
  94. XmdsVirtual.FormatLog(LoggerLevel.ERROR, "2. 伤害异常 : {0}, {1}, {2}, {3}, {4}, {5}, {6}, {7}",
  95. damageBaseValue, DefCoef, damageReduce, addDamage, artifaceMainDamage, spellInfo, attacker.mUnit.PlayerUUID, hitter.mUnit.PlayerUUID);
  96. //XmdsVirtual.FormatLog(LoggerLevel.ERROR, "3. 伤害异常受击防御 : {0},攻击穿透:{1},防御系数:{2},杀意信息:{3},{4}",
  97. // hitter.MirrorProp.Defence, attacker.MirrorProp.IgnoreDefensePer, GetDefenceAddition(hitter.GetStateLv()),
  98. // hitter.MirrorProp.KillValuePer, attacker.MirrorProp.KillValuePer);
  99. }
  100. } while (false);
  101. }
  102. catch (Exception e)
  103. {
  104. log.Error("JSGXmdsHackerModule PrintDamageInfo catch: " + e);
  105. }
  106. #endif
  107. }
  108. /** 玩家伤害监测输出 */
  109. public static void PrintAttrErrorInfo(XmdsVirtual unit, UnitAttributeType Type, int value1, int value2)
  110. {
  111. #if JSGProfile
  112. try
  113. {
  114. bool needPrint = false;
  115. switch (Type)
  116. {
  117. case UnitAttributeType.Defence:
  118. needPrint = value1 > value2 * 4;
  119. break;
  120. case UnitAttributeType.MaxHP:
  121. needPrint = value1 > value2 * 1.5;
  122. break;
  123. default:
  124. needPrint = value1 > 10000;
  125. break;
  126. }
  127. if (needPrint)
  128. {
  129. string stackInfo = new StackTrace().ToString();
  130. XmdsVirtual.FormatLog(LoggerLevel.ERROR, "属性异常异常 : UID:{0}, {1}, {2}, {3}, {4}", unit.mUnit.PlayerUUID, Type, value1, value2, stackInfo);
  131. }
  132. }
  133. catch (Exception e)
  134. {
  135. XmdsVirtual.FormatLog(LoggerLevel.ERROR, "PrintAttrErrorInfo异常:" + Type + ", " + value1 + ", " + value2 + ", " + e);
  136. }
  137. #endif
  138. }
  139. public static void CheckAndPrintDmgWarn(string flag, XmdsVirtual attacker, XmdsVirtual hitter, float sourceDmg, float finalDmg, AttackSource source)
  140. {
  141. #if JSGProfile
  142. try
  143. {
  144. if (source == null || source.Attack == null || source.Attack.Properties.GetAttackID() == XmdsBattleSkill.DefaultSkillScriptID)
  145. {
  146. return;
  147. }
  148. int checkValue = (source != null && source.Attack != null && source.Attack.Properties.GetAttackID() / 100 == 1104)
  149. ? attacker.mUnit.CurrentHP : attacker.MirrorProp.GetFinalAttack(hitter == null ? false : hitter.mUnit.IsMonster);
  150. if (finalDmg / sourceDmg > GetDamageWarnRate(source) || finalDmg / checkValue > 60)
  151. {
  152. log.Warn(flag + ", dmg: " + (int)finalDmg + ", src: " + (int)sourceDmg + ", attackerAtk: " + attacker.MirrorProp.MaxAttack + ", "
  153. + attacker.MirrorProp.MaxMonsterAttack + ", atkHP:" + attacker.mUnit.CurrentHP
  154. + ", AttackInfo:[" + attacker.mUnit.Info.ID + ", UUID: " + attacker.mUnit.PlayerUUID
  155. + "], hitterInfo:[" + hitter.mUnit.Info.ID + ", UUID: " + hitter.mUnit.PlayerUUID + ", " + JSGModule.GetAttackSourceDes(source));
  156. }
  157. }
  158. catch (Exception e)
  159. {
  160. log.Error("CheckAndPrintDmgWarn catch: ", e);
  161. }
  162. #endif
  163. }
  164. /** 获得伤害倍率警告阈值 */
  165. private static float GetDamageWarnRate(AttackSource source)
  166. {
  167. float dmgAddition = 0;
  168. float dmgBase = 3.0f;
  169. if(source != null)
  170. {
  171. if(source.FromSkillType == XmdsSkillType.cardSkill)
  172. {
  173. dmgBase = 5.0f;
  174. }
  175. else
  176. {
  177. dmgAddition = source.mDmgAddPer;
  178. }
  179. }
  180. return dmgAddition + dmgBase;
  181. }
  182. /** 卡牌系统,输出卡牌数量异常日志 */
  183. public static void CheckAndPrintCardSameErrorInfo(string tag, int cardSames, long ltime, AttackSource source)
  184. {
  185. #if JSGProfile
  186. if (cardSames <= 1)
  187. {
  188. log.Warn("触发卡牌数量异常:" + tag + ", " + ltime + ", " + JSGModule.GetAttackSourceDes(source));
  189. }
  190. #endif
  191. }
  192. #endif
  193. }
  194. }