tge/engine/platformX86UNIX/x86UNIXFont.cc
2025-02-17 23:17:30 -06:00

1 line
12 KiB
C++
Executable File

//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
#include "dgl/gFont.h"
#include "dgl/gBitmap.h"
#include "math/mRect.h"
#include "console/console.h"
#include "core/unicode.h"
#include "platformX86UNIX/platformX86UNIX.h"
#include "platformX86UNIX/x86UNIXFont.h"
// Needed by createFont
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>
#include <X11/Xft/Xft.h>
#include <X11/extensions/Xrender.h> // For XRenderColor
// Needed for getenv in createFont
#include <stdlib.h>
// Needed for getenv in createFont
#include <stdlib.h>
S32 mapSize(char* fontname, S32 size)
{
// warning! hacking ahead
S32 newSize = size;
// if the size is >= 12, do a size - 2 adjustment
// (except for courier.)
// fonts seem to be too big otherwise, but this might be
// system/font specific
if (newSize >= 12 && !stristr(fontname, "courier"))
newSize = newSize - 2;
// adobe helvetica and courier look like crap at 22
// (probably scaled bitmap problem)
if (newSize == 22 &&
(stristr(fontname, "helvetica")==0 ||
stristr(fontname, "courier")==0))
newSize = 24;
return newSize;
}
XFontStruct* loadFont(const char *name, S32 size, Display* display,
char* pickedFontName, int pickedFontNameSize)
{
XFontStruct* fontInfo = NULL;
char* fontname = const_cast<char*>(name);
if (dStrlen(fontname)==0)
fontname = "arial";
else if (stristr(const_cast<char*>(name), "arial") != NULL)
fontname = "arial";
else if (stristr(const_cast<char*>(name), "lucida console") != NULL)
fontname = "lucida console";
char* weight = "medium";
char* slant = "r"; // no slant
int newSize = mapSize(fontname, size);
// look for bold or italic
if (stristr(const_cast<char*>(name), "bold") != NULL)
weight = "bold";
if (stristr(const_cast<char*>(name), "italic") != NULL)
slant = "o";
const int xfontNameSize = 512;
char xfontName[xfontNameSize];
char* fontFormat = "-*-%s-%s-%s-*-*-%d-*-*-*-*-*-*-*";
dSprintf(xfontName, xfontNameSize, fontFormat, fontname, weight, slant, newSize);
// lowercase the whole thing
strtolwr(xfontName);
fontInfo = XLoadQueryFont(display, xfontName );
if (fontInfo == NULL)
{
// Couldn't load the requested font. This probably will be common
// since many unix boxes don't have arial or lucida console installed.
// Attempt to map the font name into a font we're pretty sure exists
if (stristr(const_cast<char*>(name), "arial") != NULL)
fontname = "helvetica";
else if (stristr(const_cast<char*>(name), "lucida console") != NULL)
fontname = "courier";
else
// to helvetica with you!
fontname = "helvetica";
newSize = mapSize(fontname, size);
// change the font format so that we get adobe fonts
fontFormat = "-adobe-%s-%s-%s-*-*-%d-*-*-*-*-*-*-*";
dSprintf(xfontName, xfontNameSize, fontFormat, fontname, weight, slant, newSize);
fontInfo = XLoadQueryFont(display, xfontName);
}
if (fontInfo != NULL && pickedFontName && pickedFontNameSize > 0)
dSprintf(pickedFontName, pickedFontNameSize, "%s", xfontName);
return fontInfo;
}
GOldFont* createFont(const char *name, dsize_t size, U32 charset)
{
Display *display = XOpenDisplay(getenv("DISPLAY"));
int screen;
if (!display)
AssertFatal(false, "createFont: cannot connect to X server");
screen = DefaultScreen(display);
// load the font
const int pickedFontNameSize = 512;
char pickedFontName[pickedFontNameSize];
XFontStruct* fontInfo = loadFont(name, size, display, pickedFontName, pickedFontNameSize);
XftFont *font = XftFontOpenXlfd(display, screen, pickedFontName);
if (!fontInfo || !font)
AssertFatal(false, "createFont: cannot load font");
Con::printf("CreateFont: request for %s %d, using %s", name, size, pickedFontName);
// Create the pixmap to draw on.
Pixmap pixmap = XCreatePixmap(display,
DefaultRootWindow(display),
font->max_advance_width,
font->height,
DefaultDepth(display, screen));
// And the Xft wrapper around it.
XftDraw *draw = XftDrawCreate(display,
pixmap,
DefaultVisual(display, screen),
DefaultColormap(display, screen));
// Allocate some colors, we don't use XftColorAllocValue here as that
// Don't appear to function correctly (or I'm using it wrong) As we only do
// this twice per new un cached font it isn't that big of a penalty. (Each
// call to XftColorAllocName involves a round trip to the X Server)
XftColor black, white;
XftColorAllocName(display,
DefaultVisual(display, screen),
DefaultColormap(display, screen),
"black",
&black);
// White
XftColorAllocName(display,
DefaultVisual(display, screen),
DefaultColormap(display, screen),
"white",
&white);
// The font.
GOldFont *retFont = new GOldFont;
static U8 scratchPad[65536];
int x, y;
// insert bitmaps into the font for each character
for(U16 i = 32; i < 256; i++)
{
XGlyphInfo extent;
FT_UInt glyph;
if (!XftCharExists(display, font, i))
{
retFont->insertBitmap(i, scratchPad, 0, 0, 0, 0, 0, font->max_advance_width);
continue;
}
// Get the glyph and its extents.
glyph = XftCharIndex(display, font, i);
XftGlyphExtents (display, font, &glyph, 1, &extent);
// Clear the bounding box and draw the glyph
XftDrawRect (draw, &black, 0, 0, font->max_advance_width, font->height);
XftDrawGlyphs (draw, &white, font, 0, font->ascent, &glyph, 1);
// Grab the rendered image ...
XImage *ximage = XGetImage(display, pixmap, 0, 0,
extent.xOff, font->height,
AllPlanes, XYPixmap);
if (ximage == NULL)
AssertFatal(false, "cannot get x image");
// And store each pixel in the scratchPad for insertion into the bitmap.
// We grab the full height of the pixmap.
for(y = 0; y < font->height; y++)
{
// and the width of the glyph and its padding.
for(x = 0; x < extent.xOff; x++)
scratchPad[y * extent.xOff + x] = static_cast<U8>(XGetPixel(ximage, x, y));
}
// Done with the image.
XDestroyImage(ximage);
// Add it to the bitmap.
retFont->insertBitmap(i, // index
scratchPad, // src
extent.xOff, // stride
extent.xOff, // width
font->height, // height
0, // xOrigin
font->ascent, // yOrigin
extent.xOff); // xIncrement
}
retFont->pack(font->height, font->ascent);
XftFontClose(display, font);
XftColorFree(display, DefaultVisual(display, screen),
DefaultColormap(display, screen), &black);
XftColorFree(display, DefaultVisual(display, screen),
DefaultColormap(display, screen), &white);
XftDrawDestroy(draw);
XFreePixmap(display, pixmap);
XCloseDisplay(display);
return retFont;
}
// XA: New class for the unix unicode font
PlatformFont *createPlatformFont(const char *name, U32 size, U32 charset /* = TGE_ANSI_CHARSET */)
{
PlatformFont *retFont = new x86UNIXFont;
if(retFont->create(name, size, charset))
return retFont;
delete retFont;
return NULL;
}
x86UNIXFont::x86UNIXFont()
{}
x86UNIXFont::~x86UNIXFont()
{}
bool x86UNIXFont::create(const char *name, U32 size, U32 charset)
{
Display *display = XOpenDisplay(getenv("DISPLAY"));
if (display == NULL)
AssertFatal(false, "createFont: cannot connect to X server");
const int pickedFontNameSize = 512;
char pickedFontName[pickedFontNameSize];
int screen = DefaultScreen(display);
XFontStruct* fontInfo = loadFont(name, size, display, pickedFontName, pickedFontNameSize);
XftFont *font = XftFontOpenXlfd(display, screen, pickedFontName);
if (!fontInfo || !font)
{
Con::errorf("Error: Could not load font -%s-", name);
return false;
}
// store some info about the font
baseline = font->ascent;
height = font->height;
mFontName = StringTable->insert(pickedFontName);
XftFontClose (display, font);
// DISPLAY
XCloseDisplay(display);
return true;
}
bool x86UNIXFont::isValidChar(const UTF16 str) const
{
// 0x20 == 32
// 0x100 == 256
if( str < 0x20 || str > 0x100 )
return false;
return true;
}
bool x86UNIXFont::isValidChar(const UTF8 *str) const
{
return isValidChar(oneUTF32toUTF16(oneUTF8toUTF32(str,NULL)));
}
PlatformFont::CharInfo &x86UNIXFont::getCharInfo(const UTF16 ch) const
{
Display *display = XOpenDisplay(getenv("DISPLAY"));
if (!display )
AssertFatal(false, "createFont: cannot connect to X server");
static PlatformFont::CharInfo c;
dMemset(&c, 0, sizeof(c));
c.bitmapIndex = 0;
c.xOffset = 0;
c.yOffset = 0;
XftFont *fontInfo = XftFontOpenXlfd(display, DefaultScreen(display), mFontName);
if (!fontInfo)
AssertFatal(false, "createFont: cannot load font");
int screen = DefaultScreen(display);
// Create the pixmap to draw on.
Drawable pixmap = XCreatePixmap(display,
DefaultRootWindow(display),
fontInfo->max_advance_width,
fontInfo->height,
DefaultDepth(display, screen));
// And the Xft wrapper around it.
XftDraw *draw = XftDrawCreate(display,
pixmap,
DefaultVisual(display, screen),
DefaultColormap(display, screen));
// Allocate some colors, we don't use XftColorAllocValue here as that
// Don't appear to function correctly (or I'm using it wrong) As we only do
// this twice per new un cached font it isn't that big of a penalty. (Each
// call to XftColorAllocName involves a round trip to the X Server)
XftColor black, white;
XftColorAllocName(display,
DefaultVisual(display, screen),
DefaultColormap(display, screen),
"black",
&black);
// White
XftColorAllocName(display,
DefaultVisual(display, screen),
DefaultColormap(display, screen),
"white",
&white);
XGlyphInfo charinfo;
XftTextExtents16(display, fontInfo, &ch, 1, &charinfo);
c.height = fontInfo->height;
c.xOrigin = 0;
c.yOrigin = fontInfo->ascent;
c.xIncrement = charinfo.xOff;
c.width = charinfo.xOff;
// kick out early if the character is undrawable
if( c.width == 0 || c.height == 0)
return c;
// allocate a greyscale bitmap and clear it.
int bitmapDataSize = c.width * c.height;
c.bitmapData = new U8[bitmapDataSize];
dMemset(c.bitmapData, 0, bitmapDataSize);
XftDrawRect (draw, &black, 0, 0, fontInfo->max_advance_width, fontInfo->height);
XftDrawString16 (draw, &white, fontInfo, 0, fontInfo->ascent, &ch, 1);
// grab the pixmap image
XImage *ximage = XGetImage(display, pixmap, 0, 0,
charinfo.xOff, fontInfo->height,
AllPlanes, XYPixmap);
if (!ximage)
AssertFatal(false, "cannot get x image");
int x, y;
// grab each pixel and store it in the scratchPad
for(y = 0; y < fontInfo->height; y++)
{
for(x = 0; x < charinfo.xOff; x++)
c.bitmapData[y * charinfo.xOff + x] = static_cast<U8>(XGetPixel(ximage, x, y));
}
XDestroyImage(ximage);
XftColorFree(display, DefaultVisual(display, screen),
DefaultColormap(display, screen), &black);
XftColorFree(display, DefaultVisual(display, screen),
DefaultColormap(display, screen), &white);
XftDrawDestroy(draw);
XFreePixmap(display, pixmap);
XCloseDisplay(display);
return c;
}
PlatformFont::CharInfo &x86UNIXFont::getCharInfo(const UTF8 *str) const
{
return getCharInfo(oneUTF32toUTF16(oneUTF8toUTF32(str,NULL)));
}