123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974 |
- using System;
- using UnityEngine;
- using UnityEngine.Serialization;
- using UnityEngine.TextCore;
- using UnityEngine.TextCore.LowLevel;
- using UnityEngine.Profiling;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- namespace TMPro
- {
- public enum AtlasPopulationMode
- {
- Static = 0x0,
- Dynamic = 0x1,
- }
- [Serializable]
- public class TMP_FontAsset : TMP_Asset
- {
- /// <summary>
- /// The version of the font asset class.
- /// Version 1.1.0 adds support for the new TextCore.FontEngine and Dynamic SDF system.
- /// </summary>
- public string version
- {
- get { return m_Version; }
- internal set { m_Version = value; }
- }
- [SerializeField]
- private string m_Version;
- /// <summary>
- /// This field is set when the font asset is first created.
- /// </summary>
- [SerializeField]
- internal string m_SourceFontFileGUID;
-
- #if UNITY_EDITOR
- /// <summary>
- /// Persistent reference to the source font file maintained in the editor.
- /// </summary>
- [SerializeField]
- internal Font m_SourceFontFile_EditorRef;
- #endif
- /// <summary>
- /// Source font file when atlas population mode is set to dynamic. Null when the atlas population mode is set to static.
- /// </summary>
- public Font sourceFontFile
- {
- get { return m_SourceFontFile; }
- internal set { m_SourceFontFile = value; }
- }
- [SerializeField]
- private Font m_SourceFontFile;
- public AtlasPopulationMode atlasPopulationMode
- {
- get { return m_AtlasPopulationMode; }
- set
- {
- m_AtlasPopulationMode = value;
- #if UNITY_EDITOR
- if (m_AtlasPopulationMode == AtlasPopulationMode.Static)
- m_SourceFontFile = null;
- else if (m_AtlasPopulationMode == AtlasPopulationMode.Dynamic)
- m_SourceFontFile = m_SourceFontFile_EditorRef;
- #endif
- }
- }
- [SerializeField]
- private AtlasPopulationMode m_AtlasPopulationMode;
- /// <summary>
- /// Information about the font face.
- /// </summary>
- public FaceInfo faceInfo
- {
- get { return m_FaceInfo; }
- internal set { m_FaceInfo = value; }
- }
- [SerializeField]
- private FaceInfo m_FaceInfo;
- /// <summary>
- /// List of glyphs contained in the font asset.
- /// </summary>
- public List<Glyph> glyphTable
- {
- get { return m_GlyphTable; }
- internal set { m_GlyphTable = value; }
- }
- [SerializeField]
- private List<Glyph> m_GlyphTable = new List<Glyph>();
- /// <summary>
- /// Dictionary used to lookup glyphs contained in the font asset by their index.
- /// </summary>
- public Dictionary<uint, Glyph> glyphLookupTable
- {
- get
- {
- if (m_GlyphLookupDictionary == null)
- ReadFontAssetDefinition();
- return m_GlyphLookupDictionary;
- }
- }
- private Dictionary<uint, Glyph> m_GlyphLookupDictionary;
- /// <summary>
- /// List containing the characters of the given font asset.
- /// </summary>
- public List<TMP_Character> characterTable
- {
- get { return m_CharacterTable; }
- internal set { m_CharacterTable = value; }
- }
- [SerializeField]
- private List<TMP_Character> m_CharacterTable = new List<TMP_Character>();
- /// <summary>
- /// Dictionary used to lookup characters contained in the font asset by their unicode values.
- /// </summary>
- public Dictionary<uint, TMP_Character> characterLookupTable
- {
- get
- {
- if (m_CharacterLookupDictionary == null)
- ReadFontAssetDefinition();
- return m_CharacterLookupDictionary;
- }
- }
- private Dictionary<uint, TMP_Character> m_CharacterLookupDictionary;
- /// <summary>
- /// The font atlas used by this font asset.
- /// This is always the texture at index [0] of the fontAtlasTextures.
- /// </summary>
- public Texture2D atlasTexture
- {
- get
- {
- if (m_AtlasTexture == null)
- {
- m_AtlasTexture = atlasTextures[0];
- }
- return m_AtlasTexture;
- }
- }
- private Texture2D m_AtlasTexture;
- /// <summary>
- /// Array of atlas textures that contain the glyphs used by this font asset.
- /// </summary>
- public Texture2D[] atlasTextures
- {
- get
- {
- if (m_AtlasTextures == null)
- {
- //
- }
- return m_AtlasTextures;
- }
- set
- {
- m_AtlasTextures = value;
- }
- }
- [SerializeField]
- private Texture2D[] m_AtlasTextures;
- /// <summary>
- /// Index of the font atlas texture that still has available space to add new glyphs.
- /// </summary>
- [SerializeField]
- internal int m_AtlasTextureIndex;
- /// <summary>
- /// List of spaces occupied by glyphs in a given texture.
- /// </summary>
- internal List<GlyphRect> usedGlyphRects
- {
- get { return m_UsedGlyphRects; }
- set { m_UsedGlyphRects = value; }
- }
- [SerializeField]
- private List<GlyphRect> m_UsedGlyphRects;
- /// <summary>
- /// List of spaces available in a given texture to add new glyphs.
- /// </summary>
- internal List<GlyphRect> freeGlyphRects
- {
- get { return m_FreeGlyphRects; }
- set { m_FreeGlyphRects = value; }
- }
- [SerializeField]
- private List<GlyphRect> m_FreeGlyphRects;
- /// <summary>
- /// The general information about the font.
- /// This property and FaceInfo_Legacy type are not longer used in version 1.1.0 of the font asset.
- /// </summary>
- [Obsolete("The fontInfo property and underlying type is now obsolete. Please use the faceInfo property and FaceInfo type instead.")]
- public FaceInfo_Legacy fontInfo
- {
- get { return m_fontInfo; }
- }
- [SerializeField]
- private FaceInfo_Legacy m_fontInfo = null;
- /// <summary>
- ///
- /// </summary>
- [SerializeField]
- public Texture2D atlas; // Should add a property to make this read-only.
- /// <summary>
- /// The width of the atlas texture(s) used by this font asset.
- /// </summary>
- public int atlasWidth
- {
- get { return m_AtlasWidth; }
- internal set { m_AtlasWidth = value; }
- }
- [SerializeField]
- private int m_AtlasWidth;
- /// <summary>
- /// The height of the atlas texture(s) used by this font asset.
- /// </summary>
- public int atlasHeight
- {
- get { return m_AtlasHeight; }
- internal set { m_AtlasHeight = value; }
- }
- [SerializeField]
- private int m_AtlasHeight;
- /// <summary>
- /// The padding used between glyphs contained in the atlas texture(s) used by this font asset.
- /// </summary>
- public int atlasPadding
- {
- get { return m_AtlasPadding; }
- internal set { m_AtlasPadding = value; }
- }
- [SerializeField]
- private int m_AtlasPadding;
- public GlyphRenderMode atlasRenderMode
- {
- get { return m_AtlasRenderMode; }
- internal set { m_AtlasRenderMode = value; }
- }
- [SerializeField]
- private GlyphRenderMode m_AtlasRenderMode;
- // Legacy field that will eventually be removed.
- [SerializeField]
- internal List<TMP_Glyph> m_glyphInfoList;
- [SerializeField]
- [FormerlySerializedAs("m_kerningInfo")]
- internal KerningTable m_KerningTable = new KerningTable();
- /// <summary>
- /// Table containing the various font features of this font asset.
- /// </summary>
- public TMP_FontFeatureTable fontFeatureTable
- {
- get { return m_FontFeatureTable; }
- internal set { m_FontFeatureTable = value; }
- }
- [SerializeField]
- private TMP_FontFeatureTable m_FontFeatureTable = new TMP_FontFeatureTable();
- // Legacy field that will eventually be removed
- [SerializeField]
- #pragma warning disable 0649
- private List<TMP_FontAsset> fallbackFontAssets;
- /// <summary>
- /// List containing the Fallback font assets for this font.
- /// </summary>
- public List<TMP_FontAsset> fallbackFontAssetTable
- {
- get { return m_FallbackFontAssetTable; }
- set { m_FallbackFontAssetTable = value; }
- }
- [SerializeField]
- public List<TMP_FontAsset> m_FallbackFontAssetTable;
- /// <summary>
- /// The settings used in the Font Asset Creator when this font asset was created or edited.
- /// </summary>
- public FontAssetCreationSettings creationSettings
- {
- get { return m_CreationSettings; }
- set { m_CreationSettings = value; }
- }
- [SerializeField]
- internal FontAssetCreationSettings m_CreationSettings;
- /// <summary>
- /// Array containing font assets to be used as alternative typefaces for the various potential font weights of this font asset.
- /// </summary>
- public TMP_FontWeightPair[] fontWeightTable
- {
- get { return m_FontWeightTable; }
- internal set { m_FontWeightTable = value; }
- }
- [SerializeField]
- private TMP_FontWeightPair[] m_FontWeightTable = new TMP_FontWeightPair[10];
- // FONT WEIGHTS
- /// <summary>
- /// Font weights used by font asset prior to version 1.1.0.
- /// This is legacy and will be removed at some point in the future.
- /// </summary>
- [SerializeField]
- private TMP_FontWeightPair[] fontWeights = null;
- //private int[] m_characterSet; // Array containing all the characters in this font asset.
- /// <summary>
- /// Defines the dilation of the text when using regular style.
- /// </summary>
- public float normalStyle = 0;
- /// <summary>
- /// The spacing between characters when using regular style.
- /// </summary>
- public float normalSpacingOffset = 0;
- /// <summary>
- /// Defines the dilation of the text when using bold style.
- /// </summary>
- public float boldStyle = 0.75f;
- /// <summary>
- /// The spacing between characters when using regular style.
- /// </summary>
- public float boldSpacing = 7f;
- /// <summary>
- /// Defines the slant of the text when using italic style.
- /// </summary>
- public byte italicStyle = 35;
- public byte tabSize = 10;
- private byte m_oldTabSize;
- internal bool m_IsFontAssetLookupTablesDirty = false;
- /// <summary>
- /// Create new instance of a font asset using default settings.
- /// </summary>
- /// <param name="font"></param>
- /// <returns></returns>
- public static TMP_FontAsset CreateFontAsset(Font font)
- {
- return CreateFontAsset(font, 90, 9, GlyphRenderMode.SDFAA, 1024, 1024, AtlasPopulationMode.Dynamic);
- }
- /// <summary>
- /// Create new instance of a font asset.
- /// </summary>
- /// <param name="font">The source font file.</param>
- /// <param name="samplingPointSize">The sampling point size.</param>
- /// <param name="atlasPadding">The padding / spread between individual glyphs in the font asset.</param>
- /// <param name="renderMode"></param>
- /// <param name="atlasWidth">The atlas texture width.</param>
- /// <param name="atlasHeight">The atlas texture height.</param>
- /// <param name="atlasPopulationMode"></param>
- /// <returns></returns>
- public static TMP_FontAsset CreateFontAsset(Font font, int samplingPointSize, int atlasPadding, GlyphRenderMode renderMode, int atlasWidth, int atlasHeight, AtlasPopulationMode atlasPopulationMode = AtlasPopulationMode.Dynamic)
- {
- TMP_FontAsset fontAsset = ScriptableObject.CreateInstance<TMP_FontAsset>();
- fontAsset.m_Version = "1.1.0";
- // Set face information
- FontEngine.InitializeFontEngine();
- FontEngine.LoadFontFace(font, samplingPointSize);
- fontAsset.faceInfo = FontEngine.GetFaceInfo();
- // Set font reference and GUID
- if (atlasPopulationMode == AtlasPopulationMode.Dynamic)
- fontAsset.sourceFontFile = font;
- // Set persistent reference to source font file in the Editor only.
- #if UNITY_EDITOR
- string guid;
- long localID;
- UnityEditor.AssetDatabase.TryGetGUIDAndLocalFileIdentifier(font, out guid, out localID);
- fontAsset.m_SourceFontFileGUID = guid;
- fontAsset.m_SourceFontFile_EditorRef = font;
- #endif
- fontAsset.atlasPopulationMode = atlasPopulationMode;
- fontAsset.atlasWidth = atlasWidth;
- fontAsset.atlasHeight = atlasHeight;
- fontAsset.atlasPadding = atlasPadding;
- fontAsset.atlasRenderMode = renderMode;
- // Initialize array for the font atlas textures.
- fontAsset.atlasTextures = new Texture2D[1];
- // Create and add font atlas texture.
- Texture2D texture = new Texture2D(0, 0, TextureFormat.Alpha8, false);
- //texture.name = assetName + " Atlas";
- fontAsset.atlasTextures[0] = texture;
- // Add free rectangle of the size of the texture.
- int packingModifier;
- if (((GlyphRasterModes)renderMode & GlyphRasterModes.RASTER_MODE_BITMAP) == GlyphRasterModes.RASTER_MODE_BITMAP)
- {
- packingModifier = 0;
- // Optimize by adding static ref to shader.
- Material tmp_material = new Material(ShaderUtilities.ShaderRef_MobileBitmap);
- //tmp_material.name = texture.name + " Material";
- tmp_material.SetTexture(ShaderUtilities.ID_MainTex, texture);
- tmp_material.SetFloat(ShaderUtilities.ID_TextureWidth, atlasWidth);
- tmp_material.SetFloat(ShaderUtilities.ID_TextureHeight, atlasHeight);
- fontAsset.material = tmp_material;
- }
- else
- {
- packingModifier = 1;
- // Optimize by adding static ref to shader.
- Material tmp_material = new Material(ShaderUtilities.ShaderRef_MobileSDF);
- //tmp_material.name = texture.name + " Material";
- tmp_material.SetTexture(ShaderUtilities.ID_MainTex, texture);
- tmp_material.SetFloat(ShaderUtilities.ID_TextureWidth, atlasWidth);
- tmp_material.SetFloat(ShaderUtilities.ID_TextureHeight, atlasHeight);
- tmp_material.SetFloat(ShaderUtilities.ID_GradientScale, atlasPadding + packingModifier);
- tmp_material.SetFloat(ShaderUtilities.ID_WeightNormal, fontAsset.normalStyle);
- tmp_material.SetFloat(ShaderUtilities.ID_WeightBold, fontAsset.boldStyle);
- fontAsset.material = tmp_material;
- }
- fontAsset.freeGlyphRects = new List<GlyphRect>() { new GlyphRect(0, 0, atlasWidth - packingModifier, atlasHeight - packingModifier) };
- fontAsset.usedGlyphRects = new List<GlyphRect>();
- // TODO: Consider adding support for extracting glyph positioning data
- fontAsset.ReadFontAssetDefinition();
- return fontAsset;
- }
- void Awake()
- {
- //Debug.Log("TMP Font Asset [" + this.name + "] with Version #" + m_Version + " has been enabled!");
- // Check version number of font asset to see if it needs to be upgraded.
- if (this.material != null && string.IsNullOrEmpty(m_Version))
- UpgradeFontAsset();
- }
- #if UNITY_EDITOR
- void OnValidate()
- {
- //if (m_oldTabSize != tabSize)
- //{
- // m_oldTabSize = tabSize;
- // ReadFontAssetDefinition();
- //}
- // Handle changes to atlas population mode
- //if (m_AtlasPopulationMode == AtlasPopulationMode.Static)
- // m_SourceFontFile = null;
- //else
- //{
- // string path = UnityEditor.AssetDatabase.GUIDToAssetPath(m_SourceFontFileGUID);
- // if (path != string.Empty)
- // m_SourceFontFile = UnityEditor.AssetDatabase.LoadAssetAtPath<Font>(path);
- //}
- }
- #endif
- /// <summary>
- /// Read the various data tables of the font asset to populate its different dictionaries to allow for faster lookup of related font asset data.
- /// </summary>
- internal void InitializeDictionaryLookupTables()
- {
- // Create new instance of the glyph lookup dictionary or clear the existing one.
- if (m_GlyphLookupDictionary == null)
- m_GlyphLookupDictionary = new Dictionary<uint, Glyph>();
- else
- m_GlyphLookupDictionary.Clear();
- int glyphCount = m_GlyphTable.Count;
- // Initialize glyph index array or clear the existing one.
- if (m_GlyphIndexList == null)
- m_GlyphIndexList = new List<uint>();
- else
- m_GlyphIndexList.Clear();
- // Add the characters contained in the character table into the dictionary for faster lookup.
- for (int i = 0; i < glyphCount; i++)
- {
- Glyph glyph = m_GlyphTable[i];
- uint index = glyph.index;
- // TODO: Not sure it is necessary to check here.
- if (m_GlyphLookupDictionary.ContainsKey(index) == false)
- {
- m_GlyphLookupDictionary.Add(index, glyph);
- m_GlyphIndexList.Add(index);
- }
- }
- // Create new instance of the character lookup dictionary or clear the existing one.
- if (m_CharacterLookupDictionary == null)
- m_CharacterLookupDictionary = new Dictionary<uint, TMP_Character>();
- else
- m_CharacterLookupDictionary.Clear();
- // Add the characters contained in the character table into the dictionary for faster lookup.
- for (int i = 0; i < m_CharacterTable.Count; i++)
- {
- TMP_Character character = m_CharacterTable[i];
- uint unicode = character.unicode;
- uint glyphIndex = character.glyphIndex;
- if (m_CharacterLookupDictionary.ContainsKey(unicode) == false)
- m_CharacterLookupDictionary.Add(unicode, character);
- if (m_GlyphLookupDictionary.ContainsKey(glyphIndex))
- {
- character.glyph = m_GlyphLookupDictionary[glyphIndex];
- }
- }
- // Upgrade Glyph Adjustment Table to the new Font Feature table and Glyph Pair Adjustment Records
- if (m_KerningTable != null && m_KerningTable.kerningPairs != null && m_KerningTable.kerningPairs.Count > 0)
- UpgradeGlyphAdjustmentTableToFontFeatureTable();
- // Read Font Features which will include kerning data.
- if (m_FontFeatureTable.m_GlyphPairAdjustmentRecordLookupDictionary == null)
- m_FontFeatureTable.m_GlyphPairAdjustmentRecordLookupDictionary = new Dictionary<long, TMP_GlyphPairAdjustmentRecord>();
- else
- m_FontFeatureTable.m_GlyphPairAdjustmentRecordLookupDictionary.Clear();
- List<TMP_GlyphPairAdjustmentRecord> glyphPairAdjustmentRecords = m_FontFeatureTable.m_GlyphPairAdjustmentRecords;
- if (glyphPairAdjustmentRecords != null)
- {
- for (int i = 0; i < glyphPairAdjustmentRecords.Count; i++)
- {
- TMP_GlyphPairAdjustmentRecord record = glyphPairAdjustmentRecords[i];
- long key = new GlyphPairKey(record).key;
- m_FontFeatureTable.m_GlyphPairAdjustmentRecordLookupDictionary.Add(key, record);
- }
- }
- }
- /// <summary>
- ///
- /// </summary>
- public void ReadFontAssetDefinition()
- {
- //Debug.Log("Reading Font Definition for " + this.name + ".");
- // Check version number of font asset to see if it needs to be upgraded.
- if (this.material != null && string.IsNullOrEmpty(m_Version))
- UpgradeFontAsset();
- // Initialize lookup tables for characters and glyphs.
- InitializeDictionaryLookupTables();
- // Add Tab char(9) to Dictionary.
- if (m_CharacterLookupDictionary.ContainsKey(9) == false)
- {
- Glyph glyph = new Glyph(0, new GlyphMetrics(0, 0, 0, 0, m_FaceInfo.tabWidth * tabSize), GlyphRect.zero, 1.0f, 0);
- m_CharacterLookupDictionary.Add(9, new TMP_Character(9, glyph));
- }
- // Add Linefeed LF char(10) and Carriage Return CR char(13)
- if (m_CharacterLookupDictionary.ContainsKey(10) == false)
- {
- Glyph glyph = new Glyph(0, new GlyphMetrics(10, 0, 0, 0, 0), GlyphRect.zero, 1.0f, 0);
- m_CharacterLookupDictionary.Add(10, new TMP_Character(10, glyph));
- if (!m_CharacterLookupDictionary.ContainsKey(13))
- m_CharacterLookupDictionary.Add(13, new TMP_Character(13, glyph));
- }
- // Add Zero Width Space 8203 (0x200B)
- if (m_CharacterLookupDictionary.ContainsKey(8203) == false)
- {
- Glyph glyph = new Glyph(0, new GlyphMetrics(0, 0, 0, 0, 0), GlyphRect.zero, 1.0f, 0);
- m_CharacterLookupDictionary.Add(8203, new TMP_Character(8203, glyph));
- }
- // Add Zero Width Non-Breaking Space 8288 (0x2060)
- if (m_CharacterLookupDictionary.ContainsKey(8288) == false)
- {
- Glyph glyph = new Glyph(0, new GlyphMetrics(0, 0, 0, 0, 0), GlyphRect.zero, 1.0f, 0);
- m_CharacterLookupDictionary.Add(8288, new TMP_Character(8288, glyph));
- }
- // Add Non-Breaking Hyphen 8209 (0x2011)
- if (m_CharacterLookupDictionary.ContainsKey(8209) == false)
- {
- TMP_Character character;
- if (m_CharacterLookupDictionary.TryGetValue(45, out character))
- m_CharacterLookupDictionary.Add(8209, new TMP_Character(8209, character.glyph));
- }
- // Set Cap Height
- if (m_FaceInfo.capLine == 0 && m_CharacterLookupDictionary.ContainsKey(72))
- {
- uint glyphIndex = m_CharacterLookupDictionary[72].glyphIndex;
- m_FaceInfo.capLine = m_GlyphLookupDictionary[glyphIndex].metrics.horizontalBearingY;
- }
- // Adjust Font Scale for compatibility reasons
- if (m_FaceInfo.scale == 0)
- m_FaceInfo.scale = 1.0f;
- // Set Strikethrough Offset (if needed)
- if (m_FaceInfo.strikethroughOffset == 0)
- m_FaceInfo.strikethroughOffset = m_FaceInfo.capLine / 2.5f;
- // Set Padding value for legacy font assets.
- if (m_AtlasPadding == 0)
- {
- if (material.HasProperty(ShaderUtilities.ID_GradientScale))
- m_AtlasPadding = (int)material.GetFloat(ShaderUtilities.ID_GradientScale) - 1;
- }
- // Compute Hashcode for the font asset name
- hashCode = TMP_TextUtilities.GetSimpleHashCode(this.name);
- // Compute Hashcode for the material name
- materialHashCode = TMP_TextUtilities.GetSimpleHashCode(material.name);
- m_IsFontAssetLookupTablesDirty = false;
- }
- /// <summary>
- /// Sort the Character table by Unicode values.
- /// </summary>
- internal void SortCharacterTable()
- {
- if (m_CharacterTable != null && m_CharacterTable.Count > 0)
- m_CharacterTable = m_CharacterTable.OrderBy(c => c.unicode).ToList();
- }
- /// <summary>
- /// Sort the Glyph table by index values.
- /// </summary>
- internal void SortGlyphTable()
- {
- if (m_GlyphTable != null && m_GlyphTable.Count > 0)
- m_GlyphTable = m_GlyphTable.OrderBy(c => c.index).ToList();
- }
- /// <summary>
- /// Sort both glyph and character tables.
- /// </summary>
- internal void SortGlyphAndCharacterTables()
- {
- SortGlyphTable();
- SortCharacterTable();
- }
- /// <summary>
- /// Function to check if a certain character exists in the font asset.
- /// </summary>
- /// <param name="character"></param>
- /// <returns></returns>
- public bool HasCharacter(int character)
- {
- if (m_CharacterLookupDictionary == null)
- return false;
- if (m_CharacterLookupDictionary.ContainsKey((uint)character))
- return true;
- return false;
- }
- /// <summary>
- /// Function to check if a certain character exists in the font asset.
- /// </summary>
- /// <param name="character"></param>
- /// <returns></returns>
- public bool HasCharacter(char character)
- {
- if (m_CharacterLookupDictionary == null)
- return false;
- if (m_CharacterLookupDictionary.ContainsKey(character))
- return true;
- return false;
- }
- /// <summary>
- /// Function to check if a character is contained in the font asset with the option to also check through fallback font assets.
- /// </summary>
- /// <param name="character"></param>
- /// <param name="searchFallbacks"></param>
- /// <returns></returns>
- public bool HasCharacter(char character, bool searchFallbacks)
- {
- // Read font asset definition if it hasn't already been done.
- if (m_CharacterLookupDictionary == null)
- {
- ReadFontAssetDefinition();
- if (m_CharacterLookupDictionary == null)
- return false;
- }
- // Check font asset
- if (m_CharacterLookupDictionary.ContainsKey(character))
- return true;
- // Check if font asset is dynamic and if so try to add the requested character to it.
- if (m_AtlasPopulationMode == AtlasPopulationMode.Dynamic)
- {
- TMP_Character returnedCharacter;
- if (TryAddCharacterInternal(character, out returnedCharacter))
- return true;
- }
- if (searchFallbacks)
- {
- // Check font asset fallbacks
- if (fallbackFontAssetTable != null && fallbackFontAssetTable.Count > 0)
- {
- for (int i = 0; i < fallbackFontAssetTable.Count && fallbackFontAssetTable[i] != null; i++)
- {
- if (fallbackFontAssetTable[i].HasCharacter_Internal(character, searchFallbacks))
- return true;
- }
- }
- // Check general fallback font assets.
- if (TMP_Settings.fallbackFontAssets != null && TMP_Settings.fallbackFontAssets.Count > 0)
- {
- for (int i = 0; i < TMP_Settings.fallbackFontAssets.Count && TMP_Settings.fallbackFontAssets[i] != null; i++)
- {
- if (TMP_Settings.fallbackFontAssets[i].m_CharacterLookupDictionary == null)
- TMP_Settings.fallbackFontAssets[i].ReadFontAssetDefinition();
- if (TMP_Settings.fallbackFontAssets[i].m_CharacterLookupDictionary != null && TMP_Settings.fallbackFontAssets[i].HasCharacter_Internal(character, searchFallbacks))
- return true;
- }
- }
- // Check TMP Settings Default Font Asset
- if (TMP_Settings.defaultFontAsset != null)
- {
- if (TMP_Settings.defaultFontAsset.m_CharacterLookupDictionary == null)
- TMP_Settings.defaultFontAsset.ReadFontAssetDefinition();
- if (TMP_Settings.defaultFontAsset.m_CharacterLookupDictionary != null && TMP_Settings.defaultFontAsset.HasCharacter_Internal(character, searchFallbacks))
- return true;
- }
- }
- return false;
- }
- /// <summary>
- /// Function to check if a character is contained in a font asset with the option to also check through fallback font assets.
- /// This private implementation does not search the fallback font asset in the TMP Settings file.
- /// </summary>
- /// <param name="character"></param>
- /// <param name="searchFallbacks"></param>
- /// <returns></returns>
- bool HasCharacter_Internal(char character, bool searchFallbacks)
- {
- // Read font asset definition if it hasn't already been done.
- if (m_CharacterLookupDictionary == null)
- {
- ReadFontAssetDefinition();
- if (m_CharacterLookupDictionary == null)
- return false;
- }
- // Check font asset
- if (m_CharacterLookupDictionary.ContainsKey(character))
- return true;
- if (searchFallbacks)
- {
- // Check Font Asset Fallback fonts.
- if (fallbackFontAssetTable != null && fallbackFontAssetTable.Count > 0)
- {
- for (int i = 0; i < fallbackFontAssetTable.Count && fallbackFontAssetTable[i] != null; i++)
- {
- if (fallbackFontAssetTable[i].HasCharacter_Internal(character, searchFallbacks))
- return true;
- }
- }
- }
- return false;
- }
- /// <summary>
- /// Function to check if certain characters exists in the font asset. Function returns a list of missing characters.
- /// </summary>
- /// <param name="character"></param>
- /// <returns></returns>
- public bool HasCharacters(string text, out List<char> missingCharacters)
- {
- if (m_CharacterLookupDictionary == null)
- {
- missingCharacters = null;
- return false;
- }
- missingCharacters = new List<char>();
- for (int i = 0; i < text.Length; i++)
- {
- if (!m_CharacterLookupDictionary.ContainsKey(text[i]))
- missingCharacters.Add(text[i]);
- }
- if (missingCharacters.Count == 0)
- return true;
- return false;
- }
- /// <summary>
- /// Function to check if certain characters exists in the font asset. Function returns false if any characters are missing.
- /// </summary>
- /// <param name="text">String containing the characters to check</param>
- /// <returns></returns>
- public bool HasCharacters(string text)
- {
- if (m_CharacterLookupDictionary == null)
- return false;
- for (int i = 0; i < text.Length; i++)
- {
- if (!m_CharacterLookupDictionary.ContainsKey(text[i]))
- return false;
- }
- return true;
- }
- /// <summary>
- /// Function to extract all the characters from a font asset.
- /// </summary>
- /// <param name="fontAsset"></param>
- /// <returns></returns>
- public static string GetCharacters(TMP_FontAsset fontAsset)
- {
- string characters = string.Empty;
- for (int i = 0; i < fontAsset.characterTable.Count; i++)
- {
- characters += (char)fontAsset.characterTable[i].unicode;
- }
- return characters;
- }
- /// <summary>
- /// Function which returns an array that contains all the characters from a font asset.
- /// </summary>
- /// <param name="fontAsset"></param>
- /// <returns></returns>
- public static int[] GetCharactersArray(TMP_FontAsset fontAsset)
- {
- int[] characters = new int[fontAsset.characterTable.Count];
- for (int i = 0; i < fontAsset.characterTable.Count; i++)
- {
- characters[i] = (int)fontAsset.characterTable[i].unicode;
- }
- return characters;
- }
- // ================================================================================
- // Properties and functions related to character and glyph additions as well as
- // tacking glyphs that need to be added to various font asset atlas textures.
- // ================================================================================
- /// <summary>
- /// Determines if the font asset is already registered to be updated.
- /// </summary>
- //private bool m_IsAlreadyRegisteredForUpdate;
- /// <summary>
- /// List of glyphs that need to be added / packed in atlas texture.
- /// </summary>
- private List<Glyph> m_GlyphsToPack = new List<Glyph>();
- /// <summary>
- /// List of glyphs that have been packed in the atlas texture and ready to be rendered.
- /// </summary>
- private List<Glyph> m_GlyphsPacked = new List<Glyph>();
- /// <summary>
- ///
- /// </summary>
- private List<Glyph> m_GlyphsToRender = new List<Glyph>();
- /// <summary>
- /// List used in the process of adding new glyphs to the atlas texture.
- /// </summary>
- private List<uint> m_GlyphIndexList = new List<uint>();
- private List<TMP_Character> m_CharactersToAdd = new List<TMP_Character>();
- /// <summary>
- /// Internal static array used to avoid allocations when using the GetGlyphPairAdjustmentTable().
- /// </summary>
- internal static uint[] s_GlyphIndexArray = new uint[16];
- /// <summary>
- /// Internal static list used to track characters that could not be added to the font asset.
- /// </summary>
- internal static List<uint> s_MissingCharacterList = new List<uint>(16);
- /// <summary>
- /// Try adding the characters from the provided string to the font asset.
- /// </summary>
- /// <param name="unicodes">Array that contains the characters to add to the font asset.</param>
- /// <returns>Returns true if all the characters were successfully added to the font asset. Return false otherwise.</returns>
- public bool TryAddCharacters(uint[] unicodes)
- {
- uint[] missingUnicodes;
- return TryAddCharacters(unicodes, out missingUnicodes);
- }
- /// <summary>
- /// Try adding the characters from the provided string to the font asset.
- /// </summary>
- /// <param name="unicodes">Array that contains the characters to add to the font asset.</param>
- /// <param name="missingUnicodes">Array containing the characters that could not be added to the font asset.</param>
- /// <returns>Returns true if all the characters were successfully added to the font asset. Return false otherwise.</returns>
- public bool TryAddCharacters(uint[] unicodes, out uint[] missingUnicodes)
- {
- s_MissingCharacterList.Clear();
- // Make sure font asset is set to dynamic and that we have a valid list of characters.
- if (unicodes == null || unicodes.Length == 0 || m_AtlasPopulationMode == AtlasPopulationMode.Static)
- {
- if (m_AtlasPopulationMode == AtlasPopulationMode.Static)
- Debug.LogWarning("Unable to add characters to font asset [" + this.name + "] because its AtlasPopulationMode is set to Static.", this);
- else
- {
- Debug.LogWarning("Unable to add characters to font asset [" + this.name + "] because the provided Unicode list is Null or Empty.", this);
- }
- missingUnicodes = unicodes.ToArray();
- return false;
- }
- Profiler.BeginSample("TMP.TryAddCharacter");
- // Load font face.
- if (FontEngine.LoadFontFace(m_SourceFontFile, m_FaceInfo.pointSize) != FontEngineError.Success)
- {
- Profiler.EndSample();
- missingUnicodes = unicodes.ToArray();
- return false;
- }
- // Clear data structures used to track which glyph needs to be added to atlas texture.
- m_GlyphIndexList.Clear();
- m_CharactersToAdd.Clear();
- bool isMissingCharacters = false;
- int unicodeCount = unicodes.Length;
- for (int i = 0; i < unicodeCount; i++)
- {
- uint unicode = unicodes[i];
- // Check if character is already contained in the character table.
- if (m_CharacterLookupDictionary.ContainsKey(unicode))
- continue;
- // Get the index of the glyph for this unicode value.
- uint glyphIndex = FontEngine.GetGlyphIndex(unicode);
- if (glyphIndex == 0)
- {
- isMissingCharacters = true;
- continue;
- }
- TMP_Character character = new TMP_Character(unicode, glyphIndex);
- // Check if glyph is already contained in the font asset as the same glyph might be referenced by multiple characters.
- if (m_GlyphLookupDictionary.ContainsKey(glyphIndex))
- {
- character.glyph = m_GlyphLookupDictionary[glyphIndex];
- m_CharacterTable.Add(character);
- m_CharacterLookupDictionary.Add(unicode, character);
- continue;
- }
- m_GlyphIndexList.Add(glyphIndex);
- m_CharactersToAdd.Add(character);
- }
- if (m_GlyphIndexList.Count == 0)
- {
- //Debug.LogWarning("No characters will be added to font asset [" + this.name + "] either because they are already present in the font asset or missing from the font file.");
- Profiler.EndSample();
- missingUnicodes = unicodes.ToArray();
- return false;
- }
- // Resize the Atlas Texture to the appropriate size
- if (m_AtlasTextures[m_AtlasTextureIndex].width == 0 || m_AtlasTextures[m_AtlasTextureIndex].height == 0)
- {
- //Debug.Log("Setting initial size of atlas texture used by font asset [" + this.name + "].");
- m_AtlasTextures[m_AtlasTextureIndex].Resize(m_AtlasWidth, m_AtlasHeight);
- FontEngine.ResetAtlasTexture(m_AtlasTextures[m_AtlasTextureIndex]);
- }
- Glyph[] glyphs;
- bool allCharactersAdded = FontEngine.TryAddGlyphsToTexture(m_GlyphIndexList, m_AtlasPadding, GlyphPackingMode.BestShortSideFit, m_FreeGlyphRects, m_UsedGlyphRects, m_AtlasRenderMode, m_AtlasTextures[m_AtlasTextureIndex], out glyphs);
- // Add new glyphs to relevant data structures.
- for (int i = 0; i < glyphs.Length; i++)
- {
- Glyph glyph = glyphs[i];
- uint glyphIndex = glyph.index;
-
- // Add new glyph to glyph table.
- m_GlyphTable.Add(glyph);
- m_GlyphLookupDictionary.Add(glyphIndex, glyph);
- }
- // Add new characters to relevant data structures.
- for (int i = 0; i < m_CharactersToAdd.Count; i++)
- {
- TMP_Character character = m_CharactersToAdd[i];
- Glyph glyph;
- if (m_GlyphLookupDictionary.TryGetValue(character.glyphIndex, out glyph) == false)
- {
- s_MissingCharacterList.Add(character.unicode);
- continue;
- }
- character.glyph = glyph;
- m_CharacterTable.Add(character);
- m_CharacterLookupDictionary.Add(character.unicode, character);
- }
- #if UNITY_EDITOR
- // Makes the changes to the font asset persistent.
- if (UnityEditor.EditorUtility.IsPersistent(this))
- {
- TMP_EditorResourceManager.RegisterResourceForUpdate(this);
- }
- #endif
- Profiler.EndSample();
- missingUnicodes = null;
- if (s_MissingCharacterList.Count > 0)
- missingUnicodes = s_MissingCharacterList.ToArray();
- return allCharactersAdded && !isMissingCharacters;
- }
- /// <summary>
- /// Try adding the characters from the provided string to the font asset.
- /// </summary>
- /// <param name="characters">String containing the characters to add to the font asset.</param>
- /// <returns>Returns true if all the characters were successfully added to the font asset. Return false otherwise.</returns>
- public bool TryAddCharacters(string characters)
- {
- string missingCharacters;
- return TryAddCharacters(characters, out missingCharacters);
- }
- /// <summary>
- /// Try adding the characters from the provided string to the font asset.
- /// </summary>
- /// <param name="characters">String containing the characters to add to the font asset.</param>
- /// <param name="missingCharacters">String containing the characters that could not be added to the font asset.</param>
- /// <returns>Returns true if all the characters were successfully added to the font asset. Return false otherwise.</returns>
- public bool TryAddCharacters(string characters, out string missingCharacters)
- {
- // Make sure font asset is set to dynamic and that we have a valid list of characters.
- if (string.IsNullOrEmpty(characters) || m_AtlasPopulationMode == AtlasPopulationMode.Static)
- {
- if (m_AtlasPopulationMode == AtlasPopulationMode.Static)
- Debug.LogWarning("Unable to add characters to font asset [" + this.name + "] because its AtlasPopulationMode is set to Static.", this);
- else
- {
- Debug.LogWarning("Unable to add characters to font asset [" + this.name + "] because the provided character list is Null or Empty.", this);
- }
- missingCharacters = characters;
- return false;
- }
- // Load font face.
- if (FontEngine.LoadFontFace(m_SourceFontFile, m_FaceInfo.pointSize) != FontEngineError.Success)
- {
- missingCharacters = characters;
- return false;
- }
- // Clear data structures used to track which glyph needs to be added to atlas texture.
- m_GlyphIndexList.Clear();
- m_CharactersToAdd.Clear();
- bool isMissingCharacters = false;
- int characterCount = characters.Length;
- // Iterate over each of the requested characters.
- for (int i = 0; i < characterCount; i++)
- {
- uint unicode = characters[i];
- // Check if character is already contained in the character table.
- if (m_CharacterLookupDictionary.ContainsKey(unicode))
- continue;
- // Get the index of the glyph for this unicode value.
- uint glyphIndex = FontEngine.GetGlyphIndex(unicode);
- // Skip missing glyphs
- if (glyphIndex == 0)
- {
- // Might want to keep track and report the missing characters.
- isMissingCharacters = true;
- continue;
- }
- TMP_Character character = new TMP_Character(unicode, glyphIndex);
- // Check if glyph is already contained in the font asset as the same glyph might be referenced by multiple characters.
- if (m_GlyphLookupDictionary.ContainsKey(glyphIndex))
- {
- character.glyph = m_GlyphLookupDictionary[glyphIndex];
- m_CharacterTable.Add(character);
- m_CharacterLookupDictionary.Add(unicode, character);
- continue;
- }
- // Add glyph to list of glyphs to add and glyph lookup map.
- m_GlyphIndexList.Add(glyphIndex);
- m_CharactersToAdd.Add(character);
- }
- if (m_GlyphIndexList.Count == 0)
- {
- missingCharacters = characters;
- return false;
- }
- // Resize the Atlas Texture to the appropriate size
- if (m_AtlasTextures[m_AtlasTextureIndex].width == 0 || m_AtlasTextures[m_AtlasTextureIndex].height == 0)
- {
- //Debug.Log("Setting initial size of atlas texture used by font asset [" + this.name + "].");
- m_AtlasTextures[m_AtlasTextureIndex].Resize(m_AtlasWidth, m_AtlasHeight);
- FontEngine.ResetAtlasTexture(m_AtlasTextures[m_AtlasTextureIndex]);
- }
- Glyph[] glyphs;
- bool allCharactersAdded = FontEngine.TryAddGlyphsToTexture(m_GlyphIndexList, m_AtlasPadding, GlyphPackingMode.BestShortSideFit, m_FreeGlyphRects, m_UsedGlyphRects, m_AtlasRenderMode, m_AtlasTextures[m_AtlasTextureIndex], out glyphs);
- for (int i = 0; i < glyphs.Length; i++)
- {
- Glyph glyph = glyphs[i];
- uint glyphIndex = glyph.index;
- // Add new glyph to glyph table.
- m_GlyphTable.Add(glyph);
- m_GlyphLookupDictionary.Add(glyphIndex, glyph);
- }
- missingCharacters = string.Empty;
- // Add new characters to relevant data structures.
- for (int i = 0; i < m_CharactersToAdd.Count; i++)
- {
- TMP_Character character = m_CharactersToAdd[i];
- Glyph glyph;
- if (m_GlyphLookupDictionary.TryGetValue(character.glyphIndex, out glyph) == false)
- {
- // TODO: Revise to avoid string concatenation.
- missingCharacters += (char)character.unicode;
- continue;
- }
- character.glyph = glyph;
- m_CharacterTable.Add(character);
- m_CharacterLookupDictionary.Add(character.unicode, character);
- }
- #if UNITY_EDITOR
- // Makes the changes to the font asset persistent.
- if (UnityEditor.EditorUtility.IsPersistent(this))
- {
- TMP_EditorResourceManager.RegisterResourceForUpdate(this);
- }
- #endif
- return allCharactersAdded && !isMissingCharacters;
- }
- /// <summary>
- /// NOT USED CURRENTLY - Try adding character using Unicode value to font asset.
- /// </summary>
- /// <param name="unicode">The Unicode value of the character.</param>
- /// <param name="character">The character data if successfully added to the font asset. Null otherwise.</param>
- /// <returns>Returns true if the character has been added. False otherwise.</returns>
- internal bool TryAddCharacter_Internal(uint unicode)
- {
- TMP_Character character = null;
-
- // Check if character is already contained in the character table.
- if (m_CharacterLookupDictionary.ContainsKey(unicode))
- return true;
- uint glyphIndex = FontEngine.GetGlyphIndex(unicode);
- if (glyphIndex == 0)
- return false;
- // Check if glyph is already contained in the font asset as the same glyph might be referenced by multiple characters.
- if (m_GlyphLookupDictionary.ContainsKey(glyphIndex))
- {
- character = new TMP_Character(unicode, m_GlyphLookupDictionary[glyphIndex]);
- m_CharacterTable.Add(character);
- m_CharacterLookupDictionary.Add(unicode, character);
- //#if UNITY_EDITOR
- // Makes the changes to the font asset persistent.
- // OPTIMIZATION: This could be handled when exiting Play mode if we added any new characters to the asset.
- // Could also add some update registry to handle this.
- //SortGlyphTable();
- //UnityEditor.EditorUtility.SetDirty(this);
- //#endif
- return true;
- }
- // Resize the Atlas Texture to the appropriate size
- if (m_AtlasTextures[m_AtlasTextureIndex].width == 0 || m_AtlasTextures[m_AtlasTextureIndex].height == 0)
- {
- //Debug.Log("Setting initial size of atlas texture used by font asset [" + this.name + "].");
- m_AtlasTextures[m_AtlasTextureIndex].Resize(m_AtlasWidth, m_AtlasHeight);
- FontEngine.ResetAtlasTexture(m_AtlasTextures[m_AtlasTextureIndex]);
- }
- Glyph glyph;
- if (FontEngine.TryAddGlyphToTexture(glyphIndex, m_AtlasPadding, GlyphPackingMode.BestShortSideFit, m_FreeGlyphRects, m_UsedGlyphRects, m_AtlasRenderMode, m_AtlasTextures[m_AtlasTextureIndex], out glyph))
- {
- // Add new glyph to glyph table.
- m_GlyphTable.Add(glyph);
- m_GlyphLookupDictionary.Add(glyphIndex, glyph);
- // Add new character
- character = new TMP_Character(unicode, glyph);
- m_CharacterTable.Add(character);
- m_CharacterLookupDictionary.Add(unicode, character);
- //#if UNITY_EDITOR
- // Makes the changes to the font asset persistent.
- // OPTIMIZATION: This could be handled when exiting Play mode if we added any new characters to the asset.
- // Could also add some update registry to handle this.
- //SortGlyphTable();
- //UnityEditor.EditorUtility.SetDirty(this);
- //#endif
- return true;
- }
- return false;
- }
- /// <summary>
- /// To be removed.
- /// </summary>
- /// <param name="unicode"></param>
- /// <param name="glyph"></param>
- internal TMP_Character AddCharacter_Internal(uint unicode, Glyph glyph)
- {
- // Check if character is already contained in the character table.
- if (m_CharacterLookupDictionary.ContainsKey(unicode))
- return m_CharacterLookupDictionary[unicode];
- uint glyphIndex = glyph.index;
- // Resize the Atlas Texture to the appropriate size
- if (m_AtlasTextures[m_AtlasTextureIndex].width == 0 || m_AtlasTextures[m_AtlasTextureIndex].height == 0)
- {
- //Debug.Log("Setting initial size of atlas texture used by font asset [" + this.name + "].");
- m_AtlasTextures[m_AtlasTextureIndex].Resize(m_AtlasWidth, m_AtlasHeight);
- FontEngine.ResetAtlasTexture(m_AtlasTextures[m_AtlasTextureIndex]);
- }
- // Check if glyph is already contained in the glyph table.
- if (m_GlyphLookupDictionary.ContainsKey(glyphIndex) == false)
- {
- if (glyph.glyphRect.width == 0 || glyph.glyphRect.width == 0)
- {
- // Glyphs with zero width and / or height can be automatically added to font asset.
- m_GlyphTable.Add(glyph);
- }
- else
- {
- // Try packing new glyph
- if (FontEngine.TryPackGlyphInAtlas(glyph, m_AtlasPadding, GlyphPackingMode.ContactPointRule, m_AtlasRenderMode, m_AtlasWidth, m_AtlasHeight, m_FreeGlyphRects, m_UsedGlyphRects) == false)
- {
- // TODO: Add handling to create new atlas texture to fit glyph.
- return null;
- }
- m_GlyphsToRender.Add(glyph);
- }
- }
- // Add character to font asset.
- TMP_Character character = new TMP_Character(unicode, glyph);
- m_CharacterTable.Add(character);
- m_CharacterLookupDictionary.Add(unicode, character);
- //Debug.Log("Adding character [" + (char)unicode + "] with Unicode (" + unicode + ") to [" + this.name + "] font asset.");
- // Schedule glyph to be added to the font atlas texture
- //TM_FontAssetUpdateManager.RegisterFontAssetForUpdate(this);
- UpdateAtlasTexture(); // Temporary until callback system is revised.
- //#if UNITY_EDITOR
- // Makes the changes to the font asset persistent.
- // OPTIMIZATION: This could be handled when exiting Play mode if we added any new characters to the asset.
- // Could also add some update registry to handle this.
- //SortGlyphTable();
- //UnityEditor.EditorUtility.SetDirty(this);
- //#endif
- return character;
- }
- /// <summary>
- /// Try adding character using Unicode value to font asset.
- /// Function assumes internal user has already checked to make sure the character is not already contained in the font asset.
- /// </summary>
- /// <param name="unicode">The Unicode value of the character.</param>
- /// <param name="character">The character data if successfully added to the font asset. Null otherwise.</param>
- /// <returns>Returns true if the character has been added. False otherwise.</returns>
- internal bool TryAddCharacterInternal(uint unicode, out TMP_Character character)
- {
- character = null;
- // Load font face.
- if (FontEngine.LoadFontFace(sourceFontFile, m_FaceInfo.pointSize) != FontEngineError.Success)
- return false;
- uint glyphIndex = FontEngine.GetGlyphIndex(unicode);
- if (glyphIndex == 0)
- return false;
- Profiler.BeginSample("TMP.TryAddCharacter");
- // Check if glyph is already contained in the font asset as the same glyph might be referenced by multiple characters.
- if (m_GlyphLookupDictionary.ContainsKey(glyphIndex))
- {
- character = new TMP_Character(unicode, m_GlyphLookupDictionary[glyphIndex]);
- m_CharacterTable.Add(character);
- m_CharacterLookupDictionary.Add(unicode, character);
- if (TMP_Settings.getFontFeaturesAtRuntime)
- UpdateGlyphAdjustmentRecords(unicode, glyphIndex);
- #if UNITY_EDITOR
- // Makes the changes to the font asset persistent.
- // OPTIMIZATION: This could be handled when exiting Play mode if we added any new characters to the asset.
- // Could also add some update registry to handle this.
- //SortGlyphTable();
- if (UnityEditor.EditorUtility.IsPersistent(this))
- {
- TMP_EditorResourceManager.RegisterResourceForUpdate(this);
- }
- #endif
- Profiler.EndSample();
- return true;
- }
- // Resize the Atlas Texture to the appropriate size
- if (m_AtlasTextures[m_AtlasTextureIndex].width == 0 || m_AtlasTextures[m_AtlasTextureIndex].height == 0)
- {
- // TODO: Need texture to be readable.
- if (m_AtlasTextures[m_AtlasTextureIndex].isReadable == false)
- {
- Debug.LogWarning("Unable to add the requested character to font asset [" + this.name + "]'s atlas texture. Please make the texture [" + m_AtlasTextures[m_AtlasTextureIndex].name + "] readable.", m_AtlasTextures[m_AtlasTextureIndex]);
- Profiler.EndSample();
- return false;
- }
- m_AtlasTextures[m_AtlasTextureIndex].Resize(m_AtlasWidth, m_AtlasHeight);
- FontEngine.ResetAtlasTexture(m_AtlasTextures[m_AtlasTextureIndex]);
- }
- Glyph glyph;
- if (FontEngine.TryAddGlyphToTexture(glyphIndex, m_AtlasPadding, GlyphPackingMode.BestShortSideFit, m_FreeGlyphRects, m_UsedGlyphRects, m_AtlasRenderMode, m_AtlasTextures[m_AtlasTextureIndex], out glyph))
- {
- // Add new glyph to glyph table.
- m_GlyphTable.Add(glyph);
- m_GlyphLookupDictionary.Add(glyphIndex, glyph);
- // Add new character
- character = new TMP_Character(unicode, glyph);
- m_CharacterTable.Add(character);
- m_CharacterLookupDictionary.Add(unicode, character);
- m_GlyphIndexList.Add(glyphIndex);
- if (TMP_Settings.getFontFeaturesAtRuntime)
- UpdateGlyphAdjustmentRecords(unicode, glyphIndex);
- #if UNITY_EDITOR
- // Makes the changes to the font asset persistent.
- // OPTIMIZATION: This could be handled when exiting Play mode if we added any new characters to the asset.
- // Could also add some update registry to handle this.
- //SortGlyphTable();
- if (UnityEditor.EditorUtility.IsPersistent(this))
- {
- TMP_EditorResourceManager.RegisterResourceForUpdate(this);
- }
- #endif
- Profiler.EndSample();
- return true;
- }
- Profiler.EndSample();
- return false;
- }
- /// <summary>
- /// Internal function used to get the glyph index for the given unicode.
- /// </summary>
- /// <param name="unicode"></param>
- /// <returns></returns>
- internal uint GetGlyphIndex(uint unicode)
- {
- // Load font face.
- if (FontEngine.LoadFontFace(sourceFontFile, m_FaceInfo.pointSize) != FontEngineError.Success)
- return 0;
- return FontEngine.GetGlyphIndex(unicode);
- }
- internal void UpdateAtlasTexture()
- {
- // Return if we don't have any glyphs to add to atlas texture.
- // This is possible if UpdateAtlasTexture() was called manually.
- //if (m_GlyphsToPack.Count == 0)
- // return;
- if (m_GlyphsToRender.Count == 0)
- return;
- //Debug.Log("Updating [" + this.name + "]'s atlas texture.");
- // Pack glyphs in the given atlas texture size.
- // TODO: Packing and glyph render modes should be defined in the font asset.
- //FontEngine.PackGlyphsInAtlas(m_GlyphsToPack, m_GlyphsPacked, m_AtlasPadding, GlyphPackingMode.ContactPointRule, GlyphRenderMode.SDFAA, m_AtlasWidth, m_AtlasHeight, m_FreeGlyphRects, m_UsedGlyphRects);
- //FontEngine.RenderGlyphsToTexture(m_GlyphsPacked, m_AtlasPadding, GlyphRenderMode.SDFAA, m_AtlasTextures[m_AtlasTextureIndex]);
- // Resize the Atlas Texture to the appropriate size
- if (m_AtlasTextures[m_AtlasTextureIndex].width == 0 || m_AtlasTextures[m_AtlasTextureIndex].height == 0)
- {
- //Debug.Log("Setting initial size of atlas texture used by font asset [" + this.name + "].");
- m_AtlasTextures[m_AtlasTextureIndex].Resize(m_AtlasWidth, m_AtlasHeight);
- FontEngine.ResetAtlasTexture(m_AtlasTextures[m_AtlasTextureIndex]);
- }
- FontEngine.RenderGlyphsToTexture(m_GlyphsToRender, m_AtlasPadding, m_AtlasRenderMode, m_AtlasTextures[m_AtlasTextureIndex]);
- // Apply changes to atlas texture
- m_AtlasTextures[m_AtlasTextureIndex].Apply(false, false);
- // Add glyphs that were successfully packed to the glyph table.
- for (int i = 0; i < m_GlyphsToRender.Count /* m_GlyphsPacked.Count */; i++)
- {
- Glyph glyph = m_GlyphsToRender[i]; // m_GlyphsPacked[i];
- // Update atlas texture index
- glyph.atlasIndex = m_AtlasTextureIndex;
- m_GlyphTable.Add(glyph);
- m_GlyphLookupDictionary.Add(glyph.index, glyph);
- }
- // Clear list of glyphs
- m_GlyphsPacked.Clear();
- m_GlyphsToRender.Clear();
- // Add any remaining glyphs into new atlas texture if multi texture support if enabled.
- if (m_GlyphsToPack.Count > 0)
- {
- /*
- // Create new atlas texture
- Texture2D tex = new Texture2D(m_AtlasWidth, m_AtlasHeight, TextureFormat.Alpha8, false, true);
- tex.SetPixels32(new Color32[m_AtlasWidth * m_AtlasHeight]);
- tex.Apply();
- m_AtlasTextureIndex++;
- if (m_AtlasTextures.Length == m_AtlasTextureIndex)
- Array.Resize(ref m_AtlasTextures, Mathf.NextPowerOfTwo(m_AtlasTextureIndex + 1));
- m_AtlasTextures[m_AtlasTextureIndex] = tex;
- */
- }
- #if UNITY_EDITOR
- // Makes the changes to the font asset persistent.
- SortGlyphAndCharacterTables();
- TMP_EditorResourceManager.RegisterResourceForUpdate(this);
- #endif
- }
- internal void UpdateGlyphAdjustmentRecords(uint unicode, uint glyphIndex)
- {
- Profiler.BeginSample("TMP.UpdateGlyphAdjustmentRecords");
- int glyphCount = m_GlyphIndexList.Count;
- if (s_GlyphIndexArray.Length <= glyphCount)
- s_GlyphIndexArray = new uint[Mathf.NextPowerOfTwo(glyphCount + 1)];
- for (int i = 0; i < glyphCount; i++)
- s_GlyphIndexArray[i] = m_GlyphIndexList[i];
- // Clear unused array elements
- Array.Clear(s_GlyphIndexArray, glyphCount, s_GlyphIndexArray.Length - glyphCount);
- // Get glyph pair adjustment records from font file.
- // TODO: Revise FontEngine bindings to use a more efficient function where only the new glyph index is passed.
- GlyphPairAdjustmentRecord[] pairAdjustmentRecords = FontEngine.GetGlyphPairAdjustmentTable(s_GlyphIndexArray);
- if (pairAdjustmentRecords == null || pairAdjustmentRecords.Length == 0)
- {
- Profiler.EndSample();
- return;
- }
- if (m_FontFeatureTable == null)
- m_FontFeatureTable = new TMP_FontFeatureTable();
- for (int i = 0; i < pairAdjustmentRecords.Length && pairAdjustmentRecords[i].firstAdjustmentRecord.glyphIndex != 0; i++)
- {
- long pairKey = (long)pairAdjustmentRecords[i].secondAdjustmentRecord.glyphIndex << 32 | pairAdjustmentRecords[i].firstAdjustmentRecord.glyphIndex;
- // Check if table already contains a pair adjustment record for this key.
- if (m_FontFeatureTable.m_GlyphPairAdjustmentRecordLookupDictionary.ContainsKey(pairKey))
- continue;
- TMP_GlyphPairAdjustmentRecord record = new TMP_GlyphPairAdjustmentRecord(pairAdjustmentRecords[i]);
- m_FontFeatureTable.m_GlyphPairAdjustmentRecords.Add(record);
- m_FontFeatureTable.m_GlyphPairAdjustmentRecordLookupDictionary.Add(pairKey, record);
- }
- #if UNITY_EDITOR
- m_FontFeatureTable.SortGlyphPairAdjustmentRecords();
- #endif
- Profiler.EndSample();
- }
- /// <summary>
- /// Clears font asset data including the glyph and character tables and textures.
- /// Function might be changed to Internal and only used in tests.
- /// </summary>
- /// <param name="setAtlasSizeToZero">Will set the atlas texture size to zero width and height if true.</param>
- public void ClearFontAssetData(bool setAtlasSizeToZero = false)
- {
- #if UNITY_EDITOR
- // Record full object undo in the Editor.
- //UnityEditor.Undo.RecordObjects(new UnityEngine.Object[] { this, this.atlasTexture }, "Resetting Font Asset");
- #endif
- // Clear glyph and character tables
- if (m_GlyphTable != null)
- m_GlyphTable.Clear();
- if (m_CharacterTable != null)
- m_CharacterTable.Clear();
- // Clear glyph rectangles
- if (m_UsedGlyphRects != null)
- m_UsedGlyphRects.Clear();
- if (m_FreeGlyphRects != null)
- {
- int packingModifier = ((GlyphRasterModes)m_AtlasRenderMode & GlyphRasterModes.RASTER_MODE_BITMAP) == GlyphRasterModes.RASTER_MODE_BITMAP ? 0 : 1;
- m_FreeGlyphRects = new List<GlyphRect>() { new GlyphRect(0, 0, m_AtlasWidth - packingModifier, m_AtlasHeight - packingModifier) };
- }
- if (m_GlyphsToPack != null)
- m_GlyphsToPack.Clear();
- if (m_GlyphsPacked != null)
- m_GlyphsPacked.Clear();
- // Clear Glyph Adjustment Table
- if (m_FontFeatureTable != null && m_FontFeatureTable.m_GlyphPairAdjustmentRecords != null)
- m_FontFeatureTable.glyphPairAdjustmentRecords.Clear();
- m_AtlasTextureIndex = 0;
- // Clear atlas textures
- if (m_AtlasTextures != null)
- {
- for (int i = 0; i < m_AtlasTextures.Length; i++)
- {
- Texture2D texture = m_AtlasTextures[i];
- if (i > 0)
- DestroyImmediate(texture, true);
- if (texture == null)
- continue;
- // TODO: Need texture to be readable.
- if (m_AtlasTextures[i].isReadable == false)
- {
- Debug.LogWarning("Unable to reset font asset [" + this.name + "]'s atlas texture. Please make the texture [" + m_AtlasTextures[i].name + "] readable.", m_AtlasTextures[i]);
- continue;
- }
- if (setAtlasSizeToZero)
- {
- texture.Resize(0, 0, TextureFormat.Alpha8, false);
- }
- else if (texture.width != m_AtlasWidth || texture.height != m_AtlasHeight)
- {
- texture.Resize(m_AtlasWidth, m_AtlasHeight, TextureFormat.Alpha8, false);
- }
- // Clear texture atlas
- FontEngine.ResetAtlasTexture(texture);
- texture.Apply();
- if (i == 0)
- m_AtlasTexture = texture;
- m_AtlasTextures[i] = texture;
- }
- }
- #if UNITY_EDITOR
- if (UnityEditor.EditorUtility.IsPersistent(this))
- {
- TMP_EditorResourceManager.RegisterResourceForReimport(this);
- }
- #endif
- ReadFontAssetDefinition();
- }
- /// <summary>
- /// Internal method used to upgrade font asset to support Dynamic SDF.
- /// </summary>
- private void UpgradeFontAsset()
- {
- m_Version = "1.1.0";
- Debug.Log("Upgrading font asset [" + this.name + "] to version " + m_Version + ".", this);
- m_FaceInfo.familyName = m_fontInfo.Name;
- m_FaceInfo.styleName = string.Empty;
- m_FaceInfo.pointSize = (int)m_fontInfo.PointSize;
- m_FaceInfo.scale = m_fontInfo.Scale;
- m_FaceInfo.lineHeight = m_fontInfo.LineHeight;
- m_FaceInfo.ascentLine = m_fontInfo.Ascender;
- m_FaceInfo.capLine = m_fontInfo.CapHeight;
- m_FaceInfo.meanLine = m_fontInfo.CenterLine;
- m_FaceInfo.baseline = m_fontInfo.Baseline;
- m_FaceInfo.descentLine = m_fontInfo.Descender;
- m_FaceInfo.superscriptOffset = m_fontInfo.SuperscriptOffset;
- m_FaceInfo.superscriptSize = m_fontInfo.SubSize;
- m_FaceInfo.subscriptOffset = m_fontInfo.SubscriptOffset;
- m_FaceInfo.subscriptSize = m_fontInfo.SubSize;
- m_FaceInfo.underlineOffset = m_fontInfo.Underline;
- m_FaceInfo.underlineThickness = m_fontInfo.UnderlineThickness;
- m_FaceInfo.strikethroughOffset = m_fontInfo.strikethrough;
- m_FaceInfo.strikethroughThickness = m_fontInfo.strikethroughThickness;
- m_FaceInfo.tabWidth = m_fontInfo.TabWidth;
- if (m_AtlasTextures == null || m_AtlasTextures.Length == 0)
- m_AtlasTextures = new Texture2D[1];
- m_AtlasTextures[0] = atlas;
- //atlas = null;
- m_AtlasWidth = (int)m_fontInfo.AtlasWidth;
- m_AtlasHeight = (int)m_fontInfo.AtlasHeight;
- m_AtlasPadding = (int)m_fontInfo.Padding;
- switch(m_CreationSettings.renderMode)
- {
- case 0:
- m_AtlasRenderMode = GlyphRenderMode.SMOOTH_HINTED;
- break;
- case 1:
- m_AtlasRenderMode = GlyphRenderMode.SMOOTH;
- break;
- case 2:
- m_AtlasRenderMode = GlyphRenderMode.RASTER_HINTED;
- break;
- case 3:
- m_AtlasRenderMode = GlyphRenderMode.RASTER;
- break;
- case 6:
- m_AtlasRenderMode = GlyphRenderMode.SDF16;
- break;
- case 7:
- m_AtlasRenderMode = GlyphRenderMode.SDF32;
- break;
- }
- //m_fontInfo = null;
- // Convert font weight table
- if (fontWeights != null)
- {
- m_FontWeightTable[4] = fontWeights[4];
- m_FontWeightTable[7] = fontWeights[7];
- // Clear old fontWeight
- //fontWeights = null;
- }
- // Convert font fallbacks
- if (fallbackFontAssets != null && fallbackFontAssets.Count > 0)
- {
- if (m_FallbackFontAssetTable == null)
- m_FallbackFontAssetTable = new List<TMP_FontAsset>(fallbackFontAssets.Count);
- for (int i = 0; i < fallbackFontAssets.Count; i++)
- m_FallbackFontAssetTable.Add(fallbackFontAssets[i]);
- // Clear old fallbackFontAssets list
- //fallbackFontAssets = null;
- }
- // Check if font asset creation settings contains a reference to the source font file GUID
- if (m_CreationSettings.sourceFontFileGUID != null || m_CreationSettings.sourceFontFileGUID != string.Empty)
- {
- m_SourceFontFileGUID = m_CreationSettings.sourceFontFileGUID;
- }
- else
- {
- Debug.LogWarning("Font asset [" + this.name + "] doesn't have a reference to its source font file. Please assign the appropriate source font file for this asset in the Font Atlas & Material section of font asset inspector.", this);
- }
- // Convert legacy glyph and character tables to new format
- m_GlyphTable.Clear();
- m_CharacterTable.Clear();
- //#if UNITY_EDITOR
- // TODO: This is causing a crash in Unity and related to AssetDatabase.LoadAssetAtPath and Resources.Load()
- // Load font to allow us to get the glyph index.
- //string path = UnityEditor.AssetDatabase.GUIDToAssetPath(m_SourceFontFileGUID);
- //if (path != string.Empty)
- //{
- //m_SourceFontFile_EditorRef = UnityEditor.AssetDatabase.LoadAssetAtPath<Font>(path);
- //FontEngine.LoadFontFace(m_SourceFontFile_EditorRef);
- //}
- //#endif
- bool isSpaceCharacterPresent = false;
- for (int i = 0; i < m_glyphInfoList.Count; i++)
- {
- TMP_Glyph oldGlyph = m_glyphInfoList[i];
- Glyph glyph = new Glyph();
- uint glyphIndex = (uint)i + 1;
-
- //#if UNITY_EDITOR
- //if (m_SourceFontFile_EditorRef != null)
- // glyphIndex = FontEngine.GetGlyphIndex((uint)oldGlyph.id);
- //#endif
- glyph.index = glyphIndex;
- glyph.glyphRect = new GlyphRect((int)oldGlyph.x, m_AtlasHeight - (int)(oldGlyph.y + oldGlyph.height + 0.5f), (int)(oldGlyph.width + 0.5f), (int)(oldGlyph.height + 0.5f));
- glyph.metrics = new GlyphMetrics(oldGlyph.width, oldGlyph.height, oldGlyph.xOffset, oldGlyph.yOffset, oldGlyph.xAdvance);
- glyph.scale = oldGlyph.scale;
- glyph.atlasIndex = 0;
- m_GlyphTable.Add(glyph);
- TMP_Character character = new TMP_Character((uint)oldGlyph.id, glyph);
- if (oldGlyph.id == 32)
- isSpaceCharacterPresent = true;
- m_CharacterTable.Add(character);
- }
- // Special handling for the synthesized space character
- if (!isSpaceCharacterPresent)
- {
- Debug.Log("Synthesizing Space for [" + this.name + "]");
- Glyph glyph = new Glyph(0, new GlyphMetrics(0, 0, 0, 0, m_FaceInfo.ascentLine / 5), GlyphRect.zero, 1.0f, 0);
- m_GlyphTable.Add(glyph);
- m_CharacterTable.Add(new TMP_Character(32, glyph));
- }
- // Clear legacy glyph info list.
- //m_glyphInfoList.Clear();
- ReadFontAssetDefinition();
- // Convert atlas textures data to new format
- // TODO
- #if UNITY_EDITOR
- if (UnityEditor.EditorUtility.IsPersistent(this))
- {
- TMP_EditorResourceManager.RegisterResourceForUpdate(this);
- }
- #endif
- }
- /// <summary>
- ///
- /// </summary>
- void UpgradeGlyphAdjustmentTableToFontFeatureTable()
- {
- Debug.Log("Upgrading font asset [" + this.name + "] Glyph Adjustment Table.", this);
- if (m_FontFeatureTable == null)
- m_FontFeatureTable = new TMP_FontFeatureTable();
- int pairCount = m_KerningTable.kerningPairs.Count;
- m_FontFeatureTable.m_GlyphPairAdjustmentRecords = new List<TMP_GlyphPairAdjustmentRecord>(pairCount);
- for (int i = 0; i < pairCount; i++)
- {
- KerningPair pair = m_KerningTable.kerningPairs[i];
- uint firstGlyphIndex = 0;
- TMP_Character firstCharacter;
- if (m_CharacterLookupDictionary.TryGetValue(pair.firstGlyph, out firstCharacter))
- firstGlyphIndex = firstCharacter.glyphIndex;
- uint secondGlyphIndex = 0;
- TMP_Character secondCharacter;
- if (m_CharacterLookupDictionary.TryGetValue(pair.secondGlyph, out secondCharacter))
- secondGlyphIndex = secondCharacter.glyphIndex;
- TMP_GlyphAdjustmentRecord firstAdjustmentRecord = new TMP_GlyphAdjustmentRecord(firstGlyphIndex, new TMP_GlyphValueRecord(pair.firstGlyphAdjustments.xPlacement, pair.firstGlyphAdjustments.yPlacement, pair.firstGlyphAdjustments.xAdvance, pair.firstGlyphAdjustments.yAdvance));
- TMP_GlyphAdjustmentRecord secondAdjustmentRecord = new TMP_GlyphAdjustmentRecord(secondGlyphIndex, new TMP_GlyphValueRecord(pair.secondGlyphAdjustments.xPlacement, pair.secondGlyphAdjustments.yPlacement, pair.secondGlyphAdjustments.xAdvance, pair.secondGlyphAdjustments.yAdvance));
- TMP_GlyphPairAdjustmentRecord record = new TMP_GlyphPairAdjustmentRecord(firstAdjustmentRecord, secondAdjustmentRecord);
- m_FontFeatureTable.m_GlyphPairAdjustmentRecords.Add(record);
- }
- // TODO: Should clear legacy kerning table.
- m_KerningTable.kerningPairs = null;
- m_KerningTable = null;
- #if UNITY_EDITOR
- if (UnityEditor.EditorUtility.IsPersistent(this))
- {
- TMP_EditorResourceManager.RegisterResourceForUpdate(this);
- }
- #endif
- }
- }
- }
|