Struct.cs 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. namespace ET.Server
  2. {
  3. /// <summary>
  4. /// 游戏服数据结构
  5. /// </summary>
  6. public class Struct
  7. {
  8. /// <summary>
  9. /// 数据结构 int_int
  10. /// </summary>
  11. public class IntIntData
  12. {
  13. public int value1 { get; set; }
  14. public int value2 { get; set; }
  15. public IntIntData(int value1, int value2)
  16. {
  17. this.value1 = value1;
  18. this.value2 = value2;
  19. }
  20. }
  21. /// <summary>
  22. /// 玩家技能数据
  23. /// </summary>
  24. public class SkillInfo
  25. {
  26. /** 技能id **/
  27. public int id { get; set; }
  28. /** 技能等级 **/
  29. public int level { get; set; }
  30. /** 斩妖特殊含义: 冷却时间减少,触发几率增加,持续时间增加 **/
  31. public int[] talentLevel = new int[3];
  32. /** 技能类型 **/
  33. public int type { get; set; }
  34. /** 技能到期时间戳 **/
  35. public long skillTime { get; set; }
  36. /** 技能cd变更,万分比 **/
  37. public int cdTime { get; set; }
  38. public int flag { get; set; }
  39. [StaticField]
  40. public bool autoLaunch = false;
  41. }
  42. /// <summary>
  43. /// 玩家技能存储数据
  44. /// </summary>
  45. public class PlayerSkillBaseData
  46. {
  47. /** 技能id **/
  48. public int id { get; set; }
  49. /** 技能等级 **/
  50. public int level { get; set; }
  51. /** 是否已解锁 */
  52. public bool unlock { get; set; }
  53. /** 技能到期时间戳 **/
  54. public long skillTime { get; set; }
  55. public PlayerSkillBaseData(int skillId, int level, bool unlock, long skillTime)
  56. {
  57. this.id = skillId;
  58. this.level = level;
  59. this.unlock = unlock;
  60. this.skillTime = skillTime;
  61. }
  62. }
  63. /// <summary>
  64. /// 场景数据
  65. /// </summary>
  66. public class AreaData
  67. {
  68. public MapConfig prop { get; set; }
  69. public int areaId { get; set; }
  70. public long instanceId { get; set; }
  71. public float targetX { get; set; }
  72. public float targetY { get; set; }
  73. public int logicServerId { get; set; }
  74. public ENTER_TYPE enterType = ENTER_TYPE.NONE;
  75. public AreaData(int areaId)
  76. {
  77. this.prop = MapConfigCategory.Instance.Get(areaId);
  78. this.areaId = areaId;
  79. }
  80. public AreaData(MapConfig prop)
  81. {
  82. this.areaId = prop.Id;
  83. this.prop = prop;
  84. }
  85. public AreaData(int areaId, long instanceId)
  86. {
  87. this.prop = MapConfigCategory.Instance.Get(areaId);
  88. this.areaId = areaId;
  89. this.instanceId = instanceId;
  90. }
  91. public AreaData(int areaId, float targetX, float targetY)
  92. {
  93. this.prop = MapConfigCategory.Instance.Get(areaId);
  94. this.areaId = areaId;
  95. this.targetX = targetX;
  96. this.targetY = targetY;
  97. }
  98. public AreaData(int areaId, float targetX, float targetY, ENTER_TYPE enterType)
  99. {
  100. this.prop = MapConfigCategory.Instance.Get(areaId);
  101. this.areaId = areaId;
  102. this.targetX = targetX;
  103. this.targetY = targetY;
  104. this.enterType = enterType;
  105. }
  106. public AreaData(int areaId, long instanceId, ENTER_TYPE enterType)
  107. {
  108. this.prop = MapConfigCategory.Instance.Get(areaId);
  109. this.areaId = areaId;
  110. this.instanceId = instanceId;
  111. this.enterType = enterType;
  112. }
  113. }
  114. /// <summary>
  115. /// 怪物单位数据
  116. /// </summary>
  117. public class MonsterUnit
  118. {
  119. /** 怪物名字 **/
  120. public string name { get; set; }
  121. /** 怪物模板ID **/
  122. public int id { get; set; }
  123. /** 阵营信息 **/
  124. public int force { get; set; }
  125. /** 刷新点名字,为空才去读x, y **/
  126. public string flag { get; set; }
  127. public bool autoGuard { get; set; }
  128. /** 同一个Area是否只能同时有一个怪存在 **/
  129. public bool unique = false;
  130. /** 坐标x **/
  131. public int x { get; set; }
  132. /** 坐标y **/
  133. public int y { get; set; }
  134. /** 是否是任务 共享怪 **/
  135. public int shareType { get; set; }
  136. /** 动态怪物等级,战斗服根据此计算怪物的动态数值 **/
  137. public int level { get; set; }
  138. /** 初始朝向 **/
  139. public float birthDirection { get; set; }
  140. /** 服务器标记字段,怪物死亡时,会回传回来 **/
  141. public int gsFlag { get; set; }
  142. /** 指定血量 **/
  143. public int hp { get; set; }
  144. public int maxHP { get; set; }
  145. /** 指定追击玩家id(必须是无限追击怪才会联动生效) **/
  146. public string attackPlayer { get; set; }
  147. /** 创建护卫怪,主人ObjectId(主人脱战或者死亡消失) **/
  148. public int masterID { get; set; }
  149. public MonsterUnit()
  150. {
  151. }
  152. public MonsterUnit(int monsterID, int force, bool unique, int x, int y)
  153. {
  154. this.id = monsterID;
  155. this.force = force;
  156. this.unique = unique;
  157. this.x = x;
  158. this.y = y;
  159. }
  160. public MonsterUnit(int monsterID, string refrushEvent, bool unique, int force)
  161. {
  162. this.id = monsterID;
  163. this.force = force;
  164. this.unique = unique;
  165. this.flag = refrushEvent;
  166. }
  167. public MonsterUnit(int monsterID, string refrushEvent, bool unique, int force, float birthDirection)
  168. {
  169. this.id = monsterID;
  170. this.force = force;
  171. this.unique = unique;
  172. this.flag = refrushEvent;
  173. this.birthDirection = birthDirection;
  174. }
  175. }
  176. /// <summary>
  177. /// 战报数据
  178. /// </summary>
  179. public class BattleReports
  180. {
  181. public uint ID { get; set; }
  182. public string PlayerUUID { get; set; }
  183. /** 模板id **/
  184. public int TemplateId { get; set; }
  185. /** 单位名称 **/
  186. public string Name { get; set; }
  187. /** 阵营 **/
  188. public int Force { get; set; }
  189. /** 对所有单位输出的总伤害 **/
  190. public int TotalDamage { get; set; }
  191. /** 对所有单位输出的总治疗量 **/
  192. public int TotalHealing { get; set; }
  193. public BattleReports(uint id, string PlayerUUID, int templateId, string name, int force, int totalDamage)
  194. {
  195. this.ID = id;
  196. this.PlayerUUID = PlayerUUID;
  197. this.TemplateId = templateId;
  198. this.Name = name;
  199. this.Force = force;
  200. this.TotalDamage = totalDamage;
  201. }
  202. }
  203. /// <summary>
  204. /// 玩家单位复活数据
  205. /// </summary>
  206. public class UnitPlayerReliveData
  207. {
  208. /** 复活场景 **/
  209. public Map Map { get; set; }
  210. /** 复活的openId **/
  211. public string OpenId { get; set; }
  212. /** 复活单位模板id **/
  213. public int ID { get; set; }
  214. /** 复活时间 **/
  215. public long ReliveTime { get; set; }
  216. /** 复活位置x **/
  217. public int x { get; set; }
  218. /** 复活位置y **/
  219. public int y { get; set; }
  220. public UnitPlayerReliveData()
  221. {
  222. }
  223. public UnitPlayerReliveData(Map map, string openId, int id, long time, int x, int y)
  224. {
  225. this.Map = map;
  226. this.OpenId = openId;
  227. this.ID = id;
  228. this.ReliveTime = time;
  229. this.x = x;
  230. this.y = y;
  231. }
  232. }
  233. /// <summary>
  234. /// 通知战斗服事件
  235. /// </summary>
  236. public class TriggerEventNotify
  237. {
  238. /** 事件名称 **/
  239. public string message { get; set; }
  240. }
  241. }
  242. }