]> 4ch.mooo.com Git - 16.git/blob - src/text.h
wwww
[16.git] / src / text.h
1 /* Project 16 Source Code~
2  * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669
3  *
4  * This file is part of Project 16.
5  *
6  * Project 16 is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Project 16 is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,
19  * Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  */
22 /*
23  * This is the text subsystem for project 16.
24  * These functions provide for the rendering of text strings
25  * using the BIOS fonts.
26  * They copy the font characters directly to VGA.
27  */
28 #ifndef TEXT_H
29 #define TEXT_H
30 #ifdef __WATCOMC__
31 #include <jstring.h>
32 #endif
33 #include "types.h"
34
35 /* font information type */
36 typedef struct font {
37     word  seg;       //segment for the font
38     word  off;       //offset in the segment for the font
39     byte  charSize;  //bytes in each character
40 } font_t;
41
42 /* storage for the rom fonts */
43 extern font_t romFonts[4];
44 #define ROM_FONT_8x14     0
45 #define ROM_FONT_8x8_LOW  1
46 #define ROM_FONT_8x8_HIGH 2
47 #define ROM_FONT_8x16     3
48
49 /* This function initializes the text engine */
50 void textInit();
51
52 #endif