RuntimeGameLocal.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Drawing;
  5. using System.Drawing.Drawing2D;
  6. using CommonAI.RTS;
  7. using CommonLang.Vector;
  8. using CommonAI.Zone;
  9. using CommonAI.Zone.Instance;
  10. using CommonAI.RTS.Manhattan;
  11. using CommonAI.Zone.ZoneEditor;
  12. using System.Windows.Forms;
  13. using CommonAIEditor;
  14. using CommonLang;
  15. using System.Collections;
  16. using GameEditorPlugin.Win32;
  17. using GameEditorPlugin;
  18. using CommonAIClient.Client;
  19. using CommonAI.ZoneClient;
  20. using CommonLang.Protocol;
  21. using CommonLang.IO;
  22. using CommonAI.Zone.Helper;
  23. using CommonAI.Zone.Replay;
  24. using GameEditorPlugin.Win32.BattleClient;
  25. namespace GameEditorPlugin.Win32.Runtime
  26. {
  27. public class RuntimeGameLocal : DisplayBattleLocal<BattleLocalPlay>
  28. {
  29. private EditorScene zone;
  30. public EditorTemplates Templates { get; private set; }
  31. public RuntimeGameLocal(EditorTemplates templates, int scene_id, BattleRecorder recorder)
  32. {
  33. EnvironmentVar.ALWAYS_SYNC_ENVIRONMENT_VAR = true;
  34. this.ShowHP = true;
  35. this.ShowLog = true;
  36. this.Templates = templates;
  37. SceneData scene = this.Templates.LoadScene(scene_id);
  38. base.InitClient(new BattleLocalPlay(Templates, scene));
  39. this.Battle.SetRecoder(recorder);
  40. this.Battle.Layer.MessageReceived += this.processEvent;
  41. this.zone = Battle.Zone;
  42. ZoneRegion startRegion = zone.GetEditStartRegion(0);
  43. if (startRegion != null)
  44. {
  45. initStartRegion(zone.Data.GetStartRegions().Get(0));
  46. return;
  47. }
  48. foreach (CommonAI.Zone.ZoneEditor.RegionData rg in zone.Data.GetStartRegionsList())
  49. {
  50. initStartRegion(rg);
  51. return;
  52. }
  53. MessageBox.Show("没有玩家出身点!!!");
  54. }
  55. public override void Dispose()
  56. {
  57. base.Dispose();
  58. }
  59. private void initStartRegion(CommonAI.Zone.ZoneEditor.RegionData startRegion)
  60. {
  61. PlayerStartAbilityData tgd = startRegion.GetAbilityOf<PlayerStartAbilityData>();
  62. int actorTemplateID = tgd.TestActorTemplateID;
  63. UnitInfo info = Templates.Templates.getUnit(actorTemplateID);
  64. if (info != null)
  65. {
  66. info = info.Clone() as UnitInfo;
  67. info.UType = UnitInfo.UnitType.TYPE_PLAYER;
  68. InstancePlayer actor = zone.AddUnit(info, "ACTOR", (byte)tgd.START_Force, tgd.TestActorLevel, startRegion.X, startRegion.Y, 0) as InstancePlayer;
  69. if (actor != null)
  70. {
  71. var loc = actor.GenLockActorEvent(actor.Name, zone.Data.ClientSyncRange, zone.Data.ClientSyncRange, zone.UpdateIntervalMS);
  72. //zone.queueEvent(loc);
  73. base.Layer.ProcessMessage(loc);
  74. }
  75. this.setCamera(actor.X, actor.Y);
  76. }
  77. else
  78. {
  79. MessageBox.Show("主角资源没有 : " + actorTemplateID);
  80. }
  81. return;
  82. }
  83. public void update(int intervalMS, float turbo)
  84. {
  85. int totalMS = (int)(intervalMS * turbo);
  86. while (totalMS > 0)
  87. {
  88. int tick = Math.Min(totalMS, intervalMS);
  89. base.update(tick);
  90. totalMS -= intervalMS;
  91. }
  92. base.update_flush();
  93. }
  94. private void processEvent(ZoneLayer layer, IMessage e)
  95. {
  96. if (e is GameOverEvent)
  97. {
  98. GameOverEvent over = e as GameOverEvent;
  99. MessageBox.Show(over.message, e.GetType().Name);
  100. }
  101. else if (e is TestMessageBox)
  102. {
  103. TestMessageBox over = e as TestMessageBox;
  104. MessageBox.Show(over.msg, e.GetType().Name);
  105. }
  106. else if (e is ServerExceptionB2C)
  107. {
  108. ServerExceptionB2C over = e as ServerExceptionB2C;
  109. MessageBox.Show(over.Message + "\n" + over.StackTrace, e.GetType().Name);
  110. }
  111. else if (e is ScriptCommandEvent)
  112. {
  113. ScriptCommandEvent over = e as ScriptCommandEvent;
  114. MessageBox.Show(over.message, e.GetType().Name);
  115. }
  116. }
  117. }
  118. }