]> 4ch.mooo.com Git - 16.git/blob - src/lib/16text.c
^^
[16.git] / src / lib / 16text.c
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 #include "16text.h"\r
24 \r
25 /* this array holds the rom font descriptors */\r
26 font_t romFonts[4];\r
27 \r
28 \r
29 static void getRomFontAddr(char fontNum, int index) {\r
30     word fontSeg;\r
31     word fontOff;\r
32 \r
33     __asm {\r
34                 PUSH BP\r
35                 MOV AX, 0x1130          ;I can haz font info plz?\r
36                 MOV BH, fontNum         ;  where ur fontNum\r
37                 INT 0x10                ;kthxbae\r
38                 MOV AX, ES              ;save teh segmentz\r
39                 MOV BX, BP              ;and all the base!\r
40                 POP BP                  ;u can haz ur frame back!\r
41                 MOV fontSeg, AX         ;Storage\r
42                 MOV fontOff, BX         ;Storage\r
43     }\r
44     romFonts[index].seg = fontSeg;\r
45     romFonts[index].off = fontOff;\r
46 \r
47 }\r
48 \r
49 /* This function initializes the text engine */\r
50 void textInit() {\r
51     getRomFontAddr(0x02, ROM_FONT_8x14);\r
52     getRomFontAddr(0x03, ROM_FONT_8x8_LOW);\r
53     getRomFontAddr(0x04, ROM_FONT_8x8_HIGH);\r
54     getRomFontAddr(0x06, ROM_FONT_8x16);\r
55     romFonts[ROM_FONT_8x14].charSize=14;\r
56     romFonts[ROM_FONT_8x8_LOW].charSize=8;\r
57     romFonts[ROM_FONT_8x8_HIGH].charSize=8;\r
58     romFonts[ROM_FONT_8x16].charSize=16;\r
59 }\r