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-17 18:29:41 +03:00
|
|
|
#include <parserutils/charset/utf8.h>
|
|
|
|
#include <parserutils/charset/utf16.h>
|
2009-01-20 19:53:06 +03:00
|
|
|
#include <proto/utility.h>
|
2009-01-16 23:05:21 +03:00
|
|
|
|
2009-01-18 15:15:48 +03:00
|
|
|
static struct OutlineFont *of[CSS_FONT_FAMILY_NOT_SET];
|
2009-01-20 19:53:06 +03:00
|
|
|
static struct OutlineFont *ofb[CSS_FONT_FAMILY_NOT_SET];
|
|
|
|
static struct OutlineFont *ofi[CSS_FONT_FAMILY_NOT_SET];
|
|
|
|
static struct OutlineFont *ofbi[CSS_FONT_FAMILY_NOT_SET];
|
2008-09-15 22:56:11 +04:00
|
|
|
|
2009-01-17 03:43:51 +03:00
|
|
|
struct OutlineFont *ami_open_outline_font(struct css_style *style);
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
static bool nsfont_width(const struct css_style *style,
|
|
|
|
const char *string, size_t length,
|
|
|
|
int *width);
|
|
|
|
|
|
|
|
static bool nsfont_position_in_string(const struct css_style *style,
|
|
|
|
const char *string, size_t length,
|
|
|
|
int x, size_t *char_offset, int *actual_x);
|
|
|
|
|
|
|
|
static bool nsfont_split(const struct css_style *style,
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
|
|
bool nsfont_width(const struct css_style *style,
|
|
|
|
const char *string, size_t length,
|
|
|
|
int *width)
|
|
|
|
{
|
2009-01-16 23:05:21 +03:00
|
|
|
struct TextFont *tfont;
|
|
|
|
|
|
|
|
if(option_quick_text)
|
|
|
|
{
|
|
|
|
tfont = ami_open_font(style);
|
|
|
|
*width = TextLength(currp,string,length); //buffer,strlen(buffer));
|
|
|
|
ami_close_font(tfont);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*width = ami_unicode_text(NULL,string,length,style,0,0,0);
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* \param style css_style for this text, with style->font_size.size ==
|
|
|
|
* CSS_FONT_SIZE_LENGTH
|
|
|
|
* \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
|
|
|
|
|
|
|
bool nsfont_position_in_string(const struct css_style *style,
|
|
|
|
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;
|
|
|
|
|
|
|
|
if(option_quick_text)
|
|
|
|
{
|
|
|
|
tfont = ami_open_font(style);
|
2008-08-22 01:42:48 +04:00
|
|
|
|
2009-01-17 03:43:51 +03:00
|
|
|
*char_offset = TextFit(currp,string,length,
|
2008-09-16 02:18:33 +04:00
|
|
|
&extent,NULL,1,x,32767);
|
|
|
|
|
2009-01-17 03:43:51 +03:00
|
|
|
*actual_x = extent.te_Extent.MaxX;
|
|
|
|
|
|
|
|
ami_close_font(tfont);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-01-17 18:29:41 +03:00
|
|
|
uint16 *utf16 = NULL;
|
2009-01-17 03:43:51 +03:00
|
|
|
struct OutlineFont *ofont;
|
|
|
|
struct GlyphMap *glyph;
|
|
|
|
uint32 tx=0,i=0;
|
2009-01-17 18:29:41 +03:00
|
|
|
size_t len,utf8len;
|
|
|
|
uint8 *utf8;
|
|
|
|
uint32 co = 0;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-01-17 18:29:41 +03:00
|
|
|
parserutils_charset_utf8_length(string, length, &len);
|
2009-01-17 03:43:51 +03:00
|
|
|
if(utf8_to_enc(string,"UTF-16",length,&utf16) != UTF8_CONVERT_OK) return;
|
|
|
|
|
|
|
|
if(!(ofont = ami_open_outline_font(style))) return 0;
|
|
|
|
|
2009-01-17 18:29:41 +03:00
|
|
|
*char_offset = length;
|
|
|
|
|
|
|
|
for(i=0;i<len;i++)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
2009-01-17 18:29:41 +03:00
|
|
|
OT_GlyphCode,*utf16,
|
2009-01-17 03:43:51 +03:00
|
|
|
TAG_END) == OTERR_Success)
|
|
|
|
{
|
|
|
|
if(EObtainInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,&glyph,
|
|
|
|
TAG_END) == 0)
|
|
|
|
{
|
|
|
|
*actual_x = tx;
|
2009-01-17 18:29:41 +03:00
|
|
|
if(utf8_from_enc(utf16,"UTF-16",4,&utf8) != UTF8_CONVERT_OK) return;
|
|
|
|
parserutils_charset_utf8_char_byte_length(utf8,&utf8len);
|
2009-01-17 03:43:51 +03:00
|
|
|
|
|
|
|
if(x<tx+glyph->glm_X1)
|
|
|
|
{
|
2009-01-17 18:29:41 +03:00
|
|
|
i = len+1;
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
2009-01-18 15:15:48 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
co += utf8len;
|
|
|
|
}
|
2009-01-17 03:43:51 +03:00
|
|
|
|
|
|
|
tx+= glyph->glm_X1;
|
|
|
|
|
|
|
|
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;
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
2009-01-17 18:29:41 +03:00
|
|
|
*char_offset = co;
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
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.
|
|
|
|
*
|
|
|
|
* \param style css_style for this text, with style->font_size.size ==
|
|
|
|
* CSS_FONT_SIZE_LENGTH
|
|
|
|
* \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]
|
|
|
|
*/
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
bool nsfont_split(const struct css_style *style,
|
|
|
|
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;
|
|
|
|
char *charp;
|
2009-01-17 03:43:51 +03:00
|
|
|
struct TextFont *tfont;
|
2008-08-10 00:28:35 +04:00
|
|
|
|
2009-01-17 03:43:51 +03:00
|
|
|
if(option_quick_text)
|
2008-08-10 00:28:35 +04:00
|
|
|
{
|
2009-01-17 03:43:51 +03:00
|
|
|
tfont = ami_open_font(style);
|
2008-08-10 00:28:35 +04:00
|
|
|
|
2009-01-17 03:43:51 +03:00
|
|
|
co = TextFit(currp,string,length,
|
|
|
|
&extent,NULL,1,x,32767);
|
|
|
|
|
|
|
|
charp = string+co;
|
|
|
|
while(((*charp != ' ')) && (charp > string))
|
|
|
|
{
|
|
|
|
charp--;
|
|
|
|
co--;
|
|
|
|
}
|
|
|
|
|
|
|
|
*char_offset = co;
|
|
|
|
if(string && co)
|
|
|
|
{
|
|
|
|
*actual_x = TextLength(currp,string,co);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*actual_x = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ami_close_font(tfont);
|
2008-08-26 22:03:07 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-01-17 18:29:41 +03:00
|
|
|
uint16 *utf16 = NULL;
|
2009-01-17 03:43:51 +03:00
|
|
|
struct OutlineFont *ofont;
|
|
|
|
struct GlyphMap *glyph;
|
|
|
|
uint32 tx=0,i=0;
|
2009-01-17 18:29:41 +03:00
|
|
|
size_t len;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-01-17 18:29:41 +03:00
|
|
|
parserutils_charset_utf8_length(string, length, &len);
|
2009-01-17 03:43:51 +03:00
|
|
|
if(utf8_to_enc(string,"UTF-16",length,&utf16) != UTF8_CONVERT_OK) return;
|
|
|
|
|
|
|
|
if(!(ofont = ami_open_outline_font(style))) return 0;
|
|
|
|
|
|
|
|
*char_offset = 0;
|
|
|
|
|
2009-01-17 18:29:41 +03:00
|
|
|
for(i=0;i<len;i++)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
2009-01-17 18:29:41 +03:00
|
|
|
OT_GlyphCode,*utf16,
|
2009-01-17 03:43:51 +03:00
|
|
|
TAG_END) == OTERR_Success)
|
|
|
|
{
|
|
|
|
if(EObtainInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,&glyph,
|
|
|
|
TAG_END) == 0)
|
|
|
|
{
|
2009-01-17 18:29:41 +03:00
|
|
|
if(*utf16 == 0x0020)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
|
|
|
*actual_x = tx;
|
2009-01-17 18:29:41 +03:00
|
|
|
co = i;
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if(x<tx+glyph->glm_X1)
|
|
|
|
{
|
|
|
|
i = length+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
tx+= glyph->glm_X1;
|
|
|
|
|
|
|
|
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;
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
2009-01-17 18:29:41 +03:00
|
|
|
|
|
|
|
charp = string+co;
|
|
|
|
while(((*charp != ' ')) && (charp > string))
|
|
|
|
{
|
|
|
|
charp--;
|
|
|
|
co--;
|
|
|
|
}
|
|
|
|
*char_offset = co;
|
2008-08-26 22:03:07 +04:00
|
|
|
}
|
2008-08-02 18:31:32 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2008-08-17 20:22:40 +04:00
|
|
|
struct TextFont *ami_open_font(struct css_style *style)
|
2008-08-10 13:57:41 +04:00
|
|
|
{
|
|
|
|
struct TextFont *tfont;
|
2008-08-12 21:47:35 +04:00
|
|
|
struct TTextAttr tattr;
|
|
|
|
struct TagItem tattrtags[2];
|
2008-08-30 20:55:25 +04:00
|
|
|
char fontname[256];
|
2008-08-10 13:57:41 +04:00
|
|
|
|
|
|
|
switch(style->font_family)
|
|
|
|
{
|
|
|
|
case CSS_FONT_FAMILY_SANS_SERIF:
|
2008-08-30 20:55:25 +04:00
|
|
|
strcpy(fontname,option_font_sans);
|
2008-08-10 13:57:41 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_FONT_FAMILY_SERIF:
|
2008-08-30 20:55:25 +04:00
|
|
|
strcpy(fontname,option_font_serif);
|
2008-08-10 13:57:41 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_FONT_FAMILY_MONOSPACE:
|
2008-08-30 20:55:25 +04:00
|
|
|
strcpy(fontname,option_font_mono);
|
2008-08-10 13:57:41 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_FONT_FAMILY_CURSIVE:
|
2008-08-30 20:55:25 +04:00
|
|
|
strcpy(fontname,option_font_cursive);
|
2008-08-10 13:57:41 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_FONT_FAMILY_FANTASY:
|
2008-08-30 20:55:25 +04:00
|
|
|
strcpy(fontname,option_font_fantasy);
|
2008-08-10 13:57:41 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2008-08-30 20:55:25 +04:00
|
|
|
strcpy(fontname,option_font_sans);
|
2008-08-10 13:57:41 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(style->font_style)
|
|
|
|
{
|
|
|
|
case CSS_FONT_STYLE_ITALIC:
|
|
|
|
case CSS_FONT_STYLE_OBLIQUE:
|
2008-09-15 22:56:11 +04:00
|
|
|
tattr.tta_Style = FSF_ITALIC;
|
2008-08-10 13:57:41 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2008-08-12 21:47:35 +04:00
|
|
|
tattr.tta_Style = FS_NORMAL;
|
2008-08-10 13:57:41 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-09-15 22:56:11 +04:00
|
|
|
switch(style->font_weight)
|
|
|
|
{
|
|
|
|
case CSS_FONT_WEIGHT_BOLD:
|
|
|
|
case CSS_FONT_WEIGHT_BOLDER:
|
|
|
|
tattr.tta_Style |= FSF_BOLD;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-08-12 21:47:35 +04:00
|
|
|
/* not supported
|
2008-08-10 13:57:41 +04:00
|
|
|
switch(style->font_variant)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
//printf("font variant: %ld\n",style->font_variant);
|
|
|
|
break;
|
|
|
|
}
|
2008-08-12 21:47:35 +04:00
|
|
|
*/
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2008-12-14 02:20:49 +03:00
|
|
|
tattr.tta_YSize = css_len2px(&style->font_size.value.length, style);
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2008-08-12 21:47:35 +04:00
|
|
|
if(tattr.tta_YSize < option_font_min_size)
|
|
|
|
tattr.tta_YSize = option_font_min_size;
|
|
|
|
|
|
|
|
tattr.tta_Flags = 0;
|
|
|
|
|
|
|
|
/* Uncommenting this changes the font's charset.
|
|
|
|
106 is UTF-8 but OS4 doesn't support it so this only results in a crash!
|
|
|
|
|
|
|
|
tattrtags[0].ti_Tag = TA_CharSet;
|
|
|
|
tattrtags[0].ti_Data = 106;
|
|
|
|
tattrtags[1].ti_Tag = TAG_DONE;
|
|
|
|
|
|
|
|
tattr.tta_Flags = FSB_TAGGED;
|
|
|
|
tattr.tta_Tags = &tattrtags;
|
|
|
|
*/
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2008-08-30 20:55:25 +04:00
|
|
|
strcat(fontname,".font");
|
|
|
|
tattr.tta_Name = fontname;
|
|
|
|
|
2008-08-12 21:47:35 +04:00
|
|
|
tfont = OpenDiskFont((struct TextAttr *)&tattr);
|
2008-08-10 13:57:41 +04:00
|
|
|
|
|
|
|
if(tfont)
|
|
|
|
{
|
|
|
|
SetRPAttrs(currp,
|
|
|
|
RPTAG_Font,tfont,
|
|
|
|
TAG_DONE);
|
|
|
|
}
|
|
|
|
|
2008-08-17 20:22:40 +04:00
|
|
|
return tfont;
|
|
|
|
}
|
|
|
|
|
2008-08-30 20:55:25 +04:00
|
|
|
struct OutlineFont *ami_open_outline_font(struct css_style *style)
|
|
|
|
{
|
|
|
|
struct OutlineFont *ofont;
|
|
|
|
char *fontname;
|
|
|
|
WORD ysize;
|
2009-01-20 19:53:06 +03:00
|
|
|
int tstyle = 0;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-20 19:53:06 +03:00
|
|
|
switch(style->font_style)
|
|
|
|
{
|
|
|
|
case CSS_FONT_STYLE_ITALIC:
|
|
|
|
case CSS_FONT_STYLE_OBLIQUE:
|
|
|
|
tstyle += NSA_ITALIC;
|
|
|
|
break;
|
|
|
|
}
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-20 19:53:06 +03:00
|
|
|
switch(style->font_weight)
|
|
|
|
{
|
|
|
|
case CSS_FONT_WEIGHT_BOLD:
|
|
|
|
case CSS_FONT_WEIGHT_BOLDER:
|
|
|
|
tstyle += NSA_BOLD;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(tstyle)
|
|
|
|
{
|
|
|
|
case NSA_ITALIC:
|
|
|
|
if(ofi[style->font_family]) ofont = ofi[style->font_family];
|
|
|
|
else ofont = of[style->font_family];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NSA_BOLD:
|
|
|
|
if(ofb[style->font_family]) ofont = ofb[style->font_family];
|
|
|
|
else ofont = of[style->font_family];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NSA_BOLDITALIC:
|
|
|
|
if(ofbi[style->font_family]) ofont = ofbi[style->font_family];
|
|
|
|
else ofont = of[style->font_family];
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ofont = of[style->font_family];
|
|
|
|
break;
|
|
|
|
}
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-18 15:15:48 +03:00
|
|
|
ysize = css_len2pt(&style->font_size.value.length, style);
|
2008-08-30 20:55:25 +04:00
|
|
|
|
|
|
|
if(ysize < option_font_min_size)
|
|
|
|
ysize = option_font_min_size;
|
|
|
|
|
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
2009-01-16 23:05:21 +03:00
|
|
|
OT_DeviceDPI,(72<<16) | 72,
|
|
|
|
OT_PointHeight,(ysize<<16),
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2008-08-17 20:22:40 +04:00
|
|
|
void ami_close_font(struct TextFont *tfont)
|
|
|
|
{
|
|
|
|
SetRPAttrs(currp,
|
|
|
|
RPTAG_Font,origrpfont,
|
|
|
|
TAG_DONE);
|
|
|
|
|
2008-08-22 01:42:48 +04:00
|
|
|
if(tfont) CloseFont(tfont);
|
2008-08-10 13:57:41 +04:00
|
|
|
}
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-16 23:05:21 +03:00
|
|
|
ULONG ami_unicode_text(struct RastPort *rp,char *string,ULONG length,struct css_style *style,ULONG dx, ULONG dy, ULONG c)
|
2008-08-30 20:55:25 +04:00
|
|
|
{
|
2009-01-17 18:29:41 +03:00
|
|
|
uint16 *utf16 = 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;
|
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-01-17 18:29:41 +03:00
|
|
|
parserutils_charset_utf8_length(string, length, &len);
|
2009-01-17 03:43:51 +03:00
|
|
|
if(utf8_to_enc(string,"UTF-16",length,&utf16) != UTF8_CONVERT_OK) return 0;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-16 23:05:21 +03:00
|
|
|
if(!(ofont = ami_open_outline_font(style))) return 0;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-17 03:43:51 +03:00
|
|
|
if(rp) SetRPAttrs(currp,RPTAG_APenColor,p96EncodeColor(RGBFB_A8B8G8R8,c),TAG_DONE);
|
|
|
|
|
|
|
|
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-01-16 01:46:28 +03:00
|
|
|
BLITA_DestType,BLITT_RASTPORT,
|
|
|
|
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-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-01-16 23:05:21 +03:00
|
|
|
if(!option_quick_text)
|
|
|
|
{
|
|
|
|
of[CSS_FONT_FAMILY_SANS_SERIF] = OpenOutlineFont(option_font_sans,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_SERIF] = OpenOutlineFont(option_font_serif,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_MONOSPACE] = OpenOutlineFont(option_font_mono,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_CURSIVE] = OpenOutlineFont(option_font_cursive,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_FANTASY] = OpenOutlineFont(option_font_fantasy,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_UNKNOWN] = OpenOutlineFont(option_font_sans,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_NOT_SET] = OpenOutlineFont(option_font_sans,NULL,OFF_OPEN);
|
2009-01-18 15:15:48 +03:00
|
|
|
|
|
|
|
for(i=CSS_FONT_FAMILY_SANS_SERIF;i<=CSS_FONT_FAMILY_NOT_SET;i++)
|
|
|
|
{
|
2009-01-20 19:53:06 +03:00
|
|
|
if(!of[i]) warn_user("FontError",""); // temporary error message
|
|
|
|
|
|
|
|
if(bname = GetTagData(OT_BName,0,of[i]->olf_OTagList))
|
|
|
|
{
|
|
|
|
ofb[i] = OpenOutlineFont(bname,NULL,OFF_OPEN);
|
|
|
|
}
|
|
|
|
else
|
2009-01-18 15:15:48 +03:00
|
|
|
{
|
2009-01-20 19:53:06 +03:00
|
|
|
ofb[i] = NULL;
|
|
|
|
}
|
2009-01-18 15:15:48 +03:00
|
|
|
|
2009-01-20 19:53:06 +03:00
|
|
|
if(iname = GetTagData(OT_IName,0,of[i]->olf_OTagList))
|
|
|
|
{
|
|
|
|
ofi[i] = OpenOutlineFont(iname,NULL,OFF_OPEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ofi[i] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(biname = GetTagData(OT_BIName,0,of[i]->olf_OTagList))
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ami_close_fonts(void)
|
|
|
|
{
|
|
|
|
int i=0;
|
|
|
|
|
|
|
|
if(!option_quick_text)
|
|
|
|
{
|
2009-01-20 19:53:06 +03:00
|
|
|
for(i=CSS_FONT_FAMILY_SANS_SERIF;i<=CSS_FONT_FAMILY_NOT_SET;i++)
|
2009-01-16 23:05:21 +03:00
|
|
|
{
|
|
|
|
if(of[i]) CloseOutlineFont(of[i],NULL);
|
2009-01-20 19:53:06 +03:00
|
|
|
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
|
|
|
}
|