SceneVarDialog.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using CommonAI.ZoneEditor;
  10. using CommonLang.Property;
  11. using CommonAI.Zone.ZoneEditor;
  12. using CommonAI.Zone.ZoneEditor.EventTrigger;
  13. using System.Reflection;
  14. using CommonLang;
  15. using CommonFroms.DescAttributeEdit;
  16. using CommonLang.Xml;
  17. using System.Collections;
  18. namespace CommonAIEditor.Scene
  19. {
  20. public partial class SceneVarDialog : Form
  21. {
  22. readonly private SceneEditor sceneEditor;
  23. readonly private SceneVarEditor varEdit;
  24. readonly private bool IsAdd;
  25. readonly private ZoneVar SrcVar;
  26. private ZoneVar mData;
  27. public ZoneVar Value
  28. {
  29. get
  30. {
  31. return mData;
  32. }
  33. }
  34. public SceneVarDialog(SceneEditor sedit, SceneVarEditor vedit, ZoneVar var = null)
  35. {
  36. InitializeComponent();
  37. this.varEdit = vedit;
  38. this.sceneEditor = sedit;
  39. this.IsAdd = var == null;
  40. this.SrcVar = var;
  41. this.comboBox1.Items.AddRange(AbstractValueTypeMap.DescTypes);
  42. if (var != null && var.Value != null)
  43. {
  44. this.mData = XmlUtil.CloneObject<ZoneVar>(var);
  45. this.comboBox1.Enabled = false;
  46. }
  47. else
  48. {
  49. this.mData = new ZoneVar();
  50. this.mData.Key = varEdit.GenVarKey();
  51. this.mData.Value = AbstractValueTypeMap.MakeDefault(typeof(IntegerValue));
  52. if (var != null)
  53. {
  54. this.mData.SyncToClient = var.SyncToClient;
  55. }
  56. }
  57. this.comboBox1.SelectedItem = AbstractValueTypeMap.GetBaseValueType(mData.Value.GetType());
  58. this.richTextBox1.Text = this.mData.Value.ToString();
  59. this.textBox1.Text = this.mData.Key;
  60. this.chk_Sync.Checked = this.mData.SyncToClient;
  61. this.comboBox1.SelectedIndexChanged +=new EventHandler(comboBox1_SelectedIndexChanged);
  62. this.textBox1.TextChanged +=new EventHandler(textBox1_TextChanged);
  63. }
  64. private void textBox1_TextChanged(object sender, EventArgs e)
  65. {
  66. string text = textBox1.Text.Trim();
  67. this.mData.Key = text;
  68. }
  69. private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
  70. {
  71. TypeDescAttribute baseType = this.comboBox1.SelectedItem as TypeDescAttribute;
  72. if (baseType != null)
  73. {
  74. this.mData.Value = AbstractValueTypeMap.MakeDefault(baseType.DataType);
  75. this.richTextBox1.Text = this.mData.Value.ToString();
  76. }
  77. }
  78. private void chk_Sync_CheckedChanged(object sender, EventArgs e)
  79. {
  80. this.mData.SyncToClient = chk_Sync.Checked;
  81. }
  82. private void SceneVarDialog_FormClosing(object sender, FormClosingEventArgs e)
  83. {
  84. if (this.DialogResult == System.Windows.Forms.DialogResult.OK)
  85. {
  86. string text = textBox1.Text.Trim();
  87. if (string.IsNullOrEmpty(text))
  88. {
  89. MessageBox.Show("名字不能为空");
  90. e.Cancel = true;
  91. }
  92. else if (IsAdd)
  93. {
  94. if (varEdit.ContainsVarKey(Value.Key))
  95. {
  96. MessageBox.Show("变量名重复");
  97. e.Cancel = true;
  98. }
  99. }
  100. else if (!Value.Key.Equals(SrcVar.Key))
  101. {
  102. if (varEdit.ContainsVarKey(Value.Key))
  103. {
  104. MessageBox.Show("变量名重复");
  105. e.Cancel = true;
  106. }
  107. }
  108. }
  109. }
  110. private void richTextBox1_Click(object sender, EventArgs e)
  111. {
  112. TypeDescAttribute baseType = this.comboBox1.SelectedItem as TypeDescAttribute;
  113. if (baseType != null)
  114. {
  115. object result = ValueTypeDialog.ShowEditDialog(this,
  116. string.Format("设置 {0} : 初始值", baseType.Desc),
  117. baseType.DataType,
  118. mData.Value,
  119. new SceneDataAdapters(sceneEditor));
  120. if (result != null)
  121. {
  122. this.mData.Value = result;
  123. this.richTextBox1.Text = result.ToString();
  124. }
  125. }
  126. }
  127. private void btn_OK_Click(object sender, EventArgs e)
  128. {
  129. }
  130. }
  131. }