UIFactory.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Xml;
  6. using CommonUI.Display.Text;
  7. using UnityEngine;
  8. using UnityEngine.UI;
  9. namespace CommonUnity3D.UGUI
  10. {
  11. public class UIFactory
  12. {
  13. static UIFactory()
  14. {
  15. new UIFactory();
  16. }
  17. public static UIFactory Instance { get; private set; }
  18. private UGUIAttributedStringDecoder mTextDecoder = new UGUIAttributedStringDecoder();
  19. private Font mDefaultFont;
  20. private int mDefaultFontBestFitMin;
  21. private int mDefaultFontBestFitMax;
  22. private Vector2 mDefaultCaretSize = new Vector2(2, 16);
  23. private TextGenerator mDefaultTextGenerator;
  24. protected UIFactory()
  25. {
  26. Instance = this;
  27. mDefaultTextGenerator = new TextGenerator();
  28. mDefaultFontBestFitMin = 12;
  29. mDefaultFontBestFitMax = 22;
  30. }
  31. public virtual Font DefaultFont
  32. {
  33. get
  34. {
  35. if (mDefaultFont == null)
  36. {
  37. Debug.LogWarning("UIFactory DefaultFont is null, create new Font();");
  38. mDefaultFont = new Font();
  39. }
  40. return mDefaultFont;
  41. }
  42. protected set
  43. {
  44. mDefaultFont = value;
  45. }
  46. }
  47. public virtual TextGenerator DefaultTextGenerator
  48. {
  49. get { return mDefaultTextGenerator; }
  50. }
  51. public int DefaultFontBestFitMin
  52. {
  53. get { return mDefaultFontBestFitMin; }
  54. set { mDefaultFontBestFitMin = value; }
  55. }
  56. public int DefaultFontBestFitMax
  57. {
  58. get { return mDefaultFontBestFitMax; }
  59. set { mDefaultFontBestFitMax = value; }
  60. }
  61. public Vector2 DefaultCaretSize
  62. {
  63. get { return mDefaultCaretSize; }
  64. set { mDefaultCaretSize = value; }
  65. }
  66. virtual public AttributedString DecodeAttributedString(XmlDocument doc, TextAttribute defaultTA = null)
  67. {
  68. return mTextDecoder.CreateFromXML(doc, defaultTA);
  69. }
  70. virtual public AttributedString DecodeAttributedString(string doc, TextAttribute defaultTA = null)
  71. {
  72. return mTextDecoder.CreateFromXML(doc, defaultTA);
  73. }
  74. virtual public UGUIRichTextLayer CreateRichTextLayer(DisplayNode parent, bool use_bitmap)
  75. {
  76. return new UGUIRichTextLayer(parent, use_bitmap);
  77. }
  78. }
  79. public class UGUIAttributedStringDecoder : AttributedStringDecoder
  80. {
  81. public override AttributedString CreateFromXML(string text, TextAttribute defaultTA = null)
  82. {
  83. return base.CreateFromXML(text, defaultTA);
  84. }
  85. protected override void DecodeAttribute(XmlElement node, XmlAttribute x_attr, TextAttribute attr)
  86. {
  87. base.DecodeAttribute(node, x_attr, attr);
  88. }
  89. #region TextConvert
  90. public const string UGUI_COLOR = "<color=";
  91. public const string UGUI_SIZE = "<size=";
  92. public const string UGUI_BOLD = "<b";
  93. public const string UGUI_ITALIC = "<i";
  94. private static string[][] color_map =
  95. {
  96. new string[] {"aqua" , "ff00ffff" } ,
  97. new string[] {"black" , "ff000000" } ,
  98. new string[] {"blue" , "ff0000ff" } ,
  99. new string[] {"brown" , "ffa52a2a" } ,
  100. new string[] {"cyan" , "ff00ffff" } ,
  101. new string[] {"darkblue" , "ff0000a0" } ,
  102. new string[] {"fuchsia" , "ffff00ff" } ,
  103. new string[] {"green" , "ff008000" } ,
  104. new string[] {"grey" , "ff808080" } ,
  105. new string[] {"lightblue", "ffadd8e6" } ,
  106. new string[] {"lime" , "ff00ff00" } ,
  107. new string[] {"magenta" , "ffff00ff" } ,
  108. new string[] {"maroon" , "ff800000" } ,
  109. new string[] {"navy" , "ff000080" } ,
  110. new string[] {"olive" , "ff808000" } ,
  111. new string[] {"orange" , "ffffa500" } ,
  112. new string[] {"purple" , "ff800080" } ,
  113. new string[] {"red" , "ffff0000" } ,
  114. new string[] {"silver" , "ffc0c0c0" } ,
  115. new string[] {"teal" , "ff008080" } ,
  116. new string[] {"white" , "ffffffff" } ,
  117. new string[] {"yellow" , "ffffff00" } ,
  118. };
  119. public delegate void Replace(ref string prefix, ref string value);
  120. static private bool TryReplaceUGUI(ref string text, ref int index, string prefix, Replace replace)
  121. {
  122. int color_begin = text.IndexOf(prefix, index);
  123. if (color_begin >= 0)
  124. {
  125. int end = text.IndexOf('>', color_begin);
  126. if (end >= 0)
  127. {
  128. int fs = color_begin + prefix.Length;
  129. string value = text.Substring(fs, end - fs);
  130. replace(ref prefix, ref value);
  131. string field = prefix + value;
  132. index = color_begin + field.Length + 1;
  133. text = text.Substring(0, color_begin) + field + text.Substring(end);
  134. return true;
  135. }
  136. }
  137. return false;
  138. }
  139. static private void ReplaceColor(ref string prefix, ref string value)
  140. {
  141. prefix = "<color " + prefix.Substring(1, prefix.Length - 1);
  142. if (value.StartsWith("#"))
  143. {
  144. string aa = value.Substring(value.Length - 2, 2);
  145. value = "\"" + aa + value.Substring(1, value.Length - 3) + "\"";
  146. return;
  147. }
  148. else
  149. {
  150. for (int i = color_map.Length - 1; i >= 0; --i)
  151. {
  152. if (value == color_map[i][0])
  153. {
  154. value = "\"" + color_map[i][1] + "\"";
  155. return;
  156. }
  157. }
  158. }
  159. }
  160. static private void ReplaceSize(ref string prefix, ref string value)
  161. {
  162. prefix = "<size " + prefix.Substring(1, prefix.Length - 1);
  163. value = "\"" + value + "\"";
  164. }
  165. static private void ReplaceBold(ref string prefix, ref string value)
  166. {
  167. prefix = "<b style=";
  168. value = "\"1\"";
  169. }
  170. static private void ReplaceItalic(ref string prefix, ref string value)
  171. {
  172. prefix = "<i style=";
  173. value = "\"2\"";
  174. }
  175. public static string UnityRichTextToXmlText(string text)
  176. {
  177. int pos = 0;
  178. while (TryReplaceUGUI(ref text, ref pos, UGUI_COLOR, ReplaceColor)) { }
  179. pos = 0;
  180. while (TryReplaceUGUI(ref text, ref pos, UGUI_SIZE, ReplaceSize)) { }
  181. pos = 0;
  182. while (TryReplaceUGUI(ref text, ref pos, UGUI_BOLD, ReplaceBold)) { }
  183. pos = 0;
  184. while (TryReplaceUGUI(ref text, ref pos, UGUI_ITALIC, ReplaceItalic)) { }
  185. return "<text>" + text + "</text>";
  186. }
  187. #endregion
  188. }
  189. }