JSGModule.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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.Vector;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. //using System.Threading.Tasks;
  12. namespace CommonAI.ZoneServer.JSGModule
  13. {
  14. public class JSGModule
  15. {
  16. public static int GetSpaceDiveSize(SceneType sceneType)
  17. {
  18. //if (sceneType == CommonAI.Data.SceneType.NCS_MutilCross)
  19. //{
  20. // return 1;
  21. //}
  22. //else
  23. if (sceneType == CommonAI.Data.SceneType.PickLotus)
  24. {
  25. return 20;
  26. }
  27. else
  28. {
  29. return 12;
  30. }
  31. }
  32. //攻击模式是否对宠物有效
  33. public static bool IsExpectValidForPet(SkillTemplate.CastTarget type)
  34. {
  35. if (type == SkillTemplate.CastTarget.Alias || type == SkillTemplate.CastTarget.PetForMaster || type == SkillTemplate.CastTarget.EveryOne
  36. || type == SkillTemplate.CastTarget.AlliesExcludeSelf || type == SkillTemplate.CastTarget.AlliesIncludeSelf ||
  37. type == SkillTemplate.CastTarget.EveryOneExcludeSelf)
  38. {
  39. return true;
  40. }
  41. return false;
  42. }
  43. public static bool IsEmpty(string str)
  44. {
  45. return str == null || str.Length <= 0;
  46. }
  47. // 概率,万分之
  48. public static bool RandomPrecent(int value)
  49. {
  50. return GlobalData.gRandom.Next(GlobalData.RATE_BASE) < value;
  51. }
  52. public static float GetCurveStartAngleOffect(InstanceUnit launcher, InstanceUnit target, float startAngle, float seekRange)
  53. {
  54. if(target == null || launcher == null)
  55. {
  56. return startAngle;
  57. }
  58. float distance = MathVector.getDistance(launcher.X, launcher.Y, target.X, target.Y);
  59. if(distance > 7.0f)
  60. {
  61. return startAngle;
  62. }
  63. else if(distance > 5.0f)
  64. {
  65. return startAngle * 0.8f;
  66. }
  67. else if(distance > 3.5f)
  68. {
  69. return startAngle * 0.6f;
  70. }
  71. else if(distance > 2.0f)
  72. {
  73. return startAngle * 0.3f;
  74. }
  75. return startAngle * 0.1f;
  76. }
  77. public static Vector2 GetCurveDefaultTargetPos(InstanceUnit launcher, float seekRange)
  78. {
  79. Vector2 targetPos = new Vector2();
  80. float degree = MathVector.getDegree(launcher.X, launcher.Y);
  81. targetPos.SetX(launcher.X + (float)(seekRange * Math.Cos(launcher.Direction)));
  82. targetPos.SetY(launcher.Y + (float)(seekRange * Math.Sin(launcher.Direction)));
  83. return targetPos;
  84. }
  85. public static string GetAttackSourceDes(AttackSource source)
  86. {
  87. if(source == null)
  88. {
  89. return "";
  90. }
  91. return "【attackSN: " + (source.Attack == null ? 0 : source.Attack.SerialNumber)
  92. + ", attackID: " + (source.Attack == null ? 0 : source.Attack.Properties.GetAttackID())
  93. + ", spellID: " + (source.FromSpell == null ? 0 : source.FromSpell.ID) + "】";
  94. }
  95. public static bool IsActiveSkill(XmdsSkillType skillType)
  96. {
  97. return skillType == XmdsSkillType.active || skillType == XmdsSkillType.normalAtk ||
  98. skillType == XmdsSkillType.petGiveAcitve || skillType == XmdsSkillType.cardSkill;
  99. }
  100. public static bool IsPassiveSkill(XmdsSkillType skillType)
  101. {
  102. return skillType == XmdsSkillType.passive || skillType == XmdsSkillType.petGivePassive;
  103. }
  104. }
  105. }