2008-11-25 14:04:24 +00:00
|
|
|
#region License
|
|
|
|
//
|
|
|
|
// The Open Toolkit Library License
|
|
|
|
//
|
|
|
|
// Copyright (c) 2006 - 2008 the Open Toolkit library, except where noted.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights to
|
|
|
|
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
// the Software, and to permit persons to whom the Software is furnished to do
|
|
|
|
// so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
|
|
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
|
|
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
// OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
|
|
|
#endregion
|
|
|
|
|
2008-11-24 16:43:56 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
namespace OpenTK.Graphics.Text
|
|
|
|
{
|
2008-11-25 22:19:42 +00:00
|
|
|
class GlyphCache : IGlyphCache
|
2008-11-24 16:43:56 +00:00
|
|
|
{
|
|
|
|
#region Fields
|
|
|
|
|
|
|
|
IGlyphRasterizer rasterizer;
|
|
|
|
List<GlyphSheet> sheets = new List<GlyphSheet>();
|
2008-11-26 15:35:15 +00:00
|
|
|
Bitmap bmp = new Bitmap(32, 32);
|
2008-11-24 16:43:56 +00:00
|
|
|
|
|
|
|
Dictionary<Glyph, CachedGlyphInfo> cached_glyphs = new Dictionary<Glyph, CachedGlyphInfo>();
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Constructors
|
|
|
|
|
|
|
|
public GlyphCache(IGlyphRasterizer rasterizer)
|
|
|
|
{
|
|
|
|
if (rasterizer == null)
|
|
|
|
throw new ArgumentNullException("rasterizer");
|
|
|
|
|
|
|
|
this.rasterizer = rasterizer;
|
|
|
|
sheets.Add(new GlyphSheet());
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2008-11-25 22:19:42 +00:00
|
|
|
#region IGlyphCache Members
|
2008-11-24 16:43:56 +00:00
|
|
|
|
2008-11-25 22:16:40 +00:00
|
|
|
public void Add(Glyph glyph)
|
2008-11-24 16:43:56 +00:00
|
|
|
{
|
|
|
|
bool inserted = false;
|
|
|
|
|
|
|
|
using (Bitmap bmp = rasterizer.Rasterize(glyph))
|
|
|
|
{
|
2008-11-26 15:35:15 +00:00
|
|
|
Rectangle rect = new Rectangle(0, 0, bmp.Width, bmp.Height);
|
2008-11-24 16:43:56 +00:00
|
|
|
foreach (GlyphSheet sheet in sheets)
|
|
|
|
{
|
2008-11-26 15:35:15 +00:00
|
|
|
inserted = InsertGlyph(glyph, bmp, rect, sheet);
|
|
|
|
if (inserted)
|
|
|
|
break;
|
2008-11-24 16:43:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!inserted)
|
|
|
|
{
|
|
|
|
GlyphSheet sheet = new GlyphSheet();
|
|
|
|
sheets.Add(sheet);
|
2008-11-26 15:35:15 +00:00
|
|
|
InsertGlyph(glyph, bmp, rect, sheet);
|
2008-11-24 16:43:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-25 22:16:40 +00:00
|
|
|
public bool Contains(Glyph glyph)
|
2008-11-24 16:43:56 +00:00
|
|
|
{
|
2008-11-25 22:16:40 +00:00
|
|
|
return cached_glyphs.ContainsKey(glyph);
|
2008-11-24 16:43:56 +00:00
|
|
|
}
|
|
|
|
|
2008-11-25 22:16:40 +00:00
|
|
|
public CachedGlyphInfo this[Glyph glyph]
|
2008-11-24 16:43:56 +00:00
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2008-11-25 22:16:40 +00:00
|
|
|
return cached_glyphs[glyph];
|
2008-11-24 16:43:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-25 22:16:40 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Private Members
|
|
|
|
|
2008-11-26 15:35:15 +00:00
|
|
|
// Asks the packer for an empty space and writes the glyph there.
|
|
|
|
bool InsertGlyph(Glyph glyph, Bitmap bmp, Rectangle source, GlyphSheet sheet)
|
2008-11-24 16:43:56 +00:00
|
|
|
{
|
2008-11-26 15:35:15 +00:00
|
|
|
Rectangle target = new Rectangle();
|
|
|
|
if (!sheet.Packer.TryAdd(source, out target))
|
|
|
|
return false;
|
2008-11-25 22:16:40 +00:00
|
|
|
|
|
|
|
sheet.Texture.WriteRegion(source, target, 0, bmp);
|
|
|
|
cached_glyphs.Add(glyph, new CachedGlyphInfo(sheet.Texture, target));
|
2008-11-26 15:35:15 +00:00
|
|
|
|
|
|
|
return true;
|
2008-11-24 16:43:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|