FormAstar.Designer.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. namespace GameEditorPlugin.Tools
  2. {
  3. partial class FormAstar
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAstar));
  29. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  30. this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
  31. this.resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  32. this.btn_LoadScene = new System.Windows.Forms.ToolStripMenuItem();
  33. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  34. this.toolStripDropDownButton2 = new System.Windows.Forms.ToolStripDropDownButton();
  35. this.btn_FreeMove = new System.Windows.Forms.ToolStripMenuItem();
  36. this.btn_Optimize = new System.Windows.Forms.ToolStripMenuItem();
  37. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  38. this.toolStripDropDownButton3 = new System.Windows.Forms.ToolStripDropDownButton();
  39. this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
  40. this.btn_FillTerrain = new System.Windows.Forms.ToolStripButton();
  41. this.btn_CleanTerrain = new System.Windows.Forms.ToolStripButton();
  42. this.com_FillTerrainSize = new System.Windows.Forms.ToolStripComboBox();
  43. this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
  44. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  45. this.displayTerrainPanel1 = new GameEditorPlugin.Win32.DisplayTerrainPanel();
  46. this.num_OptimizePathLimit = new System.Windows.Forms.NumericUpDown();
  47. this.label1 = new System.Windows.Forms.Label();
  48. this.num_EnableSpaceDivDistance = new System.Windows.Forms.NumericUpDown();
  49. this.label4 = new System.Windows.Forms.Label();
  50. this.num_SpaceDivDistance = new System.Windows.Forms.NumericUpDown();
  51. this.label3 = new System.Windows.Forms.Label();
  52. this.gCToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  53. this.toolStrip1.SuspendLayout();
  54. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  55. this.splitContainer1.Panel1.SuspendLayout();
  56. this.splitContainer1.Panel2.SuspendLayout();
  57. this.splitContainer1.SuspendLayout();
  58. ((System.ComponentModel.ISupportInitialize)(this.num_OptimizePathLimit)).BeginInit();
  59. ((System.ComponentModel.ISupportInitialize)(this.num_EnableSpaceDivDistance)).BeginInit();
  60. ((System.ComponentModel.ISupportInitialize)(this.num_SpaceDivDistance)).BeginInit();
  61. this.SuspendLayout();
  62. //
  63. // toolStrip1
  64. //
  65. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  66. this.toolStripDropDownButton1,
  67. this.toolStripSeparator1,
  68. this.toolStripDropDownButton2,
  69. this.toolStripSeparator2,
  70. this.toolStripDropDownButton3,
  71. this.toolStripSeparator4,
  72. this.btn_FillTerrain,
  73. this.btn_CleanTerrain,
  74. this.com_FillTerrainSize,
  75. this.toolStripSeparator3});
  76. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  77. this.toolStrip1.Name = "toolStrip1";
  78. this.toolStrip1.Size = new System.Drawing.Size(1280, 25);
  79. this.toolStrip1.TabIndex = 1;
  80. this.toolStrip1.Text = "toolStrip1";
  81. //
  82. // toolStripDropDownButton1
  83. //
  84. this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  85. this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  86. this.resetToolStripMenuItem,
  87. this.btn_LoadScene,
  88. this.gCToolStripMenuItem});
  89. this.toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image")));
  90. this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  91. this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
  92. this.toolStripDropDownButton1.Size = new System.Drawing.Size(54, 22);
  93. this.toolStripDropDownButton1.Text = "Menu";
  94. //
  95. // resetToolStripMenuItem
  96. //
  97. this.resetToolStripMenuItem.Name = "resetToolStripMenuItem";
  98. this.resetToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F3;
  99. this.resetToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  100. this.resetToolStripMenuItem.Text = "随机地图";
  101. this.resetToolStripMenuItem.Click += new System.EventHandler(this.resetToolStripMenuItem_Click);
  102. //
  103. // btn_LoadScene
  104. //
  105. this.btn_LoadScene.Name = "btn_LoadScene";
  106. this.btn_LoadScene.Size = new System.Drawing.Size(152, 22);
  107. this.btn_LoadScene.Text = "加载场景文件";
  108. this.btn_LoadScene.Click += new System.EventHandler(this.btn_LoadScene_Click);
  109. //
  110. // toolStripSeparator1
  111. //
  112. this.toolStripSeparator1.Name = "toolStripSeparator1";
  113. this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
  114. //
  115. // toolStripDropDownButton2
  116. //
  117. this.toolStripDropDownButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  118. this.toolStripDropDownButton2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  119. this.btn_FreeMove,
  120. this.btn_Optimize});
  121. this.toolStripDropDownButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton2.Image")));
  122. this.toolStripDropDownButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
  123. this.toolStripDropDownButton2.Name = "toolStripDropDownButton2";
  124. this.toolStripDropDownButton2.Size = new System.Drawing.Size(67, 22);
  125. this.toolStripDropDownButton2.Text = "Settings";
  126. //
  127. // btn_FreeMove
  128. //
  129. this.btn_FreeMove.Checked = true;
  130. this.btn_FreeMove.CheckOnClick = true;
  131. this.btn_FreeMove.CheckState = System.Windows.Forms.CheckState.Checked;
  132. this.btn_FreeMove.Name = "btn_FreeMove";
  133. this.btn_FreeMove.Size = new System.Drawing.Size(148, 22);
  134. this.btn_FreeMove.Text = "鼠标跟踪寻路";
  135. //
  136. // btn_Optimize
  137. //
  138. this.btn_Optimize.Checked = true;
  139. this.btn_Optimize.CheckOnClick = true;
  140. this.btn_Optimize.CheckState = System.Windows.Forms.CheckState.Checked;
  141. this.btn_Optimize.Name = "btn_Optimize";
  142. this.btn_Optimize.Size = new System.Drawing.Size(148, 22);
  143. this.btn_Optimize.Text = "优化路径";
  144. //
  145. // toolStripSeparator2
  146. //
  147. this.toolStripSeparator2.Name = "toolStripSeparator2";
  148. this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
  149. //
  150. // toolStripDropDownButton3
  151. //
  152. this.toolStripDropDownButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  153. this.toolStripDropDownButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton3.Image")));
  154. this.toolStripDropDownButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
  155. this.toolStripDropDownButton3.Name = "toolStripDropDownButton3";
  156. this.toolStripDropDownButton3.Size = new System.Drawing.Size(52, 22);
  157. this.toolStripDropDownButton3.Text = "Show";
  158. //
  159. // toolStripSeparator4
  160. //
  161. this.toolStripSeparator4.Name = "toolStripSeparator4";
  162. this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
  163. //
  164. // btn_FillTerrain
  165. //
  166. this.btn_FillTerrain.CheckOnClick = true;
  167. this.btn_FillTerrain.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  168. this.btn_FillTerrain.Image = ((System.Drawing.Image)(resources.GetObject("btn_FillTerrain.Image")));
  169. this.btn_FillTerrain.ImageTransparentColor = System.Drawing.Color.Magenta;
  170. this.btn_FillTerrain.Name = "btn_FillTerrain";
  171. this.btn_FillTerrain.Size = new System.Drawing.Size(23, 22);
  172. this.btn_FillTerrain.Text = "Fill Terrain";
  173. this.btn_FillTerrain.Click += new System.EventHandler(this.btn_FillTerrain_Click);
  174. //
  175. // btn_CleanTerrain
  176. //
  177. this.btn_CleanTerrain.CheckOnClick = true;
  178. this.btn_CleanTerrain.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  179. this.btn_CleanTerrain.Image = ((System.Drawing.Image)(resources.GetObject("btn_CleanTerrain.Image")));
  180. this.btn_CleanTerrain.ImageTransparentColor = System.Drawing.Color.Magenta;
  181. this.btn_CleanTerrain.Name = "btn_CleanTerrain";
  182. this.btn_CleanTerrain.Size = new System.Drawing.Size(23, 22);
  183. this.btn_CleanTerrain.Text = "Clean Terrain";
  184. this.btn_CleanTerrain.Click += new System.EventHandler(this.btn_CleanTerrain_Click);
  185. //
  186. // com_FillTerrainSize
  187. //
  188. this.com_FillTerrainSize.Items.AddRange(new object[] {
  189. "1",
  190. "2",
  191. "3",
  192. "4",
  193. "5",
  194. "6",
  195. "7",
  196. "8",
  197. "9",
  198. "10",
  199. "20",
  200. "30",
  201. "40",
  202. "50"});
  203. this.com_FillTerrainSize.Name = "com_FillTerrainSize";
  204. this.com_FillTerrainSize.Size = new System.Drawing.Size(75, 25);
  205. this.com_FillTerrainSize.Text = "5";
  206. //
  207. // toolStripSeparator3
  208. //
  209. this.toolStripSeparator3.Name = "toolStripSeparator3";
  210. this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
  211. //
  212. // splitContainer1
  213. //
  214. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  215. this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
  216. this.splitContainer1.Location = new System.Drawing.Point(0, 25);
  217. this.splitContainer1.Name = "splitContainer1";
  218. //
  219. // splitContainer1.Panel1
  220. //
  221. this.splitContainer1.Panel1.Controls.Add(this.displayTerrainPanel1);
  222. //
  223. // splitContainer1.Panel2
  224. //
  225. this.splitContainer1.Panel2.Controls.Add(this.num_OptimizePathLimit);
  226. this.splitContainer1.Panel2.Controls.Add(this.label1);
  227. this.splitContainer1.Panel2.Controls.Add(this.num_EnableSpaceDivDistance);
  228. this.splitContainer1.Panel2.Controls.Add(this.label4);
  229. this.splitContainer1.Panel2.Controls.Add(this.num_SpaceDivDistance);
  230. this.splitContainer1.Panel2.Controls.Add(this.label3);
  231. this.splitContainer1.Size = new System.Drawing.Size(1280, 828);
  232. this.splitContainer1.SplitterDistance = 1071;
  233. this.splitContainer1.TabIndex = 2;
  234. //
  235. // displayTerrainPanel1
  236. //
  237. this.displayTerrainPanel1.Display = null;
  238. this.displayTerrainPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  239. this.displayTerrainPanel1.ForeColor = System.Drawing.Color.Cornsilk;
  240. this.displayTerrainPanel1.FPS = 30;
  241. this.displayTerrainPanel1.Location = new System.Drawing.Point(0, 0);
  242. this.displayTerrainPanel1.Name = "displayTerrainPanel1";
  243. this.displayTerrainPanel1.Size = new System.Drawing.Size(1071, 828);
  244. this.displayTerrainPanel1.TabIndex = 0;
  245. this.displayTerrainPanel1.PictureBoxMouseDown += new System.Windows.Forms.MouseEventHandler(this.displayTerrainPanel1_PictureBoxMouseDown);
  246. this.displayTerrainPanel1.PictureBoxMouseUp += new System.Windows.Forms.MouseEventHandler(this.displayTerrainPanel1_PictureBoxMouseUp);
  247. this.displayTerrainPanel1.PictureBoxMouseMove += new System.Windows.Forms.MouseEventHandler(this.displayTerrainPanel1_PictureBoxMouseMove);
  248. //
  249. // num_OptimizePathLimit
  250. //
  251. this.num_OptimizePathLimit.Location = new System.Drawing.Point(32, 157);
  252. this.num_OptimizePathLimit.Maximum = new decimal(new int[] {
  253. 1000000,
  254. 0,
  255. 0,
  256. 0});
  257. this.num_OptimizePathLimit.Minimum = new decimal(new int[] {
  258. 1,
  259. 0,
  260. 0,
  261. 0});
  262. this.num_OptimizePathLimit.Name = "num_OptimizePathLimit";
  263. this.num_OptimizePathLimit.Size = new System.Drawing.Size(120, 21);
  264. this.num_OptimizePathLimit.TabIndex = 9;
  265. this.num_OptimizePathLimit.Value = new decimal(new int[] {
  266. 4,
  267. 0,
  268. 0,
  269. 0});
  270. this.num_OptimizePathLimit.ValueChanged += new System.EventHandler(this.num_OptimizePathLimit_ValueChanged);
  271. //
  272. // label1
  273. //
  274. this.label1.AutoSize = true;
  275. this.label1.Location = new System.Drawing.Point(30, 142);
  276. this.label1.Name = "label1";
  277. this.label1.Size = new System.Drawing.Size(149, 12);
  278. this.label1.TabIndex = 8;
  279. this.label1.Text = "启用优化路径空间分割距离";
  280. //
  281. // num_EnableSpaceDivDistance
  282. //
  283. this.num_EnableSpaceDivDistance.Location = new System.Drawing.Point(32, 97);
  284. this.num_EnableSpaceDivDistance.Maximum = new decimal(new int[] {
  285. 1000000,
  286. 0,
  287. 0,
  288. 0});
  289. this.num_EnableSpaceDivDistance.Minimum = new decimal(new int[] {
  290. 1,
  291. 0,
  292. 0,
  293. 0});
  294. this.num_EnableSpaceDivDistance.Name = "num_EnableSpaceDivDistance";
  295. this.num_EnableSpaceDivDistance.Size = new System.Drawing.Size(120, 21);
  296. this.num_EnableSpaceDivDistance.TabIndex = 7;
  297. this.num_EnableSpaceDivDistance.Value = new decimal(new int[] {
  298. 4,
  299. 0,
  300. 0,
  301. 0});
  302. this.num_EnableSpaceDivDistance.ValueChanged += new System.EventHandler(this.num_EnableSpaceDivDistance_ValueChanged);
  303. //
  304. // label4
  305. //
  306. this.label4.AutoSize = true;
  307. this.label4.Location = new System.Drawing.Point(30, 82);
  308. this.label4.Name = "label4";
  309. this.label4.Size = new System.Drawing.Size(101, 12);
  310. this.label4.TabIndex = 6;
  311. this.label4.Text = "启用空间分割距离";
  312. //
  313. // num_SpaceDivDistance
  314. //
  315. this.num_SpaceDivDistance.Location = new System.Drawing.Point(32, 40);
  316. this.num_SpaceDivDistance.Name = "num_SpaceDivDistance";
  317. this.num_SpaceDivDistance.Size = new System.Drawing.Size(120, 21);
  318. this.num_SpaceDivDistance.TabIndex = 5;
  319. this.num_SpaceDivDistance.Value = new decimal(new int[] {
  320. 9,
  321. 0,
  322. 0,
  323. 0});
  324. this.num_SpaceDivDistance.ValueChanged += new System.EventHandler(this.num_SpaceDivDistance_ValueChanged);
  325. //
  326. // label3
  327. //
  328. this.label3.AutoSize = true;
  329. this.label3.Location = new System.Drawing.Point(30, 25);
  330. this.label3.Name = "label3";
  331. this.label3.Size = new System.Drawing.Size(77, 12);
  332. this.label3.TabIndex = 4;
  333. this.label3.Text = "空间分割尺寸";
  334. //
  335. // gCToolStripMenuItem
  336. //
  337. this.gCToolStripMenuItem.Name = "gCToolStripMenuItem";
  338. this.gCToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  339. this.gCToolStripMenuItem.Text = "GC";
  340. this.gCToolStripMenuItem.Click += new System.EventHandler(this.gCToolStripMenuItem_Click);
  341. //
  342. // FormAstar
  343. //
  344. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  345. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  346. this.ClientSize = new System.Drawing.Size(1280, 853);
  347. this.Controls.Add(this.splitContainer1);
  348. this.Controls.Add(this.toolStrip1);
  349. this.Name = "FormAstar";
  350. this.Text = "FormAstar";
  351. this.Load += new System.EventHandler(this.FormAstar_Load);
  352. this.toolStrip1.ResumeLayout(false);
  353. this.toolStrip1.PerformLayout();
  354. this.splitContainer1.Panel1.ResumeLayout(false);
  355. this.splitContainer1.Panel2.ResumeLayout(false);
  356. this.splitContainer1.Panel2.PerformLayout();
  357. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  358. this.splitContainer1.ResumeLayout(false);
  359. ((System.ComponentModel.ISupportInitialize)(this.num_OptimizePathLimit)).EndInit();
  360. ((System.ComponentModel.ISupportInitialize)(this.num_EnableSpaceDivDistance)).EndInit();
  361. ((System.ComponentModel.ISupportInitialize)(this.num_SpaceDivDistance)).EndInit();
  362. this.ResumeLayout(false);
  363. this.PerformLayout();
  364. }
  365. #endregion
  366. private GameEditorPlugin.Win32.DisplayTerrainPanel displayTerrainPanel1;
  367. private System.Windows.Forms.ToolStrip toolStrip1;
  368. private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton1;
  369. private System.Windows.Forms.ToolStripMenuItem resetToolStripMenuItem;
  370. private System.Windows.Forms.ToolStripMenuItem btn_LoadScene;
  371. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  372. private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton2;
  373. private System.Windows.Forms.ToolStripMenuItem btn_FreeMove;
  374. private System.Windows.Forms.ToolStripMenuItem btn_Optimize;
  375. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  376. private System.Windows.Forms.ToolStripButton btn_FillTerrain;
  377. private System.Windows.Forms.ToolStripComboBox com_FillTerrainSize;
  378. private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
  379. private System.Windows.Forms.ToolStripButton btn_CleanTerrain;
  380. private System.Windows.Forms.SplitContainer splitContainer1;
  381. private System.Windows.Forms.NumericUpDown num_OptimizePathLimit;
  382. private System.Windows.Forms.Label label1;
  383. private System.Windows.Forms.NumericUpDown num_EnableSpaceDivDistance;
  384. private System.Windows.Forms.Label label4;
  385. private System.Windows.Forms.NumericUpDown num_SpaceDivDistance;
  386. private System.Windows.Forms.Label label3;
  387. private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton3;
  388. private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
  389. private System.Windows.Forms.ToolStripMenuItem gCToolStripMenuItem;
  390. }
  391. }