-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathFontFeatureCommonGSUB.cs
More file actions
316 lines (263 loc) · 11.5 KB
/
Copy pathFontFeatureCommonGSUB.cs
File metadata and controls
316 lines (263 loc) · 11.5 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Runtime.InteropServices;
using UnityEngine.Bindings;
using UnityEngine.Scripting;
namespace UnityEngine.TextCore.LowLevel
{
/// <summary>
/// The SingleSubstitutionRecord defines the substitution of a single glyph by another.
/// </summary>
[Serializable]
[UsedByNativeCode]
[StructLayout(LayoutKind.Sequential)]
internal struct SingleSubstitutionRecord
{
/// <summary>
/// The index of the target glyph being substituted.
/// </summary>
public uint targetGlyphID { get { return m_TargetGlyphID; } set { m_TargetGlyphID = value; } }
/// <summary>
/// The index of the replacement glyph.
/// </summary>
public uint substituteGlyphID { get { return m_SubstituteGlyphID; } set { m_SubstituteGlyphID = value; } }
// =============================================
// Private backing fields for public properties.
// =============================================
[SerializeField]
[NativeName("targetGlyphID")]
private uint m_TargetGlyphID;
[SerializeField]
[NativeName("substituteGlyphID")]
private uint m_SubstituteGlyphID;
}
/// <summary>
/// The MultipleSubstitutionRecord defines the substitution of a single glyph by multiple glyphs.
/// </summary>
[Serializable]
[UsedByNativeCode]
[StructLayout(LayoutKind.Sequential)]
[VisibleToOtherModules("UnityEngine.TextCoreTextEngineModule")]
internal struct MultipleSubstitutionRecord
{
/// <summary>
/// The index of the target glyph being substituted.
/// </summary>
public uint targetGlyphID { get { return m_TargetGlyphID; } set { m_TargetGlyphID = value; } }
/// <summary>
/// Array that contains the index of the glyphs replacing the single target glyph.
/// </summary>
public uint[] substituteGlyphIDs { get { return m_SubstituteGlyphIDs; } set { m_SubstituteGlyphIDs = value; } }
// =============================================
// Private backing fields for public properties.
// =============================================
[SerializeField]
[NativeName("targetGlyphID")]
private uint m_TargetGlyphID;
[SerializeField]
[NativeName("substituteGlyphIDs")]
private uint[] m_SubstituteGlyphIDs;
}
/// <summary>
/// The AlternateSubstitutionRecord defines the substitution of a single glyph by several potential alternative glyphs.
/// </summary>
[Serializable]
[UsedByNativeCode]
[StructLayout(LayoutKind.Sequential)]
internal struct AlternateSubstitutionRecord
{
/// <summary>
/// The index of the target glyph being substituted.
/// </summary>
public uint targetGlyphID { get { return m_TargetGlyphID; } set { m_TargetGlyphID = value; } }
/// <summary>
/// Array that contains the index of the alternate glyphs for the target glyph.
/// </summary>
public uint[] substituteGlyphIDs { get { return m_SubstituteGlyphIDs; } set { m_SubstituteGlyphIDs = value; } }
// =============================================
// Private backing fields for public properties.
// =============================================
[SerializeField]
[NativeName("targetGlyphID")]
private uint m_TargetGlyphID;
[SerializeField]
[NativeName("substituteGlyphIDs")]
private uint[] m_SubstituteGlyphIDs;
}
/// <summary>
/// The LigatureSubstitutionRecord defines the substitution of multiple glyphs by a single glyph.
/// </summary>
[Serializable]
[UsedByNativeCode]
[StructLayout(LayoutKind.Sequential)]
[VisibleToOtherModules("UnityEngine.TextCoreTextEngineModule", "UnityEditor.TextCoreTextEngineModule")]
internal struct LigatureSubstitutionRecord : IEquatable<LigatureSubstitutionRecord>
{
/// <summary>
/// Array that contains the index of the glyphs being substituted.
/// </summary>
public uint[] componentGlyphIDs { get { return m_ComponentGlyphIDs; } set { m_ComponentGlyphIDs = value; } }
/// <summary>
/// The index of the replacement glyph.
/// </summary>
public uint ligatureGlyphID { get { return m_LigatureGlyphID; } set { m_LigatureGlyphID = value; } }
// =============================================
// Private backing fields for public properties.
// =============================================
[SerializeField]
[NativeName("componentGlyphs")]
private uint[] m_ComponentGlyphIDs;
[SerializeField]
[NativeName("ligatureGlyph")]
private uint m_LigatureGlyphID;
// =============================================
// Operator overrides
// =============================================
public bool Equals(LigatureSubstitutionRecord other)
{
return this == other;
}
public override bool Equals(object obj)
{
return obj is LigatureSubstitutionRecord other && Equals(other);
}
public override int GetHashCode()
{
return m_ComponentGlyphIDs.GetHashCode();
}
public static bool operator==(LigatureSubstitutionRecord lhs, LigatureSubstitutionRecord rhs)
{
if (lhs.componentGlyphIDs != null && rhs.componentGlyphIDs != null)
{
int lhsComponentCount = lhs.m_ComponentGlyphIDs.Length;
if (lhsComponentCount != rhs.m_ComponentGlyphIDs.Length)
return false;
for (int i = 0; i < lhsComponentCount; i++)
{
if (lhs.m_ComponentGlyphIDs[i] != rhs.m_ComponentGlyphIDs[i])
return false;
}
}
else if (lhs.componentGlyphIDs != null || rhs.componentGlyphIDs != null)
return false;
return lhs.ligatureGlyphID == rhs.m_LigatureGlyphID;
}
public static bool operator!=(LigatureSubstitutionRecord lhs, LigatureSubstitutionRecord rhs)
{
return !(lhs == rhs);
}
}
/// <summary>
/// Data structure used by ContextualSubstitutionRecord and ChainedContextualSubstitutionRecord that defines a sequence of glyph IDs.
/// </summary>
[Serializable]
[UsedByNativeCode]
[StructLayout(LayoutKind.Sequential)]
internal struct GlyphIDSequence
{
/// <summary>
/// Array of glyph IDs.
/// </summary>
public uint[] glyphIDs { get { return m_GlyphIDs; } set { m_GlyphIDs = value; } }
// =============================================
// Private backing fields for public properties.
// =============================================
[SerializeField]
[NativeName("glyphIDs")]
private uint[] m_GlyphIDs;
}
/// <summary>
/// Data structure used by ContextualSubstitutionRecord and ChainedContextualSubstitutionRecord.
/// </summary>
[Serializable]
[UsedByNativeCode]
[StructLayout(LayoutKind.Sequential)]
internal struct SequenceLookupRecord
{
/// <summary>
/// Index into the input glyph sequence.
/// </summary>
public uint glyphSequenceIndex { get { return m_GlyphSequenceIndex; } set { m_GlyphSequenceIndex = value; } }
/// <summary>
/// Index into the LookupList.
/// </summary>
public uint lookupListIndex { get { return m_LookupListIndex; } set { m_LookupListIndex = value; } }
// =============================================
// Private backing fields for public properties.
// =============================================
[SerializeField]
[NativeName("glyphSequenceIndex")]
private uint m_GlyphSequenceIndex;
[SerializeField]
[NativeName("lookupListIndex")]
private uint m_LookupListIndex;
}
/// <summary>
/// Defines the substitution of multiple glyphs by a single glyph.
/// </summary>
[Serializable]
[UsedByNativeCode]
[StructLayout(LayoutKind.Sequential)]
internal struct ContextualSubstitutionRecord
{
/// <summary>
/// Array that contains the index of the glyphs used as input glyph sequence in the ContextualSubstitutionRecord.
/// </summary>
public GlyphIDSequence[] inputSequences { get { return m_InputGlyphSequences; } set { m_InputGlyphSequences = value; } }
/// <summary>
/// Array that contains the sequence lookup records for the ContextualSubstitutionRecord.
/// </summary>
public SequenceLookupRecord[] sequenceLookupRecords { get { return m_SequenceLookupRecords; } set { m_SequenceLookupRecords = value; } }
// =============================================
// Private backing fields for public properties.
// =============================================
[SerializeField]
[NativeName("inputGlyphSequences")]
private GlyphIDSequence[] m_InputGlyphSequences;
[SerializeField]
[NativeName("sequenceLookupRecords")]
private SequenceLookupRecord[] m_SequenceLookupRecords;
}
/// <summary>
/// Defines the substitution record for the chained contextual substitution.
/// </summary>
[Serializable]
[UsedByNativeCode]
[StructLayout(LayoutKind.Sequential)]
internal struct ChainingContextualSubstitutionRecord
{
/// <summary>
/// Array that contains the index of the glyphs used as the backtrack glyph sequence in the ChainingContextualSubstitutionRecord.
/// </summary>
public GlyphIDSequence[] backtrackGlyphSequences { get { return m_BacktrackGlyphSequences; } set { m_BacktrackGlyphSequences = value; } }
/// <summary>
/// Array that contains the index of the glyphs used as input glyph sequence in the ChainingContextualSubstitutionRecord.
/// </summary>
public GlyphIDSequence[] inputGlyphSequences { get { return m_InputGlyphSequences; } set { m_InputGlyphSequences = value; } }
/// <summary>
/// Array that contains the index of the glyphs used as the lookahead glyph sequence in the ChainingContextualSubstitutionRecord.
/// </summary>
public GlyphIDSequence[] lookaheadGlyphSequences { get { return m_LookaheadGlyphSequences; } set { m_LookaheadGlyphSequences = value; } }
/// <summary>
/// Array that contains the sequence lookup records for the ChainingContextualSubstitutionRecord.
/// </summary>
public SequenceLookupRecord[] sequenceLookupRecords { get { return m_SequenceLookupRecords; } set { m_SequenceLookupRecords = value; } }
// =============================================
// Private backing fields for public properties.
// =============================================
[SerializeField]
[NativeName("backtrackGlyphSequences")]
private GlyphIDSequence[] m_BacktrackGlyphSequences;
[SerializeField]
[NativeName("inputGlyphSequences")]
private GlyphIDSequence[] m_InputGlyphSequences;
[SerializeField]
[NativeName("lookaheadGlyphSequences")]
private GlyphIDSequence[] m_LookaheadGlyphSequences;
[SerializeField]
[NativeName("sequenceLookupRecords")]
private SequenceLookupRecord[] m_SequenceLookupRecords;
}
}