FormRuntimeGameLocal.cs 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using System.Drawing.Drawing2D;
  9. using CommonAI.RTS;
  10. using CommonLang.Vector;
  11. using System.IO;
  12. using GameEditorPlugin.Win32.Runtime;
  13. using CommonFroms.Utils;
  14. using CommonLang.Log;
  15. using CommonAI.Zone;
  16. using GameEditorPlugin;
  17. using CommonLang;
  18. using GameEditorPlugin.Win32.BattleClient;
  19. using System.Runtime.InteropServices;
  20. using CommonFroms;
  21. using CommonAI.ZoneClient;
  22. using CommonAIEditor;
  23. using CommonAI.Zone.Replay;
  24. using GameEditorPlugin.Win32;
  25. using CommonAI.Zone.ZoneEditor;
  26. using CommonFroms.G2D;
  27. using CommonAI.ZoneClient.Agent;
  28. using static CommonAI.ZoneClient.ZoneUnit;
  29. namespace GameEditorPlugin.Win32.Runtime
  30. {
  31. public partial class FormRuntimeGameLocal : Form
  32. {
  33. private readonly DirectoryInfo dataDir;
  34. private int sceneID;
  35. private RuntimeGameLocal world;
  36. private bool step1 = false;
  37. private float TurboX = 1;
  38. private bool recorder;
  39. private ConsoleOutput console;
  40. private long lastUpdateTimeMS;
  41. private float mouseX, mouseY;
  42. private Vector2 pic_lastMouesDown;
  43. private Vector2 pic_lastCameraPos;
  44. public EditorScene Zone { get { return world.Battle.Zone; } }
  45. public RuntimeGameLocal Battle { get { return world; } }
  46. public PointF MousePos { get { return new PointF(mouseX, mouseY); } }
  47. public bool IsFreeView { get; set; }
  48. protected ZoneObject SelectedZoneObject { get { return propertyGrid_selected.SelectedObject as ZoneObject; } }
  49. public FormRuntimeGameLocal() : this(null, 0, false)
  50. {
  51. }
  52. public FormRuntimeGameLocal(DirectoryInfo data_dir, int sceneID, bool recorder = false)
  53. {
  54. this.dataDir = data_dir;
  55. this.sceneID = sceneID;
  56. this.IsFreeView = false;
  57. this.DoubleBuffered = true;
  58. this.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
  59. InitializeComponent();
  60. if (dataDir == null) return;
  61. this.console = new ConsoleOutput();
  62. this.recorder = recorder;
  63. this.pictureBox1.MouseWheel += pictureBox1_MouseWheel;
  64. this.pictureBox1.KeyDown += pictureBox1_KeyDown;
  65. this.Disposed += FormRuntimeGameLocal_Disposed;
  66. }
  67. private void FormRuntimeGameLocal_Disposed(object sender, EventArgs e)
  68. {
  69. if (this.world != null)
  70. {
  71. try
  72. {
  73. this.world.Dispose();
  74. }
  75. catch (Exception err)
  76. {
  77. MessageBox.Show(err.Message + "\n" + err.StackTrace);
  78. }
  79. }
  80. }
  81. private void FormRuntimeGameLocal_Load(object sender, EventArgs e)
  82. {
  83. if (dataDir == null) return;
  84. try
  85. {
  86. EditorTemplates templates = new EditorTemplates(dataDir.FullName, TemplateManager.MessageCodec);
  87. templates.LoadAllTemplates(false, true);
  88. CommonAI.Zone.Replay.BattleRecorder rec = null;
  89. if (recorder)
  90. {
  91. string rec_name = string.Format("scene_{0}_{1}.rec", sceneID, CUtils.FormatTime(DateTime.Now));
  92. rec = new CommonAI.Zone.Replay.BattleRecorder(templates.Templates, sceneID, rec_name);
  93. FileStream fos = new FileStream(dataDir.Parent.FullName + "\\" + rec.Name, FileMode.CreateNew, FileAccess.Write);
  94. rec.SetOut(fos);
  95. this.Disposed += (object sender2, EventArgs e2) =>
  96. {
  97. try
  98. {
  99. fos.Flush();
  100. fos.Close();
  101. }
  102. catch (Exception ) { }
  103. try
  104. {
  105. fos.Dispose();
  106. }
  107. catch (Exception ) { }
  108. };
  109. }
  110. this.world = new RuntimeGameLocal(templates, sceneID, rec);
  111. // this.world.ShowTerrain = true;
  112. // this.world.ShowGrid = chk_ShowGrid.Checked;
  113. // this.world.ShowAttackRange = chkShowAttackRangeToolStripMenuItem.Checked;
  114. // this.world.ShowDamageRange = chkShowDamageRange.Checked;
  115. // this.world.ShowGuardRange = chkShowGuardRangeToolStripMenuItem.Checked;
  116. // this.world.ShowHP = chkShowHP.Checked;
  117. // this.world.ShowName = chkShowName.Checked;
  118. // this.world.ShowZ = chkShowZ.Checked;
  119. // this.world.ShowLog = chkShowLog.Checked;
  120. // this.world.ShowAllLog = chkShowLogToolStripMenuItem.Checked;
  121. this.world.GenShowItems(this.toolStripDropDownButton1);
  122. this.world.Layer.LayerInit += this.Layer_LayerInit;
  123. this.world.Layer.ActorAdded += this.Layer_ActorAdded;
  124. foreach (SyncMode mode in Enum.GetValues(typeof(SyncMode)))
  125. {
  126. ToolStripButton item = new ToolStripButton(mode.ToString());
  127. item.Tag = mode;
  128. item.Click += item_SyncMode_Click;
  129. item.CheckOnClick = true;
  130. drop_SyncMode.DropDownItems.Add(item);
  131. if (world.Layer.ActorSyncMode == mode)
  132. {
  133. item.Checked = true;
  134. }
  135. }
  136. this.world.BindMessageFilter(pictureBox1);
  137. this.OnBattleCreated(world);
  138. this.timer2.Interval = (int)(1000f / world.Templates.Templates.CFG.SYSTEM_FPS);
  139. this.timer2.Enabled = true;
  140. this.timer2.Start();
  141. }
  142. catch (Exception err)
  143. {
  144. MessageBox.Show(err.Message + "\n" + err.StackTrace);
  145. }
  146. }
  147. private void FormRuntimeGameLocal_Shown(object sender, EventArgs e)
  148. {
  149. if (dataDir == null) return;
  150. console.DockTo = this;
  151. console.Show();
  152. }
  153. private void FormRuntimeGameLocal_FormClosed(object sender, FormClosedEventArgs e)
  154. {
  155. if (dataDir == null) return;
  156. console.Close();
  157. if (this.world != null)
  158. {
  159. this.world.UnbindMessageFilter();
  160. }
  161. }
  162. //---------------------------------------------------------------------------------------
  163. #region LayerEvents
  164. protected virtual void OnBattleCreated(RuntimeGameLocal battle)
  165. {
  166. }
  167. protected virtual void Layer_LayerInit(ZoneLayer layer)
  168. {
  169. float scale = Math.Max(
  170. ((float)pictureBox1.Width) / world.Width,
  171. ((float)pictureBox1.Height) / world.Height);
  172. this.world.setCameraScale(scale, scale);
  173. }
  174. protected virtual void Layer_ActorAdded(ZoneLayer layer, ZoneActor actor)
  175. {
  176. actor.IsSkillAutoFocusTarget = btn_IsAutoFocusTarget.Checked;
  177. actor.SendUnitGuard(btn_AutoAttack.Checked);
  178. resetSkills(actor);
  179. actor.OnSkillChanged += Actor_OnSkillChanged;
  180. }
  181. protected virtual void Actor_OnSkillChanged(SkillOption op, ZoneUnit unit, int baseSkillID, params int[] skills)
  182. {
  183. resetSkills(unit as ZoneActor);
  184. }
  185. //---------------------------------------------------------------------------------------
  186. protected virtual void resetSkills(ZoneActor actor)
  187. {
  188. toolStripActorSkills.Items.Clear();
  189. int i = 1;
  190. using (var list = ListObjectPool<ZoneUnit.SkillState>.AllocAutoRelease())
  191. {
  192. actor.GetSkillStatus(list);
  193. foreach (var skill in list)
  194. {
  195. ToolStripButton tb = new ToolStripButton(i.ToString());
  196. tb.DisplayStyle = ToolStripItemDisplayStyle.Text;
  197. tb.ToolTipText = skill.Data.ToString();
  198. tb.Tag = skill;
  199. tb.BackColor = Color.Black;
  200. tb.ForeColor = Color.White;
  201. tb.Click += new EventHandler((o, e) =>
  202. {
  203. if (SelectedZoneObject != null)
  204. {
  205. actor.SendUnitLaunchSkill(skill.Data.ID, SelectedZoneObject.ObjectID);
  206. }
  207. else
  208. {
  209. actor.SendUnitLaunchSkill(skill.Data.ID, mouseX, mouseY);
  210. }
  211. });
  212. toolStripActorSkills.Items.Add(tb);
  213. i++;
  214. }
  215. }
  216. }
  217. protected virtual void setSelectedObject(ZoneObject obj)
  218. {
  219. propertyGrid_selected.SelectedObject = obj;
  220. if (obj != null)
  221. {
  222. lbl_selected.Text = obj.Name;
  223. }
  224. else
  225. {
  226. lbl_selected.Text = "";
  227. }
  228. }
  229. #endregion
  230. //---------------------------------------------------------------------------------------
  231. #region PictureBoxEvents
  232. // timer 2 for render system
  233. protected virtual void timerUpdate_Tick(object sender, EventArgs e)
  234. {
  235. pictureBox1.Refresh();
  236. btnTurbo.Text = "加速x" + TurboX;
  237. if ((!this.Visible) || (this.WindowState == FormWindowState.Minimized))
  238. {
  239. world.Pause = true;
  240. }
  241. else
  242. {
  243. world.Pause = !(btn_Play.Checked || step1);
  244. step1 = false;
  245. }
  246. }
  247. protected virtual void pictureBox1_MouseDown(object sender, MouseEventArgs e)
  248. {
  249. pictureBox1.Focus();
  250. try
  251. {
  252. pic_lastMouesDown = new Vector2(e.Location.X, e.Location.Y);
  253. if (world != null)
  254. {
  255. float wx = mouseX = world.screenToWorldX(e.X);
  256. float wy = mouseY = world.screenToWorldY(e.Y);
  257. pic_lastCameraPos = new Vector2(world.CameraX, world.CameraY);
  258. if (e.Button == MouseButtons.Left)
  259. {
  260. if (Keyboard.IsShiftDown)
  261. {
  262. if (world.Client.Actor != null)
  263. world.Client.Actor.SendUnitLaunchNormalAttack(wx, wy);
  264. }
  265. else
  266. {
  267. DisplayLayerObject selected = world.PickObject(wx, wy);
  268. ZoneItem item = pictureBox1_CheckPickItem();
  269. if (item != null)
  270. {
  271. if (world.Client.Actor != null)
  272. {
  273. world.Client.Actor.SendUnitPickObject(item.ObjectID);
  274. }
  275. setSelectedObject(item);
  276. }
  277. else if (selected is DisplayGameUnit)
  278. {
  279. if (world.Client.Actor != null)
  280. {
  281. DisplayGameUnit su = selected as DisplayGameUnit;
  282. if (su.Data.Force != world.Client.Actor.Force)
  283. {
  284. world.Client.Actor.SendUnitFocuseTarget(selected.ObjectID);
  285. }
  286. else
  287. {
  288. world.Client.Actor.SendUnitPickObject(selected.ObjectID);
  289. }
  290. }
  291. setSelectedObject((selected as DisplayGameUnit).Data);
  292. }
  293. else if (selected is DisplayGameItem)
  294. {
  295. if (world.Client.Actor != null)
  296. {
  297. world.Client.Actor.SendUnitPickObject(selected.ObjectID);
  298. }
  299. setSelectedObject((selected as DisplayGameItem).Data);
  300. }
  301. else if (selected is DisplayGameSpell)
  302. {
  303. setSelectedObject((selected as DisplayGameSpell).Data);
  304. }
  305. else
  306. {
  307. setSelectedObject(null);
  308. }
  309. }
  310. }
  311. else if (e.Button == MouseButtons.Right)
  312. {
  313. if (world.Client.Actor != null)
  314. {
  315. if (Keyboard.GetKeyState(Keys.A))
  316. {
  317. if (world.Client.Actor.IsGuard)
  318. {
  319. world.Client.Actor.SendUnitAttackMoveTo(wx, wy, true);
  320. }
  321. else
  322. {
  323. world.Client.Actor.AddAgent(new ActorMoveAgent(wx, wy, world.CellW / 10f));
  324. }
  325. }
  326. else if (world.Client.Actor.IsGuard)
  327. {
  328. world.Client.Actor.SendUnitAttackMoveTo(wx, wy, false);
  329. }
  330. else
  331. {
  332. world.Client.Actor.SendUnitAxis(
  333. mouseX - world.Client.Actor.X,
  334. mouseY - world.Client.Actor.Y);
  335. }
  336. }
  337. }
  338. }
  339. }
  340. catch (Exception err)
  341. {
  342. Console.WriteLine(err.Message);
  343. }
  344. }
  345. protected virtual void pictureBox1_MouseMove(object sender, MouseEventArgs e)
  346. {
  347. try
  348. {
  349. if (world != null)
  350. {
  351. float wx = mouseX = world.screenToWorldX(e.X);
  352. float wy = mouseY = world.screenToWorldY(e.Y);
  353. if (world.Client.Actor == null || this.IsFreeView)
  354. {
  355. if (e.Button == System.Windows.Forms.MouseButtons.Right)
  356. {
  357. if (pic_lastMouesDown != null)
  358. {
  359. float x = pic_lastCameraPos.X + world.screenToWorldSizeX(pic_lastMouesDown.X - e.X);
  360. float y = pic_lastCameraPos.Y + world.screenToWorldSizeY(pic_lastMouesDown.Y - e.Y);
  361. world.setCamera(x, y);
  362. }
  363. }
  364. }
  365. if (world.Client.Actor != null)
  366. {
  367. if (Keyboard.IsShiftDown)
  368. {
  369. world.Client.Actor.SendUnitFaceTo(wx, wy);
  370. }
  371. if (e.Button == MouseButtons.Left)
  372. {
  373. }
  374. else if (e.Button == MouseButtons.Right)
  375. {
  376. if (world.Client.Actor.IsGuard)
  377. {
  378. //world.Client.Actor.SendUnitMove(wx, wy);
  379. }
  380. else
  381. {
  382. world.Client.Actor.SendUnitAxis((float)Math.Atan2(
  383. mouseY - world.Client.Actor.Y,
  384. mouseX - world.Client.Actor.X));
  385. }
  386. }
  387. pictureBox1_CheckPickItem();
  388. }
  389. }
  390. }
  391. catch (Exception err)
  392. {
  393. Console.WriteLine(err.Message);
  394. }
  395. }
  396. protected virtual void pictureBox1_MouseUp(object sender, MouseEventArgs e)
  397. {
  398. try
  399. {
  400. pic_lastMouesDown = null;
  401. pic_lastCameraPos = null;
  402. if (world != null && world.Client.Actor != null)
  403. {
  404. if (world.Client.Actor.IsGuard)
  405. {
  406. }
  407. else
  408. {
  409. world.Client.Actor.SendUnitStopMove();
  410. }
  411. }
  412. }
  413. catch (Exception err)
  414. {
  415. Console.WriteLine(err.Message);
  416. }
  417. }
  418. protected virtual void pictureBox1_MouseWheel(object sender, MouseEventArgs e)
  419. {
  420. if (world != null)
  421. {
  422. try
  423. {
  424. int d = CMath.getDirect(e.Delta);
  425. if (d > 0)
  426. {
  427. float newD = world.getCameraScale() * 1.1f;
  428. world.setCameraScale(newD, newD);
  429. }
  430. else if (d < 0)
  431. {
  432. float newD = world.getCameraScale() / 1.1f;
  433. world.setCameraScale(newD, newD);
  434. }
  435. }
  436. catch (Exception err)
  437. {
  438. Console.WriteLine(err.Message);
  439. }
  440. }
  441. }
  442. protected virtual void pictureBox1_KeyDown(object sender, KeyEventArgs e)
  443. {
  444. try
  445. {
  446. if (world != null)
  447. {
  448. if (e.KeyCode == Keys.Space)
  449. {
  450. btn_Step_Click(btn_Step, e);
  451. }
  452. else
  453. {
  454. if (world.Client.Actor != null)
  455. {
  456. if (e.Shift)
  457. {
  458. world.ActorUseItem(e);
  459. }
  460. else
  461. {
  462. if (SelectedZoneObject != null)
  463. {
  464. world.ActorLaunchSkill(e, SelectedZoneObject);
  465. }
  466. else
  467. {
  468. world.ActorLaunchSkill(e, mouseX, mouseY);
  469. }
  470. }
  471. }
  472. }
  473. }
  474. }
  475. catch (Exception err)
  476. {
  477. Console.WriteLine(err.Message);
  478. }
  479. }
  480. protected virtual void pictureBox1_Paint(object sender, PaintEventArgs e)
  481. {
  482. if (world != null)
  483. {
  484. try
  485. {
  486. long curTime = CUtils.CurrentTimeMS;
  487. int intervalMS = (int)Math.Min(curTime - lastUpdateTimeMS, timer2.Interval);
  488. lastUpdateTimeMS = curTime;
  489. world.update(intervalMS, TurboX);
  490. world.setWindow(new RectangleF(0, 0, pictureBox1.Width, pictureBox1.Height));
  491. if (world.Layer.Actor != null)
  492. {
  493. world.setCamera(world.Layer.Actor.X, world.Layer.Actor.Y);
  494. }
  495. if (!chkNoRender.Checked)
  496. {
  497. world.render(e.Graphics);
  498. }
  499. pictureBox1_CheckPickItem();
  500. }
  501. catch (Exception err)
  502. {
  503. timer2.Stop();
  504. MessageBox.Show(err.Message + "\n" + err.StackTrace);
  505. }
  506. }
  507. }
  508. protected virtual ZoneItem pictureBox1_CheckPickItem()
  509. {
  510. if (world.Battle.Actor != null)
  511. {
  512. pictureBox1.Cursor = Cursors.Default;
  513. ZoneItem item = world.Battle.Layer.GetNearPickableItem(world.Battle.Actor);
  514. if (item != null)
  515. {
  516. if (CMath.includeRoundPoint(item.X, item.Y, item.Info.BodySize, mouseX, mouseY))
  517. {
  518. pictureBox1.Cursor = Cursors.Hand;
  519. return item;
  520. }
  521. }
  522. }
  523. return null;
  524. }
  525. #endregion
  526. //------------------------------------------------------------------------------------
  527. #region MenuEvents
  528. protected virtual void btn_SkipClientEvent_Click(object sender, EventArgs e)
  529. {
  530. if (world != null)
  531. {
  532. world.SkipClientEvent();
  533. }
  534. }
  535. protected virtual void btn_Stop_Click(object sender, EventArgs e)
  536. {
  537. if (btn_Play.Checked)
  538. {
  539. }
  540. }
  541. protected virtual void btn_Step_Click(object sender, EventArgs e)
  542. {
  543. if (btn_Play.Checked)
  544. {
  545. btn_Play.Checked = false;
  546. }
  547. step1 = true;
  548. }
  549. protected virtual void btn_AutoAttack_Click(object sender, EventArgs e)
  550. {
  551. if (world != null && world.Client.Actor != null)
  552. {
  553. world.Client.Actor.SendUnitGuard(btn_AutoAttack.Checked);
  554. }
  555. }
  556. protected virtual void btn_IsAutoFocusTarget_ToolStripMenuItem_Click(object sender, EventArgs e)
  557. {
  558. if (world.Layer.Actor != null)
  559. {
  560. world.Layer.Actor.IsSkillAutoFocusTarget = btn_IsAutoFocusTarget.Checked;
  561. }
  562. }
  563. protected virtual void btn_CleanBuff_Click(object sender, EventArgs e)
  564. {
  565. if (world.Layer.Actor != null)
  566. {
  567. using (var list = ListObjectPool<ZoneUnit.BuffState>.AllocAutoRelease())
  568. {
  569. world.Layer.Actor.GetBuffStatus(list);
  570. foreach (ZoneUnit.BuffState bs in list)
  571. {
  572. world.Layer.Actor.SendCancelBuff(bs.Data.ID);
  573. }
  574. }
  575. }
  576. }
  577. protected virtual void pickUnitToolStripMenuItem_Click(object sender, EventArgs e)
  578. {
  579. if (world != null && world.Client.Actor != null)
  580. {
  581. if (world.SelectedObject != null && world.SelectedObject is DisplayGameUnit)
  582. {
  583. DisplayGameUnit su = world.SelectedObject as DisplayGameUnit;
  584. world.Client.Actor.SendUnitPickObject(su.ObjectID);
  585. }
  586. }
  587. }
  588. protected virtual void item_SyncMode_Click(object sender, EventArgs e)
  589. {
  590. ToolStripButton item = sender as ToolStripButton;
  591. if (item != null)
  592. {
  593. world.Layer.ActorSyncMode = (SyncMode)item.Tag;
  594. }
  595. foreach (ToolStripButton btn in drop_SyncMode.DropDownItems)
  596. {
  597. btn.Checked = ((SyncMode)btn.Tag == world.Layer.ActorSyncMode);
  598. }
  599. }
  600. #endregion
  601. //------------------------------------------------------------------------------------
  602. #region QuestEmulate
  603. protected virtual void btn_QuestAccpetR2B_Click(object sender, EventArgs e)
  604. {
  605. if (world.Battle.Actor != null)
  606. {
  607. string quest = G2DTextDialog.Show("任务ID", "模拟【游戏服->】接取任务");
  608. if (quest != null)
  609. {
  610. Zone.QuestAdapter.OnQuestAcceptedHandler(world.Battle.Actor.PlayerUUID, quest);
  611. }
  612. }
  613. }
  614. protected virtual void btn_QuestStatusChangeR2B_Click(object sender, EventArgs e)
  615. {
  616. if (world.Battle.Actor != null)
  617. {
  618. string quest = G2DTextDialog.Show("任务ID\r\nKey\r\nValue", "模拟【游戏服->】任务状态改变");
  619. if (quest != null)
  620. {
  621. string[] kvs = quest.Split(new char[] { '\n' }, 3, StringSplitOptions.RemoveEmptyEntries);
  622. if (kvs.Length >= 3)
  623. {
  624. Zone.QuestAdapter.OnQuestStatusChangedHandler(world.Battle.Actor.PlayerUUID, kvs[0], kvs[1], kvs[2]);
  625. }
  626. }
  627. }
  628. }
  629. protected virtual void btn_QuestCommitR2B_Click(object sender, EventArgs e)
  630. {
  631. if (world.Battle.Actor != null)
  632. {
  633. string quest = G2DTextDialog.Show("任务ID", "模拟【游戏服->】提交任务");
  634. if (quest != null)
  635. {
  636. Zone.QuestAdapter.OnQuestCommittedHandler(world.Battle.Actor.PlayerUUID, quest);
  637. }
  638. }
  639. }
  640. protected virtual void btn_QuestDropR2B_Click(object sender, EventArgs e)
  641. {
  642. if (world.Battle.Actor != null)
  643. {
  644. string quest = G2DTextDialog.Show("任务ID", "模拟【游戏服->】放弃任务");
  645. if (quest != null)
  646. {
  647. Zone.QuestAdapter.OnQuestDroppedHandler(world.Battle.Actor.PlayerUUID, quest);
  648. }
  649. }
  650. }
  651. #endregion
  652. //------------------------------------------------------------------------------------
  653. #region Turbo
  654. private void btn_1X_Click(object sender, EventArgs e)
  655. {
  656. TurboX = 1;
  657. }
  658. private void btn_2X_Click(object sender, EventArgs e)
  659. {
  660. TurboX = 2;
  661. }
  662. private void btn_3X_Click(object sender, EventArgs e)
  663. {
  664. TurboX = 3;
  665. }
  666. private void btn_4X_Click(object sender, EventArgs e)
  667. {
  668. TurboX = 4;
  669. }
  670. private void btn_5X_Click(object sender, EventArgs e)
  671. {
  672. TurboX = 5;
  673. }
  674. private void btn_10X_Click(object sender, EventArgs e)
  675. {
  676. TurboX = 10;
  677. }
  678. private void btn_0_5X_Click(object sender, EventArgs e)
  679. {
  680. TurboX = 0.5f;
  681. }
  682. private void btn_0_1X_Click(object sender, EventArgs e)
  683. {
  684. TurboX = 0.1f;
  685. }
  686. private void gCToolStripMenuItem_Click(object sender, EventArgs e)
  687. {
  688. System.GC.Collect();
  689. }
  690. private void btn_TurboX_ToolStripMenuItem_Click(object sender, EventArgs e)
  691. {
  692. string turbo = G2DTextDialog.Show(TurboX.ToString(), "设置加速倍率");
  693. float turbox = 1;
  694. if (turbo != null && float.TryParse(turbo, out turbox))
  695. {
  696. this.TurboX = turbox;
  697. }
  698. }
  699. #endregion
  700. //------------------------------------------------------------------------------------
  701. }
  702. }