]> 4ch.mooo.com Git - 16.git/blob - src/lib/16text.c
updating copy left. i am super fuckin busy with school, and trying to get life back...
[16.git] / src / lib / 16text.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2019 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
3  *\r
4  * This file is part of Project 16.\r
5  *\r
6  * Project 16 is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 3 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * Project 16 is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
19  * Fifth Floor, Boston, MA 02110-1301 USA.\r
20  *\r
21  */\r
22 \r
23 #include "src/lib/16text.h"\r
24 \r
25 /* this array holds the rom font descriptors */\r
26 font_t romFonts[4];\r
27 fontdata_t romFontsData;\r
28 \r
29 static void getRomFontAddr(char fontNum, int index) {\r
30     word fontSeg=0;\r
31     word fontOff=0;\r
32 \r
33     __asm {\r
34                 PUSH AX\r
35                 PUSH BX\r
36                 PUSH BP\r
37                 MOV AX, 0x1130          ;I can haz font info plz?\r
38                 MOV BH, fontNum         ;  where ur fontNum\r
39                 INT 0x10                ;kthxbae\r
40                 MOV AX, ES              ;save teh segmentz\r
41                 MOV BX, BP              ;and all the base!\r
42                 POP BP                  ;u can haz ur frame back!\r
43                 MOV fontSeg, AX         ;Storage\r
44                 MOV fontOff, BX         ;Storage\r
45                 POP BX\r
46                 POP AX\r
47     }\r
48     romFonts[index].seg = fontSeg;\r
49     romFonts[index].off = fontOff;\r
50 \r
51 }\r
52 \r
53 /* This function initializes the text engine */\r
54 void textInit() {\r
55     getRomFontAddr(0x02, ROM_FONT_8x14);\r
56     getRomFontAddr(0x03, ROM_FONT_8x8_LOW);\r
57     getRomFontAddr(0x04, ROM_FONT_8x8_HIGH);\r
58     getRomFontAddr(0x06, ROM_FONT_8x16);\r
59     romFonts[ROM_FONT_8x14].charSize=14;\r
60     romFonts[ROM_FONT_8x8_LOW].charSize=8;\r
61     romFonts[ROM_FONT_8x8_HIGH].charSize=8;\r
62     romFonts[ROM_FONT_8x16].charSize=16;\r
63         //romFontsData\r
64 }\r