]> 4ch.mooo.com Git - 16.git/blob - src/fontgfx.c
why dose a ! appear at the end?
[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, colpee;\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;
39         colpee=0;\r
40         for(e=' '; e<='~'; e++)\r
41         {
42                 if(chx+8>(SCREEN_WIDTH/2)-1)
43                 {
44                         chx=0;
45                         chy+=8;
46                         modexprint(200, 200, 1, 47, 0, &e);
47                 }
48                 modexprint(chx, chy, 1, 0, colpee, &e);\r
49                 chx+=9;
50                 colpee++;\r
51         }
52         modexprint(100, 100, 1, 47, 0, "wwww");\r
53         getch();\r
54         modexLeave();
55         printf("\n\n%u %c", '\7f');
56         printf("\n%c\n", e);
57 }\r