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