2011-11-20 14:44:17 +00:00
|
|
|
//*******************************************************************
|
|
|
|
//glfont2.cpp -- glFont Version 2.0 implementation
|
|
|
|
//Copyright (c) 1998-2002 Brad Fish
|
|
|
|
//See glfont.html for terms of use
|
|
|
|
//May 14, 2002
|
|
|
|
//*******************************************************************
|
|
|
|
|
|
|
|
//STL headers
|
|
|
|
#include <string>
|
2012-06-01 15:26:13 +00:00
|
|
|
#include "FileAPI.h"
|
|
|
|
#include "ByteBuffer.h"
|
2011-11-20 14:44:17 +00:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
//OpenGL headers
|
|
|
|
/*
|
|
|
|
#ifdef _WINDOWS
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
#include <OpenGL/gl.h>
|
|
|
|
*/
|
|
|
|
|
2012-05-19 00:41:31 +00:00
|
|
|
#include "GL/gl.h"
|
|
|
|
|
2011-11-20 14:44:17 +00:00
|
|
|
//glFont header
|
|
|
|
#include "glfont2.h"
|
|
|
|
using namespace glfont;
|
|
|
|
|
|
|
|
//*******************************************************************
|
|
|
|
//GLFont Class Implementation
|
|
|
|
//*******************************************************************
|
|
|
|
GLFont::GLFont ()
|
|
|
|
{
|
|
|
|
//Initialize header to safe state
|
|
|
|
header.tex = -1;
|
|
|
|
header.tex_width = 0;
|
|
|
|
header.tex_height = 0;
|
|
|
|
header.start_char = 0;
|
|
|
|
header.end_char = 0;
|
|
|
|
header.chars = NULL;
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
GLFont::~GLFont ()
|
|
|
|
{
|
|
|
|
//Destroy the font
|
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
bool GLFont::Create (const char *file_name, int tex, bool loadTexture)
|
|
|
|
{
|
2012-07-10 20:18:21 +00:00
|
|
|
ByteBuffer::uint32 num_chars, num_tex_bytes;
|
2011-11-20 14:44:17 +00:00
|
|
|
char *tex_bytes;
|
|
|
|
|
|
|
|
//Destroy the old font if there was one, just to be safe
|
|
|
|
Destroy();
|
|
|
|
|
2012-06-01 15:26:13 +00:00
|
|
|
|
|
|
|
#ifdef BBGE_BUILD_VFS
|
2011-11-20 14:44:17 +00:00
|
|
|
//Open input file
|
2012-06-01 15:26:13 +00:00
|
|
|
ttvfs::VFSFile *vf = vfs.GetFile(file_name);
|
|
|
|
if (!vf)
|
|
|
|
return false;
|
|
|
|
ByteBuffer bb((void*)vf->getBuf(), vf->size(), ByteBuffer::TAKE_OVER);
|
|
|
|
vf->dropBuf(false);
|
|
|
|
#else
|
|
|
|
VFILE *fh = vfopen(file_name, "rb");
|
|
|
|
if (!fh)
|
2011-11-20 14:44:17 +00:00
|
|
|
return false;
|
2012-06-01 15:26:13 +00:00
|
|
|
vfseek(fh, 0, SEEK_END);
|
|
|
|
long int sz = vftell(fh);
|
|
|
|
vfseek(fh, 0, SEEK_SET);
|
|
|
|
ByteBuffer bb(sz);
|
|
|
|
bb.resize(sz);
|
|
|
|
vfread(bb.contents(), 1, sz, fh);
|
|
|
|
vfclose(fh);
|
|
|
|
#endif
|
|
|
|
|
2011-11-20 14:44:17 +00:00
|
|
|
// Read the header from file
|
|
|
|
header.tex = tex;
|
2012-06-27 19:51:54 +00:00
|
|
|
bb.skipRead(4); // skip tex field
|
|
|
|
header.tex_width = bb.read<ByteBuffer::uint32>();
|
|
|
|
header.tex_height = bb.read<ByteBuffer::uint32>();
|
|
|
|
header.start_char = bb.read<ByteBuffer::uint32>();
|
|
|
|
header.end_char = bb.read<ByteBuffer::uint32>();
|
|
|
|
bb.skipRead(4); // skip chars field
|
2012-06-01 15:26:13 +00:00
|
|
|
|
2011-11-20 14:44:17 +00:00
|
|
|
//Allocate space for character array
|
|
|
|
num_chars = header.end_char - header.start_char + 1;
|
|
|
|
if ((header.chars = new GLFontChar[num_chars]) == NULL)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
//Read character array
|
2012-07-10 20:50:31 +00:00
|
|
|
for (unsigned int i = 0; i < num_chars; i++)
|
2011-11-20 14:44:17 +00:00
|
|
|
{
|
2012-06-01 15:26:13 +00:00
|
|
|
bb >> header.chars[i].dx;
|
|
|
|
bb >> header.chars[i].dy;
|
|
|
|
bb >> header.chars[i].tx1;
|
|
|
|
bb >> header.chars[i].ty1;
|
|
|
|
bb >> header.chars[i].tx2;
|
|
|
|
bb >> header.chars[i].ty2;
|
2011-11-20 14:44:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//Read texture pixel data
|
|
|
|
num_tex_bytes = header.tex_width * header.tex_height * 2;
|
|
|
|
tex_bytes = new char[num_tex_bytes];
|
2012-07-10 20:18:21 +00:00
|
|
|
// HACK: Aquaria uses override textures, so we can live with the truncation.
|
|
|
|
bb.read(tex_bytes, std::min(num_tex_bytes, bb.readable()));
|
2011-11-20 14:44:17 +00:00
|
|
|
|
|
|
|
//Build2DMipmaps(3, header.tex_width, header.tex_height, GL_UNSIGNED_BYTE, tex_bytes, 1);
|
|
|
|
|
|
|
|
if (loadTexture)
|
|
|
|
{
|
|
|
|
#ifdef BBGE_BUILD_OPENGL
|
|
|
|
glBindTexture(GL_TEXTURE_2D, tex);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
|
|
|
|
//glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, 2, header.tex_width,
|
|
|
|
header.tex_height, 0, GL_LUMINANCE_ALPHA, GL_UNSIGNED_BYTE,
|
|
|
|
(void *)tex_bytes);
|
|
|
|
//gluBuild2DMipmaps(GL_TEXTURE_2D, 2, header.tex_width, header.tex_height, GL_LUMINANCE_ALPHA, GL_UNSIGNED_BYTE, (void*)tex_bytes);
|
|
|
|
//Build2DMipmaps(3, header.tex_width, header.tex_height, GL_LUMINANCE_ALPHA, tex_bytes, 1);
|
|
|
|
//Create OpenGL texture
|
|
|
|
/*
|
|
|
|
glBindTexture(GL_TEXTURE_2D, tex);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
//glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
|
|
|
|
|
|
|
|
*/
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
//Free texture pixels memory
|
|
|
|
delete[] tex_bytes;
|
|
|
|
|
|
|
|
//Return successfully
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
bool GLFont::Create (const std::string &file_name, int tex, bool loadTexture)
|
|
|
|
{
|
|
|
|
return Create(file_name.c_str(), tex);
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
void GLFont::Destroy (void)
|
|
|
|
{
|
|
|
|
//Delete the character array if necessary
|
|
|
|
if (header.chars)
|
|
|
|
{
|
|
|
|
delete[] header.chars;
|
|
|
|
header.chars = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
void GLFont::GetTexSize (std::pair<int, int> *size)
|
|
|
|
{
|
|
|
|
//Retrieve texture size
|
|
|
|
size->first = header.tex_width;
|
|
|
|
size->second = header.tex_height;
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
int GLFont::GetTexWidth (void)
|
|
|
|
{
|
|
|
|
//Return texture width
|
|
|
|
return header.tex_width;
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
int GLFont::GetTexHeight (void)
|
|
|
|
{
|
|
|
|
//Return texture height
|
|
|
|
return header.tex_height;
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
void GLFont::GetCharInterval (std::pair<int, int> *interval)
|
|
|
|
{
|
|
|
|
//Retrieve character interval
|
|
|
|
interval->first = header.start_char;
|
|
|
|
interval->second = header.end_char;
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
int GLFont::GetStartChar (void)
|
|
|
|
{
|
|
|
|
//Return start character
|
|
|
|
return header.start_char;
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
int GLFont::GetEndChar (void)
|
|
|
|
{
|
|
|
|
//Return end character
|
|
|
|
return header.end_char;
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
2012-07-13 14:03:21 +00:00
|
|
|
void GLFont::GetCharSize (unsigned char c, std::pair<int, int> *size)
|
2011-11-20 14:44:17 +00:00
|
|
|
{
|
|
|
|
//Make sure character is in range
|
|
|
|
if (c < header.start_char || c > header.end_char)
|
|
|
|
{
|
|
|
|
//Not a valid character, so it obviously has no size
|
|
|
|
size->first = 0;
|
|
|
|
size->second = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GLFontChar *glfont_char;
|
|
|
|
|
|
|
|
//Retrieve character size
|
|
|
|
glfont_char = &header.chars[c - header.start_char];
|
|
|
|
size->first = (int)(glfont_char->dx * header.tex_width);
|
|
|
|
size->second = (int)(glfont_char->dy *
|
|
|
|
header.tex_height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
2012-07-13 14:03:21 +00:00
|
|
|
int GLFont::GetCharWidth (unsigned char c)
|
2011-11-20 14:44:17 +00:00
|
|
|
{
|
|
|
|
//Make sure in range
|
|
|
|
if (c < header.start_char || c > header.end_char)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GLFontChar *glfont_char;
|
|
|
|
|
|
|
|
//Retrieve character width
|
|
|
|
glfont_char = &header.chars[c - header.start_char];
|
|
|
|
|
|
|
|
// hack to fix empty spaces
|
|
|
|
if (c == ' ' && glfont_char->dx <= 0)
|
|
|
|
{
|
|
|
|
GLFontChar *glfont_a = &header.chars['a' - header.start_char];
|
|
|
|
glfont_char->dx = glfont_a->dx*0.75;
|
|
|
|
glfont_char->dy = glfont_a->dy;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (int)(glfont_char->dx * header.tex_width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
2012-07-13 14:03:21 +00:00
|
|
|
int GLFont::GetCharHeight (unsigned char c)
|
2011-11-20 14:44:17 +00:00
|
|
|
{
|
|
|
|
//Make sure in range
|
|
|
|
if (c < header.start_char || c > header.end_char)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GLFontChar *glfont_char;
|
|
|
|
|
|
|
|
//Retrieve character height
|
|
|
|
glfont_char = &header.chars[c - header.start_char];
|
|
|
|
return (int)(glfont_char->dy * header.tex_height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
void GLFont::Begin (void)
|
|
|
|
{
|
|
|
|
#ifdef BBGE_BUILD_OPENGL
|
|
|
|
//Bind to font texture
|
|
|
|
glBindTexture(GL_TEXTURE_2D, header.tex);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
//*******************************************************************
|
|
|
|
void GLFont::GetStringSize (const std::string &text, std::pair<int, int> *size)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
2012-07-13 14:03:21 +00:00
|
|
|
unsigned int c;
|
2011-11-20 14:44:17 +00:00
|
|
|
GLFontChar *glfont_char;
|
|
|
|
float width;
|
|
|
|
|
|
|
|
//debugLog("size->second");
|
|
|
|
//Height is the same for now...might change in future
|
|
|
|
size->second = (int)(header.chars[header.start_char].dy *
|
|
|
|
header.tex_height);
|
|
|
|
|
|
|
|
//Calculate width of string
|
|
|
|
width = 0.0F;
|
|
|
|
for (i = 0; i < text.size(); i++)
|
|
|
|
{
|
|
|
|
//Make sure character is in range
|
2012-06-19 00:29:14 +00:00
|
|
|
c = (unsigned char)text[i];
|
2011-11-20 14:44:17 +00:00
|
|
|
|
|
|
|
if (c < header.start_char || c > header.end_char)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
//Get pointer to glFont character
|
|
|
|
glfont_char = &header.chars[c - header.start_char];
|
|
|
|
|
|
|
|
//Get width and height
|
|
|
|
width += glfont_char->dx * header.tex_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Save width
|
|
|
|
//debugLog("size first");
|
|
|
|
size->first = (int)width;
|
|
|
|
|
|
|
|
//debugLog("done");
|
|
|
|
}
|
|
|
|
|
|
|
|
//End of file
|
|
|
|
|
|
|
|
|