TMP_TextInfo.cs 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. using UnityEngine;
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. namespace TMPro
  6. {
  7. /// <summary>
  8. /// Class which contains information about every element contained within the text object.
  9. /// </summary>
  10. [Serializable]
  11. public class TMP_TextInfo
  12. {
  13. internal static Vector2 k_InfinityVectorPositive = new Vector2(32767, 32767);
  14. internal static Vector2 k_InfinityVectorNegative = new Vector2(-32767, -32767);
  15. public TMP_Text textComponent;
  16. public int characterCount;
  17. public int spriteCount;
  18. public int spaceCount;
  19. public int wordCount;
  20. public int linkCount;
  21. public int lineCount;
  22. public int pageCount;
  23. public int materialCount;
  24. public TMP_CharacterInfo[] characterInfo;
  25. public TMP_WordInfo[] wordInfo;
  26. public TMP_LinkInfo[] linkInfo;
  27. public TMP_LineInfo[] lineInfo;
  28. public TMP_PageInfo[] pageInfo;
  29. public TMP_MeshInfo[] meshInfo;
  30. private TMP_MeshInfo[] m_CachedMeshInfo;
  31. // Default Constructor
  32. public TMP_TextInfo()
  33. {
  34. characterInfo = new TMP_CharacterInfo[8];
  35. wordInfo = new TMP_WordInfo[16];
  36. linkInfo = new TMP_LinkInfo[0];
  37. lineInfo = new TMP_LineInfo[2];
  38. pageInfo = new TMP_PageInfo[4];
  39. meshInfo = new TMP_MeshInfo[1];
  40. }
  41. internal TMP_TextInfo(int characterCount)
  42. {
  43. characterInfo = new TMP_CharacterInfo[characterCount];
  44. wordInfo = new TMP_WordInfo[16];
  45. linkInfo = new TMP_LinkInfo[0];
  46. lineInfo = new TMP_LineInfo[2];
  47. pageInfo = new TMP_PageInfo[4];
  48. meshInfo = new TMP_MeshInfo[1];
  49. }
  50. public TMP_TextInfo(TMP_Text textComponent)
  51. {
  52. this.textComponent = textComponent;
  53. characterInfo = new TMP_CharacterInfo[8];
  54. wordInfo = new TMP_WordInfo[4];
  55. linkInfo = new TMP_LinkInfo[0];
  56. lineInfo = new TMP_LineInfo[2];
  57. pageInfo = new TMP_PageInfo[4];
  58. meshInfo = new TMP_MeshInfo[1];
  59. meshInfo[0].mesh = textComponent.mesh;
  60. materialCount = 1;
  61. }
  62. /// <summary>
  63. /// Function to clear the counters of the text object.
  64. /// </summary>
  65. public void Clear()
  66. {
  67. characterCount = 0;
  68. spaceCount = 0;
  69. wordCount = 0;
  70. linkCount = 0;
  71. lineCount = 0;
  72. pageCount = 0;
  73. spriteCount = 0;
  74. for (int i = 0; i < this.meshInfo.Length; i++)
  75. {
  76. this.meshInfo[i].vertexCount = 0;
  77. }
  78. }
  79. /// <summary>
  80. /// Function to clear the content of the MeshInfo array while preserving the Triangles, Normals and Tangents.
  81. /// </summary>
  82. public void ClearMeshInfo(bool updateMesh)
  83. {
  84. for (int i = 0; i < this.meshInfo.Length; i++)
  85. this.meshInfo[i].Clear(updateMesh);
  86. }
  87. /// <summary>
  88. /// Function to clear the content of all the MeshInfo arrays while preserving their Triangles, Normals and Tangents.
  89. /// </summary>
  90. public void ClearAllMeshInfo()
  91. {
  92. for (int i = 0; i < this.meshInfo.Length; i++)
  93. this.meshInfo[i].Clear(true);
  94. }
  95. /// <summary>
  96. ///
  97. /// </summary>
  98. public void ResetVertexLayout(bool isVolumetric)
  99. {
  100. for (int i = 0; i < this.meshInfo.Length; i++)
  101. this.meshInfo[i].ResizeMeshInfo(0, isVolumetric);
  102. }
  103. /// <summary>
  104. /// Function used to mark unused vertices as degenerate.
  105. /// </summary>
  106. /// <param name="materials"></param>
  107. public void ClearUnusedVertices(MaterialReference[] materials)
  108. {
  109. for (int i = 0; i < meshInfo.Length; i++)
  110. {
  111. int start = 0; // materials[i].referenceCount * 4;
  112. meshInfo[i].ClearUnusedVertices(start);
  113. }
  114. }
  115. /// <summary>
  116. /// Function to clear and initialize the lineInfo array.
  117. /// </summary>
  118. public void ClearLineInfo()
  119. {
  120. if (this.lineInfo == null)
  121. this.lineInfo = new TMP_LineInfo[2];
  122. int length = this.lineInfo.Length;
  123. for (int i = 0; i < length; i++)
  124. {
  125. this.lineInfo[i].characterCount = 0;
  126. this.lineInfo[i].spaceCount = 0;
  127. this.lineInfo[i].wordCount = 0;
  128. this.lineInfo[i].controlCharacterCount = 0;
  129. this.lineInfo[i].width = 0;
  130. this.lineInfo[i].ascender = k_InfinityVectorNegative.x;
  131. this.lineInfo[i].descender = k_InfinityVectorPositive.x;
  132. this.lineInfo[i].marginLeft = 0;
  133. this.lineInfo[i].marginRight = 0;
  134. this.lineInfo[i].lineExtents.min = k_InfinityVectorPositive;
  135. this.lineInfo[i].lineExtents.max = k_InfinityVectorNegative;
  136. this.lineInfo[i].maxAdvance = 0;
  137. //this.lineInfo[i].maxScale = 0;
  138. }
  139. }
  140. internal void ClearPageInfo()
  141. {
  142. if (this.pageInfo == null)
  143. this.pageInfo = new TMP_PageInfo[2];
  144. int length = this.pageInfo.Length;
  145. for (int i = 0; i < length; i++)
  146. {
  147. this.pageInfo[i].firstCharacterIndex = 0;
  148. this.pageInfo[i].lastCharacterIndex = 0;
  149. this.pageInfo[i].ascender = -32767;
  150. this.pageInfo[i].baseLine = 0;
  151. this.pageInfo[i].descender = 32767;
  152. }
  153. }
  154. /// <summary>
  155. /// Function to copy the MeshInfo Arrays and their primary vertex data content.
  156. /// </summary>
  157. /// <returns>A copy of the MeshInfo[]</returns>
  158. public TMP_MeshInfo[] CopyMeshInfoVertexData()
  159. {
  160. if (m_CachedMeshInfo == null || m_CachedMeshInfo.Length != meshInfo.Length)
  161. {
  162. m_CachedMeshInfo = new TMP_MeshInfo[meshInfo.Length];
  163. // Initialize all the vertex data arrays
  164. for (int i = 0; i < m_CachedMeshInfo.Length; i++)
  165. {
  166. int length = meshInfo[i].vertices.Length;
  167. m_CachedMeshInfo[i].vertices = new Vector3[length];
  168. m_CachedMeshInfo[i].uvs0 = new Vector2[length];
  169. m_CachedMeshInfo[i].uvs2 = new Vector2[length];
  170. m_CachedMeshInfo[i].colors32 = new Color32[length];
  171. //m_CachedMeshInfo[i].normals = new Vector3[length];
  172. //m_CachedMeshInfo[i].tangents = new Vector4[length];
  173. //m_CachedMeshInfo[i].triangles = new int[meshInfo[i].triangles.Length];
  174. }
  175. }
  176. for (int i = 0; i < m_CachedMeshInfo.Length; i++)
  177. {
  178. int length = meshInfo[i].vertices.Length;
  179. if (m_CachedMeshInfo[i].vertices.Length != length)
  180. {
  181. m_CachedMeshInfo[i].vertices = new Vector3[length];
  182. m_CachedMeshInfo[i].uvs0 = new Vector2[length];
  183. m_CachedMeshInfo[i].uvs2 = new Vector2[length];
  184. m_CachedMeshInfo[i].colors32 = new Color32[length];
  185. //m_CachedMeshInfo[i].normals = new Vector3[length];
  186. //m_CachedMeshInfo[i].tangents = new Vector4[length];
  187. //m_CachedMeshInfo[i].triangles = new int[meshInfo[i].triangles.Length];
  188. }
  189. // Only copy the primary vertex data
  190. Array.Copy(meshInfo[i].vertices, m_CachedMeshInfo[i].vertices, length);
  191. Array.Copy(meshInfo[i].uvs0, m_CachedMeshInfo[i].uvs0, length);
  192. Array.Copy(meshInfo[i].uvs2, m_CachedMeshInfo[i].uvs2, length);
  193. Array.Copy(meshInfo[i].colors32, m_CachedMeshInfo[i].colors32, length);
  194. //Array.Copy(meshInfo[i].normals, m_CachedMeshInfo[i].normals, length);
  195. //Array.Copy(meshInfo[i].tangents, m_CachedMeshInfo[i].tangents, length);
  196. //Array.Copy(meshInfo[i].triangles, m_CachedMeshInfo[i].triangles, meshInfo[i].triangles.Length);
  197. }
  198. return m_CachedMeshInfo;
  199. }
  200. /// <summary>
  201. /// Function to resize any of the structure contained in the TMP_TextInfo class.
  202. /// </summary>
  203. /// <typeparam name="T"></typeparam>
  204. /// <param name="array"></param>
  205. /// <param name="size"></param>
  206. public static void Resize<T> (ref T[] array, int size)
  207. {
  208. // Allocated to the next power of two
  209. int newSize = size > 1024 ? size + 256 : Mathf.NextPowerOfTwo(size);
  210. Array.Resize(ref array, newSize);
  211. }
  212. /// <summary>
  213. /// Function to resize any of the structure contained in the TMP_TextInfo class.
  214. /// </summary>
  215. /// <typeparam name="T"></typeparam>
  216. /// <param name="array"></param>
  217. /// <param name="size"></param>
  218. /// <param name="isFixedSize"></param>
  219. public static void Resize<T>(ref T[] array, int size, bool isBlockAllocated)
  220. {
  221. if (isBlockAllocated) size = size > 1024 ? size + 256 : Mathf.NextPowerOfTwo(size);
  222. if (size == array.Length) return;
  223. //Debug.Log("Resizing TextInfo from [" + array.Length + "] to [" + size + "]");
  224. Array.Resize(ref array, size);
  225. }
  226. }
  227. }