From 1e37350e995a078e7e3acdba4856cdc359db66f2 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 22 Dec 2020 19:43:46 +1000 Subject: [PATCH] Use NuGet package instead of copy-pasted code in BizwareGL/Borrowed Our copy was equivalent to version 1.0.0 + a patch which allowed Stream instead of requiring a filename, so I've used 1.0.2 as it has the author's implementation of the same feature. There are more recent versions available (note, 1.0.2 isn't for .NET Core). NuGet: https://www.nuget.org/packages/Cyotek.Drawing.BitmapFont Project repo: https://github.com/cyotek/Cyotek.Drawing.BitmapFont --- .../BizHawk.Bizware.BizwareGL.csproj | 1 + .../Borrowed/BitmapFontParser/BitmapFont.cs | 71 -------- .../BitmapFontParser/BitmapFontLoader.cs | 162 ------------------ .../Borrowed/BitmapFontParser/Character.cs | 26 --- .../Borrowed/BitmapFontParser/Kerning.cs | 26 --- .../Borrowed/BitmapFontParser/Padding.cs | 29 ---- .../Borrowed/BitmapFontParser/Page.cs | 24 --- .../Borrowed/readme.txt | 4 - .../StringRenderer.cs | 3 +- 9 files changed, 3 insertions(+), 343 deletions(-) delete mode 100644 src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/BitmapFont.cs delete mode 100644 src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/BitmapFontLoader.cs delete mode 100644 src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Character.cs delete mode 100644 src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Kerning.cs delete mode 100644 src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Padding.cs delete mode 100644 src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Page.cs delete mode 100644 src/BizHawk.Bizware.BizwareGL/Borrowed/readme.txt diff --git a/src/BizHawk.Bizware.BizwareGL/BizHawk.Bizware.BizwareGL.csproj b/src/BizHawk.Bizware.BizwareGL/BizHawk.Bizware.BizwareGL.csproj index e24f681620..b0415bf93d 100644 --- a/src/BizHawk.Bizware.BizwareGL/BizHawk.Bizware.BizwareGL.csproj +++ b/src/BizHawk.Bizware.BizwareGL/BizHawk.Bizware.BizwareGL.csproj @@ -7,6 +7,7 @@ true + diff --git a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/BitmapFont.cs b/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/BitmapFont.cs deleted file mode 100644 index 46f4b53234..0000000000 --- a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/BitmapFont.cs +++ /dev/null @@ -1,71 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using System.Drawing; - -// public domain assumed from cyotek.com -namespace Cyotek.Drawing.BitmapFont -{ - public class BitmapFont : IEnumerable - { - public IEnumerator GetEnumerator() - { - foreach (KeyValuePair pair in Characters) - { - yield return pair.Value; - } - } - - public int AlphaChannel { get; set; } - - public int BaseHeight { get; set; } - - public int BlueChannel { get; set; } - - public bool Bold { get; set; } - - public IDictionary Characters { get; set; } - - public string Charset { get; set; } - - public string FamilyName { get; set; } - - public int FontSize { get; set; } - - public int GreenChannel { get; set; } - - public bool Italic { get; set; } - - public IDictionary Kernings { get; set; } - - public int LineHeight { get; set; } - - public int OutlineSize { get; set; } - - public bool Packed { get; set; } - - public Padding Padding { get; set; } - - public Page[] Pages { get; set; } - - public int RedChannel { get; set; } - - public bool Smoothed { get; set; } - - public Point Spacing { get; set; } - - public int StretchedHeight { get; set; } - - public int SuperSampling { get; set; } - - public Size TextureSize { get; set; } - - public Character this[char character] => Characters[character]; - - public bool Unicode { get; set; } - - IEnumerator IEnumerable.GetEnumerator() - { - return GetEnumerator(); - } - } -} diff --git a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/BitmapFontLoader.cs b/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/BitmapFontLoader.cs deleted file mode 100644 index 0a46e3f237..0000000000 --- a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/BitmapFontLoader.cs +++ /dev/null @@ -1,162 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Drawing; -using System.IO; -using System.Xml; - -// public domain assumed from cyotek.com -namespace Cyotek.Drawing.BitmapFont -{ - // Parsing class for bitmap fonts generated by AngelCode BMFont - // http://www.angelcode.com/products/bmfont/ - - public static class BitmapFontLoader - { - /// - /// Loads a bitmap font from an XML file. - /// - public static BitmapFont LoadFontFromXmlFile(Stream stream) - { - var document = new XmlDocument(); - IDictionary pageData = new SortedDictionary(); - IDictionary kerningDictionary = new Dictionary(); - IDictionary charDictionary = new Dictionary(); - var font = new BitmapFont(); - - document.Load(stream); - XmlNode root = document.DocumentElement; - - // load the basic attributes - var properties = root.SelectSingleNode("info"); - font.FamilyName = properties.Attributes["face"].Value; - font.FontSize = Convert.ToInt32(properties.Attributes["size"].Value); - font.Bold = Convert.ToInt32(properties.Attributes["bold"].Value) != 0; - font.Italic = Convert.ToInt32(properties.Attributes["italic"].Value) != 0; - font.Unicode = Convert.ToInt32(properties.Attributes["unicode"].Value) != 0; - font.StretchedHeight = Convert.ToInt32(properties.Attributes["stretchH"].Value); - font.Charset = properties.Attributes["charset"].Value; - font.Smoothed = Convert.ToInt32(properties.Attributes["smooth"].Value) != 0; - font.SuperSampling = Convert.ToInt32(properties.Attributes["aa"].Value); - font.Padding = ParsePadding(properties.Attributes["padding"].Value); - font.Spacing = ParsePoint(properties.Attributes["spacing"].Value); - font.OutlineSize = Convert.ToInt32(properties.Attributes["outline"].Value); - - // common attributes - properties = root.SelectSingleNode("common"); - font.BaseHeight = Convert.ToInt32(properties.Attributes["lineHeight"].Value); - font.LineHeight = Convert.ToInt32(properties.Attributes["base"].Value); - font.TextureSize = new Size - ( - Convert.ToInt32(properties.Attributes["scaleW"].Value), - Convert.ToInt32(properties.Attributes["scaleH"].Value) - ); - font.Packed = Convert.ToInt32(properties.Attributes["packed"].Value) != 0; - font.AlphaChannel = Convert.ToInt32(properties.Attributes["alphaChnl"].Value); - font.RedChannel = Convert.ToInt32(properties.Attributes["redChnl"].Value); - font.GreenChannel = Convert.ToInt32(properties.Attributes["greenChnl"].Value); - font.BlueChannel = Convert.ToInt32(properties.Attributes["blueChnl"].Value); - - // load texture information - foreach (XmlNode node in root.SelectNodes("pages/page")) - { - var page = new Page - { - Id = Convert.ToInt32(node.Attributes["id"].Value), - FileName = node.Attributes["file"].Value - }; - - pageData.Add(page.Id, page); - } - font.Pages = ToArray(pageData.Values); - - // load character information - foreach (XmlNode node in root.SelectNodes("chars/char")) - { - var character = new Character - { - Char = (char) Convert.ToInt32(node.Attributes["id"].Value), - Bounds = new Rectangle - ( - Convert.ToInt32(node.Attributes["x"].Value), - Convert.ToInt32(node.Attributes["y"].Value), - Convert.ToInt32(node.Attributes["width"].Value), - Convert.ToInt32(node.Attributes["height"].Value) - ), - Offset = new Point - ( - Convert.ToInt32(node.Attributes["xoffset"].Value), - Convert.ToInt32(node.Attributes["yoffset"].Value) - ), - XAdvance = Convert.ToInt32(node.Attributes["xadvance"].Value), - TexturePage = Convert.ToInt32(node.Attributes["page"].Value), - Channel = Convert.ToInt32(node.Attributes["chnl"].Value) - }; - - charDictionary.Add(character.Char, character); - } - - font.Characters = charDictionary; - - // loading kerning information - foreach (XmlNode node in root.SelectNodes("kernings/kerning")) - { - var key = new Kerning((char)Convert.ToInt32(node.Attributes["first"].Value), (char)Convert.ToInt32(node.Attributes["second"].Value), Convert.ToInt32(node.Attributes["amount"].Value)); - - if (!kerningDictionary.ContainsKey(key)) - { - kerningDictionary.Add(key, key.Amount); - } - } - - font.Kernings = kerningDictionary; - - return font; - } - - /// - /// Creates a Padding object from a string representation - /// - /// The string. - private static Padding ParsePadding(string s) - { - var parts = s.Split(','); - - return new Padding - { - Left = Convert.ToInt32(parts[3].Trim()), - Top = Convert.ToInt32(parts[0].Trim()), - Right = Convert.ToInt32(parts[1].Trim()), - Bottom = Convert.ToInt32(parts[2].Trim()) - }; - } - - /// - /// Creates a Point object from a string representation - /// - /// The string. - private static Point ParsePoint(string s) - { - var parts = s.Split(','); - - return new Point - { - X = Convert.ToInt32(parts[0].Trim()), - Y = Convert.ToInt32(parts[1].Trim()) - }; - } - - /// - /// Converts the given collection into an array - /// - /// Type of the items in the array - /// The values. - private static T[] ToArray(ICollection values) - { - // avoid a forced .NET 3 dependency just for one call to Linq - var result = new T[values.Count]; - values.CopyTo(result, 0); - - return result; - } - } -} diff --git a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Character.cs b/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Character.cs deleted file mode 100644 index d974c20232..0000000000 --- a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Character.cs +++ /dev/null @@ -1,26 +0,0 @@ -//public domain assumed from cyotek.com - -using System.Drawing; - -namespace Cyotek.Drawing.BitmapFont -{ - public struct Character - { - public override string ToString() - { - return this.Char.ToString(); - } - - public int Channel { get; set; } - - public Rectangle Bounds { get; set; } - - public Point Offset { get; set; } - - public char Char { get; set; } - - public int TexturePage { get; set; } - - public int XAdvance { get; set; } - } -} diff --git a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Kerning.cs b/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Kerning.cs deleted file mode 100644 index 755688210d..0000000000 --- a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Kerning.cs +++ /dev/null @@ -1,26 +0,0 @@ -//public domain assumed from cyotek.com - -namespace Cyotek.Drawing.BitmapFont -{ - public struct Kerning - { - public Kerning(char firstCharacter, char secondCharacter, int amount) - : this() - { - this.FirstCharacter = firstCharacter; - this.SecondCharacter = secondCharacter; - this.Amount = amount; - } - - public override string ToString() - { - return string.Format("{0} to {1} = {2}", this.FirstCharacter, this.SecondCharacter, this.Amount); - } - - public char FirstCharacter { get; set; } - - public char SecondCharacter { get; set; } - - public int Amount { get; set; } - } -} diff --git a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Padding.cs b/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Padding.cs deleted file mode 100644 index bdec22bff5..0000000000 --- a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Padding.cs +++ /dev/null @@ -1,29 +0,0 @@ -//public domain assumed from cyotek.com - -namespace Cyotek.Drawing.BitmapFont -{ - public struct Padding - { - public Padding(int left, int top, int right, int bottom) - : this() - { - this.Top = top; - this.Left = left; - this.Right = right; - this.Bottom = bottom; - } - - public override string ToString() - { - return string.Format("{0}, {1}, {2}, {3}", this.Left, this.Top, this.Right, this.Bottom); - } - - public int Top { get; set; } - - public int Left { get; set; } - - public int Right { get; set; } - - public int Bottom { get; set; } - } -} diff --git a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Page.cs b/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Page.cs deleted file mode 100644 index 8a28ff0481..0000000000 --- a/src/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Page.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System.IO; - -// public domain assumed from cyotek.com -namespace Cyotek.Drawing.BitmapFont -{ - public struct Page - { - public Page(int id, string fileName) - : this() - { - FileName = fileName; - Id = id; - } - - public override string ToString() - { - return $"{Id} ({Path.GetFileName(FileName)})"; - } - - public string FileName { get; set; } - - public int Id { get; set; } - } -} diff --git a/src/BizHawk.Bizware.BizwareGL/Borrowed/readme.txt b/src/BizHawk.Bizware.BizwareGL/Borrowed/readme.txt deleted file mode 100644 index aee2aed443..0000000000 --- a/src/BizHawk.Bizware.BizwareGL/Borrowed/readme.txt +++ /dev/null @@ -1,4 +0,0 @@ -BitmapFontParser -http://cyotek.com/blog/angelcode-bitmap-font-parsing-using-csharp -License not stated. I'm content with calling it public domain. As future work, the code could be replaced easily, so I don't consider this a big deal. It's most trivial code. -It loads fonts created by http://www.angelcode.com/products/bmfont/ \ No newline at end of file diff --git a/src/BizHawk.Bizware.BizwareGL/StringRenderer.cs b/src/BizHawk.Bizware.BizwareGL/StringRenderer.cs index f6bc1b8501..c58f9c96d3 100644 --- a/src/BizHawk.Bizware.BizwareGL/StringRenderer.cs +++ b/src/BizHawk.Bizware.BizwareGL/StringRenderer.cs @@ -14,7 +14,8 @@ namespace BizHawk.Bizware.BizwareGL public StringRenderer(IGL owner, Stream xml, params Stream[] textures) { Owner = owner; - FontInfo = BitmapFontLoader.LoadFontFromXmlFile(xml); + FontInfo = new(); + FontInfo.LoadXml(xml); // load textures for(int i=0;i