Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/Bizware/BizHawk.Bizware.BizwareGL/StringRenderer.cs
2 views
//http://www.angelcode.com/products/bmfont/
//http://cyotek.com/blog/angelcode-bitmap-font-parsing-using-csharp

using System;
using sd=System.Drawing;
using System.Collections.Generic;
using System.IO;

namespace BizHawk.Bizware.BizwareGL
{
	public class StringRenderer : IDisposable
	{
		public StringRenderer(IGL owner, Stream xml, params Stream[] textures)
		{
			Owner = owner;
			FontInfo = Cyotek.Drawing.BitmapFont.BitmapFontLoader.LoadFontFromXmlFile(xml);
			
			//load textures
			for(int i=0;i<FontInfo.Pages.Length;i++)
			{
				TexturePages.Add(owner.LoadTexture(textures[i]));
			}
		}

		public void Dispose()
		{
			foreach (var tex in TexturePages)
				tex.Dispose();
			TexturePages = null;
		}

		public sd.SizeF Measure(string str)
		{
			float x = 0;
			int len = str.Length;
			for (int i = 0; i < len; i++)
			{
				Cyotek.Drawing.BitmapFont.Character c;
				if (!FontInfo.Characters.TryGetValue(str[i], out c))
					c = FontInfo.Characters[unchecked((char)-1)];

				x += c.XAdvance;
			}

			return new sd.SizeF(x, FontInfo.LineHeight);
		}

		public void RenderString(IGuiRenderer renderer, float x, float y, string str)
		{
			float ox = x;
			int len = str.Length;
			for (int i = 0; i < len; i++)
			{
				int c = str[i];
				if (c == '\r')
				{
					if (i != len - 1 && str[i + 1] == '\n')
						i++;
				}
				if (c == '\r') c = '\n';

				if(c == '\n') {
					x = ox;
					y += FontInfo.LineHeight;
					continue;
				}

				Cyotek.Drawing.BitmapFont.Character bfc;
				if (!FontInfo.Characters.TryGetValue((char)c, out bfc))
					bfc = FontInfo.Characters[unchecked((char)-1)];
				
				//calculate texcoords (we shouldve already had this cached, but im speedcoding now)
				Texture2d tex = TexturePages[bfc.TexturePage];
				float w = tex.Width;
				float h = tex.Height;
				float u0 = bfc.Bounds.Left / w;
				float v0 = bfc.Bounds.Top / h;
				float u1 = bfc.Bounds.Right / w;
				float v1 = bfc.Bounds.Bottom / h;

				float gx = x + bfc.Offset.X;
				float gy = y + bfc.Offset.Y;
				renderer.DrawSubrect(tex, gx, gy, bfc.Bounds.Width, bfc.Bounds.Height, u0, v0, u1, v1);

				x += bfc.XAdvance;
			}
		}

		public IGL Owner { get; private set; }

		Cyotek.Drawing.BitmapFont.BitmapFont FontInfo;
		List<Texture2d> TexturePages = new List<Texture2d>();

	}
}