2017-04-26 10:23:36 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* Project64-video - A Nintendo 64 gfx plugin. *
|
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2017 Project64. All rights reserved. *
|
|
|
|
* Copyright (C) 2003-2009 Sergey 'Gonetz' Lipski *
|
|
|
|
* Copyright (C) 2002 Dave2001 *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
2017-05-17 08:13:04 +00:00
|
|
|
#include <Project64-video/Renderer/Renderer.h>
|
2016-01-28 20:07:00 +00:00
|
|
|
#include <stdarg.h>
|
2016-01-28 20:00:13 +00:00
|
|
|
#include <string.h>
|
2016-01-28 20:07:00 +00:00
|
|
|
|
2015-10-09 00:07:09 +00:00
|
|
|
#include "Gfx_1.3.h"
|
2013-04-04 21:22:19 +00:00
|
|
|
#include "Util.h"
|
|
|
|
#include "Debugger.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// output - output debugger text
|
|
|
|
//
|
2017-04-27 09:50:02 +00:00
|
|
|
void output(float x, float y, int scale, const char *fmt, ...)
|
2013-04-04 21:22:19 +00:00
|
|
|
{
|
2017-04-27 09:50:02 +00:00
|
|
|
float scale_1024 = g_scr_res_x / 1024.0f;
|
|
|
|
float scale_768 = g_scr_res_y / 768.0f;
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vsprintf(out_buf, fmt, ap);
|
|
|
|
va_end(ap);
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2017-04-27 09:50:02 +00:00
|
|
|
uint8_t c, r;
|
|
|
|
for (uint32_t i = 0; i < strlen(out_buf); i++)
|
2013-04-04 21:22:19 +00:00
|
|
|
{
|
2017-04-27 09:50:02 +00:00
|
|
|
c = ((out_buf[i] - 32) & 0x1F) * 8;//<< 3;
|
|
|
|
r = (((out_buf[i] - 32) & 0xE0) >> 5) * 16;//<< 4;
|
2017-08-16 22:18:19 +00:00
|
|
|
gfxVERTEX v[4] = { { x * scale_1024, (768 - y) * scale_768, 1, 1, (float)c, r + 16.0f, 0, 0,{ 0, 0, 0, 0 } },
|
2017-04-27 09:50:02 +00:00
|
|
|
{ (x + 8) * scale_1024, (768 - y) * scale_768, 1, 1, c + 8.0f, r + 16.0f, 0, 0,{ 0, 0, 0, 0 } },
|
|
|
|
{ x * scale_1024, (768 - y - 16) * scale_768, 1, 1, (float)c, (float)r, 0, 0,{ 0, 0, 0, 0 } },
|
|
|
|
{ (x + 8) * scale_1024, (768 - y - 16) * scale_768, 1, 1, c + 8.0f, (float)r, 0, 0,{ 0, 0, 0, 0 } }
|
|
|
|
};
|
|
|
|
if (!scale)
|
|
|
|
{
|
|
|
|
v[0].x = x;
|
|
|
|
v[0].y = y;
|
|
|
|
v[1].x = x + 8;
|
|
|
|
v[1].y = y;
|
|
|
|
v[2].x = x;
|
|
|
|
v[2].y = y - 16;
|
|
|
|
v[3].x = x + 8;
|
|
|
|
v[3].y = y - 16;
|
|
|
|
}
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2017-04-27 09:50:02 +00:00
|
|
|
ConvertCoordsKeep(v, 4);
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2017-05-24 22:54:10 +00:00
|
|
|
gfxDrawTriangle(&v[0], &v[1], &v[2]);
|
|
|
|
gfxDrawTriangle(&v[1], &v[3], &v[2]);
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2017-04-27 09:50:02 +00:00
|
|
|
x += 8;
|
|
|
|
}
|
2017-05-17 08:13:04 +00:00
|
|
|
}
|