2007-11-06 13:29:18 +00:00
|
|
|
|
#region --- License ---
|
2008-05-05 17:13:22 +00:00
|
|
|
|
/* Licensed under the MIT/X11 license.
|
|
|
|
|
* Copyright (c) 2006-2008 the OpenTK Team.
|
|
|
|
|
* This notice may not be removed from any source distribution.
|
|
|
|
|
* See license.txt for licensing details.
|
2007-11-06 13:29:18 +00:00
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-11-01 23:22:00 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Text.RegularExpressions;
|
2007-11-06 20:59:15 +00:00
|
|
|
|
using System.Runtime.InteropServices;
|
2008-11-24 16:43:56 +00:00
|
|
|
|
using System.Diagnostics;
|
2007-11-01 23:22:00 +00:00
|
|
|
|
|
|
|
|
|
using OpenTK.Math;
|
2008-11-24 16:43:56 +00:00
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using OpenTK.Graphics.Text;
|
|
|
|
|
using OpenTK.Platform;
|
2007-11-01 23:22:00 +00:00
|
|
|
|
|
2008-03-08 14:38:10 +00:00
|
|
|
|
namespace OpenTK.Fonts { }
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Graphics
|
2007-11-01 23:22:00 +00:00
|
|
|
|
{
|
2007-11-06 13:29:18 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides methods to perform layout and print hardware accelerated text.
|
|
|
|
|
/// </summary>
|
2008-11-24 16:43:56 +00:00
|
|
|
|
public sealed class TextPrinter : ITextPrinter
|
2007-11-01 23:22:00 +00:00
|
|
|
|
{
|
2008-11-25 18:00:17 +00:00
|
|
|
|
#region Fields
|
2007-11-12 07:36:34 +00:00
|
|
|
|
|
2008-11-25 18:00:17 +00:00
|
|
|
|
IGlyphRasterizer glyph_rasterizer;
|
|
|
|
|
ITextOutputProvider text_output;
|
2009-02-12 16:27:24 +00:00
|
|
|
|
TextQuality text_quality;
|
2007-11-12 07:36:34 +00:00
|
|
|
|
|
2009-02-12 17:41:09 +00:00
|
|
|
|
bool disposed;
|
|
|
|
|
|
2007-11-12 07:36:34 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
2008-11-25 18:00:17 +00:00
|
|
|
|
#region Constructors
|
2007-11-12 07:36:34 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2008-11-25 18:00:17 +00:00
|
|
|
|
/// Constructs a new TextPrinter object.
|
2007-11-12 07:36:34 +00:00
|
|
|
|
/// </summary>
|
2008-11-25 18:00:17 +00:00
|
|
|
|
public TextPrinter()
|
2009-02-12 16:27:24 +00:00
|
|
|
|
: this(null, null, TextQuality.Default) { }
|
2008-01-06 02:19:53 +00:00
|
|
|
|
|
2009-02-12 16:27:24 +00:00
|
|
|
|
public TextPrinter(TextQuality quality)
|
|
|
|
|
: this(null, null, quality) { }
|
2008-04-13 18:29:36 +00:00
|
|
|
|
|
2009-02-12 16:27:24 +00:00
|
|
|
|
TextPrinter(IGlyphRasterizer rasterizer, ITextOutputProvider output, TextQuality quality)
|
|
|
|
|
{
|
2008-11-25 18:00:17 +00:00
|
|
|
|
glyph_rasterizer = rasterizer;
|
|
|
|
|
text_output = output;
|
2009-02-12 16:27:24 +00:00
|
|
|
|
text_quality = quality;
|
2007-11-12 07:36:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-11-25 18:00:17 +00:00
|
|
|
|
#region ITextPrinter Members
|
2007-11-12 07:36:34 +00:00
|
|
|
|
|
2008-11-24 16:43:56 +00:00
|
|
|
|
#region Print
|
|
|
|
|
|
2008-11-26 21:49:05 +00:00
|
|
|
|
public void Print(string text, Font font, Color color)
|
2008-11-24 16:43:56 +00:00
|
|
|
|
{
|
2009-02-12 16:27:24 +00:00
|
|
|
|
Print(text, font, color, SizeF.Empty, TextPrinterOptions.Default);
|
2008-11-24 16:43:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-12 16:27:24 +00:00
|
|
|
|
public void Print(string text, Font font, Color color, SizeF size)
|
2008-11-24 16:43:56 +00:00
|
|
|
|
{
|
2009-02-12 16:27:24 +00:00
|
|
|
|
Print(text, font, color, size, TextPrinterOptions.Default);
|
2008-11-24 16:43:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-12 16:27:24 +00:00
|
|
|
|
public void Print(string text, Font font, Color color, SizeF size, TextPrinterOptions options)
|
2008-11-24 16:43:56 +00:00
|
|
|
|
{
|
2009-02-12 17:41:09 +00:00
|
|
|
|
if (disposed)
|
|
|
|
|
throw new ObjectDisposedException(this.GetType().ToString());
|
|
|
|
|
|
2009-02-12 16:27:24 +00:00
|
|
|
|
if (!ValidateParameters(text, font, size))
|
2008-11-24 16:43:56 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2009-02-12 17:41:09 +00:00
|
|
|
|
TextOutput.Print(new TextBlock(text, font, options, size), color, Rasterizer);
|
2008-11-24 16:43:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-11-25 16:11:31 +00:00
|
|
|
|
#region Measure
|
|
|
|
|
|
|
|
|
|
public TextExtents Measure(string text, Font font)
|
|
|
|
|
{
|
2009-02-12 16:27:24 +00:00
|
|
|
|
return Measure(text, font, SizeF.Empty, TextPrinterOptions.Default);
|
2008-11-25 16:11:31 +00:00
|
|
|
|
}
|
2008-11-26 21:49:05 +00:00
|
|
|
|
|
2009-02-12 16:27:24 +00:00
|
|
|
|
public TextExtents Measure(string text, Font font, SizeF size)
|
2008-11-25 16:11:31 +00:00
|
|
|
|
{
|
2009-02-12 16:27:24 +00:00
|
|
|
|
return Measure(text, font, size, TextPrinterOptions.Default);
|
2008-11-25 16:11:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-12 16:27:24 +00:00
|
|
|
|
public TextExtents Measure(string text, Font font, SizeF size, TextPrinterOptions options)
|
2008-11-25 16:11:31 +00:00
|
|
|
|
{
|
2009-02-12 17:41:09 +00:00
|
|
|
|
if (disposed)
|
|
|
|
|
throw new ObjectDisposedException(this.GetType().ToString());
|
|
|
|
|
|
2009-02-12 16:27:24 +00:00
|
|
|
|
if (!ValidateParameters(text, font, size))
|
|
|
|
|
return TextExtents.Empty;
|
|
|
|
|
|
|
|
|
|
return Rasterizer.MeasureText(new TextBlock(text, font, options, size));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Clear()
|
|
|
|
|
|
|
|
|
|
public void Clear()
|
|
|
|
|
{
|
2009-02-12 17:41:09 +00:00
|
|
|
|
if (disposed)
|
|
|
|
|
throw new ObjectDisposedException(this.GetType().ToString());
|
|
|
|
|
|
|
|
|
|
TextOutput.Clear();
|
|
|
|
|
Rasterizer.Clear();
|
2008-11-25 16:11:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-11-25 18:17:30 +00:00
|
|
|
|
#region Obsolete
|
|
|
|
|
|
2009-02-12 17:41:09 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets up OpenGL state for drawing text.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Obsolete]
|
|
|
|
|
public void Begin()
|
|
|
|
|
{
|
|
|
|
|
if (disposed)
|
|
|
|
|
throw new ObjectDisposedException(this.GetType().ToString());
|
|
|
|
|
|
|
|
|
|
GraphicsContext.Assert();
|
|
|
|
|
|
|
|
|
|
float[] viewport = new float[4];
|
|
|
|
|
|
|
|
|
|
GL.GetFloat(GetPName.Viewport, viewport);
|
|
|
|
|
|
|
|
|
|
// Prepare to draw text. We want pixel perfect precision, so we setup a 2D mode,
|
|
|
|
|
// with size equal to the window (in pixels).
|
|
|
|
|
// While we could also render text in 3D mode, it would be very hard to get
|
|
|
|
|
// pixel-perfect precision.
|
|
|
|
|
GL.MatrixMode(MatrixMode.Projection);
|
|
|
|
|
GL.PushMatrix();
|
|
|
|
|
GL.LoadIdentity();
|
|
|
|
|
GL.Ortho(viewport[0], viewport[2], viewport[3], viewport[1], -1.0, 1.0);
|
|
|
|
|
|
|
|
|
|
GL.MatrixMode(MatrixMode.Modelview);
|
|
|
|
|
GL.PushMatrix();
|
|
|
|
|
GL.LoadIdentity();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Restores OpenGL state.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Obsolete]
|
|
|
|
|
public void End()
|
|
|
|
|
{
|
|
|
|
|
if (disposed)
|
|
|
|
|
throw new ObjectDisposedException(this.GetType().ToString());
|
|
|
|
|
|
|
|
|
|
GraphicsContext.Assert();
|
|
|
|
|
|
|
|
|
|
GL.MatrixMode(MatrixMode.Modelview);
|
|
|
|
|
GL.PopMatrix();
|
|
|
|
|
|
|
|
|
|
GL.MatrixMode(MatrixMode.Projection);
|
|
|
|
|
GL.PopMatrix();
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-25 18:17:30 +00:00
|
|
|
|
[Obsolete("Use TextPrinter.Print instead")]
|
|
|
|
|
public void Draw(TextHandle handle)
|
|
|
|
|
{
|
2008-11-26 21:49:05 +00:00
|
|
|
|
Print(handle.Text, handle.GdiPFont, Color.White);
|
2008-11-25 18:17:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Obsolete("Use TextPrinter.Print instead")]
|
|
|
|
|
public void Draw(string text, TextureFont font)
|
|
|
|
|
{
|
2008-11-26 21:49:05 +00:00
|
|
|
|
Print(text, font.font, Color.White);
|
2008-11-25 18:17:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Obsolete("Use TextPrinter.Print instead")]
|
|
|
|
|
public void Prepare(string text, TextureFont font, out TextHandle handle)
|
|
|
|
|
{
|
|
|
|
|
handle = new TextHandle(text, font.font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-11-24 16:43:56 +00:00
|
|
|
|
#endregion
|
2009-02-12 16:27:24 +00:00
|
|
|
|
|
|
|
|
|
#region Private Members
|
|
|
|
|
|
|
|
|
|
IGlyphRasterizer Rasterizer
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (glyph_rasterizer == null)
|
|
|
|
|
glyph_rasterizer = new GdiPlusGlyphRasterizer();
|
|
|
|
|
|
|
|
|
|
return glyph_rasterizer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ITextOutputProvider TextOutput
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (text_output == null)
|
|
|
|
|
text_output = GL1TextOutputProvider.Create(text_quality);
|
|
|
|
|
|
|
|
|
|
return text_output;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Static Members
|
|
|
|
|
|
|
|
|
|
static bool ValidateParameters(string text, Font font, SizeF size)
|
|
|
|
|
{
|
|
|
|
|
if (String.IsNullOrEmpty(text))
|
|
|
|
|
return false;
|
|
|
|
|
if (font == null)
|
|
|
|
|
throw new ArgumentNullException("font");
|
|
|
|
|
if (size.Width < 0 || size.Height < 0)
|
|
|
|
|
throw new ArgumentOutOfRangeException("size");
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2009-02-12 17:41:09 +00:00
|
|
|
|
|
|
|
|
|
#region IDisposable Members
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
if (!disposed)
|
|
|
|
|
{
|
|
|
|
|
TextOutput.Dispose();
|
|
|
|
|
disposed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2007-11-06 13:29:18 +00:00
|
|
|
|
}
|
2007-11-01 23:22:00 +00:00
|
|
|
|
}
|