UIEditorMeta.cs 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219
  1. using CommonLang;
  2. using CommonLang.IO;
  3. using CommonLang.Net;
  4. using CommonLang.Xml;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.IO;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Xml;
  11. namespace CommonUI.Data
  12. {
  13. public class UIEditorMeta
  14. {
  15. public const string UERoot_ClassName = "com.g2d.studio.ui.edit.gui.UERoot";
  16. public const string UEButton_ClassName = "com.g2d.studio.ui.edit.gui.UEButton";
  17. public const string UEToggleButton_ClassName = "com.g2d.studio.ui.edit.gui.UEToggleButton";
  18. public const string UEImageBox_ClassName = "com.g2d.studio.ui.edit.gui.UEImageBox";
  19. public const string UELabel_ClassName = "com.g2d.studio.ui.edit.gui.UELabel";
  20. public const string UECanvas_ClassName = "com.g2d.studio.ui.edit.gui.UECanvas";
  21. public const string UETextInput_ClassName = "com.g2d.studio.ui.edit.gui.UETextInput";
  22. public const string UETextInputMultiline_ClassName = "com.g2d.studio.ui.edit.gui.UETextInputMultiline";
  23. public const string UETextBox_ClassName = "com.g2d.studio.ui.edit.gui.UETextBox";
  24. public const string UETextBoxHtml_ClassName = "com.g2d.studio.ui.edit.gui.UETextBoxHtml";
  25. public const string UEFileNode_ClassName = "com.g2d.studio.ui.edit.gui.UEFileNode";
  26. public const string UEScrollPan_ClassName = "com.g2d.studio.ui.edit.gui.UEScrollPan";
  27. public const string UEGauge_ClassName = "com.g2d.studio.ui.edit.gui.UEGauge";
  28. public const string UECheckBox_ClassName = "com.g2d.studio.ui.edit.gui.UECheckBox";
  29. public static readonly UIEditorMetaExternalizableFactory ExternalizableFactory = new UIEditorMetaExternalizableFactory();
  30. public static UIComponentMeta CreateComponent(string name)
  31. {
  32. switch (name)
  33. {
  34. case UERoot_ClassName: return new UERootMeta();
  35. case UEButton_ClassName: return new UETextButtonMeta();
  36. case UEToggleButton_ClassName: return new UEToggleButtonMeta();
  37. case UEImageBox_ClassName: return new UEImageBoxMeta();
  38. case UECheckBox_ClassName: return new UECheckBoxMeta();
  39. case UELabel_ClassName: return new UELabelMeta();
  40. case UECanvas_ClassName: return new UECanvasMeta();
  41. case UEGauge_ClassName: return new UEGaugeMeta();
  42. case UEFileNode_ClassName: return new UEFileNodeMeta();
  43. case UEScrollPan_ClassName: return new UEScrollPanMeta();
  44. case UETextBox_ClassName: return new UETextBoxMeta();
  45. case UETextBoxHtml_ClassName: return new UETextBoxHtmlMeta();
  46. case UETextInput_ClassName: return new UETextInputMeta();
  47. case UETextInputMultiline_ClassName: return new UETextInputMultilineMeta();
  48. default: return new UECanvasMeta();
  49. }
  50. }
  51. public static UIComponentMeta CreateFromXml(XmlDocument xml)
  52. {
  53. return CreateFromXml(xml.DocumentElement);
  54. }
  55. public static UIComponentMeta CreateFromXml(XmlNode xml)
  56. {
  57. UIComponentMeta ui = CreateComponent(xml.Name);
  58. if (ui != null)
  59. {
  60. ui.DecodeFromXML(xml);
  61. }
  62. return ui;
  63. }
  64. public static UILayoutMeta CreateLayout(XmlNode e)
  65. {
  66. if (e != null)
  67. {
  68. UILayoutMeta layout = new UILayoutMeta();
  69. layout.DecodeFromXML(e);
  70. return layout;
  71. }
  72. return null;
  73. }
  74. public static UIComponentMeta CreateFromStream(Stream stream)
  75. {
  76. InputStream input = new InputStream(stream, ExternalizableFactory);
  77. object ret = input.GetExtAny();
  78. return ret as UIComponentMeta;
  79. }
  80. public static void SaveToBin(UIComponentMeta meta, Stream stream)
  81. {
  82. OutputStream output = new OutputStream(stream, ExternalizableFactory);
  83. output.PutExt(meta);
  84. stream.Flush();
  85. }
  86. public static UIComponentMeta CreateFromBin(byte[] data)
  87. {
  88. using (MemoryStream bais = new MemoryStream(data))
  89. {
  90. return CreateFromStream(bais);
  91. }
  92. }
  93. public static byte[] SaveToBin(UIComponentMeta meta)
  94. {
  95. using (MemoryStream bais = new MemoryStream())
  96. {
  97. SaveToBin(meta, bais);
  98. return bais.ToArray();
  99. }
  100. }
  101. }
  102. public class UIEditorMetaExternalizableFactory : IExternalizableFactory
  103. {
  104. public const int UILayoutMeta_TypeID = 1;
  105. public const int UERoot_TypeID = 2;
  106. public const int UEButton_TypeID = 3;
  107. public const int UEToggleButton_TypeID = 4;
  108. public const int UEImageBox_TypeID = 5;
  109. public const int UELabel_TypeID = 6;
  110. public const int UECanvas_TypeID = 7;
  111. public const int UETextInput_TypeID = 8;
  112. public const int UETextInputMultiline_TypeID = 15;
  113. public const int UETextBox_TypeID = 9;
  114. public const int UETextBoxHtml_TypeID = 10;
  115. public const int UEFileNode_TypeID = 11;
  116. public const int UEScrollPan_TypeID = 12;
  117. public const int UEGauge_TypeID = 13;
  118. public const int UECheckBox_TypeID = 14;
  119. private HashMap<int, Type> MapIDToType = new HashMap<int, Type>();
  120. private HashMap<Type, int> MapTypeToID = new HashMap<Type, int>();
  121. public UIEditorMetaExternalizableFactory()
  122. {
  123. this.Regist(typeof(UILayoutMeta), UILayoutMeta_TypeID);
  124. this.Regist(typeof(UERootMeta), UERoot_TypeID);
  125. this.Regist(typeof(UETextButtonMeta), UEButton_TypeID);
  126. this.Regist(typeof(UEToggleButtonMeta), UEToggleButton_TypeID);
  127. this.Regist(typeof(UEImageBoxMeta), UEImageBox_TypeID);
  128. this.Regist(typeof(UELabelMeta), UELabel_TypeID);
  129. this.Regist(typeof(UECanvasMeta), UECanvas_TypeID);
  130. this.Regist(typeof(UETextInputMeta), UETextInput_TypeID);
  131. this.Regist(typeof(UETextInputMultilineMeta), UETextInputMultiline_TypeID);
  132. this.Regist(typeof(UETextBoxMeta), UETextBox_TypeID);
  133. this.Regist(typeof(UETextBoxHtmlMeta), UETextBoxHtml_TypeID);
  134. this.Regist(typeof(UEFileNodeMeta), UEFileNode_TypeID);
  135. this.Regist(typeof(UEScrollPanMeta), UEScrollPan_TypeID);
  136. this.Regist(typeof(UEGaugeMeta), UEGauge_TypeID);
  137. this.Regist(typeof(UECheckBoxMeta), UECheckBox_TypeID);
  138. }
  139. private void Regist(Type type, int id)
  140. {
  141. MapTypeToID.Add(type, id);
  142. MapIDToType.Add(id, type);
  143. }
  144. public int GetTypeID(Type type)
  145. {
  146. int ret;
  147. if (!MapTypeToID.TryGetValue(type, out ret))
  148. {
  149. throw new Exception("Can not resolve Type : " + type.FullName);
  150. }
  151. return ret;
  152. }
  153. public Type GetType(int id)
  154. {
  155. Type ret;
  156. if (!MapIDToType.TryGetValue(id, out ret))
  157. {
  158. throw new Exception("Can not resolve ID : " + id);
  159. }
  160. return ret;
  161. }
  162. }
  163. //----------------------------------------------------------------------------------------------------------
  164. public class UILayoutMeta : IExternalizable
  165. {
  166. public UILayoutStyle Style;
  167. public uint BackColorARGB;
  168. public uint BorderColorARGB;
  169. public int ClipSize;
  170. public bool Repeat;
  171. public string ImageName;
  172. public string AtlasName;
  173. public string SpriteName;
  174. public virtual void DecodeFromXML(XmlNode e)
  175. {
  176. this.Style = UILayoutStyle.NULL;
  177. string value;
  178. if (XmlUtil.TryGetAttribute(e, "style", out value))
  179. {
  180. this.Style = (UILayoutStyle)Enum.Parse(typeof(UILayoutStyle), value);
  181. }
  182. if (XmlUtil.TryGetAttribute(e, "bgc", out value))
  183. {
  184. this.BackColorARGB = uint.Parse(value, System.Globalization.NumberStyles.HexNumber);
  185. }
  186. if (XmlUtil.TryGetAttribute(e, "bdc", out value))
  187. {
  188. this.BorderColorARGB = uint.Parse(value, System.Globalization.NumberStyles.HexNumber);
  189. }
  190. if (XmlUtil.TryGetAttribute(e, "clip", out value))
  191. {
  192. this.ClipSize = int.Parse(value);
  193. }
  194. if (XmlUtil.TryGetAttribute(e, "repeat", out value))
  195. {
  196. this.Repeat = bool.Parse(value);
  197. }
  198. this.ImageName = XmlUtil.GetAttribute(e, "img");
  199. this.AtlasName = XmlUtil.GetAttribute(e, "atlas");
  200. this.SpriteName = XmlUtil.GetAttribute(e, "sprite");
  201. }
  202. public void WriteExternal(IOutputStream output)
  203. {
  204. output.PutEnum32(Style);
  205. output.PutU32(BackColorARGB);
  206. output.PutU32(BorderColorARGB);
  207. output.PutS32(ClipSize);
  208. output.PutBool(Repeat);
  209. output.PutUTF(ImageName);
  210. output.PutUTF(AtlasName);
  211. output.PutUTF(SpriteName);
  212. }
  213. public void ReadExternal(IInputStream input)
  214. {
  215. this.Style = input.GetEnum32<UILayoutStyle>();
  216. this.BackColorARGB = input.GetU32();
  217. this.BorderColorARGB = input.GetU32();
  218. this.ClipSize = input.GetS32();
  219. this.Repeat = input.GetBool();
  220. this.ImageName = input.GetUTF();
  221. this.AtlasName = input.GetUTF();
  222. this.SpriteName = input.GetUTF();
  223. }
  224. }
  225. /// <summary>
  226. /// 控件
  227. /// </summary>
  228. public class UIComponentMeta : IExternalizable
  229. {
  230. public UIComponentMeta Parent { get; private set; }
  231. public string ClassName;
  232. public string EditorName;
  233. public float X;
  234. public float Y;
  235. public float Width;
  236. public float Height;
  237. public bool Visible;
  238. public string UserData;
  239. public int UserTag;
  240. public UILayoutMeta Layout;
  241. public UILayoutMeta DisableLayout;
  242. public bool Enable;
  243. public bool EnableChilds;
  244. public UIAnchor EditorAnchor;
  245. public string Attributes;
  246. public List<UIComponentMeta> Childs = new List<UIComponentMeta>(1);
  247. private Properties m_AttributeMap;
  248. public string GetAttribute(string key)
  249. {
  250. return GetAttributsMap().Get(key);
  251. }
  252. public Properties GetAttributsMap()
  253. {
  254. if (m_AttributeMap == null)
  255. {
  256. m_AttributeMap = new Properties();
  257. string[] texts = this.Attributes.Split(';');
  258. foreach(string s in texts){
  259. m_AttributeMap.ParseText(s, "=");
  260. }
  261. // m_AttributeMap.ParseText(this.Attributes, "=");
  262. }
  263. return m_AttributeMap;
  264. }
  265. public virtual void DecodeFromXML(XmlNode e)
  266. {
  267. this.ClassName = e.Name;
  268. this.Width = float.Parse(e.Attributes["width"].Value);
  269. this.Height = float.Parse(e.Attributes["height"].Value);
  270. this.X = float.Parse(e.Attributes["x"].Value);
  271. this.Y = float.Parse(e.Attributes["y"].Value);
  272. this.Visible = bool.Parse(e.Attributes["visible"].Value);
  273. this.EditorName = e.Attributes["name"].Value;
  274. this.UserData = e.Attributes["userData"].Value;
  275. this.UserTag = int.Parse(e.Attributes["userTag"].Value);
  276. this.Layout = UIEditorMeta.CreateLayout(XmlUtil.FindChild(e, "layout"));
  277. this.DisableLayout = UIEditorMeta.CreateLayout(XmlUtil.FindChild(e, "disable_layout"));
  278. this.Enable = bool.Parse(e.Attributes["enable"].Value);
  279. this.EnableChilds = bool.Parse(e.Attributes["enable_childs"].Value);
  280. this.Attributes = XmlUtil.GetAttribute(e, "Attributes");
  281. string uiAnchor = XmlUtil.GetAttribute(e, "uiAnchor");
  282. if (uiAnchor != null)
  283. {
  284. this.EditorAnchor = (UIAnchor)Enum.Parse(typeof(UIAnchor), uiAnchor, true);
  285. }
  286. XmlNode childs = XmlUtil.FindChild(e, "childs");
  287. if (childs != null)
  288. {
  289. int len = childs.ChildNodes.Count;
  290. for (int i = 0; i < len; ++i)
  291. {
  292. XmlNode child = (XmlNode)childs.ChildNodes[i];
  293. UIComponentMeta cui = UIEditorMeta.CreateFromXml(child);
  294. if (cui != null)
  295. {
  296. cui.Parent = this;
  297. this.Childs.Add(cui);
  298. }
  299. }
  300. }
  301. }
  302. public virtual void WriteExternal(IOutputStream output)
  303. {
  304. output.PutUTF(ClassName);
  305. output.PutUTF(EditorName);
  306. output.PutF32(X);
  307. output.PutF32(Y);
  308. output.PutF32(Width);
  309. output.PutF32(Height);
  310. output.PutBool(Visible);
  311. output.PutUTF(UserData);
  312. output.PutS32(UserTag);
  313. output.PutExt(Layout);
  314. output.PutExt(DisableLayout);
  315. output.PutBool(Enable);
  316. output.PutBool(EnableChilds);
  317. output.PutEnum32(EditorAnchor);
  318. output.PutUTF(Attributes);
  319. output.PutList<UIComponentMeta>(Childs, output.PutExt);
  320. }
  321. public virtual void ReadExternal(IInputStream input)
  322. {
  323. this.ClassName = input.GetUTF();
  324. this.EditorName = input.GetUTF();
  325. this.X = input.GetF32();
  326. this.Y = input.GetF32();
  327. this.Width = input.GetF32();
  328. this.Height = input.GetF32();
  329. this.Visible = input.GetBool();
  330. this.UserData = input.GetUTF();
  331. this.UserTag = input.GetS32();
  332. this.Layout = input.GetExt<UILayoutMeta>();
  333. this.DisableLayout = input.GetExt<UILayoutMeta>();
  334. this.Enable = input.GetBool();
  335. this.EnableChilds = input.GetBool();
  336. this.EditorAnchor = input.GetEnum32<UIAnchor>();
  337. this.Attributes = input.GetUTF();
  338. this.Childs = input.GetListAny<UIComponentMeta>();
  339. for (int i = 0; i < Childs.Count; ++i)
  340. {
  341. Childs[i].Parent = this;
  342. }
  343. }
  344. public T FindChildAs<T>(Predicate<T> select, bool recursive = true) where T : UIComponentMeta
  345. {
  346. foreach (UIComponentMeta ui in Childs)
  347. {
  348. if ((ui is T) && select(ui as T))
  349. {
  350. return (ui as T);
  351. }
  352. }
  353. if (recursive)
  354. {
  355. foreach (UIComponentMeta ui in Childs)
  356. {
  357. T ret = ui.FindChildAs<T>(select, recursive);
  358. if (ret != null)
  359. {
  360. return ret;
  361. }
  362. }
  363. }
  364. return null;
  365. }
  366. public T FindChildByName<T>(string name, bool recursive = true) where T : UIComponentMeta
  367. {
  368. Predicate<T> select = (t) =>
  369. {
  370. return string.Equals(name, t.EditorName);
  371. };
  372. return FindChildAs<T>(select, recursive);
  373. }
  374. }
  375. //----------------------------------------------------------------------------------------------------------
  376. /// <summary>
  377. /// 编辑器根节点
  378. /// </summary>
  379. public class UERootMeta : UIComponentMeta { }
  380. /// <summary>
  381. /// 编辑器容器
  382. /// </summary>
  383. public class UECanvasMeta : UIComponentMeta { }
  384. //----------------------------------------------------------------------------------------------------------
  385. /// <summary>
  386. /// 图片框
  387. /// </summary>
  388. public class UEImageBoxMeta : UIComponentMeta
  389. {
  390. public string imagePath;
  391. public string imageAtlas;
  392. public float x_rotate, x_scaleX, x_scaleY;
  393. public override void DecodeFromXML(XmlNode e)
  394. {
  395. base.DecodeFromXML(e);
  396. this.Decode_Image(e);
  397. }
  398. protected virtual void Decode_Image(XmlNode e)
  399. {
  400. this.imagePath = XmlUtil.GetAttribute(e, "imagePath");
  401. this.imageAtlas = XmlUtil.GetAttribute(e, "imageAtlas");
  402. string value;
  403. if (XmlUtil.TryGetAttribute(e, "x_rotate", out value))
  404. {
  405. this.x_rotate = float.Parse(value);
  406. }
  407. if (XmlUtil.TryGetAttribute(e, "x_scaleX", out value))
  408. {
  409. this.x_scaleX = float.Parse(value);
  410. }
  411. if (XmlUtil.TryGetAttribute(e, "x_scaleY", out value))
  412. {
  413. this.x_scaleY = float.Parse(value);
  414. }
  415. }
  416. public override void WriteExternal(IOutputStream output)
  417. {
  418. base.WriteExternal(output);
  419. output.PutUTF(imagePath);
  420. output.PutUTF(imageAtlas);
  421. output.PutF32(x_rotate);
  422. output.PutF32(x_scaleX);
  423. output.PutF32(x_scaleY);
  424. }
  425. public override void ReadExternal(IInputStream input)
  426. {
  427. base.ReadExternal(input);
  428. this.imagePath = input.GetUTF();
  429. this.imageAtlas = input.GetUTF();
  430. this.x_rotate = input.GetF32();
  431. this.x_scaleX = input.GetF32();
  432. this.x_scaleY = input.GetF32();
  433. }
  434. }
  435. //----------------------------------------------------------------------------------------------------------
  436. /// <summary>
  437. /// 文本输入框
  438. /// </summary>
  439. public abstract class UETextInputBaseMeta : UIComponentMeta
  440. {
  441. public string Text;
  442. public string textFontName;
  443. public FontStyle textFontStyle;
  444. public int textFontSize;
  445. public uint textColor;
  446. public bool isPassword;
  447. public override void DecodeFromXML(XmlNode e)
  448. {
  449. base.DecodeFromXML(e);
  450. this.Decode_Text(e);
  451. }
  452. private void Decode_Text(XmlNode e)
  453. {
  454. string value;
  455. if (XmlUtil.TryGetAttribute(e, "textFont", out value))
  456. {
  457. string[] info = value.Split(',');
  458. this.textFontName = info[0];
  459. this.textFontSize = int.Parse(info[1]);
  460. this.textFontStyle = (FontStyle)Enum.ToObject(typeof(FontStyle), int.Parse(info[2]));
  461. }
  462. if (XmlUtil.TryGetAttribute(e, "textFontSize", out value))
  463. {
  464. this.textFontSize = int.Parse(value);
  465. }
  466. if (XmlUtil.TryGetAttribute(e, "textColor", out value))
  467. {
  468. this.textColor = uint.Parse(value, System.Globalization.NumberStyles.HexNumber);
  469. }
  470. if (XmlUtil.TryGetAttribute(e, "isPassword", out value))
  471. {
  472. this.isPassword = bool.Parse(value);
  473. }
  474. this.Text = XmlUtil.GetAttribute(e, "Text");
  475. }
  476. public override void WriteExternal(IOutputStream output)
  477. {
  478. base.WriteExternal(output);
  479. output.PutUTF(Text);
  480. output.PutUTF(textFontName);
  481. output.PutEnum32(textFontStyle);
  482. output.PutS32(textFontSize);
  483. output.PutU32(textColor);
  484. output.PutBool(isPassword);
  485. }
  486. public override void ReadExternal(IInputStream input)
  487. {
  488. base.ReadExternal(input);
  489. this.Text = input.GetUTF();
  490. this.textFontName = input.GetUTF();
  491. this.textFontStyle = input.GetEnum32<FontStyle>();
  492. this.textFontSize = input.GetS32();
  493. this.textColor = input.GetU32();
  494. this.isPassword = input.GetBool();
  495. }
  496. }
  497. public class UETextInputMeta : UETextInputBaseMeta
  498. {
  499. }
  500. public class UETextInputMultilineMeta : UETextInputBaseMeta
  501. {
  502. }
  503. //----------------------------------------------------------------------------------------------------------
  504. /// <summary>
  505. /// 多行文本
  506. /// </summary>
  507. abstract public class UETextBoxBaseMeta : UIComponentMeta
  508. {
  509. public int text_size;
  510. public uint textColor;
  511. public uint text_shadow_dcolor;
  512. public float text_shadow_alpha;
  513. public float text_shadow_x, text_shadow_y;
  514. public override void DecodeFromXML(XmlNode e)
  515. {
  516. base.DecodeFromXML(e);
  517. this.Decode_Text(e);
  518. }
  519. private void Decode_Text(XmlNode e)
  520. {
  521. string value;
  522. if (XmlUtil.TryGetAttribute(e, "text_size", out value))
  523. {
  524. this.text_size = int.Parse(value);
  525. }
  526. if (XmlUtil.TryGetAttribute(e, "textColor", out value))
  527. {
  528. this.textColor = uint.Parse(value, System.Globalization.NumberStyles.HexNumber);
  529. }
  530. if (XmlUtil.TryGetAttribute(e, "text_shadow_x", out value))
  531. {
  532. this.text_shadow_x = float.Parse(value);
  533. }
  534. if (XmlUtil.TryGetAttribute(e, "text_shadow_y", out value))
  535. {
  536. this.text_shadow_y = float.Parse(value);
  537. }
  538. if (XmlUtil.TryGetAttribute(e, "text_shadow_dcolor", out value))
  539. {
  540. this.text_shadow_dcolor = uint.Parse(value, System.Globalization.NumberStyles.HexNumber);
  541. }
  542. if (XmlUtil.TryGetAttribute(e, "text_shadow_alpha", out value))
  543. {
  544. this.text_shadow_alpha = float.Parse(value);
  545. }
  546. }
  547. public override void WriteExternal(IOutputStream output)
  548. {
  549. base.WriteExternal(output);
  550. output.PutS32(text_size);
  551. output.PutU32(textColor);
  552. output.PutU32(text_shadow_dcolor);
  553. output.PutF32(text_shadow_alpha);
  554. output.PutF32(text_shadow_x);
  555. output.PutF32(text_shadow_y);
  556. }
  557. public override void ReadExternal(IInputStream input)
  558. {
  559. base.ReadExternal(input);
  560. this.text_size = input.GetS32();
  561. this.textColor = input.GetU32();
  562. this.text_shadow_dcolor = input.GetU32();
  563. this.text_shadow_alpha = input.GetF32();
  564. this.text_shadow_x = input.GetF32();
  565. this.text_shadow_y = input.GetF32();
  566. }
  567. }
  568. /// <summary>
  569. /// 普通多行文本
  570. /// </summary>
  571. public class UETextBoxMeta : UETextBoxBaseMeta
  572. {
  573. public string Text;
  574. public override void DecodeFromXML(XmlNode e)
  575. {
  576. base.DecodeFromXML(e);
  577. this.Text = XmlUtil.GetAttribute(e, "Text", false);
  578. }
  579. public override void WriteExternal(IOutputStream output)
  580. {
  581. base.WriteExternal(output);
  582. output.PutUTF(Text);
  583. }
  584. public override void ReadExternal(IInputStream input)
  585. {
  586. base.ReadExternal(input);
  587. this.Text = input.GetUTF();
  588. }
  589. }
  590. /// <summary>
  591. /// 多行富文本
  592. /// </summary>
  593. public class UETextBoxHtmlMeta : UETextBoxBaseMeta
  594. {
  595. public string HtmlText;
  596. public override void DecodeFromXML(XmlNode e)
  597. {
  598. base.DecodeFromXML(e);
  599. this.HtmlText = XmlUtil.GetAttribute(e, "HtmlText", false);
  600. }
  601. public override void WriteExternal(IOutputStream output)
  602. {
  603. base.WriteExternal(output);
  604. output.PutUTF(HtmlText);
  605. }
  606. public override void ReadExternal(IInputStream input)
  607. {
  608. base.ReadExternal(input);
  609. this.HtmlText = input.GetUTF();
  610. }
  611. }
  612. //----------------------------------------------------------------------------------------------------------
  613. /// <summary>
  614. /// 文件节点
  615. /// </summary>
  616. public class UEFileNodeMeta : UIComponentMeta
  617. {
  618. public string fileName;
  619. public override void DecodeFromXML(XmlNode e)
  620. {
  621. base.DecodeFromXML(e);
  622. this.fileName = e.Attributes["fileName"].Value;
  623. }
  624. public override void WriteExternal(IOutputStream output)
  625. {
  626. base.WriteExternal(output);
  627. output.PutUTF(fileName);
  628. }
  629. public override void ReadExternal(IInputStream input)
  630. {
  631. base.ReadExternal(input);
  632. this.fileName = input.GetUTF();
  633. }
  634. }
  635. //----------------------------------------------------------------------------------------------------------
  636. /// <summary>
  637. /// 滚动框
  638. /// </summary>
  639. public class UEScrollPanMeta : UIComponentMeta
  640. {
  641. public bool EnableElasticity;
  642. public bool EnableScrollH, EnableScrollV;
  643. public float BorderSize;
  644. public bool ShowSlider;
  645. public float scroll_fade_time_max;
  646. public UILayoutMeta layout_scroll_v, layout_scroll_h;
  647. public override void DecodeFromXML(XmlNode e)
  648. {
  649. base.DecodeFromXML(e);
  650. this.EnableElasticity = bool.Parse(e.Attributes["EnableElasticity"].Value);
  651. this.EnableScrollH = bool.Parse(e.Attributes["EnableScrollH"].Value);
  652. this.EnableScrollV = bool.Parse(e.Attributes["EnableScrollV"].Value);
  653. this.BorderSize = float.Parse(e.Attributes["BorderSize"].Value);
  654. this.ShowSlider = bool.Parse(e.Attributes["ShowSlider"].Value);
  655. this.scroll_fade_time_max = float.Parse(e.Attributes["scroll_fade_time_max"].Value);
  656. this.layout_scroll_v = UIEditorMeta.CreateLayout(XmlUtil.FindChild(e, "layout_scroll_v"));
  657. this.layout_scroll_h = UIEditorMeta.CreateLayout(XmlUtil.FindChild(e, "layout_scroll_h"));
  658. }
  659. public override void WriteExternal(IOutputStream output)
  660. {
  661. base.WriteExternal(output);
  662. output.PutBool(this.EnableElasticity);
  663. output.PutBool(this.EnableScrollH);
  664. output.PutBool(this.EnableScrollV);
  665. output.PutF32(this.BorderSize);
  666. output.PutBool(this.ShowSlider);
  667. output.PutF32(this.scroll_fade_time_max);
  668. output.PutExt(this.layout_scroll_v);
  669. output.PutExt(this.layout_scroll_h);
  670. }
  671. public override void ReadExternal(IInputStream input)
  672. {
  673. base.ReadExternal(input);
  674. this.EnableElasticity = input.GetBool();
  675. this.EnableScrollH = input.GetBool();
  676. this.EnableScrollV = input.GetBool();
  677. this.BorderSize = input.GetF32();
  678. this.ShowSlider = input.GetBool();
  679. this.scroll_fade_time_max = input.GetF32();
  680. this.layout_scroll_v = input.GetExt<UILayoutMeta>();
  681. this.layout_scroll_h = input.GetExt<UILayoutMeta>();
  682. }
  683. }
  684. //----------------------------------------------------------------------------------------------------------
  685. /// <summary>
  686. /// 抽象文本
  687. /// </summary>
  688. abstract public class UETextComponentMeta : UIComponentMeta
  689. {
  690. public string text;
  691. public TextAnchor text_anchor;
  692. public string textFontName;
  693. public FontStyle textFontStyle;
  694. public int textFontSize;
  695. public uint textColor;
  696. public uint textBorderColor;
  697. public float textBorderAlpha;
  698. public float text_offset_x, text_offset_y;
  699. public string ImageFont;
  700. public override void DecodeFromXML(XmlNode e)
  701. {
  702. base.DecodeFromXML(e);
  703. this.Decode_Text(e);
  704. }
  705. private void Decode_Text(XmlNode e)
  706. {
  707. this.text = XmlUtil.GetAttribute(e, "text", false);
  708. string value;
  709. if (XmlUtil.TryGetAttribute(e, "text_anchor", out value))
  710. {
  711. this.text_anchor = (TextAnchor)Enum.Parse(typeof(TextAnchor), value, true);
  712. }
  713. if (XmlUtil.TryGetAttribute(e, "textFont", out value))
  714. {
  715. string[] info = value.Split(',');
  716. this.textFontName = info[0];
  717. this.textFontSize = int.Parse(info[1]);
  718. this.textFontStyle = (FontStyle)Enum.ToObject(typeof(FontStyle), int.Parse(info[2]));
  719. }
  720. if (XmlUtil.TryGetAttribute(e, "textFontSize", out value))
  721. {
  722. this.textFontSize = int.Parse(value);
  723. }
  724. if (XmlUtil.TryGetAttribute(e, "textColor", out value))
  725. {
  726. this.textColor = uint.Parse(value, System.Globalization.NumberStyles.HexNumber);
  727. }
  728. if (XmlUtil.TryGetAttribute(e, "textBorderColor", out value))
  729. {
  730. this.textBorderColor = uint.Parse(value, System.Globalization.NumberStyles.HexNumber);
  731. }
  732. if (XmlUtil.TryGetAttribute(e, "textBorderAlpha", out value))
  733. {
  734. this.textBorderAlpha = float.Parse(value);
  735. }
  736. if (XmlUtil.TryGetAttribute(e, "text_offset_x", out value))
  737. {
  738. this.text_offset_x = float.Parse(value);
  739. }
  740. if (XmlUtil.TryGetAttribute(e, "text_offset_y", out value))
  741. {
  742. this.text_offset_y = float.Parse(value);
  743. }
  744. this.ImageFont = XmlUtil.GetAttribute(e, "ImageFont");
  745. }
  746. public override void WriteExternal(IOutputStream output)
  747. {
  748. base.WriteExternal(output);
  749. output.PutUTF(this.text);
  750. output.PutEnum32(this.text_anchor);
  751. output.PutUTF(this.textFontName);
  752. output.PutEnum32(this.textFontStyle);
  753. output.PutS32(this.textFontSize);
  754. output.PutU32(this.textColor);
  755. output.PutU32(this.textBorderColor);
  756. output.PutF32(this.textBorderAlpha);
  757. output.PutF32(this.text_offset_x);
  758. output.PutF32(this.text_offset_y);
  759. output.PutUTF(this.ImageFont);
  760. }
  761. public override void ReadExternal(IInputStream input)
  762. {
  763. base.ReadExternal(input);
  764. this.text = input.GetUTF();
  765. this.text_anchor = input.GetEnum32<TextAnchor>();
  766. this.textFontName = input.GetUTF();
  767. this.textFontStyle = input.GetEnum32<FontStyle>();
  768. this.textFontSize = input.GetS32();
  769. this.textColor = input.GetU32();
  770. this.textBorderColor = input.GetU32();
  771. this.textBorderAlpha = input.GetF32();
  772. this.text_offset_x = input.GetF32();
  773. this.text_offset_y = input.GetF32();
  774. this.ImageFont = input.GetUTF();
  775. }
  776. }
  777. /// <summary>
  778. /// 文本标签
  779. /// </summary>
  780. public class UELabelMeta : UETextComponentMeta
  781. {
  782. public override void DecodeFromXML(XmlNode e)
  783. {
  784. base.DecodeFromXML(e);
  785. }
  786. }
  787. /// <summary>
  788. /// 进度
  789. /// </summary>
  790. public class UEGaugeMeta : UETextComponentMeta
  791. {
  792. public double gaugeMax, gaugeMin, gaugeValue;
  793. public GaugeOrientation render_orientation;
  794. public bool showPercent;
  795. public UILayoutMeta custom_layout_up;
  796. public override void DecodeFromXML(XmlNode e)
  797. {
  798. base.DecodeFromXML(e);
  799. this.Decode_Gauge(e);
  800. }
  801. private void Decode_Gauge(XmlNode e)
  802. {
  803. string value;
  804. if (XmlUtil.TryGetAttribute(e, "gaugeMax", out value))
  805. {
  806. this.gaugeMax = double.Parse(value);
  807. }
  808. if (XmlUtil.TryGetAttribute(e, "gaugeMin", out value))
  809. {
  810. this.gaugeMin = double.Parse(value);
  811. }
  812. if (XmlUtil.TryGetAttribute(e, "gaugeValue", out value))
  813. {
  814. this.gaugeValue = double.Parse(value);
  815. }
  816. if (XmlUtil.TryGetAttribute(e, "render_orientation", out value))
  817. {
  818. this.render_orientation = (GaugeOrientation)Enum.Parse(typeof(GaugeOrientation), value, true);
  819. }
  820. if (XmlUtil.TryGetAttribute(e, "showPercent", out value))
  821. {
  822. this.showPercent = bool.Parse(value);
  823. }
  824. this.custom_layout_up = UIEditorMeta.CreateLayout(XmlUtil.FindChild(e, "custom_layout_up"));
  825. }
  826. public override void WriteExternal(IOutputStream output)
  827. {
  828. base.WriteExternal(output);
  829. output.PutF64(this.gaugeMax);
  830. output.PutF64(this.gaugeMin);
  831. output.PutF64(this.gaugeValue);
  832. output.PutEnum32(this.render_orientation);
  833. output.PutBool(this.showPercent);
  834. output.PutExt(this.custom_layout_up);
  835. }
  836. public override void ReadExternal(IInputStream input)
  837. {
  838. base.ReadExternal(input);
  839. this.gaugeMax = input.GetF64();
  840. this.gaugeMin = input.GetF64();
  841. this.gaugeValue = input.GetF64();
  842. this.render_orientation = input.GetEnum32<GaugeOrientation>();
  843. this.showPercent = input.GetBool();
  844. this.custom_layout_up = input.GetExt<UILayoutMeta>();
  845. }
  846. }
  847. /// <summary>
  848. /// 单选框
  849. /// </summary>
  850. public class UECheckBoxMeta : UETextComponentMeta
  851. {
  852. public bool is_checked;
  853. public string imagePathChecked, imagePathUnchecked;
  854. public string imageAtlasChecked, imageAtlasUnchecked;
  855. public ImageAnchor imageAnchor;
  856. public float imageOffsetX, imageOffsetY;
  857. public override void DecodeFromXML(XmlNode e)
  858. {
  859. base.DecodeFromXML(e);
  860. this.Decode_ImageText(e);
  861. string value;
  862. if (XmlUtil.TryGetAttribute(e, "checked", out value))
  863. {
  864. this.is_checked = bool.Parse(value);
  865. }
  866. }
  867. private void Decode_ImageText(XmlNode e)
  868. {
  869. string value;
  870. if (XmlUtil.TryGetAttribute(e, "imageAtlasUnchecked", out value))
  871. {
  872. this.imageAtlasUnchecked = value;
  873. }
  874. else if (XmlUtil.TryGetAttribute(e, "imagePathUnchecked", out value))
  875. {
  876. this.imagePathUnchecked = value;
  877. }
  878. if (XmlUtil.TryGetAttribute(e, "imageAtlasChecked", out value))
  879. {
  880. this.imageAtlasChecked = value;
  881. }
  882. else if (XmlUtil.TryGetAttribute(e, "imagePathChecked", out value))
  883. {
  884. this.imagePathChecked = value;
  885. }
  886. if (XmlUtil.TryGetAttribute(e, "imageAnchor", out value))
  887. {
  888. this.imageAnchor = (ImageAnchor)Enum.Parse(typeof(ImageAnchor), value, true);
  889. }
  890. if (XmlUtil.TryGetAttribute(e, "imageOffsetX", out value))
  891. {
  892. this.imageOffsetX = float.Parse(value);
  893. }
  894. if (XmlUtil.TryGetAttribute(e, "imageOffsetY", out value))
  895. {
  896. this.imageOffsetY = float.Parse(value);
  897. }
  898. }
  899. public override void WriteExternal(IOutputStream output)
  900. {
  901. base.WriteExternal(output);
  902. output.PutBool(this.is_checked);
  903. output.PutUTF(this.imagePathChecked);
  904. output.PutUTF(this.imagePathUnchecked);
  905. output.PutUTF(this.imageAtlasChecked);
  906. output.PutUTF(this.imageAtlasUnchecked);
  907. output.PutEnum32(this.imageAnchor);
  908. output.PutF32(this.imageOffsetX);
  909. output.PutF32(this.imageOffsetY);
  910. }
  911. public override void ReadExternal(IInputStream input)
  912. {
  913. base.ReadExternal(input);
  914. this.is_checked = input.GetBool();
  915. this.imagePathChecked = input.GetUTF();
  916. this.imagePathUnchecked = input.GetUTF();
  917. this.imageAtlasChecked = input.GetUTF();
  918. this.imageAtlasUnchecked = input.GetUTF();
  919. this.imageAnchor = input.GetEnum32<ImageAnchor>();
  920. this.imageOffsetX = input.GetF32();
  921. this.imageOffsetY = input.GetF32();
  922. }
  923. }
  924. //----------------------------------------------------------------------------------------------------------
  925. /// <summary>
  926. /// 抽象按钮
  927. /// </summary>
  928. abstract public class UEButtonMeta : UIComponentMeta
  929. {
  930. public UILayoutMeta layout_down;
  931. public string text;
  932. public string textDown;
  933. public TextAnchor text_anchor;
  934. public string textFontName;
  935. public FontStyle textFontStyle;
  936. public int textFontSize;
  937. public uint unfocusTextColor;
  938. public uint focusTextColor;
  939. public uint textBorderColor;
  940. public float textBorderAlpha;
  941. public float text_offset_x, text_offset_y;
  942. public string imageTextUp, imageTextDown;
  943. public string imageAtlasUp, imageAtlasDown;
  944. public ImageAnchor imageAnchor;
  945. public float imageOffsetX, imageOffsetY;
  946. public override void DecodeFromXML(XmlNode e)
  947. {
  948. base.DecodeFromXML(e);
  949. this.layout_down = UIEditorMeta.CreateLayout(XmlUtil.FindChild(e, "layout_down"));
  950. this.Decode_Text(e);
  951. this.Decode_ImageText(e);
  952. }
  953. private void Decode_Text(XmlNode e)
  954. {
  955. this.text = XmlUtil.GetAttribute(e, "text", false);
  956. this.textDown = XmlUtil.GetAttribute(e, "textDown", false);
  957. string value;
  958. if (XmlUtil.TryGetAttribute(e, "text_anchor", out value))
  959. {
  960. this.text_anchor = (TextAnchor)Enum.Parse(typeof(TextAnchor), value, true);
  961. }
  962. if (XmlUtil.TryGetAttribute(e, "textFont", out value))
  963. {
  964. string[] info = value.Split(',');
  965. this.textFontName = info[0];
  966. this.textFontSize = int.Parse(info[1]);
  967. this.textFontStyle = (FontStyle)Enum.ToObject(typeof(FontStyle), int.Parse(info[2]));
  968. }
  969. if (XmlUtil.TryGetAttribute(e, "textSize", out value))
  970. {
  971. this.textFontSize = int.Parse(value);
  972. }
  973. if (XmlUtil.TryGetAttribute(e, "unfocusTextColor", out value))
  974. {
  975. this.unfocusTextColor = uint.Parse(value, System.Globalization.NumberStyles.HexNumber);
  976. }
  977. if (XmlUtil.TryGetAttribute(e, "focusTextColor", out value))
  978. {
  979. this.focusTextColor = uint.Parse(value, System.Globalization.NumberStyles.HexNumber);
  980. }
  981. if (XmlUtil.TryGetAttribute(e, "textBorderColor", out value))
  982. {
  983. this.textBorderColor = uint.Parse(value, System.Globalization.NumberStyles.HexNumber);
  984. }
  985. if (XmlUtil.TryGetAttribute(e, "textBorderAlpha", out value))
  986. {
  987. this.textBorderAlpha = float.Parse(value);
  988. }
  989. if (XmlUtil.TryGetAttribute(e, "text_offset_x", out value))
  990. {
  991. this.text_offset_x = float.Parse(value);
  992. }
  993. if (XmlUtil.TryGetAttribute(e, "text_offset_y", out value))
  994. {
  995. this.text_offset_y = float.Parse(value);
  996. }
  997. }
  998. private void Decode_ImageText(XmlNode e)
  999. {
  1000. string value;
  1001. if (XmlUtil.TryGetAttribute(e, "imageAtlasUp", out value))
  1002. {
  1003. this.imageAtlasUp = value;
  1004. }
  1005. else if (XmlUtil.TryGetAttribute(e, "imageTextUp", out value))
  1006. {
  1007. this.imageTextUp = value;
  1008. }
  1009. if (XmlUtil.TryGetAttribute(e, "imageAtlasDown", out value))
  1010. {
  1011. this.imageAtlasDown = value;
  1012. }
  1013. else if (XmlUtil.TryGetAttribute(e, "imageTextDown", out value))
  1014. {
  1015. this.imageTextDown = value;
  1016. }
  1017. if (XmlUtil.TryGetAttribute(e, "imageAnchor", out value))
  1018. {
  1019. this.imageAnchor = (ImageAnchor)Enum.Parse(typeof(ImageAnchor), value, true);
  1020. }
  1021. if (XmlUtil.TryGetAttribute(e, "imageOffsetX", out value))
  1022. {
  1023. this.imageOffsetX = float.Parse(value);
  1024. }
  1025. if (XmlUtil.TryGetAttribute(e, "imageOffsetY", out value))
  1026. {
  1027. this.imageOffsetY = float.Parse(value);
  1028. }
  1029. }
  1030. public override void WriteExternal(IOutputStream output)
  1031. {
  1032. base.WriteExternal(output);
  1033. output.PutExt(layout_down);
  1034. output.PutUTF(text);
  1035. output.PutUTF(textDown);
  1036. output.PutEnum32(text_anchor);
  1037. output.PutUTF(textFontName);
  1038. output.PutEnum32(textFontStyle);
  1039. output.PutS32(textFontSize);
  1040. output.PutU32(unfocusTextColor);
  1041. output.PutU32(focusTextColor);
  1042. output.PutU32(textBorderColor);
  1043. output.PutF32(textBorderAlpha);
  1044. output.PutF32(text_offset_x);
  1045. output.PutF32(text_offset_y);
  1046. output.PutUTF(imageTextUp);
  1047. output.PutUTF(imageTextDown);
  1048. output.PutUTF(imageAtlasUp);
  1049. output.PutUTF(imageAtlasDown);
  1050. output.PutEnum32(imageAnchor);
  1051. output.PutF32(imageOffsetX);
  1052. output.PutF32(imageOffsetY);
  1053. }
  1054. public override void ReadExternal(IInputStream input)
  1055. {
  1056. base.ReadExternal(input);
  1057. layout_down = input.GetExt<UILayoutMeta>();
  1058. text = input.GetUTF();
  1059. textDown = input.GetUTF();
  1060. text_anchor = input.GetEnum32<TextAnchor>();
  1061. textFontName = input.GetUTF();
  1062. textFontStyle = input.GetEnum32<FontStyle>();
  1063. textFontSize = input.GetS32();
  1064. unfocusTextColor = input.GetU32();
  1065. focusTextColor = input.GetU32();
  1066. textBorderColor = input.GetU32();
  1067. textBorderAlpha = input.GetF32();
  1068. text_offset_x = input.GetF32();
  1069. text_offset_y = input.GetF32();
  1070. imageTextUp = input.GetUTF();
  1071. imageTextDown = input.GetUTF();
  1072. imageAtlasUp = input.GetUTF();
  1073. imageAtlasDown = input.GetUTF();
  1074. imageAnchor = input.GetEnum32<ImageAnchor>();
  1075. imageOffsetX = input.GetF32();
  1076. imageOffsetY = input.GetF32();
  1077. }
  1078. }
  1079. /// <summary>
  1080. /// 按钮
  1081. /// </summary>
  1082. public class UETextButtonMeta : UEButtonMeta
  1083. {
  1084. public override void DecodeFromXML(XmlNode e)
  1085. {
  1086. base.DecodeFromXML(e);
  1087. }
  1088. }
  1089. /// <summary>
  1090. /// 状态按钮
  1091. /// </summary>
  1092. public class UEToggleButtonMeta : UEButtonMeta
  1093. {
  1094. public bool isChecked;
  1095. public override void DecodeFromXML(XmlNode e)
  1096. {
  1097. base.DecodeFromXML(e);
  1098. string value;
  1099. if (XmlUtil.TryGetAttribute(e, "isChecked", out value))
  1100. {
  1101. this.isChecked = bool.Parse(value);
  1102. }
  1103. }
  1104. public override void WriteExternal(IOutputStream output)
  1105. {
  1106. base.WriteExternal(output);
  1107. output.PutBool(isChecked);
  1108. }
  1109. public override void ReadExternal(IInputStream input)
  1110. {
  1111. base.ReadExternal(input);
  1112. isChecked = input.GetBool();
  1113. }
  1114. }
  1115. //----------------------------------------------------------------------------------------------------------
  1116. }