PKHeX/PKHeX.WinForms/Util/FontUtil.cs
Kurt cc8ac7a4f1 Remove unnecessary warning suppression
fixed dat .editorconfig in vs22
Catching general exceptions is okay because this program handles user modified data that can potentially be corrupt.
2021-12-27 12:09:15 -08:00

45 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Text;
using System.IO;
using PKHeX.WinForms.Properties;
namespace PKHeX.WinForms
{
public static class FontUtil
{
private static readonly PrivateFontCollection CustomFonts = new();
private static readonly Dictionary<float, Font> GeneratedFonts = new();
static FontUtil()
{
string g6path = Path.Combine(Path.GetTempPath(), "pgldings6.ttf");
try
{
if (!File.Exists(g6path))
File.WriteAllBytes(g6path, Resources.pgldings_normalregular);
CustomFonts.AddFontFile(g6path);
}
catch (FileNotFoundException ex)
{
Debug.WriteLine($"Unable to read font file: {ex.Message}");
}
catch (Exception ex)
{
Debug.WriteLine($"Unable to add in-game font: {ex.Message}");
}
}
public static Font GetPKXFont(float size = 11f)
{
if (GeneratedFonts.TryGetValue(size, out var f))
return f;
var family = CustomFonts.Families.Length == 0 ? FontFamily.GenericSansSerif : CustomFonts.Families[0];
var font = new Font(family, size);
GeneratedFonts.Add(size, font);
return font;
}
}
}