gba-trycatch
diff src/sdlsys/font.h @ 5:850be43b3135
sdl version
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 16 Jun 2014 22:01:45 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/sdlsys/font.h Mon Jun 16 22:01:45 2014 +0300 1.3 @@ -0,0 +1,43 @@ 1.4 +/* 1.5 +Copyright 2004 John Tsiombikas <nuclear@siggraph.org> 1.6 + 1.7 +This file is part of gbasys, a library for GameBoy Advance development. 1.8 + 1.9 +This program is free software; you can redistribute it and/or modify 1.10 +it under the terms of the GNU General Public License as published by 1.11 +the Free Software Foundation; either version 2 of the License, or 1.12 +(at your option) any later version. 1.13 + 1.14 +This program is distributed in the hope that it will be useful, 1.15 +but WITHOUT ANY WARRANTY; without even the implied warranty of 1.16 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1.17 +GNU General Public License for more details. 1.18 + 1.19 +You should have received a copy of the GNU General Public License 1.20 +along with this program; if not, write to the Free Software 1.21 +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 1.22 +*/ 1.23 +#ifndef _FONT_H_ 1.24 +#define _FONT_H_ 1.25 + 1.26 +struct pixel_buffer; 1.27 + 1.28 +struct font { 1.29 + int x, y; 1.30 + void *bitmap; 1.31 +}; 1.32 + 1.33 + 1.34 +extern struct font font_8x8; 1.35 +extern struct font font_8x16; 1.36 + 1.37 +void set_font(struct font *fnt); 1.38 +struct font *get_font(void); 1.39 +void set_text_color(unsigned short fg, unsigned short bg); 1.40 +void set_text_writebg(int enable); 1.41 + 1.42 +struct pixel_buffer *get_glyph(unsigned char c, unsigned short fg, unsigned short bg, int bpp); 1.43 +int draw_glyph(unsigned char c, int x, int y, struct pixel_buffer *pbuf); 1.44 +int draw_string(const char *str, int x, int y, struct pixel_buffer *pbuf); 1.45 + 1.46 +#endif /* _FONT_H_ */