⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 font_freetype.cache.c

📁 the embedded GUI for SamSung s3c2410 cpu based board.is microwindows0.90
💻 C
📖 第 1 页 / 共 3 页
字号:
		if (TT_Get_Kerning_Directory (pf->face, &pf->directory)		    != TT_Err_Ok)			pf->can_kern = FALSE;		else {			/* Support only version 0 kerning table ... */			if ((pf->directory.version != 0) ||				(pf->directory.nTables <= 0) ||				(pf->directory.tables->loaded != 1) ||				(pf->directory.tables->version != 0) ||				(pf->directory.tables->t.kern0.nPairs <= 0))					pf->can_kern = FALSE;		}	}	/* get face properties and allocate preload arrays */	TT_Get_Face_Properties (pf->face, &properties);#if 0	/*	 * Use header information for ascent and descent	 * to compute scaled ascent/descent for current font height.	 */	h = properties.os2->sTypoAscender - properties.os2->sTypoDescender		+ properties.os2->sTypoLineGap;	ascent = properties.os2->sTypoAscender		+ properties.os2->sTypoLineGap/2;	pf->ascent = (ascent * height + h/2) / h;	pf->descent = height - pf->ascent;#endif	/* Create a glyph container */	if (TT_New_Glyph (pf->face, &pf->glyph) != TT_Err_Ok)		goto out;	/* create instance */	if (TT_New_Instance (pf->face, &pf->instance) != TT_Err_Ok)		goto out;	/* Set the instance resolution */	if (TT_Set_Instance_Resolutions (pf->instance, 96, 96) != TT_Err_Ok)		goto out;	/* Look for a Unicode charmap: Windows flavor of Apple flavor only */	n = properties.num_CharMaps;	for (i = 0; i < n; i++) {		TT_Get_CharMap_ID (pf->face, i, &platform, &encoding);		if (((platform == TT_PLATFORM_MICROSOFT) &&			(encoding == TT_MS_ID_UNICODE_CS)) ||				((platform == TT_PLATFORM_APPLE_UNICODE) &&			 		(encoding == TT_APPLE_ID_DEFAULT)))		{			TT_Get_CharMap (pf->face, i, &pf->char_map);			i = n + 1;		}	}	if (i == n) {		DPRINTF("freetype_createfont: no unicode map table\n");		goto out;	}		GdSetFontSize((PMWFONT)pf, height);	GdSetFontRotation((PMWFONT)pf, 0);	GdSetFontAttr((PMWFONT)pf, attr, 0);	return pf;out:	free(pf);	return NULL;}static intcompute_kernval(PMWFREETYPEFONT pf, short current_glyph_code){	int 		i = 0;	int 		kernval;	int 		nPairs = pf->directory.tables->t.kern0.nPairs;	TT_Kern_0_Pair *pair = pf->directory.tables->t.kern0.pairs;	if (pf->last_glyph_code != -1) {		while ((pair->left != pf->last_glyph_code)			&& (pair->right != current_glyph_code))		{			pair++;			i++;			if (i == nPairs)			break;		}		if (i == nPairs)			kernval = 0;		else			/* We round the value (hence the +32) */			kernval = (pair->value + 32) & -64;	} else		kernval = 0;	return kernval;}static TT_UShortGet_Glyph_Width(PMWFREETYPEFONT pf, TT_UShort glyph_index){	TT_Glyph_Metrics metrics;    	if (TT_Load_Glyph ( pf->instance, pf->glyph,		TT_Char_Index (pf->char_map,glyph_index),		TTLOAD_SCALE_GLYPH|TTLOAD_HINT_GLYPH) != TT_Err_Ok)    	{		/* Try to load default glyph: index 0 */		if (TT_Load_Glyph ( pf->instance, pf->glyph, 0,			TTLOAD_SCALE_GLYPH|TTLOAD_HINT_GLYPH) != TT_Err_Ok)		    return 0;	}	TT_Get_Glyph_Metrics (pf->glyph, &metrics);	return((metrics.advance & 0xFFFFFFC0) >> 6);}#if MWFREETYPEFONT_CACHEstatic MWFREETYPEFONTCACHE *find_cache_glyph(PMWFREETYPEFONT pf, unsigned curchar){	MWFREETYPEFONTCACHE **inode = &pf->glyph_cache;	while (1) {		if (*inode == 0) {			*inode = calloc(sizeof(MWFREETYPEFONTCACHE), 1);			(*inode)->curchar = curchar;		}		if (curchar < (*inode)->curchar)			inode = &(*inode)->l;		else if (curchar > (*inode)->curchar)			inode = &(*inode)->r;		else			return *inode;	}}static voidfree_cache_glyph(MWFREETYPEFONTCACHE * node){	if (node->l != 0)		free_cache_glyph(node->l);	if (node->r != 0)		free_cache_glyph(node->r);	free(node);}#endif/* Render a single glyph*/static voiddrawchar(PMWFREETYPEFONT pf, PSD psd, unsigned curchar, int x_offset,	int y_offset){	TT_F26Dot6 	xmin, ymin, xmax, ymax, x, y, z;	unsigned char 	*src, *srcptr;	MWPIXELVAL 	*dst, *dstptr;	MWPIXELVAL 	*bitmap;	int 		size, width, height;	TT_Outline 	outline;	TT_BBox 	bbox;	TT_Raster_Map 	Raster;	TT_Error 	error;	/*MWPIXELVAL 	save;*/        MWFREETYPEFONTCACHE * cache;	/* we begin by grid-fitting the bounding box */	TT_Get_Glyph_Outline (pf->glyph, &outline);	TT_Get_Outline_BBox (&outline, &bbox);	xmin = (bbox.xMin & -64) >> 6;	ymin = (bbox.yMin & -64) >> 6;	xmax = ((bbox.xMax + 63) & -64) >> 6;	ymax = ((bbox.yMax + 63) & -64) >> 6;	width = xmax - xmin;	height = ymax - ymin;	size = width * height;	/* now re-allocate the raster bitmap */	Raster.rows = height;	Raster.width = width;	if (pf->fontattr&MWTF_ANTIALIAS)		Raster.cols = (Raster.width + 3) & -4;	/* pad to 32-bits */	else		Raster.cols = (Raster.width + 7) & -8;	/* pad to 64-bits ??? */        cache = find_cache_glyph(pf,curchar);        /* SDR: if cache is 0 here, something really really bad happened */	if (!cache) printf("CACHE 0!\n");	Raster.flow = TT_Flow_Up;	Raster.size = Raster.rows * Raster.cols;	Raster.bitmap = cache->buffer;	if (Raster.bitmap == 0)	  {	    Raster.bitmap = malloc (Raster.size);	    memset (Raster.bitmap, 0, Raster.size);	    /* now render the glyph in the small pixmap */	    /* IMPORTANT NOTE: the offset parameters passed to the function     */	    /* TT_Get_Glyph_Bitmap() must be integer pixel values, i.e.,        */	    /* multiples of 64.  HINTING WILL BE RUINED IF THIS ISN'T THE CASE! */	    /* This is why we _did_ grid-fit the bounding box, especially xmin  */	    /* and ymin.                                                        */	    if (!(pf->fontattr&MWTF_ANTIALIAS))	      error = TT_Get_Glyph_Bitmap (pf->glyph, &Raster,					   -xmin * 64, -ymin * 64);	    else	      error = TT_Get_Glyph_Pixmap (pf->glyph, &Raster,					   -xmin * 64, -ymin * 64);	    if (error) {	      free (Raster.bitmap);	      return;	    }            cache->buffer = Raster.bitmap;	  }#if MWFREETYPEFONT_CACHEBITMAP	if ((memcmp(&gr_foreground,&cache->fg,sizeof(gr_foreground)) != 0) || 	    (memcmp(&gr_background,&cache->bg,sizeof(gr_background)) != 0) || 	    (gr_usebg != cache->usebg))	  {	    if (cache->bitmap)	      {		free(cache->bitmap);		cache->bitmap = 0;	      }	  }	bitmap = cache->bitmap;#else	bitmap = 0;#endif	if (bitmap == 0)	  {	    bitmap = malloc (size * sizeof (MWPIXELVAL));	    memset (bitmap, 0, size * sizeof (MWPIXELVAL));	    src = (char *) Raster.bitmap;	    dst = bitmap + (size - width);	    for (y = ymin; y < ymax; y++) 	      {		srcptr = src;		dstptr = dst;		for (x = xmin; x < xmax; x++) 		  {		    if (pf->fontattr&MWTF_ANTIALIAS)		      *dstptr++ = gray_palette[(int) *srcptr];		    else		      {		        for ( z=0;			      z <= ((xmax-x-1) < 7 ? (xmax-x-1) : 7);			      z++ )			    *dstptr++ = ((*srcptr << z) & 0x80) ? gr_foreground : gr_background;			x += 7;		      }		    srcptr++;		  }		src += Raster.cols;		dst -= width;	      }#if MWFREETYPEFONT_CACHEBITMAP	    cache->fg = gr_foreground;	    cache->bg = gr_background;	    cache->usebg = gr_usebg;	    cache->bitmap = bitmap;#endif	  }	/* Now draw the bitmap ... */	GdArea(psd, x_offset + xmin, y_offset - (ymin + height), width, height,		bitmap, MWPF_PIXELVAL);#if !MWFREETYPEFONT_CACHEBITMAP	free(bitmap);#endif}/* * Draw unicode 16 text string using FREETYPE type font */static voidfreetype_drawtext(PMWFONT pfont, PSD psd, MWCOORD ax, MWCOORD ay,	const void *text, int cc, MWTEXTFLAGS flags){	PMWFREETYPEFONT	pf = (PMWFREETYPEFONT)pfont;	const unsigned short *	str = text;	TT_F26Dot6 	x = ax, y = ay;	TT_Pos 		vec_x, vec_y;	int 		i;	TT_F26Dot6	startx, starty;	TT_Outline 	outline;	TT_UShort 	curchar;	TT_Glyph_Metrics metrics;	TT_Face_Properties properties;	TT_Instance_Metrics imetrics;	TT_F26Dot6 ascent, descent;	static unsigned char blend[5] = { 0x00, 0x44, 0x88, 0xcc, 0xff };	static unsigned char virtual_palette[5] = { 0, 1, 2, 3, 4 };	pf->last_glyph_code = -1;		/* reset kerning*/	pf->last_pen_pos = -32767;	/* 	 * Compute instance ascent & descent values	 * in fractional units (1/64th pixel)	 */	TT_Get_Face_Properties (pf->face, &properties);	TT_Get_Instance_Metrics(pf->instance, &imetrics);	  	ascent = ((properties.horizontal->Ascender * imetrics.y_scale)/0x10000);	descent = ((properties.horizontal->Descender*imetrics.y_scale)/0x10000);	/* 	 * Offset the starting point if necessary,	 * FreeType always aligns at baseline	 */	if (flags&MWTF_BOTTOM) {		vec_x = 0;		vec_y = descent;		TT_Transform_Vector(&vec_x, &vec_y,&pf->matrix);		x -= vec_x / 64;		y += vec_y / 64;	} else if (flags&MWTF_TOP) {		vec_x = 0;		vec_y = ascent;		TT_Transform_Vector(&vec_x, &vec_y,&pf->matrix);		x -= vec_x / 64;		y += vec_y / 64;	}	/* Set the "graylevels" */	if (pf->fontattr&MWTF_ANTIALIAS) {		TT_Set_Raster_Gray_Palette (engine, virtual_palette);		alphablend(psd, gray_palette, gr_foreground, gr_background,			blend, 5);	}	startx = x;	starty = y;	for (i = 0; i < cc; i++) {		curchar = TT_Char_Index (pf->char_map, str[i]);		if (TT_Load_Glyph (pf->instance, pf->glyph, curchar,			TTLOAD_DEFAULT) != TT_Err_Ok)				continue;		if (pf->fontrotation) {			TT_Get_Glyph_Outline (pf->glyph, &outline);			TT_Transform_Outline (&outline, &pf->matrix);		}		TT_Get_Glyph_Metrics (pf->glyph, &metrics);		if ((pf->fontattr&MWTF_KERNING) && pf->can_kern) {			if (pf->fontrotation) {				vec_x = compute_kernval(pf, curchar);				vec_y = 0;				TT_Transform_Vector(&vec_x, &vec_y,&pf->matrix);				x += vec_x / 64;				y -= vec_y / 64;			} else				x += compute_kernval(pf, curchar) / 64;		}					drawchar(pf, psd, curchar, x, y);		if (pf->fontrotation) {			vec_x = metrics.advance;			vec_y = 0;			TT_Transform_Vector (&vec_x, &vec_y, &pf->matrix);			x += vec_x / 64;			y -= vec_y / 64;		} else {			x += metrics.advance / 64;			/* Kerning point syndrome avoidance */			if (pf->last_pen_pos > x)				x = pf->last_pen_pos;			pf->last_pen_pos = x;		}		pf->last_glyph_code = curchar;	}	if (pf->fontattr & MWTF_UNDERLINE)		GdLine(psd, startx, starty, x, y, FALSE);}/* * Return information about a specified font. */static MWBOOLfreetype_getfontinfo(PMWFONT pfont, PMWFONTINFO pfontinfo){	int	i;	PMWFREETYPEFONT	pf = (PMWFREETYPEFONT)pfont;	TT_Face_Properties 	properties;	TT_Instance_Metrics imetrics;	TT_UShort last_glyph_index;	TT_Get_Face_Properties (pf->face, &properties);	TT_Get_Instance_Metrics(pf->instance, &imetrics);	/* Fill up the fields */	pfontinfo->height = (((properties.horizontal->Ascender * \	                        imetrics.y_scale)/ 0x10000) >> 6) -	                    (((properties.horizontal->Descender * \	                        imetrics.y_scale)/ 0x10000) >> 6);	pfontinfo->maxwidth = ((properties.horizontal->xMax_Extent * \	                        imetrics.x_scale)/ 0x10000) >> 6;	pfontinfo->baseline = ((properties.horizontal->Ascender * \	                        imetrics.y_scale)/ 0x10000) >> 6;	pfontinfo->firstchar = TT_CharMap_First(pf->char_map, NULL);	pfontinfo->lastchar = TT_CharMap_Last(pf->char_map, NULL);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -