0ad/source/lib/res/unifont.cpp
janwas 5299dcad86 - config: all macros are defined as 1 / 0. testing with #if allows compiler warnings (testing undefined macro) to spot misspelled macros
- debug: add provision for naming threads. allows adding current thread
name to log messages and displays their names in the debugger.
- replaced various if(err < 0) complain() sequences with new variants of
CHECK_ERR (see lib.h)
- fixes to mmgr/VC debug alloc enable code
- improved h_mgr error reporting (now complains when h_free fails)
- US -> UK english (partial)
- fix tex_load double-free bug
- move win32 mouse cursor code into sysdep
- error dialog is now topmost to make sure it's visible (was a problem)
- handle WM_QUIT before displaying error dialog (makes sure it's shown)

also as in previous 3 revisions.

This was SVN commit r2588.
2005-08-09 16:23:19 +00:00

302 lines
6.9 KiB
C++
Executable File

/*
$Id$
Unicode OpenGL texture font
-- Philip Taylor (philip@wildfiregames.com / philip@zaynar.demon.co.uk)
(based on Jan Wassenberg's font.cpp/.h)
*/
#include "precompiled.h"
#include "lib.h"
#include "res.h"
#include "ogl.h"
#include "ogl_tex.h"
#include <string>
#include <sstream>
#include <map>
#include <stdio.h>
/*/*#include <ps/CLogger.h>
#define LOG_CATEGORY "graphics"*/
// This isn't particularly efficient - it can be improved if we
// (a) care enough, and (b) know about fixed ranges of characters
// that the fonts usually contain
typedef std::map<wchar_t, unsigned short> glyphmap_id;
// Store the size separately, because it's used separately
typedef std::map<wchar_t, int> glyphmap_size;
glyphmap_id* BoundGlyphs = NULL;
struct UniFont
{
Handle ht; // Handle to font texture
glyphmap_id* glyphs_id; // Stored as pointers to keep the struct's size down. (sizeof(std::map)==12, though that's probably not enough to matter)
glyphmap_size* glyphs_size;
uint ListBase;
int LineSpacing;
int Height; // of a capital letter, roughly
};
H_TYPE_DEFINE(UniFont);
static void UniFont_init(UniFont* f, va_list UNUSED(args))
{
f->glyphs_id = new glyphmap_id;
f->glyphs_size = new glyphmap_size;
}
static void UniFont_dtor(UniFont* f)
{
tex_free(f->ht);
glDeleteLists(f->ListBase, (GLsizei)f->glyphs_id->size());
delete f->glyphs_id;
delete f->glyphs_size;
}
static int UniFont_reload(UniFont* f, const char* fn, Handle UNUSED(h))
{
// fn is the base filename, e.g. "console"
// The font definition file is "fonts/"+fn+".fnt" and the texture is "fonts/"+fn+".tga"
std::string FilenameBase = "fonts/"; FilenameBase += fn;
void* RawFNT;
size_t FNTSize;
std::string FilenameFnt = FilenameBase+".fnt";
const char* fnt_fn = FilenameFnt.c_str();
// Fail quietly if the file simply doesn't exist
// // if (! vfs_exists(fnt_fn))
// // return ERR_FILE_NOT_FOUND;
Handle hm = vfs_load(fnt_fn, RawFNT, FNTSize);
RETURN_ERR(hm);
// Get the data in a nicer object
std::istringstream FNTStream (std::string((const char*)RawFNT, (int)FNTSize));
// Unload the file
mem_free_h(hm);
int Version;
FNTStream >> Version;
if (Version != 100) // Make sure this is from a recent version of the font builder
{
// LOG(ERROR, LOG_CATEGORY, "Invalid .fnt version number");
return -1;
}
int TextureWidth, TextureHeight;
FNTStream >> TextureWidth >> TextureHeight;
int NumGlyphs;
FNTStream >> NumGlyphs;
FNTStream >> f->LineSpacing;
if (Version >= 101)
FNTStream >> f->Height;
else
f->Height = 0;
f->ListBase = glGenLists(NumGlyphs);
if (f->ListBase == 0) // My Voodoo2 drivers didn't support display lists (although I'd be surprised if they got this far)
{
// LOG(ERROR, LOG_CATEGORY, "Display list creation failed");
return -1;
}
for (int i = 0; i < NumGlyphs; ++i)
{
int Codepoint, TextureX, TextureY, Width, Height, OffsetX, OffsetY, Advance;
FNTStream >> Codepoint>>TextureX>>TextureY>>Width>>Height>>OffsetX>>OffsetY>>Advance;
if (Codepoint > 0xffff)
{
debug_warn("Invalid codepoint");
continue;
}
if (Version < 101 && Codepoint == 'I')
{
f->Height = Height;
}
GLfloat u = (GLfloat)TextureX / (GLfloat)TextureWidth;
GLfloat v = (GLfloat)TextureY / (GLfloat)TextureHeight;
GLfloat w = (GLfloat)Width / (GLfloat)TextureWidth;
GLfloat h = (GLfloat)Height / (GLfloat)TextureHeight;
// It might be better to use vertex arrays instead of display lists,
// but this works well enough for now.
glNewList(f->ListBase+i, GL_COMPILE);
glBegin(GL_QUADS);
glTexCoord2f(u, -v); glVertex2i(OffsetX, -OffsetY);
glTexCoord2f(u+w, -v); glVertex2i(OffsetX+Width, -OffsetY);
glTexCoord2f(u+w, -v+h); glVertex2i(OffsetX+Width, -OffsetY+Height);
glTexCoord2f(u, -v+h); glVertex2i(OffsetX, -OffsetY+Height);
glEnd();
glTranslatef((GLfloat)Advance, 0, 0);
glEndList();
(*f->glyphs_id)[(wchar_t)Codepoint] = (unsigned short)i;
(*f->glyphs_size)[(wchar_t)Codepoint] = Advance;
}
debug_assert(f->Height); // Ensure the height has been found (which should always happen if the font includes an 'I')
// Load glyph texture
std::string FilenameTex = FilenameBase+".tga";
const char* tex_fn = FilenameTex.c_str();
const Handle ht = tex_load(tex_fn);
if (ht <= 0)
return (int)ht;
tex_upload(ht, GL_NEAREST, GL_ALPHA8, GL_ALPHA);
f->ht = ht;
return 0;
}
Handle unifont_load(const char* fn, int scope)
{
return h_alloc(H_UniFont, fn, scope);
}
int unifont_unload(Handle& h)
{
return h_free(h, H_UniFont);
}
int unifont_bind(const Handle h)
{
H_DEREF(h, UniFont, f);
tex_bind(f->ht);
glListBase(f->ListBase);
BoundGlyphs = f->glyphs_id;
return 0;
}
int unifont_linespacing(const Handle h)
{
H_DEREF(h, UniFont, f);
return f->LineSpacing;
}
int unifont_height(const Handle h)
{
H_DEREF(h, UniFont, f);
return f->Height;
}
int unifont_character_width(const Handle h, const wchar_t& c)
{
H_DEREF(h, UniFont, f);
glyphmap_size::iterator it = f->glyphs_size->find(c);
if (it == f->glyphs_size->end())
it = f->glyphs_size->find(0xFFFD); // Use the missing glyph symbol
return it->second;
}
void glvwprintf(const wchar_t* fmt, va_list args)
{
const int buf_size = 1024;
wchar_t buf[buf_size];
if(vswprintf(buf, buf_size-1, fmt, args) < 0)
debug_printf("glwprintf failed (buffer size exceeded?)\n");
// Make sure there's always null termination
buf[buf_size-1] = 0;
debug_assert(BoundGlyphs != NULL); // You always need to bind something first
// Count the number of characters
size_t len = wcslen(buf);
// Replace every wchar_t with the display list offset for the appropriate glyph
for (size_t i = 0; i < len; ++i)
{
glyphmap_id::iterator it = BoundGlyphs->find(buf[i]);
if (it == BoundGlyphs->end())
it = BoundGlyphs->find(0xFFFD); // Use the missing glyph symbol
if (it == BoundGlyphs->end()) // Missing the missing glyph symbol - give up
{
debug_warn("Missing the missing glyph in a unifont!\n");
return;
}
buf[i] = it->second; // Replace with the display list offset
}
// 0 glyphs -> nothing to do (avoid BoundsChecker warning)
if (!len)
return;
// Execute all the display lists
glCallLists((GLsizei)len, sizeof(wchar_t)==4 ? GL_INT : GL_UNSIGNED_SHORT, buf);
}
void glwprintf(const wchar_t* fmt, ...)
{
va_list args;
va_start(args, fmt);
glvwprintf(fmt, args);
va_end(args);
}
int unifont_stringsize(const Handle h, const wchar_t* text, int& width, int& height)
{
H_DEREF(h, UniFont, f);
width = 0;
height = f->Height;
size_t len = wcslen(text);
for (size_t i = 0; i < len; ++i)
{
glyphmap_size::iterator it = f->glyphs_size->find(text[i]);
if (it == f->glyphs_size->end())
it = f->glyphs_size->find(0xFFFD); // Use the missing glyph symbol
if (it == f->glyphs_size->end()) // Missing the missing glyph symbol - give up
{
debug_warn("Missing the missing glyph in a unifont!\n");
return 0;
}
width += it->second; // Add the character's advance distance
}
return 0;
}