]> 4ch.mooo.com Git - 16.git/blob - src/fontgfx.c
fixings~ about to shiftjis!
[16.git] / src / fontgfx.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2015 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 #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 void main(int argc, char near *argv[])\r
29 {\r
30         //JMOJI\r
31         byte e;\r
32         word chx, chy;\r
33         textInit();\r
34         modexEnter();\r
35         //modexprint(16, 16, 1, 15, "wwww");\r
36         //getch();\r
37         chx=0;\r
38         chy=0;\r
39         for(e='\ 1'; e<='~'; e++)\r
40         {\r
41                 modexprint(chx, chy, 1, 15, &e);\r
42                 chx+=8;\r
43                 if(chx+8>=SCREEN_WIDTH)\r
44                 {\r
45                         chx=0;\r
46                         chy+=8;\r
47                 }\r
48         }\r
49         getch();\r
50         modexLeave();\r
51 }\r