OSDN Git Service

wwww
[proj16/16.git] / src / lib / 16text.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 /*\r
23  * This is the text subsystem for project 16.\r
24  * These functions provide for the rendering of text strings\r
25  * using the BIOS fonts.\r
26  * They copy the font characters directly to VGA.\r
27  */\r
28 #ifndef TEXT_H\r
29 #define TEXT_H
30 #ifdef __WATCOMC__
31 #include <jstring.h>
32 #include <jctype.h>\r
33 #endif
34 #include "src/lib/types.h"\r
35 \r
36 /* font information type */\r
37 typedef struct font {\r
38     word  seg;       //segment for the font\r
39     word  off;       //offset in the segment for the font\r
40     byte  charSize;  //bytes in each character\r
41 } font_t;\r
42 \r
43 /* storage for the rom fonts */\r
44 extern font_t romFonts[4];\r
45 #define ROM_FONT_8x14     0\r
46 #define ROM_FONT_8x8_LOW  1\r
47 #define ROM_FONT_8x8_HIGH 2\r
48 #define ROM_FONT_8x16     3\r
49 \r
50 /* This function initializes the text engine */\r
51 void textInit();\r
52 \r
53 #endif\r