(PS3/PSP2) Make libdbgfont portable

This commit is contained in:
twinaphex 2012-11-22 18:02:46 +01:00
parent f02b7e1791
commit 4693b0aaa5
6 changed files with 88 additions and 63 deletions

View File

@ -187,7 +187,7 @@ FONTS
#include "../../gfx/fonts/freetype.c"
#include "../../gfx/fonts/fonts.c"
#elif defined(HAVE_LIBDBGFONT)
#include "../../gfx/fonts/ps3_libdbgfont.c"
#include "../../gfx/fonts/ps_libdbgfont.c"
#elif defined(_XBOX1)
#include "../../gfx/fonts/xdk1_xfonts.c"
#elif defined(_XBOX360)

View File

@ -16,12 +16,14 @@
#include "../gl_common.h"
void gl_init_font(gl_t *gl, const char *font_path, unsigned font_size)
void gl_init_font(void *data, const char *font_path, unsigned font_size)
{
#ifdef HAVE_FREETYPE
if (!g_settings.video.font_enable)
return;
gl_t *gl = (gl_t*)data;
const char *path = font_path;
if (!*path)
path = font_renderer_get_default_font();
@ -60,15 +62,17 @@ void gl_init_font(gl_t *gl, const char *font_path, unsigned font_size)
gl->font_color_dark[4 * i + 3] = 1.0;
}
#else
(void)gl;
(void)data;
(void)font_path;
(void)font_size;
#endif
}
void gl_deinit_font(gl_t *gl)
void gl_deinit_font(void *data)
{
#ifdef HAVE_FREETYPE
gl_t *gl = (gl_t*)data;
if (gl->font)
{
font_renderer_free(gl->font);
@ -78,7 +82,7 @@ void gl_deinit_font(gl_t *gl)
free(gl->font_tex_buf);
}
#else
(void)gl;
(void)data;
#endif
}

View File

@ -16,13 +16,13 @@
#include "../gl_common.h"
void gl_init_font(gl_t *gl, const char *font_path, unsigned font_size)
void gl_init_font(void *data, const char *font_path, unsigned font_size)
{
(void)font_path;
(void)font_size;
}
void gl_deinit_font(gl_t *gl)
void gl_deinit_font(void *data)
{
}

View File

@ -1,54 +0,0 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <cell/dbgfont.h>
#include "../gl_common.h"
void gl_init_font(gl_t *gl, const char *font_path, unsigned font_size)
{
(void)font_path;
(void)font_size;
CellDbgFontConfig cfg = {
.bufSize = 512,
.screenWidth = gl->win_width,
.screenHeight = gl->win_height,
};
cellDbgFontInit(&cfg);
}
void gl_deinit_font(gl_t *gl)
{
cellDbgFontExit();
}
void gl_render_msg(void *data, const char *msg)
{
(void)data;
cellDbgFontPrintf(g_settings.video.msg_pos_x, 0.76f, 1.04f, SILVER, msg);
cellDbgFontPrintf(g_settings.video.msg_pos_x, 0.76f, 1.03f, WHITE, msg);
cellDbgFontDraw();
}
void gl_render_msg_place(void *data, float x, float y, float scale, uint32_t color, const char *msg)
{
(void)data;
cellDbgFontPrintf(x, y, scale, color, msg);
cellDbgFontDraw();
}

75
gfx/fonts/ps_libdbgfont.c Normal file
View File

@ -0,0 +1,75 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "../gl_common.h"
#if defined(SN_TARGET_PSP2)
#include <libdbgfont.h>
#define DbgFontPrint(x, y, scale, color, msg) sceDbgFontPrint(x, y, color, msg)
#define DbgFontConfig SceDbgFontConfig
#define DbgFontInit sceDbgFontInit
#define DbgFontExit sceDbgFontExit
#define DbgFontDraw sceDbgFontFlush
#else
#include <cell/dbgfont.h>
#define SCE_DBGFONT_BUFSIZE_LARGE 512
#define DbgFontPrint(x, y, scale, color, msg) cellDbgFontPrintf(x, y, scale, color, msg)
#define DbgFontConfig CellDbgFontConfig
#define DbgFontInit cellDbgFontInit
#define DbgFontExit cellDbgFontExit
#define DbgFontDraw cellDbgFontDraw
#endif
void gl_init_font(void *data, const char *font_path, unsigned font_size)
{
(void)font_path;
(void)font_size;
DbgFontConfig cfg;
#if defined(SN_TARGET_PSP2)
cfg.fontSize = SCE_DBGFONT_FONTSIZE_LARGE;
#else
gl_t *gl = (gl_t*)data;
cfg.bufSize = SCE_DBGFONT_BUFSIZE_LARGE;
cfg.screenWidth = gl->win_width;
cfg.screenHeight = gl->win_height;
#endif
DbgFontInit(&cfg);
}
void gl_deinit_font(void *data)
{
DbgFontExit();
}
void gl_render_msg(void *data, const char *msg)
{
(void)data;
DbgFontPrint(g_settings.video.msg_pos_x, 0.76f, 1.04f, SILVER, msg);
DbgFontPrint(g_settings.video.msg_pos_x, 0.76f, 1.03f, WHITE, msg);
DbgFontDraw();
}
void gl_render_msg_place(void *data, float x, float y, float scale, uint32_t color, const char *msg)
{
(void)data;
DbgFontPrint(x, y, scale, color, msg);
DbgFontDraw();
}

View File

@ -18,8 +18,8 @@
#include "gl_common.h"
void gl_init_font(gl_t *gl, const char *font_path, unsigned font_size);
void gl_deinit_font(gl_t *gl);
void gl_init_font(void *data, const char *font_path, unsigned font_size);
void gl_deinit_font(void *data);
void gl_render_msg(void *data, const char *msg);
#ifdef RARCH_CONSOLE