Example #1
0
 public XDocument GetXmlInfo(IList <char> cs)
 {
     return(NFTR.ExportInfo(charTile, font, cs.Count));
 }
Example #2
0
 public NFTRDumper(sNFTR font, Rgba32 background)
 {
     this.font    = font;
     this.palette = NFTR.CalculatePalette(font.plgc.depth, false, background);
     Fill_CharTile();
 }
Example #3
0
 public IEnumerable <Image <Rgba32> > GetTextureMapping(IList <CharmapEntry> ce, IList <char> cs)
 {
     return(NFTR.ToTileset(font, palette, ce, cs));
 }
Example #4
0
        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();
        }