public XDocument GetXmlInfo(IList <char> cs) { return(NFTR.ExportInfo(charTile, font, cs.Count)); }
public NFTRDumper(sNFTR font, Rgba32 background) { this.font = font; this.palette = NFTR.CalculatePalette(font.plgc.depth, false, background); Fill_CharTile(); }
public IEnumerable <Image <Rgba32> > GetTextureMapping(IList <CharmapEntry> ce, IList <char> cs) { return(NFTR.ToTileset(font, palette, ce, cs)); }
static void Main(string[] args) { if (args.Length < 2) { Console.WriteLine("Usage: NFTRFontTexGen [nftr file] [size] [bg]"); } if (!File.Exists(args[0])) { Console.WriteLine($"{args[0]} not found."); Console.ReadLine(); Environment.Exit(1); } if (!File.Exists("charset.csv")) { Console.WriteLine($"charset not found."); Console.ReadLine(); Environment.Exit(1); } Rgba32 color = Rgba32.FromHex("ff00ff"); try { color = Rgba32.FromHex(args[2]); } catch { } Stream nftrData = File.OpenRead(args[0]); var font = NFTR.Read(nftrData); var dumper = new NFTRDumper(font, color); var x = File.ReadAllText("charset.csv").Split(","); var charset = new List <char>(); foreach (string c in x) { try { charset.Add((char)Int32.Parse(c)); } catch { } } XDocument doc = XDocument.Load(File.OpenRead("fontinfo.xml")); var charmap = new FontInfo(doc); using (var file = File.OpenWrite(Path.GetFileNameWithoutExtension(args[0]) + ".xml")) { dumper.GetXmlInfo(charset).Save(file); } StringBuilder gritFile = new StringBuilder(); gritFile.AppendLine("-W3"); gritFile.AppendLine("-gb"); gritFile.AppendLine("-gB4"); // gritFile.AppendLine("-gT FF00FF"); int counter = 0; var encoder = new PngEncoder(); foreach (var texture in dumper.GetTextureMapping(charmap.CharMap, charset)) { using (var file = File.OpenWrite($"{args[1]}_font_{counter}.png")) { texture.Save(file, encoder); File.WriteAllText($"{args[1]}_font_{counter}.grit", gritFile.ToString()); } counter++; } Console.ReadLine(); }