TMP_CharacterInfo.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. using System.Diagnostics;
  2. using UnityEngine;
  3. namespace TMPro
  4. {
  5. public struct TMP_Vertex
  6. {
  7. public Vector3 position;
  8. public Vector2 uv;
  9. public Vector2 uv2;
  10. public Vector2 uv4;
  11. public Color32 color;
  12. public static TMP_Vertex zero { get { return k_Zero; } }
  13. //public Vector3 normal;
  14. //public Vector4 tangent;
  15. static readonly TMP_Vertex k_Zero = new TMP_Vertex();
  16. }
  17. /// <summary>
  18. ///
  19. /// </summary>
  20. public struct TMP_Offset
  21. {
  22. public float left { get { return m_Left; } set { m_Left = value; } }
  23. public float right { get { return m_Right; } set { m_Right = value; } }
  24. public float top { get { return m_Top; } set { m_Top = value; } }
  25. public float bottom { get { return m_Bottom; } set { m_Bottom = value; } }
  26. public float horizontal { get { return m_Left; } set { m_Left = value; m_Right = value; } }
  27. public float vertical { get { return m_Top; } set { m_Top = value; m_Bottom = value; } }
  28. /// <summary>
  29. ///
  30. /// </summary>
  31. public static TMP_Offset zero { get { return k_ZeroOffset; } }
  32. // =============================================
  33. // Private backing fields for public properties.
  34. // =============================================
  35. float m_Left;
  36. float m_Right;
  37. float m_Top;
  38. float m_Bottom;
  39. static readonly TMP_Offset k_ZeroOffset = new TMP_Offset(0F, 0F, 0F, 0F);
  40. /// <summary>
  41. ///
  42. /// </summary>
  43. /// <param name="left"></param>
  44. /// <param name="right"></param>
  45. /// <param name="top"></param>
  46. /// <param name="bottom"></param>
  47. public TMP_Offset(float left, float right, float top, float bottom)
  48. {
  49. m_Left = left;
  50. m_Right = right;
  51. m_Top = top;
  52. m_Bottom = bottom;
  53. }
  54. /// <summary>
  55. ///
  56. /// </summary>
  57. /// <param name="horizontal"></param>
  58. /// <param name="vertical"></param>
  59. public TMP_Offset(float horizontal, float vertical)
  60. {
  61. m_Left = horizontal;
  62. m_Right = horizontal;
  63. m_Top = vertical;
  64. m_Bottom = vertical;
  65. }
  66. public static bool operator ==(TMP_Offset lhs, TMP_Offset rhs)
  67. {
  68. return lhs.m_Left == rhs.m_Left &&
  69. lhs.m_Right == rhs.m_Right &&
  70. lhs.m_Top == rhs.m_Top &&
  71. lhs.m_Bottom == rhs.m_Bottom;
  72. }
  73. public static bool operator !=(TMP_Offset lhs, TMP_Offset rhs)
  74. {
  75. return !(lhs == rhs);
  76. }
  77. public static TMP_Offset operator *(TMP_Offset a, float b)
  78. {
  79. return new TMP_Offset(a.m_Left * b, a.m_Right * b, a.m_Top * b, a.m_Bottom * b);
  80. }
  81. public override int GetHashCode()
  82. {
  83. return base.GetHashCode();
  84. }
  85. public override bool Equals(object obj)
  86. {
  87. return base.Equals(obj);
  88. }
  89. public bool Equals(TMP_Offset other)
  90. {
  91. return base.Equals(other);
  92. }
  93. }
  94. /// <summary>
  95. ///
  96. /// </summary>
  97. public struct HighlightState
  98. {
  99. public Color32 color;
  100. public TMP_Offset padding;
  101. public HighlightState(Color32 color, TMP_Offset padding)
  102. {
  103. this.color = color;
  104. this.padding = padding;
  105. }
  106. public static bool operator ==(HighlightState lhs, HighlightState rhs)
  107. {
  108. return lhs.color.Compare(rhs.color) && lhs.padding == rhs.padding;
  109. }
  110. public static bool operator !=(HighlightState lhs, HighlightState rhs)
  111. {
  112. return !(lhs == rhs);
  113. }
  114. public override int GetHashCode()
  115. {
  116. return base.GetHashCode();
  117. }
  118. public override bool Equals(object obj)
  119. {
  120. return base.Equals(obj);
  121. }
  122. public bool Equals(HighlightState other)
  123. {
  124. return base.Equals(other);
  125. }
  126. }
  127. /// <summary>
  128. /// Structure containing information about individual text elements (character or sprites).
  129. /// </summary>
  130. [DebuggerDisplay("Unicode '{character}' ({((uint)character).ToString(\"X\")})")]
  131. public struct TMP_CharacterInfo
  132. {
  133. public char character; // Should be changed to an uint to handle UTF32
  134. /// <summary>
  135. /// Index of the character in the raw string.
  136. /// </summary>
  137. public int index; // Index of the character in the input string.
  138. public int stringLength;
  139. public TMP_TextElementType elementType;
  140. public TMP_TextElement textElement;
  141. public TMP_FontAsset fontAsset;
  142. public TMP_SpriteAsset spriteAsset;
  143. public int spriteIndex;
  144. public Material material;
  145. public int materialReferenceIndex;
  146. public bool isUsingAlternateTypeface;
  147. public float pointSize;
  148. //public short wordNumber;
  149. public int lineNumber;
  150. //public short charNumber;
  151. public int pageNumber;
  152. public int vertexIndex;
  153. public TMP_Vertex vertex_BL;
  154. public TMP_Vertex vertex_TL;
  155. public TMP_Vertex vertex_TR;
  156. public TMP_Vertex vertex_BR;
  157. public Vector3 topLeft;
  158. public Vector3 bottomLeft;
  159. public Vector3 topRight;
  160. public Vector3 bottomRight;
  161. public float origin;
  162. public float xAdvance;
  163. public float ascender;
  164. public float baseLine;
  165. public float descender;
  166. internal float adjustedAscender;
  167. internal float adjustedDescender;
  168. public float aspectRatio;
  169. public float scale;
  170. public Color32 color;
  171. public Color32 underlineColor;
  172. public int underlineVertexIndex;
  173. public Color32 strikethroughColor;
  174. public int strikethroughVertexIndex;
  175. public Color32 highlightColor;
  176. public HighlightState highlightState;
  177. public FontStyles style;
  178. public bool isVisible;
  179. //public bool isIgnoringAlignment;
  180. }
  181. }