]> 4ch.mooo.com Git - 16.git/blob - src/lib/16text.c
fps added to inputest.exe for efficiency testing of input wwww
[16.git] / src / lib / 16text.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669\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 "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;\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         //romFontsData\r
60 }\r