TextLayer.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CommonUI.Gemo;
  5. using CommonLang.Concurrent;
  6. namespace CommonUI.Display
  7. {
  8. public enum FontStyle
  9. {
  10. STYLE_PLAIN = 0,
  11. STYLE_BOLD = 1,
  12. STYLE_ITALIC = 2,
  13. STYLE_UNDERLINED = 4,
  14. STYLE_BOLD_UNDERLINED = 5,
  15. STYLE_ITALIC_UNDERLINED = 6,
  16. STYLE_BOLD_ITALIC = 7,
  17. STYLE_BOLD_ITALIC_UNDERLINED = 8
  18. }
  19. public abstract class TextLayer : IDisposable
  20. {
  21. public static uint DefaultDisableTextColorRGBA = 0x808080FF;
  22. private static AtomicLong s_RefCount = new AtomicLong(0);
  23. private static AtomicLong s_AliveCount = new AtomicLong(0);
  24. public static long RefCount { get { return s_RefCount.Value; } }
  25. public static long AliveCount { get { return s_AliveCount.Value; } }
  26. private bool m_disposed = false;
  27. protected string mText = "";
  28. protected uint mFontColorRGBA = 0xffffffff;
  29. protected uint mBorderColorRGBA = 0x000000ff;
  30. protected int mBorderTime = 8;
  31. protected Size2D mExpectSize = null;
  32. protected int mFontSize;
  33. protected FontStyle mFontStyle;
  34. protected Size2D mBounds = new Size2D();
  35. protected bool isDirty = true;
  36. protected bool isEnable = true;
  37. public TextLayer(string t, int size, FontStyle style = FontStyle.STYLE_PLAIN)
  38. {
  39. s_RefCount++;
  40. s_AliveCount++;
  41. this.mText = t;
  42. this.mFontSize = Math.Max(1, size);
  43. this.mFontStyle = style;
  44. }
  45. ~TextLayer()
  46. {
  47. s_RefCount--;
  48. }
  49. public void Dispose()
  50. {
  51. if (m_disposed) { return; }
  52. Disposing();
  53. m_disposed = true;
  54. s_AliveCount--;
  55. }
  56. protected abstract void Disposing();
  57. public bool IsEnable
  58. {
  59. get { return isEnable; }
  60. set
  61. {
  62. if (this.isEnable != value)
  63. {
  64. this.isEnable = value;
  65. this.isDirty = true;
  66. }
  67. }
  68. }
  69. public Size2D ExpectSize
  70. {
  71. get { return mExpectSize; }
  72. set
  73. {
  74. if (!value.Equals(mExpectSize))
  75. {
  76. this.mExpectSize = value;
  77. this.isDirty = true;
  78. }
  79. }
  80. }
  81. public string Text
  82. {
  83. get { return mText; }
  84. set
  85. {
  86. if (!value.Equals(this.mText))
  87. {
  88. this.mText = value;
  89. this.isDirty = true;
  90. }
  91. }
  92. }
  93. public int FontSize
  94. {
  95. set
  96. {
  97. value = Math.Max(1, value);
  98. if (mFontSize != value)
  99. {
  100. mFontSize = value;
  101. this.isDirty = true;
  102. }
  103. }
  104. get { return mFontSize; }
  105. }
  106. public FontStyle TextFontStyle
  107. {
  108. set
  109. {
  110. if (mFontStyle != value)
  111. {
  112. mFontStyle = value;
  113. this.isDirty = true;
  114. }
  115. }
  116. get { return mFontStyle; }
  117. }
  118. public uint FontColor
  119. {
  120. get { return mFontColorRGBA; }
  121. set
  122. {
  123. if (this.mFontColorRGBA != value)
  124. {
  125. this.mFontColorRGBA = value;
  126. this.isDirty = true;
  127. }
  128. }
  129. }
  130. public uint BorderColor
  131. {
  132. get
  133. {
  134. return mBorderColorRGBA;
  135. }
  136. set
  137. {
  138. if (this.mBorderColorRGBA != value)
  139. {
  140. this.mBorderColorRGBA = value;
  141. this.isDirty = true;
  142. }
  143. }
  144. }
  145. public int BorderTime
  146. {
  147. get { return mBorderTime; }
  148. set
  149. {
  150. if (this.mBorderTime != value)
  151. {
  152. this.mBorderTime = value;
  153. this.isDirty = true;
  154. }
  155. }
  156. }
  157. public float Width
  158. {
  159. get { return mBounds.width; }
  160. }
  161. public float Height
  162. {
  163. get { return mBounds.height; }
  164. }
  165. public void SetFontColor(int rgb, float alpha = 1.0f)
  166. {
  167. uint uc = (uint)((rgb & 0xffffff) | (int)Math.Min(alpha * 255, 255));
  168. FontColor = (uc);
  169. }
  170. public void SetFontColor(uint rgba)
  171. {
  172. FontColor = rgba;
  173. }
  174. public void SetBorderColor(int rgb, int alpha = 0xff)
  175. {
  176. uint uc = (uint)((rgb & 0xffffff) | (int)Math.Min(alpha * 255, 255));
  177. BorderColor = (uc);
  178. }
  179. abstract public Image GetBuffer();
  180. }
  181. }