2015-01-12 22:38:39 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2015 - 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 <xtl.h>
|
2015-09-16 03:53:34 +00:00
|
|
|
|
2015-04-03 18:36:19 +00:00
|
|
|
#include "../font_driver.h"
|
2015-01-12 22:38:39 +00:00
|
|
|
#include "../d3d/d3d.h"
|
|
|
|
#include "../../general.h"
|
2015-09-20 13:39:59 +00:00
|
|
|
#include "../../frontend/drivers/platform_xdk.h"
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
#define FONT_SCALE(d3d) ((d3d->resolution_hd_enable) ? 2 : 1)
|
|
|
|
|
|
|
|
typedef struct GLYPH_ATTR
|
|
|
|
{
|
2015-04-02 23:58:52 +00:00
|
|
|
uint16_t tu1, tv1, tu2, tv2; /* Texture coordinates for the image. */
|
2015-04-02 20:23:07 +00:00
|
|
|
int16_t wOffset; /* Pixel offset for glyph start. */
|
|
|
|
int16_t wWidth; /* Pixel width of the glyph. */
|
|
|
|
int16_t wAdvance; /* Pixels to advance after the glyph. */
|
|
|
|
uint16_t wMask;
|
2015-01-12 22:38:39 +00:00
|
|
|
} GLYPH_ATTR;
|
|
|
|
|
2015-04-02 20:23:07 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2015-03-29 22:29:02 +00:00
|
|
|
D3DVertexDeclaration *m_pFontVertexDecl;
|
|
|
|
D3DVertexShader *m_pFontVertexShader;
|
|
|
|
D3DPixelShader *m_pFontPixelShader;
|
|
|
|
} Font_Locals_t;
|
|
|
|
|
2015-01-12 22:38:39 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2015-03-29 22:29:02 +00:00
|
|
|
Font_Locals_t s_FontLocals;
|
|
|
|
d3d_video_t *d3d;
|
2015-04-02 20:23:07 +00:00
|
|
|
uint32_t m_dwSavedState;
|
|
|
|
uint32_t m_cMaxGlyph; /* Number of entries in the translator table. */
|
|
|
|
uint32_t m_dwNumGlyphs; /* Number of valid glyphs. */
|
2015-01-12 22:38:39 +00:00
|
|
|
float m_fFontHeight; /* Height of the font strike in pixels. */
|
|
|
|
float m_fFontTopPadding; /* Padding above the strike zone. */
|
|
|
|
float m_fFontBottomPadding; /* Padding below the strike zone. */
|
|
|
|
float m_fFontYAdvance; /* Number of pixels to move the cursor for a line feed. */
|
|
|
|
wchar_t * m_TranslatorTable; /* ASCII to glyph lookup table. */
|
|
|
|
D3DTexture* m_pFontTexture;
|
|
|
|
const GLYPH_ATTR* m_Glyphs; /* Array of glyphs. */
|
|
|
|
} xdk360_video_font_t;
|
|
|
|
|
|
|
|
|
2015-04-02 20:23:07 +00:00
|
|
|
#define CALCFONTFILEHEADERSIZE(x) ( sizeof(uint32_t) + (sizeof(float)* 4) + sizeof(uint16_t) + (sizeof(wchar_t)*(x)) )
|
2015-01-12 22:38:39 +00:00
|
|
|
#define FONTFILEVERSION 5
|
|
|
|
|
2015-04-02 20:23:07 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32_t m_dwFileVersion; /* Version of the font file (Must match FONTFILEVERSION). */
|
2015-01-12 22:38:39 +00:00
|
|
|
float m_fFontHeight; /* Height of the font strike in pixels. */
|
|
|
|
float m_fFontTopPadding; /* Padding above the strike zone. */
|
|
|
|
float m_fFontBottomPadding; /* Padding below the strike zone. */
|
|
|
|
float m_fFontYAdvance; /* Number of pixels to move the cursor for a line feed. */
|
2015-04-02 20:23:07 +00:00
|
|
|
uint16_t m_cMaxGlyph; /* Number of font characters (Should be an odd number to maintain DWORD Alignment). */
|
2015-01-12 22:38:39 +00:00
|
|
|
wchar_t m_TranslatorTable[1]; /* ASCII to Glyph lookup table, NOTE: It's m_cMaxGlyph+1 in size. */
|
|
|
|
} FontFileHeaderImage_t;
|
|
|
|
|
2015-04-02 20:23:07 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32_t m_dwNumGlyphs; /* Size of font strike array (First entry is the unknown glyph). */
|
2015-01-12 22:38:39 +00:00
|
|
|
GLYPH_ATTR m_Glyphs[1]; /* Array of font strike uv's etc... NOTE: It's m_dwNumGlyphs in size. */
|
|
|
|
} FontFileStrikesImage_t;
|
|
|
|
|
|
|
|
static const char g_strFontShader[] =
|
|
|
|
"struct VS_IN\n"
|
|
|
|
"{\n"
|
|
|
|
"float2 Pos : POSITION;\n"
|
|
|
|
"float2 Tex : TEXCOORD0;\n"
|
|
|
|
"};\n"
|
|
|
|
"struct VS_OUT\n"
|
|
|
|
"{\n"
|
|
|
|
"float4 Position : POSITION;\n"
|
|
|
|
"float2 TexCoord0 : TEXCOORD0;\n"
|
|
|
|
"};\n"
|
|
|
|
"uniform float4 Color : register(c1);\n"
|
|
|
|
"uniform float2 TexScale : register(c2);\n"
|
|
|
|
"sampler FontTexture : register(s0);\n"
|
|
|
|
"VS_OUT main_vertex( VS_IN In )\n"
|
|
|
|
"{\n"
|
|
|
|
"VS_OUT Out;\n"
|
|
|
|
"Out.Position.x = (In.Pos.x-0.5);\n"
|
|
|
|
"Out.Position.y = (In.Pos.y-0.5);\n"
|
|
|
|
"Out.Position.z = ( 0.0 );\n"
|
|
|
|
"Out.Position.w = ( 1.0 );\n"
|
|
|
|
"Out.TexCoord0.x = In.Tex.x * TexScale.x;\n"
|
|
|
|
"Out.TexCoord0.y = In.Tex.y * TexScale.y;\n"
|
|
|
|
"return Out;\n"
|
|
|
|
"}\n"
|
|
|
|
"float4 main_fragment( VS_OUT In ) : COLOR0\n"
|
|
|
|
"{\n"
|
|
|
|
"float4 FontTexel = tex2D( FontTexture, In.TexCoord0 );\n"
|
|
|
|
"return FontTexel;\n"
|
|
|
|
"}\n";
|
|
|
|
|
2015-04-02 20:23:07 +00:00
|
|
|
static PackedResource m_xprResource;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
static HRESULT xdk360_video_font_create_shaders(xdk360_video_font_t * font)
|
2015-01-12 22:38:39 +00:00
|
|
|
{
|
|
|
|
HRESULT hr;
|
2015-03-29 22:29:02 +00:00
|
|
|
LPDIRECT3DDEVICE d3dr = font->d3d->dev;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
if (font->s_FontLocals.m_pFontVertexDecl)
|
2015-01-12 22:38:39 +00:00
|
|
|
{
|
2015-03-29 22:29:02 +00:00
|
|
|
font->s_FontLocals.m_pFontVertexDecl->AddRef();
|
|
|
|
font->s_FontLocals.m_pFontVertexShader->AddRef();
|
|
|
|
font->s_FontLocals.m_pFontPixelShader->AddRef();
|
2015-01-12 22:38:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
static const D3DVERTEXELEMENT9 decl[] =
|
|
|
|
{
|
|
|
|
{ 0, 0, D3DDECLTYPE_FLOAT2, D3DDECLMETHOD_DEFAULT, D3DDECLUSAGE_POSITION, 0 },
|
|
|
|
{ 0, 8, D3DDECLTYPE_USHORT2, D3DDECLMETHOD_DEFAULT, D3DDECLUSAGE_TEXCOORD, 0 },
|
|
|
|
{ 0, 12, D3DDECLTYPE_D3DCOLOR, D3DDECLMETHOD_DEFAULT, D3DDECLUSAGE_TEXCOORD, 1 },
|
|
|
|
D3DDECL_END()
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
hr = d3dr->CreateVertexDeclaration( decl, &font->s_FontLocals.m_pFontVertexDecl );
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
if (hr >= 0)
|
|
|
|
{
|
|
|
|
ID3DXBuffer* pShaderCode;
|
|
|
|
|
|
|
|
hr = D3DXCompileShader( g_strFontShader, sizeof(g_strFontShader)-1 ,
|
|
|
|
NULL, NULL, "main_vertex", "vs.2.0", 0,&pShaderCode, NULL, NULL );
|
|
|
|
|
|
|
|
if (hr >= 0)
|
|
|
|
{
|
2015-04-03 00:41:37 +00:00
|
|
|
hr = d3dr->CreateVertexShader((const DWORD*)pShaderCode->GetBufferPointer(),
|
2015-03-29 22:29:02 +00:00
|
|
|
&font->s_FontLocals.m_pFontVertexShader );
|
2015-01-12 22:38:39 +00:00
|
|
|
pShaderCode->Release();
|
|
|
|
|
|
|
|
if (hr >= 0)
|
|
|
|
{
|
|
|
|
hr = D3DXCompileShader( g_strFontShader, sizeof(g_strFontShader)-1 ,
|
|
|
|
NULL, NULL, "main_fragment", "ps.2.0", 0,&pShaderCode, NULL, NULL );
|
|
|
|
|
|
|
|
if (hr >= 0)
|
|
|
|
{
|
|
|
|
hr = d3dr->CreatePixelShader((DWORD*)pShaderCode->GetBufferPointer(),
|
2015-03-29 22:29:02 +00:00
|
|
|
&font->s_FontLocals.m_pFontPixelShader );
|
2015-01-12 22:38:39 +00:00
|
|
|
pShaderCode->Release();
|
|
|
|
|
|
|
|
if (hr >= 0)
|
|
|
|
{
|
|
|
|
hr = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-03-29 22:29:02 +00:00
|
|
|
font->s_FontLocals.m_pFontVertexShader->Release();
|
2015-01-12 22:38:39 +00:00
|
|
|
}
|
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
font->s_FontLocals.m_pFontVertexShader = NULL;
|
2015-01-12 22:38:39 +00:00
|
|
|
}
|
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
font->s_FontLocals.m_pFontVertexDecl->Release();
|
2015-01-12 22:38:39 +00:00
|
|
|
}
|
2015-03-29 22:29:02 +00:00
|
|
|
font->s_FontLocals.m_pFontVertexDecl = NULL;
|
2015-01-12 22:38:39 +00:00
|
|
|
}while(0);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2015-03-29 22:41:42 +00:00
|
|
|
static void *xdk360_init_font(void *video_data,
|
2015-03-29 22:48:43 +00:00
|
|
|
const char *font_path, float font_size)
|
2015-01-12 22:38:39 +00:00
|
|
|
{
|
2015-04-02 20:23:07 +00:00
|
|
|
uint32_t dwFileVersion;
|
2015-04-02 23:58:52 +00:00
|
|
|
const void *pFontData = NULL;
|
|
|
|
D3DTexture *pFontTexture = NULL;
|
|
|
|
const uint8_t * pData = NULL;
|
|
|
|
xdk360_video_font_t *font = (xdk360_video_font_t*)calloc(1, sizeof(*font));
|
2015-03-29 22:29:02 +00:00
|
|
|
|
2015-03-29 22:41:42 +00:00
|
|
|
if (!font)
|
|
|
|
return NULL;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
(void)font_size;
|
|
|
|
|
2015-04-02 23:58:52 +00:00
|
|
|
font->d3d = (d3d_video_t*)video_data;
|
2015-03-29 22:32:14 +00:00
|
|
|
|
2015-04-02 23:58:52 +00:00
|
|
|
font->m_pFontTexture = NULL;
|
|
|
|
font->m_dwNumGlyphs = 0L;
|
|
|
|
font->m_Glyphs = NULL;
|
|
|
|
font->m_cMaxGlyph = 0;
|
|
|
|
font->m_TranslatorTable = NULL;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
/* Create the font. */
|
|
|
|
if (FAILED( m_xprResource.Create(font_path)))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
pFontTexture = m_xprResource.GetTexture( "FontTexture" );
|
|
|
|
pFontData = m_xprResource.GetData( "FontData");
|
|
|
|
|
|
|
|
/* Save a copy of the texture. */
|
|
|
|
font->m_pFontTexture = pFontTexture;
|
|
|
|
|
|
|
|
/* Check version of file (to make sure it matches up with the FontMaker tool). */
|
2015-04-02 20:23:07 +00:00
|
|
|
pData = (const uint8_t*)pFontData;
|
2015-01-12 22:38:39 +00:00
|
|
|
dwFileVersion = ((const FontFileHeaderImage_t *)pData)->m_dwFileVersion;
|
|
|
|
|
|
|
|
if (dwFileVersion != FONTFILEVERSION)
|
|
|
|
{
|
|
|
|
RARCH_ERR("Incorrect version number on font file.\n");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
font->m_fFontHeight = ((const FontFileHeaderImage_t *)pData)->m_fFontHeight;
|
|
|
|
font->m_fFontTopPadding = ((const FontFileHeaderImage_t *)pData)->m_fFontTopPadding;
|
|
|
|
font->m_fFontBottomPadding = ((const FontFileHeaderImage_t *)pData)->m_fFontBottomPadding;
|
|
|
|
font->m_fFontYAdvance = ((const FontFileHeaderImage_t *)pData)->m_fFontYAdvance;
|
|
|
|
|
|
|
|
/* Point to the translator string which immediately follows the 4 floats. */
|
|
|
|
font->m_cMaxGlyph = ((const FontFileHeaderImage_t *)pData)->m_cMaxGlyph;
|
|
|
|
font->m_TranslatorTable = const_cast<FontFileHeaderImage_t*>((const FontFileHeaderImage_t *)pData)->m_TranslatorTable;
|
|
|
|
|
|
|
|
pData += CALCFONTFILEHEADERSIZE( font->m_cMaxGlyph + 1 );
|
|
|
|
|
|
|
|
/* Read the glyph attributes from the file. */
|
|
|
|
font->m_dwNumGlyphs = ((const FontFileStrikesImage_t *)pData)->m_dwNumGlyphs;
|
|
|
|
font->m_Glyphs = ((const FontFileStrikesImage_t *)pData)->m_Glyphs;
|
|
|
|
|
|
|
|
/* Create the vertex and pixel shaders for rendering the font */
|
2015-03-29 22:29:02 +00:00
|
|
|
if (FAILED(xdk360_video_font_create_shaders(font)))
|
2015-01-12 22:38:39 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR( "Could not create font shaders.\n" );
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
RARCH_LOG("Successfully initialized D3D9 HLSL fonts.\n");
|
2015-03-29 22:41:42 +00:00
|
|
|
return font;
|
2015-01-12 22:38:39 +00:00
|
|
|
error:
|
|
|
|
RARCH_ERR("Could not initialize D3D9 HLSL fonts.\n");
|
2015-03-29 22:41:42 +00:00
|
|
|
if (font)
|
|
|
|
free(font);
|
|
|
|
return NULL;
|
2015-01-12 22:38:39 +00:00
|
|
|
}
|
|
|
|
|
2015-03-29 20:01:52 +00:00
|
|
|
static void xdk360_free_font(void *data)
|
2015-01-12 22:38:39 +00:00
|
|
|
{
|
2015-03-29 22:41:42 +00:00
|
|
|
xdk360_video_font_t *font = (xdk360_video_font_t*)data;
|
|
|
|
|
|
|
|
if (!font)
|
|
|
|
return;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
/* Destroy the font */
|
|
|
|
font->m_pFontTexture = NULL;
|
|
|
|
font->m_dwNumGlyphs = 0L;
|
|
|
|
font->m_Glyphs = NULL;
|
|
|
|
font->m_cMaxGlyph = 0;
|
|
|
|
font->m_TranslatorTable = NULL;
|
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
if (font->s_FontLocals.m_pFontPixelShader)
|
|
|
|
font->s_FontLocals.m_pFontPixelShader->Release();
|
|
|
|
if (font->s_FontLocals.m_pFontVertexShader)
|
|
|
|
font->s_FontLocals.m_pFontVertexShader->Release();
|
|
|
|
if (font->s_FontLocals.m_pFontVertexDecl)
|
|
|
|
font->s_FontLocals.m_pFontVertexDecl->Release();
|
2015-01-12 22:38:39 +00:00
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
font->s_FontLocals.m_pFontPixelShader = NULL;
|
|
|
|
font->s_FontLocals.m_pFontVertexShader = NULL;
|
|
|
|
font->s_FontLocals.m_pFontVertexDecl = NULL;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
if (m_xprResource.Initialized())
|
|
|
|
m_xprResource.Destroy();
|
2015-03-29 22:29:02 +00:00
|
|
|
|
2015-04-02 15:18:08 +00:00
|
|
|
free(font);
|
2015-03-29 22:41:42 +00:00
|
|
|
font = NULL;
|
2015-01-12 22:38:39 +00:00
|
|
|
}
|
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
static void xdk360_render_msg_post(xdk360_video_font_t * font)
|
2015-01-12 22:38:39 +00:00
|
|
|
{
|
2015-04-02 23:58:52 +00:00
|
|
|
/* Cache the global pointer into a register */
|
2015-03-29 22:29:02 +00:00
|
|
|
LPDIRECT3DDEVICE d3dr = font->d3d->dev;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
d3d_set_texture(d3dr, 0, NULL);
|
|
|
|
d3dr->SetVertexDeclaration(NULL);
|
|
|
|
d3d_set_vertex_shader(d3dr, 0, NULL);
|
|
|
|
D3DDevice_SetPixelShader(d3dr, NULL);
|
|
|
|
d3dr->SetRenderState( D3DRS_VIEWPORTENABLE, font->m_dwSavedState );
|
|
|
|
}
|
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
static void xdk360_render_msg_pre(xdk360_video_font_t * font)
|
2015-01-12 22:38:39 +00:00
|
|
|
{
|
|
|
|
float vTexScale[4];
|
|
|
|
D3DSURFACE_DESC TextureDesc;
|
2015-03-29 22:29:02 +00:00
|
|
|
LPDIRECT3DDEVICE d3dr = font->d3d->dev;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
/* Save state. */
|
2015-04-03 00:41:37 +00:00
|
|
|
d3dr->GetRenderState( D3DRS_VIEWPORTENABLE, (DWORD*)&font->m_dwSavedState );
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
/* Set the texture scaling factor as a vertex shader constant. */
|
|
|
|
D3DTexture_GetLevelDesc(font->m_pFontTexture, 0, &TextureDesc); // Get the description
|
|
|
|
|
|
|
|
/* Set render state. */
|
|
|
|
d3d_set_texture(d3dr, 0, font->m_pFontTexture);
|
|
|
|
|
|
|
|
/* Read the TextureDesc here to ensure no load/hit/store from GetLevelDesc(). */
|
|
|
|
vTexScale[0] = 1.0f / TextureDesc.Width; /* LHS due to int->float conversion. */
|
|
|
|
vTexScale[1] = 1.0f / TextureDesc.Height;
|
|
|
|
vTexScale[2] = 0.0f;
|
|
|
|
vTexScale[3] = 0.0f;
|
|
|
|
|
|
|
|
d3dr->SetRenderState( D3DRS_VIEWPORTENABLE, FALSE );
|
2015-03-29 22:29:02 +00:00
|
|
|
d3dr->SetVertexDeclaration(font->s_FontLocals.m_pFontVertexDecl);
|
|
|
|
d3d_set_vertex_shader(d3dr, 0, font->s_FontLocals.m_pFontVertexShader);
|
|
|
|
d3dr->SetPixelShader(font->s_FontLocals.m_pFontPixelShader);
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
/* Set the texture scaling factor as a vertex shader constant.
|
|
|
|
* Call here to avoid load hit store from writing to vTexScale above
|
|
|
|
*/
|
|
|
|
d3dr->SetVertexShaderConstantF( 2, vTexScale, 1 );
|
|
|
|
}
|
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
static void xdk360_draw_text(xdk360_video_font_t *font,
|
2015-01-12 22:38:39 +00:00
|
|
|
float x, float y, const wchar_t * strText)
|
|
|
|
{
|
2015-04-02 20:23:07 +00:00
|
|
|
uint32_t dwNumChars;
|
2015-01-12 22:38:39 +00:00
|
|
|
volatile float *pVertex;
|
|
|
|
float vColor[4], m_fCursorX, m_fCursorY;
|
2015-03-29 22:29:02 +00:00
|
|
|
LPDIRECT3DDEVICE d3dr = font->d3d->dev;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
/* Set the color as a vertex shader constant. */
|
2015-04-02 23:58:52 +00:00
|
|
|
vColor[0] = ((0xffffffff & 0x00ff0000) >> 16L) / 255.0f;
|
|
|
|
vColor[1] = ((0xffffffff & 0x0000ff00) >> 8L) / 255.0f;
|
|
|
|
vColor[2] = ((0xffffffff & 0x000000ff) >> 0L) / 255.0f;
|
|
|
|
vColor[3] = ((0xffffffff & 0xff000000) >> 24L) / 255.0f;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
/* Perform the actual storing of the color constant here to prevent
|
|
|
|
* a load-hit-store by inserting work between the store and the use of
|
|
|
|
* the vColor array. */
|
2015-04-02 23:58:52 +00:00
|
|
|
d3dr->SetVertexShaderConstantF(1, vColor, 1);
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
m_fCursorX = floorf(x);
|
|
|
|
m_fCursorY = floorf(y);
|
|
|
|
|
|
|
|
/* Adjust for padding. */
|
|
|
|
y -= font->m_fFontTopPadding;
|
|
|
|
|
|
|
|
/* Begin drawing the vertices
|
|
|
|
* Declared as volatile to force writing in ascending
|
|
|
|
* address order.
|
|
|
|
*
|
|
|
|
* It prevents out of sequence writing in write combined
|
|
|
|
* memory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
dwNumChars = wcslen(strText);
|
|
|
|
d3dr->BeginVertices(D3DPT_QUADLIST, 4 * dwNumChars,
|
|
|
|
sizeof(XMFLOAT4), (void**)&pVertex);
|
|
|
|
|
|
|
|
/* Draw four vertices for each glyph. */
|
|
|
|
while (*strText)
|
|
|
|
{
|
|
|
|
float fOffset, fAdvance, fWidth, fHeight;
|
2015-09-29 15:35:28 +00:00
|
|
|
#ifdef MSB_FIRST
|
2015-04-02 20:23:07 +00:00
|
|
|
uint32_t tu1, tu2, tv1, tv2;
|
2015-09-29 15:35:28 +00:00
|
|
|
#endif
|
2015-01-12 22:38:39 +00:00
|
|
|
const GLYPH_ATTR *pGlyph;
|
|
|
|
wchar_t letter = *strText++; /* Get the current letter in the string */
|
|
|
|
|
|
|
|
/* Handle the newline character. */
|
|
|
|
if (letter == L'\n')
|
|
|
|
{
|
|
|
|
m_fCursorX = x;
|
2015-03-29 22:29:02 +00:00
|
|
|
m_fCursorY += font->m_fFontYAdvance * FONT_SCALE(font->d3d);
|
2015-01-12 22:38:39 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Translate unprintable characters. */
|
|
|
|
if (letter <= font->m_cMaxGlyph)
|
|
|
|
pGlyph = &font->m_Glyphs[font->m_TranslatorTable[letter]];
|
|
|
|
else
|
|
|
|
pGlyph = &font->m_Glyphs[0];
|
|
|
|
|
2015-03-29 22:29:02 +00:00
|
|
|
fOffset = FONT_SCALE(font->d3d) * (float)pGlyph->wOffset;
|
|
|
|
fAdvance = FONT_SCALE(font->d3d) * (float)pGlyph->wAdvance;
|
|
|
|
fWidth = FONT_SCALE(font->d3d) * (float)pGlyph->wWidth;
|
|
|
|
fHeight = FONT_SCALE(font->d3d) * font->m_fFontHeight;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
m_fCursorX += fOffset;
|
|
|
|
|
|
|
|
/* Add the vertices to draw this glyph. */
|
|
|
|
|
2015-09-29 15:35:28 +00:00
|
|
|
#ifdef MSB_FIRST
|
2015-01-12 22:38:39 +00:00
|
|
|
/* Convert shorts to 32 bit longs for in register merging */
|
|
|
|
tu1 = pGlyph->tu1;
|
|
|
|
tv1 = pGlyph->tv1;
|
|
|
|
tu2 = pGlyph->tu2;
|
|
|
|
tv2 = pGlyph->tv2;
|
2015-09-29 15:35:28 +00:00
|
|
|
#endif
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
/* NOTE: The vertexes are 2 floats for the screen coordinates,
|
|
|
|
* followed by two USHORTS for the u/vs of the character,
|
|
|
|
* terminated with the ARGB 32 bit color.
|
|
|
|
*
|
|
|
|
* This makes for 16 bytes per vertex data (Easier to read)
|
|
|
|
*
|
|
|
|
* Second NOTE: The U/V coordinates are merged and written
|
|
|
|
* using a DWORD due to the write combining hardware
|
|
|
|
* being only able to handle 32, 64 and 128 writes.
|
|
|
|
*
|
|
|
|
* Never store to write combined memory with 8 or 16bit
|
|
|
|
* instructions. You've been warned.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Setup the vertex/screen coordinates */
|
|
|
|
|
|
|
|
pVertex[0] = m_fCursorX;
|
|
|
|
pVertex[1] = m_fCursorY;
|
|
|
|
pVertex[3] = 0;
|
|
|
|
pVertex[4] = m_fCursorX + fWidth;
|
|
|
|
pVertex[5] = m_fCursorY;
|
|
|
|
pVertex[7] = 0;
|
|
|
|
pVertex[8] = m_fCursorX + fWidth;
|
|
|
|
pVertex[9] = m_fCursorY + fHeight;
|
|
|
|
pVertex[11] = 0;
|
|
|
|
pVertex[12] = m_fCursorX;
|
|
|
|
pVertex[13] = m_fCursorY + fHeight;
|
2015-04-10 06:03:34 +00:00
|
|
|
#ifdef MSB_FIRST
|
2015-04-02 20:23:07 +00:00
|
|
|
((volatile uint32_t *)pVertex)[2] = (tu1 << 16) | tv1; // Merged using big endian rules
|
|
|
|
((volatile uint32_t *)pVertex)[6] = (tu2 << 16) | tv1; // Merged using big endian rules
|
|
|
|
((volatile uint32_t*)pVertex)[10] = (tu2 << 16) | tv2; // Merged using big endian rules
|
|
|
|
((volatile uint32_t*)pVertex)[14] = (tu1 << 16) | tv2; // Merged using big endian rules
|
2015-01-12 22:38:39 +00:00
|
|
|
#endif
|
|
|
|
pVertex[15] = 0;
|
|
|
|
pVertex += 16;
|
|
|
|
|
|
|
|
m_fCursorX += fAdvance;
|
|
|
|
|
|
|
|
dwNumChars--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Since we allocated vertex data space
|
|
|
|
* based on the string length, we now need to
|
|
|
|
* add some dummy verts for any skipped
|
|
|
|
* characters (like newlines, etc.)
|
|
|
|
*/
|
|
|
|
while (dwNumChars)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
pVertex[i] = 0;
|
|
|
|
|
|
|
|
pVertex += 16;
|
|
|
|
dwNumChars--;
|
|
|
|
}
|
|
|
|
|
|
|
|
d3dr->EndVertices();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xdk360_render_msg(void *data, const char *str_msg,
|
2015-03-29 19:59:01 +00:00
|
|
|
const void *userdata)
|
2015-01-12 22:38:39 +00:00
|
|
|
{
|
|
|
|
float x, y;
|
|
|
|
wchar_t msg[PATH_MAX_LENGTH];
|
2015-04-02 23:58:52 +00:00
|
|
|
xdk360_video_font_t *font = (xdk360_video_font_t*)data;
|
2015-03-29 19:59:01 +00:00
|
|
|
const struct font_params *params = (const struct font_params*)userdata;
|
2015-01-12 22:38:39 +00:00
|
|
|
|
|
|
|
if (params)
|
|
|
|
{
|
|
|
|
x = params->x;
|
|
|
|
y = params->y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-03-29 22:29:02 +00:00
|
|
|
x = font->d3d->resolution_hd_enable ? 160 : 100;
|
2015-01-12 22:38:39 +00:00
|
|
|
y = 120;
|
|
|
|
}
|
|
|
|
|
|
|
|
mbstowcs(msg, str_msg, sizeof(msg) / sizeof(wchar_t));
|
|
|
|
|
|
|
|
if (msg || msg[0] != L'\0')
|
|
|
|
{
|
2015-03-29 22:29:02 +00:00
|
|
|
xdk360_render_msg_pre(font);
|
|
|
|
xdk360_draw_text(font, x, y, msg);
|
|
|
|
xdk360_render_msg_post(font);
|
2015-01-12 22:38:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-29 22:55:39 +00:00
|
|
|
font_renderer_t d3d_xbox360_font = {
|
2015-01-12 22:38:39 +00:00
|
|
|
xdk360_init_font,
|
2015-03-29 20:01:52 +00:00
|
|
|
xdk360_free_font,
|
2015-01-12 22:38:39 +00:00
|
|
|
xdk360_render_msg,
|
2015-04-21 15:17:44 +00:00
|
|
|
"xdk360_fonts",
|
2015-04-21 15:13:55 +00:00
|
|
|
NULL, /* get_glyph */
|
|
|
|
NULL, /* bind_block */
|
|
|
|
NULL, /* flush */
|
2015-05-16 14:32:16 +00:00
|
|
|
NULL /* get_message_width */
|
2015-01-12 22:38:39 +00:00
|
|
|
};
|