Struct.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. namespace ET.Server
  2. {
  3. /// <summary>
  4. /// 游戏服数据结构
  5. /// </summary>
  6. public class Struct
  7. {
  8. public class AreaData
  9. {
  10. public MapConfig prop { get; set; }
  11. public int areaId { get; set; }
  12. public long instanceId { get; set; }
  13. public float targetX { get; set; }
  14. public float targetY { get; set; }
  15. public int logicServerId { get; set; }
  16. public ENTER_TYPE enterType = ENTER_TYPE.NONE;
  17. public AreaData(int areaId) {
  18. this.prop = MapConfigCategory.Instance.Get(areaId);
  19. this.areaId = areaId;
  20. }
  21. public AreaData(MapConfig prop) {
  22. this.areaId = prop.Id;
  23. this.prop = prop;
  24. }
  25. public AreaData(int areaId, long instanceId) {
  26. this.prop = MapConfigCategory.Instance.Get(areaId);
  27. this.areaId = areaId;
  28. this.instanceId = instanceId;
  29. }
  30. public AreaData(int areaId, float targetX, float targetY) {
  31. this.prop = MapConfigCategory.Instance.Get(areaId);
  32. this.areaId = areaId;
  33. this.targetX = targetX;
  34. this.targetY = targetY;
  35. }
  36. public AreaData(int areaId, float targetX, float targetY, ENTER_TYPE enterType) {
  37. this.prop = MapConfigCategory.Instance.Get(areaId);
  38. this.areaId = areaId;
  39. this.targetX = targetX;
  40. this.targetY = targetY;
  41. this.enterType = enterType;
  42. }
  43. public AreaData(int areaId, long instanceId, ENTER_TYPE enterType) {
  44. this.prop = MapConfigCategory.Instance.Get(areaId);
  45. this.areaId = areaId;
  46. this.instanceId = instanceId;
  47. this.enterType = enterType;
  48. }
  49. }
  50. }
  51. }