2013-05-01 23:53:28 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-03 14:36:17 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-05-03 14:36:17 +00:00
|
|
|
*/
|
2013-03-10 06:14:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file src/gdisp/fonts.c
|
|
|
|
* @brief GDISP Font Handling.
|
|
|
|
*
|
|
|
|
* @addtogroup GDISP
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gfx.h"
|
|
|
|
|
|
|
|
#if GFX_USE_GDISP && GDISP_NEED_TEXT
|
|
|
|
|
2013-07-28 07:08:45 +00:00
|
|
|
#include "mcufont.h"
|
2013-03-10 06:14:32 +00:00
|
|
|
|
2013-07-28 07:08:45 +00:00
|
|
|
/* Custom flag to indicate dynamically allocated font */
|
|
|
|
#define FONT_FLAG_DYNAMIC 0x80
|
2013-03-10 06:14:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Match a pattern against the font name.
|
|
|
|
*/
|
|
|
|
static bool_t matchfont(const char *pattern, const char *name) {
|
|
|
|
while(1) {
|
|
|
|
switch (pattern[0]) {
|
|
|
|
case '*':
|
|
|
|
if (name[0] == 0)
|
|
|
|
return pattern[1] == 0;
|
|
|
|
if (pattern[1] == name[0])
|
|
|
|
pattern++;
|
|
|
|
else
|
|
|
|
name++;
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
return name[0] == 0;
|
|
|
|
default:
|
|
|
|
if (name[0] != pattern[0])
|
|
|
|
return FALSE;
|
|
|
|
pattern++;
|
|
|
|
name++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
font_t gdispOpenFont(const char *name) {
|
2013-07-28 07:08:45 +00:00
|
|
|
const struct mf_font_list_s *fp;
|
|
|
|
|
|
|
|
|
2013-08-17 13:33:31 +00:00
|
|
|
// Try the long names first
|
|
|
|
for(fp = mf_get_font_list(); fp; fp = fp->next) {
|
|
|
|
if (matchfont(name, fp->font->full_name))
|
|
|
|
return fp->font;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try the short names if no long names match
|
|
|
|
for(fp = mf_get_font_list(); fp; fp = fp->next) {
|
2013-07-28 07:08:45 +00:00
|
|
|
if (matchfont(name, fp->font->short_name))
|
|
|
|
return fp->font;
|
2013-03-10 06:14:32 +00:00
|
|
|
}
|
2013-07-28 07:08:45 +00:00
|
|
|
|
|
|
|
/* Return default font.. better than nothing. */
|
|
|
|
return mf_get_font_list()->font;
|
2013-03-10 06:14:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void gdispCloseFont(font_t font) {
|
2013-07-28 07:08:45 +00:00
|
|
|
if (font->flags & FONT_FLAG_DYNAMIC)
|
|
|
|
{
|
|
|
|
struct mf_font_s *dfont = (struct mf_font_s *)font;
|
|
|
|
|
|
|
|
/* Make sure that no-one can successfully use font after closing */
|
2013-12-21 03:21:59 +00:00
|
|
|
dfont->render_character = 0;
|
2013-07-28 07:08:45 +00:00
|
|
|
|
|
|
|
/* Release the allocated memory */
|
|
|
|
gfxFree(dfont);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
font_t gdispScaleFont(font_t font, uint8_t scale_x, uint8_t scale_y)
|
|
|
|
{
|
|
|
|
struct mf_scaledfont_s *newfont = gfxAlloc(sizeof(struct mf_scaledfont_s));
|
|
|
|
mf_scale_font(newfont, font, scale_x, scale_y);
|
|
|
|
return (font_t)newfont;
|
2013-03-10 06:14:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *gdispGetFontName(font_t font) {
|
2013-07-28 07:08:45 +00:00
|
|
|
return font->short_name;
|
2013-03-10 06:14:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_USE_GDISP && GDISP_NEED_TEXT */
|
|
|
|
/** @} */
|