2019-06-30 01:03:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 naehrwert
|
2021-02-06 01:57:39 +00:00
|
|
|
* Copyright (c) 2018-2021 CTCaer
|
2019-10-18 15:02:06 +00:00
|
|
|
* Copyright (c) 2018 M4xw
|
2019-06-30 01:03:00 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GFX_H_
|
|
|
|
#define _GFX_H_
|
|
|
|
|
2022-01-15 22:04:34 +00:00
|
|
|
#include <bdk.h>
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2022-07-01 01:37:57 +00:00
|
|
|
#define TXT_CLR_BG 0xFF000000 // Black.
|
|
|
|
#define TXT_CLR_DEFAULT 0xFFFFFFFF // White.
|
|
|
|
#define TXT_CLR_WARNING 0xFFFFDD00 // Yellow.
|
|
|
|
#define TXT_CLR_ERROR 0xFFFF0000 // Red.
|
|
|
|
#define TXT_CLR_CYAN_L 0xFF00CCFF // Light Cyan. 0xFF0099EE 0xFF00DDFF FF0AB9E6
|
|
|
|
#define TXT_CLR_TURQUOISE 0xFF00FFCC // Turquoise.
|
|
|
|
#define TXT_CLR_ORANGE 0xFFFFBA00 // Orange.
|
|
|
|
#define TXT_CLR_GREENISH 0xFF96FF00 // Toxic Green. 0xFFAEFD14 0xFFC7EA46
|
|
|
|
#define TXT_CLR_GREEN_D 0xFF008800 // Dark Green.
|
|
|
|
#define TXT_CLR_RED_D 0xFF880000 // Dark Red. 0xFF800000
|
|
|
|
#define TXT_CLR_GREY_D 0xFF303030 // Darkest Grey.
|
|
|
|
#define TXT_CLR_GREY_DM 0xFF444444 // Darker Grey.
|
|
|
|
#define TXT_CLR_GREY_M 0xFF555555 // Dark Grey.
|
|
|
|
#define TXT_CLR_GREY 0xFF888888 // Grey.
|
|
|
|
|
|
|
|
#define EPRINTF(text) gfx_eputs(text)
|
|
|
|
#define EPRINTFARGS(text, args...) gfx_printf("%k"text"%k\n", TXT_CLR_ERROR, args, TXT_CLR_DEFAULT)
|
|
|
|
#define WPRINTF(text) gfx_wputs(text)
|
|
|
|
#define WPRINTFARGS(text, args...) gfx_printf("%k"text"%k\n", TXT_CLR_WARNING, args, TXT_CLR_DEFAULT)
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-06-14 13:45:45 +00:00
|
|
|
typedef struct _gfx_ctxt_t
|
|
|
|
{
|
|
|
|
u32 *fb;
|
|
|
|
u32 width;
|
|
|
|
u32 height;
|
|
|
|
u32 stride;
|
|
|
|
} gfx_ctxt_t;
|
|
|
|
|
|
|
|
typedef struct _gfx_con_t
|
|
|
|
{
|
|
|
|
gfx_ctxt_t *gfx_ctxt;
|
|
|
|
u32 fntsz;
|
|
|
|
u32 x;
|
|
|
|
u32 y;
|
|
|
|
u32 savedx;
|
|
|
|
u32 savedy;
|
|
|
|
u32 fgcol;
|
|
|
|
int fillbg;
|
|
|
|
u32 bgcol;
|
|
|
|
bool mute;
|
|
|
|
} gfx_con_t;
|
|
|
|
|
|
|
|
// Global gfx console and context.
|
|
|
|
extern gfx_ctxt_t gfx_ctxt;
|
|
|
|
extern gfx_con_t gfx_con;
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
void gfx_init_ctxt(u32 *fb, u32 width, u32 height, u32 stride);
|
|
|
|
void gfx_clear_grey(u8 color);
|
|
|
|
void gfx_clear_color(u32 color);
|
|
|
|
void gfx_con_init();
|
|
|
|
void gfx_con_setcol(u32 fgcol, int fillbg, u32 bgcol);
|
|
|
|
void gfx_con_getpos(u32 *x, u32 *y);
|
|
|
|
void gfx_con_setpos(u32 x, u32 y);
|
|
|
|
void gfx_putc(char c);
|
2022-07-01 01:37:57 +00:00
|
|
|
void gfx_puts(const char *s);
|
|
|
|
void gfx_wputs(const char *s);
|
|
|
|
void gfx_eputs(const char *s);
|
2022-05-19 12:06:37 +00:00
|
|
|
void gfx_printf(const char *fmt, ...) /* __attribute__((format(printf, 1, 2))) */;
|
2021-02-06 01:57:39 +00:00
|
|
|
void gfx_hexdump(u32 base, const void *buf, u32 len);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
void gfx_set_pixel(u32 x, u32 y, u32 color);
|
2020-04-30 11:01:10 +00:00
|
|
|
|
2022-10-11 03:51:33 +00:00
|
|
|
void gfx_set_rect_pitch(u32 *fb, const u32 *buf, u32 stride, u32 pos_x, u32 pos_y, u32 pos_x2, u32 pos_y2);
|
2020-04-30 11:01:10 +00:00
|
|
|
void gfx_set_rect_land_pitch(u32 *fb, const u32 *buf, u32 stride, u32 pos_x, u32 pos_y, u32 pos_x2, u32 pos_y2);
|
|
|
|
void gfx_set_rect_land_block(u32 *fb, const u32 *buf, u32 pos_x, u32 pos_y, u32 pos_x2, u32 pos_y2);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
#endif
|