]> 4ch.mooo.com Git - 16.git/blob - src/fontgfx.c
16.c needs to probe DOS and VGA before using modex library. -repo sync-
[16.git] / src / fontgfx.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123\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 #include <stdio.h>\r
23 #include <conio.h>\r
24 #include "lib/types.h"\r
25 //#include "lib/16text.h"\r
26 #include "lib/modex16.h"\r
27 \r
28 #include <hw/cpu/cpu.h>\r
29 #include <hw/dos/dos.h>\r
30 #include <hw/vga/vga.h>\r
31 #include <hw/vga/vgatty.h>\r
32 \r
33 global_game_variables_t gvar;\r
34 \r
35 void main(int argc, char near *argv[])\r
36 {\r
37         //JMOJI\r
38         static byte e;\r
39         //word ri;\r
40         byte pee[6]; // must be large enough for sprintf("%zc",...) and sprintf("%u",(byte value))\r
41         static byte ibmlogo[]="IIIIIII  BBBBBBBBB    MMMMM       MMMMM\n\\r
42 IIIIIII  BBBBBBBBBBB  MMMMMM     MMMMMM\n\\r
43   III     BBB    BBB   MMMMMM   MMMMMM\n\\r
44   III     BBBBBBBBB    MMMMMMM MMMMMMM\n\\r
45   III     BBBBBBBBB    MMM MMMMMMM MMM\n\\r
46   III     BBB    BBB   MMM  MMMMM  MMM\n\\r
47 IIIIIII  BBBBBBBBBBB  MMMM   MMM   MMMM\n\\r
48 IIIIIII  BBBBBBBBB    MMMM    M    MMMM\n\\r
49 ";\r
50         static byte rose[]="                                              :. ,..\n\\r
51                                             .' :~.':_.,\n\\r
52                                           .'   ::.::'.'\n\\r
53                                          :     ::'  .:\n\\r
54                                        `.:    .:  .:/\n\\r
55                                         `::--.:'.::'\n\\r
56                                           |. _:===-'\n\\r
57                                          / /\n\\r
58                         ,---.---.    __,','\n\\r
59                        (~`.  \   )   )','.,---..\n\\r
60                         `v`\ | ,' .-'.:,'_____   `.\n\\r
61                             )|/.-~.--~~--.   ~~~-. \ \n\\r
62                           _/-'_.-~        ""---.._`.|\n\\r
63                      _.-~~_.-~                    ""'\n\\r
64               _..--~~_.(~~\n\\r
65    __...---~~~_..--~~\n\\r
66 ,'___...---~~~\n\\r
67 ";\r
68 //      static byte *rosa;\r
69         static word chx, chy, colpee, addr;\r
70         textInit();\r
71 \r
72         // DOSLIB: check our environment\r
73         probe_dos();\r
74 \r
75         // DOSLIB: what CPU are we using?\r
76         // NTS: I can see from the makefile Sparky4 intends this to run on 8088 by the -0 switch in CFLAGS.\r
77         //      So this code by itself shouldn't care too much what CPU it's running on. Except that other\r
78         //      parts of this project (DOSLIB itself) rely on CPU detection to know what is appropriate for\r
79         //      the CPU to carry out tasks. --J.C.\r
80         cpu_probe();\r
81 \r
82         // DOSLIB: check for VGA\r
83         if (!probe_vga()) {\r
84                 printf("VGA probe failed\n");\r
85                 return;\r
86         }\r
87         // hardware must be VGA or higher!\r
88         if (!(vga_state.vga_flags & VGA_IS_VGA)) {\r
89                 printf("This program requires VGA or higher graphics hardware\n");\r
90                 return;\r
91         }\r
92         VGAmodeX(1, 1, &gvar);\r
93         /* setup camera and screen~ */\r
94         gvar.video.page[0] = modexDefaultPage(&gvar.video.page[0]);\r
95         gvar.video.page[0].width += (16*2);\r
96         gvar.video.page[0].height += (16*2);\r
97         modexShowPage(&gvar.video.page[0]);\r
98         // NTS: We're in Mode-X now. printf() is useless. Do not use printf(). Or INT 10h text printing. Or DOS console output.\r
99         //modexprint(16, 16, 1, 15, "wwww");\r
100         //getch();\r
101         chx=0;\r
102         chy=0;\r
103         colpee=32;\r
104 //      bios_cls();\r
105         /* position the cursor to home */\r
106 //      vga_moveto(0,0);\r
107 //      vga_sync_bios_cursor();\r
108         for(e=0x00; e<=0xFE; e++)\r
109         {\r
110                 if(chx+8>(gvar.video.page[0].width/2))\r
111                 {\r
112                         chx=0;\r
113                         chy+=8;\r
114                         sprintf(pee,"%u", colpee);\r
115                         modexprint(&gvar.video.page[0], 200, 200, 1, 47, 0, &pee);\r
116                         //getch();\r
117                 }\r
118                 sprintf(pee, "%zc", e);\r
119                 modexprint(&gvar.video.page[0], chx, chy, 1, 0, colpee, &e);\r
120                 chx+=8;\r
121                 colpee++;\r
122                 if(colpee>=32+24) colpee=32;\r
123         }\r
124         getch();\r
125         modexprint(&gvar.video.page[0], 0, 0, 1, 0, colpee, &rose);\r
126         getch();\r
127         //modexprint(100, 100, 1, 47, 0, "wwww");\r
128 //      modexprint(0, 0, 1, 0, colpee, &rose);\r
129 //++++  modexprint(&gvar.video.page[0], 0, 0, 0, 0, colpee, &ibmlogo);\r
130 //      modexprintbig(&gvar.video.page[0], 0, 0, 1, colpee, 0, "IBM");\r
131 //      modexprint(0, 0, 1, 0, colpee, ROSE);\r
132 //++++  getch();\r
133         VGAmodeX(0, 1, &gvar);\r
134 //      rosa=malloc(sizeof(ROSE));\r
135 //      (*rosa)=(byte)ROSE;\r
136         printf("\n%s\n", rose);\r
137         //printf("\nh=%d\n", '8');\r
138 //      printf("\n%c\n", e);\r
139 }\r