2008-08-02 18:31:32 +04:00
|
|
|
/*
|
2009-01-16 23:05:21 +03:00
|
|
|
* Copyright 2008,2009 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-08-02 18:31:32 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include "css/css.h"
|
|
|
|
#include "render/font.h"
|
2008-08-07 22:44:28 +04:00
|
|
|
#include "amiga/gui.h"
|
|
|
|
#include <proto/graphics.h>
|
2008-08-10 13:57:41 +04:00
|
|
|
#include <proto/diskfont.h>
|
|
|
|
#include <graphics/rpattr.h>
|
|
|
|
#include "amiga/font.h"
|
|
|
|
#include "desktop/options.h"
|
2008-08-26 05:21:22 +04:00
|
|
|
#include "amiga/utf8.h"
|
2008-08-30 20:55:25 +04:00
|
|
|
#include "utils/utf8.h"
|
|
|
|
#include <diskfont/diskfonttag.h>
|
|
|
|
#include <diskfont/oterrors.h>
|
|
|
|
#include <proto/Picasso96API.h>
|
2008-09-15 22:56:11 +04:00
|
|
|
#include <proto/exec.h>
|
2008-12-28 02:25:42 +03:00
|
|
|
#include <graphics/blitattr.h>
|
2009-01-16 23:05:21 +03:00
|
|
|
#include "amiga/options.h"
|
2009-01-20 19:53:06 +03:00
|
|
|
#include <proto/utility.h>
|
2009-04-18 20:55:59 +04:00
|
|
|
#include "utils/utils.h"
|
2009-01-16 23:05:21 +03:00
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
static struct OutlineFont *of[PLOT_FONT_FAMILY_COUNT];
|
|
|
|
static struct OutlineFont *ofb[PLOT_FONT_FAMILY_COUNT];
|
|
|
|
static struct OutlineFont *ofi[PLOT_FONT_FAMILY_COUNT];
|
|
|
|
static struct OutlineFont *ofbi[PLOT_FONT_FAMILY_COUNT];
|
2008-09-15 22:56:11 +04:00
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
struct OutlineFont *ami_open_outline_font(const plot_font_style_t *fstyle);
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
static bool nsfont_width(const plot_font_style_t *fstyle,
|
2008-08-02 18:31:32 +04:00
|
|
|
const char *string, size_t length,
|
|
|
|
int *width);
|
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
static bool nsfont_position_in_string(const plot_font_style_t *fstyle,
|
2008-08-02 18:31:32 +04:00
|
|
|
const char *string, size_t length,
|
|
|
|
int x, size_t *char_offset, int *actual_x);
|
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
static bool nsfont_split(const plot_font_style_t *fstyle,
|
2008-08-02 18:31:32 +04:00
|
|
|
const char *string, size_t length,
|
|
|
|
int x, size_t *char_offset, int *actual_x);
|
|
|
|
|
|
|
|
const struct font_functions nsfont = {
|
|
|
|
nsfont_width,
|
|
|
|
nsfont_position_in_string,
|
|
|
|
nsfont_split
|
|
|
|
};
|
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
bool nsfont_width(const plot_font_style_t *fstyle,
|
2008-08-02 18:31:32 +04:00
|
|
|
const char *string, size_t length,
|
|
|
|
int *width)
|
|
|
|
{
|
2009-01-16 23:05:21 +03:00
|
|
|
struct TextFont *tfont;
|
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
*width = ami_unicode_text(NULL,string,length,fstyle,0,0);
|
2009-01-16 23:05:21 +03:00
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
/**
|
|
|
|
* Find the position in a string where an x coordinate falls.
|
|
|
|
*
|
2009-07-21 14:59:53 +04:00
|
|
|
* \param fstyle style for this text
|
2008-08-07 22:44:28 +04:00
|
|
|
* \param string UTF-8 string to measure
|
|
|
|
* \param length length of string
|
|
|
|
* \param x x coordinate to search for
|
|
|
|
* \param char_offset updated to offset in string of actual_x, [0..length]
|
|
|
|
* \param actual_x updated to x coordinate of character closest to x
|
|
|
|
* \return true on success, false on error and error reported
|
|
|
|
*/
|
2008-08-02 18:31:32 +04:00
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
bool nsfont_position_in_string(const plot_font_style_t *fstyle,
|
2008-08-02 18:31:32 +04:00
|
|
|
const char *string, size_t length,
|
|
|
|
int x, size_t *char_offset, int *actual_x)
|
|
|
|
{
|
2008-08-10 00:28:35 +04:00
|
|
|
struct TextExtent extent;
|
2009-01-17 03:43:51 +03:00
|
|
|
struct TextFont *tfont;
|
2009-04-01 21:36:18 +04:00
|
|
|
uint16 *utf16 = NULL, *outf16 = NULL;
|
|
|
|
struct OutlineFont *ofont;
|
|
|
|
struct GlyphMap *glyph;
|
|
|
|
uint32 tx=0,i=0;
|
|
|
|
size_t len,utf8len;
|
|
|
|
uint8 *utf8;
|
|
|
|
uint32 co = 0;
|
2009-09-05 15:33:05 +04:00
|
|
|
int utf16charlen;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
len = utf8_bounded_length(string, length);
|
2009-04-18 20:55:59 +04:00
|
|
|
if(utf8_to_enc(string,"UTF-16",length,(char **)&utf16) != UTF8_CONVERT_OK) return false;
|
2009-04-01 21:36:18 +04:00
|
|
|
outf16 = utf16;
|
2008-08-22 01:42:48 +04:00
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
if(!(ofont = ami_open_outline_font(fstyle))) return false;
|
2008-09-16 02:18:33 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
*char_offset = length;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
for(i=0;i<len;i++)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-09-05 15:33:05 +04:00
|
|
|
if (*utf16 < 0xD800 || 0xDFFF < *utf16)
|
|
|
|
utf16charlen = 1;
|
|
|
|
else
|
|
|
|
utf16charlen = 2;
|
|
|
|
|
|
|
|
utf8len = utf8_char_byte_length(string);
|
2009-09-05 18:39:38 +04:00
|
|
|
string += utf8len;
|
2009-09-05 15:33:05 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphCode,*utf16,
|
|
|
|
TAG_END) == OTERR_Success)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(EObtainInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,&glyph,
|
|
|
|
TAG_END) == 0)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-09-05 18:39:38 +04:00
|
|
|
if(x < (tx + glyph->glm_X1))
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-09-05 18:39:38 +04:00
|
|
|
*actual_x = tx;
|
2009-04-01 21:36:18 +04:00
|
|
|
i = len+1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
co += utf8len;
|
|
|
|
}
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-09-05 18:39:38 +04:00
|
|
|
tx += glyph->glm_X1;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
EReleaseInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,glyph,
|
|
|
|
TAG_END);
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
|
|
|
}
|
2009-09-05 15:33:05 +04:00
|
|
|
utf16 += utf16charlen;
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
2009-09-05 18:39:38 +04:00
|
|
|
|
|
|
|
if(co == length)
|
|
|
|
{
|
|
|
|
*actual_x = tx;
|
|
|
|
co = length;
|
|
|
|
}
|
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
*char_offset = co;
|
2009-09-05 18:39:38 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
free(outf16);
|
2008-08-02 18:31:32 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
/**
|
|
|
|
* Find where to split a string to make it fit a width.
|
|
|
|
*
|
2009-07-21 14:59:53 +04:00
|
|
|
* \param fstyle style for this text
|
2008-08-07 22:44:28 +04:00
|
|
|
* \param string UTF-8 string to measure
|
|
|
|
* \param length length of string
|
|
|
|
* \param x width available
|
|
|
|
* \param char_offset updated to offset in string of actual_x, [0..length]
|
|
|
|
* \param actual_x updated to x coordinate of character closest to x
|
|
|
|
* \return true on success, false on error and error reported
|
|
|
|
*
|
|
|
|
* On exit, [char_offset == 0 ||
|
|
|
|
* string[char_offset] == ' ' ||
|
|
|
|
* char_offset == length]
|
|
|
|
*/
|
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
bool nsfont_split(const plot_font_style_t *fstyle,
|
2008-08-02 18:31:32 +04:00
|
|
|
const char *string, size_t length,
|
|
|
|
int x, size_t *char_offset, int *actual_x)
|
|
|
|
{
|
2008-08-10 00:28:35 +04:00
|
|
|
struct TextExtent extent;
|
|
|
|
ULONG co;
|
2009-09-05 15:33:05 +04:00
|
|
|
char *ostr = string;
|
2009-01-17 03:43:51 +03:00
|
|
|
struct TextFont *tfont;
|
2009-04-01 21:36:18 +04:00
|
|
|
uint16 *utf16 = NULL,*outf16 = NULL;
|
|
|
|
struct OutlineFont *ofont;
|
|
|
|
struct GlyphMap *glyph;
|
|
|
|
uint32 tx=0,i=0;
|
|
|
|
size_t len;
|
2009-09-05 15:33:05 +04:00
|
|
|
int utf8len, utf8clen = 0;
|
2008-08-10 00:28:35 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
len = utf8_bounded_length(string, length);
|
2009-04-18 20:55:59 +04:00
|
|
|
if(utf8_to_enc((char *)string,"UTF-16",length,(char **)&utf16) != UTF8_CONVERT_OK) return false;
|
2009-04-01 21:36:18 +04:00
|
|
|
outf16 = utf16;
|
2009-07-21 14:59:53 +04:00
|
|
|
if(!(ofont = ami_open_outline_font(fstyle))) return false;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
*char_offset = 0;
|
2009-09-05 15:58:13 +04:00
|
|
|
*actual_x = 0;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
for(i=0;i<len;i++)
|
2008-08-26 22:03:07 +04:00
|
|
|
{
|
2009-09-05 16:35:05 +04:00
|
|
|
utf8len = utf8_char_byte_length(string+utf8clen);
|
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphCode,*utf16,
|
|
|
|
TAG_END) == OTERR_Success)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(EObtainInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,&glyph,
|
|
|
|
TAG_END) == 0)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-09-05 16:35:05 +04:00
|
|
|
tx+= glyph->glm_X1;
|
|
|
|
|
|
|
|
if(x < tx)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-09-05 15:33:05 +04:00
|
|
|
i = length+1;
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
2009-09-05 15:33:05 +04:00
|
|
|
else
|
2009-04-01 21:36:18 +04:00
|
|
|
{
|
2009-09-05 16:35:05 +04:00
|
|
|
if(string[utf8clen] == ' ') //*utf16 == 0x0020)
|
2009-09-05 15:33:05 +04:00
|
|
|
{
|
|
|
|
*actual_x = tx;
|
|
|
|
*char_offset = utf8clen;
|
|
|
|
}
|
2009-04-01 21:36:18 +04:00
|
|
|
}
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
EReleaseInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,glyph,
|
|
|
|
TAG_END);
|
|
|
|
}
|
|
|
|
}
|
2009-09-05 15:33:05 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
if (*utf16 < 0xD800 || 0xDFFF < *utf16)
|
2009-09-05 15:33:05 +04:00
|
|
|
utf16 += 1;
|
2009-04-01 21:36:18 +04:00
|
|
|
else
|
|
|
|
utf16 += 2;
|
2009-09-05 15:33:05 +04:00
|
|
|
|
|
|
|
utf8clen += utf8len;
|
2008-09-15 22:56:11 +04:00
|
|
|
}
|
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
free(outf16);
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
return true;
|
2008-08-17 20:22:40 +04:00
|
|
|
}
|
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
struct OutlineFont *ami_open_outline_font(const plot_font_style_t *fstyle)
|
2008-08-30 20:55:25 +04:00
|
|
|
{
|
|
|
|
struct OutlineFont *ofont;
|
|
|
|
char *fontname;
|
2009-07-24 03:05:34 +04:00
|
|
|
ULONG ysize;
|
2009-01-20 19:53:06 +03:00
|
|
|
int tstyle = 0;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
if ((fstyle->flags & FONTF_ITALIC) || (fstyle->flags & FONTF_OBLIQUE))
|
|
|
|
tstyle += NSA_ITALIC;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
if (fstyle->weight >= 700)
|
|
|
|
tstyle += NSA_BOLD;
|
2009-01-20 19:53:06 +03:00
|
|
|
|
|
|
|
switch(tstyle)
|
|
|
|
{
|
|
|
|
case NSA_ITALIC:
|
2009-07-21 14:59:53 +04:00
|
|
|
if(ofi[fstyle->family]) ofont = ofi[fstyle->family];
|
|
|
|
else ofont = of[fstyle->family];
|
2009-01-20 19:53:06 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case NSA_BOLD:
|
2009-07-21 14:59:53 +04:00
|
|
|
if(ofb[fstyle->family]) ofont = ofb[fstyle->family];
|
|
|
|
else ofont = of[fstyle->family];
|
2009-01-20 19:53:06 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case NSA_BOLDITALIC:
|
2009-07-21 14:59:53 +04:00
|
|
|
if(ofbi[fstyle->family]) ofont = ofbi[fstyle->family];
|
|
|
|
else ofont = of[fstyle->family];
|
2009-01-20 19:53:06 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2009-07-21 14:59:53 +04:00
|
|
|
ofont = of[fstyle->family];
|
2009-01-20 19:53:06 +03:00
|
|
|
break;
|
|
|
|
}
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-07-24 03:05:34 +04:00
|
|
|
/* Scale to 16.16 fixed point */
|
2009-08-29 18:24:47 +04:00
|
|
|
ysize = fstyle->size * ((1 << 16) / FONT_SIZE_SCALE) * glob->scale;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
2009-01-16 23:05:21 +03:00
|
|
|
OT_DeviceDPI,(72<<16) | 72,
|
2009-07-24 03:05:34 +04:00
|
|
|
OT_PointHeight,ysize,
|
2009-01-16 23:05:21 +03:00
|
|
|
TAG_END) == OTERR_Success)
|
2008-08-30 20:55:25 +04:00
|
|
|
{
|
2009-01-16 23:05:21 +03:00
|
|
|
return ofont;
|
2008-08-30 20:55:25 +04:00
|
|
|
}
|
|
|
|
|
2009-01-16 23:05:21 +03:00
|
|
|
return NULL;
|
2008-08-30 20:55:25 +04:00
|
|
|
}
|
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
ULONG ami_unicode_text(struct RastPort *rp,const char *string,ULONG length,const plot_font_style_t *fstyle,ULONG dx, ULONG dy)
|
2008-08-30 20:55:25 +04:00
|
|
|
{
|
2009-01-24 15:24:15 +03:00
|
|
|
uint16 *utf16 = NULL, *outf16 = NULL;
|
2008-08-30 20:55:25 +04:00
|
|
|
struct OutlineFont *ofont;
|
|
|
|
struct GlyphMap *glyph;
|
|
|
|
ULONG i,gx,gy;
|
|
|
|
UBYTE *glyphbm;
|
|
|
|
UWORD posn;
|
2008-12-28 02:25:42 +03:00
|
|
|
struct BitMap *tbm;
|
|
|
|
struct RastPort trp;
|
|
|
|
uint32 width,height;
|
|
|
|
uint32 x=0,y=0;
|
2009-01-17 18:29:41 +03:00
|
|
|
size_t len;
|
2009-07-03 03:07:04 +04:00
|
|
|
uint8 co = 0;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-17 03:43:51 +03:00
|
|
|
if(!string || string[0]=='\0') return 0;
|
|
|
|
if(!length) return 0;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-02-18 02:44:17 +03:00
|
|
|
len = utf8_bounded_length(string, length);
|
2009-04-18 20:55:59 +04:00
|
|
|
if(utf8_to_enc(string,"UTF-16",length,(char **)&utf16) != UTF8_CONVERT_OK) return 0;
|
2009-01-24 15:24:15 +03:00
|
|
|
outf16 = utf16;
|
2009-07-21 14:59:53 +04:00
|
|
|
if(!(ofont = ami_open_outline_font(fstyle))) return 0;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
if(rp) SetRPAttrs(rp,RPTAG_APenColor,p96EncodeColor(RGBFB_A8B8G8R8,fstyle->foreground),TAG_DONE);
|
2009-01-17 03:43:51 +03:00
|
|
|
|
|
|
|
dy++;
|
2008-12-28 02:25:42 +03:00
|
|
|
|
2009-01-17 18:29:41 +03:00
|
|
|
for(i=0;i<=len;i++)
|
2008-08-30 20:55:25 +04:00
|
|
|
{
|
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
2009-01-17 18:29:41 +03:00
|
|
|
OT_GlyphCode,*utf16,
|
2008-08-30 20:55:25 +04:00
|
|
|
TAG_END) == OTERR_Success)
|
|
|
|
{
|
|
|
|
if(EObtainInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,&glyph,
|
|
|
|
TAG_END) == 0)
|
|
|
|
{
|
|
|
|
glyphbm = glyph->glm_BitMap;
|
|
|
|
if(!glyphbm) continue;
|
|
|
|
|
2009-01-16 23:05:21 +03:00
|
|
|
if(rp)
|
|
|
|
{
|
|
|
|
BltBitMapTags(BLITA_SrcX,glyph->glm_BlackLeft,
|
2009-01-16 02:15:17 +03:00
|
|
|
BLITA_SrcY,glyph->glm_BlackTop,
|
|
|
|
BLITA_DestX,dx+x,
|
|
|
|
BLITA_DestY,dy-glyph->glm_Y1,
|
|
|
|
BLITA_Width,glyph->glm_X1,
|
2009-01-16 01:46:28 +03:00
|
|
|
BLITA_Height,glyph->glm_BlackHeight,
|
|
|
|
BLITA_Source,glyphbm,
|
|
|
|
BLITA_SrcType,BLITT_ALPHATEMPLATE,
|
2009-01-16 23:05:21 +03:00
|
|
|
BLITA_Dest,rp,
|
2009-06-20 18:13:16 +04:00
|
|
|
BLITA_DestType,BLITT_RASTPORT,
|
2009-01-16 01:46:28 +03:00
|
|
|
BLITA_SrcBytesPerRow,glyph->glm_BMModulo,
|
|
|
|
TAG_DONE);
|
2009-01-16 23:05:21 +03:00
|
|
|
}
|
2009-01-16 01:46:28 +03:00
|
|
|
|
2009-01-16 02:15:17 +03:00
|
|
|
x+= glyph->glm_X1;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
|
|
|
EReleaseInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,glyph,
|
|
|
|
TAG_END);
|
|
|
|
}
|
|
|
|
}
|
2009-01-17 18:29:41 +03:00
|
|
|
if (*utf16 < 0xD800 || 0xDFFF < *utf16)
|
|
|
|
utf16++;
|
|
|
|
else
|
|
|
|
utf16 += 2;
|
2008-08-30 20:55:25 +04:00
|
|
|
}
|
|
|
|
|
2009-01-24 15:24:15 +03:00
|
|
|
free(outf16);
|
2009-01-16 23:05:21 +03:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ami_init_fonts(void)
|
|
|
|
{
|
2009-01-18 15:15:48 +03:00
|
|
|
int i;
|
|
|
|
char *bname,*iname,*biname;
|
2009-06-20 17:44:39 +04:00
|
|
|
char *deffont;
|
|
|
|
|
|
|
|
switch(option_font_default)
|
|
|
|
{
|
2009-07-21 14:59:53 +04:00
|
|
|
case PLOT_FONT_FAMILY_SANS_SERIF:
|
2009-06-20 17:44:39 +04:00
|
|
|
deffont = strdup(option_font_sans);
|
|
|
|
break;
|
2009-07-21 14:59:53 +04:00
|
|
|
case PLOT_FONT_FAMILY_SERIF:
|
2009-06-20 17:44:39 +04:00
|
|
|
deffont = strdup(option_font_serif);
|
|
|
|
break;
|
2009-07-21 14:59:53 +04:00
|
|
|
case PLOT_FONT_FAMILY_MONOSPACE:
|
2009-06-20 17:44:39 +04:00
|
|
|
deffont = strdup(option_font_mono);
|
|
|
|
break;
|
2009-07-21 14:59:53 +04:00
|
|
|
case PLOT_FONT_FAMILY_CURSIVE:
|
2009-06-20 17:44:39 +04:00
|
|
|
deffont = strdup(option_font_cursive);
|
|
|
|
break;
|
2009-07-21 14:59:53 +04:00
|
|
|
case PLOT_FONT_FAMILY_FANTASY:
|
2009-06-20 17:44:39 +04:00
|
|
|
deffont = strdup(option_font_fantasy);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
deffont = strdup(option_font_sans);
|
|
|
|
break;
|
|
|
|
}
|
2009-01-18 15:15:48 +03:00
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
of[PLOT_FONT_FAMILY_SANS_SERIF] = OpenOutlineFont(option_font_sans,NULL,OFF_OPEN);
|
|
|
|
of[PLOT_FONT_FAMILY_SERIF] = OpenOutlineFont(option_font_serif,NULL,OFF_OPEN);
|
|
|
|
of[PLOT_FONT_FAMILY_MONOSPACE] = OpenOutlineFont(option_font_mono,NULL,OFF_OPEN);
|
|
|
|
of[PLOT_FONT_FAMILY_CURSIVE] = OpenOutlineFont(option_font_cursive,NULL,OFF_OPEN);
|
|
|
|
of[PLOT_FONT_FAMILY_FANTASY] = OpenOutlineFont(option_font_fantasy,NULL,OFF_OPEN);
|
2009-04-01 21:36:18 +04:00
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
for(i=PLOT_FONT_FAMILY_SANS_SERIF;i<=PLOT_FONT_FAMILY_FANTASY;i++)
|
2009-01-16 23:05:21 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(!of[i]) warn_user("FontError",""); // temporary error message
|
2009-01-20 19:53:06 +03:00
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
if(bname = (char *)GetTagData(OT_BName,0,of[i]->olf_OTagList))
|
2009-04-01 21:36:18 +04:00
|
|
|
{
|
|
|
|
ofb[i] = OpenOutlineFont(bname,NULL,OFF_OPEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ofb[i] = NULL;
|
|
|
|
}
|
2009-01-18 15:15:48 +03:00
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
if(iname = (char *)GetTagData(OT_IName,0,of[i]->olf_OTagList))
|
2009-04-01 21:36:18 +04:00
|
|
|
{
|
|
|
|
ofi[i] = OpenOutlineFont(iname,NULL,OFF_OPEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ofi[i] = NULL;
|
|
|
|
}
|
2009-01-20 19:53:06 +03:00
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
if(biname = (char *)GetTagData(OT_BIName,0,of[i]->olf_OTagList))
|
2009-04-01 21:36:18 +04:00
|
|
|
{
|
|
|
|
ofbi[i] = OpenOutlineFont(biname,NULL,OFF_OPEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ofbi[i] = NULL;
|
2009-01-18 15:15:48 +03:00
|
|
|
}
|
2009-01-16 23:05:21 +03:00
|
|
|
}
|
2009-06-20 17:44:39 +04:00
|
|
|
if(deffont) free(deffont);
|
2009-01-16 23:05:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void ami_close_fonts(void)
|
|
|
|
{
|
|
|
|
int i=0;
|
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
for(i=PLOT_FONT_FAMILY_SANS_SERIF;i<=PLOT_FONT_FAMILY_FANTASY;i++)
|
2009-01-16 23:05:21 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(of[i]) CloseOutlineFont(of[i],NULL);
|
|
|
|
if(ofb[i]) CloseOutlineFont(ofb[i],NULL);
|
|
|
|
if(ofi[i]) CloseOutlineFont(ofi[i],NULL);
|
|
|
|
if(ofbi[i]) CloseOutlineFont(ofbi[i],NULL);
|
2009-01-16 23:05:21 +03:00
|
|
|
}
|
2008-08-30 20:55:25 +04:00
|
|
|
}
|