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