]> 4ch.mooo.com Git - 16.git/blob - src/fontgfx.c
pee of baka
[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         static byte e;\r
32         //word ri;\r
33         byte pee[2];\r
34         static byte rose[]="                                              :. ,..\n\\r
35                                             .' :~.':_.,\n\\r
36                                           .'   ::.::'.'\n\\r
37                                          :     ::'  .:\n\\r
38                                        `.:    .:  .:/\n\\r
39                                         `::--.:'.::'\n\\r
40                                           |. _:===-'\n\\r
41                                          / /\n\\r
42                         ,---.---.    __,','\n\\r
43                        (~`.  \   )   )','.,---..\n\\r
44                         `v`\ | ,' .-'.:,'_____   `.\n\\r
45                             )|/.-~.--~~--.   ~~~-. \ \n\\r
46                           _/-'_.-~        ""---.._`.|\n\\r
47                      _.-~~_.-~                    ""'\n\\r
48               _..--~~_.(~~\n\\r
49    __...---~~~_..--~~\n\\r
50 ,'___...---~~~\n\\r
51 ";\r
52 //      static byte *rosa;\r
53         static word chx, chy, colpee;\r
54         textInit();\r
55         modexEnter();\r
56         //modexprint(16, 16, 1, 15, "wwww");\r
57         //getch();\r
58         chx=0;\r
59         chy=0;\r
60         colpee=32;\r
61         for(e=0x00; e<=0xFE; e++)\r
62         {\r
63                 if(chx+8>(SCREEN_WIDTH/2)-16)\r
64                 {\r
65                         chx=0;\r
66                         chy+=8;\r
67                         sprintf(pee,"%u", colpee);\r
68                         modexprint(200, 200, 1, 47, 0, &pee);\r
69                         //getch();\r
70                 }\r
71                 modexprint(chx, chy, 1, 0, colpee, &e);\r
72                 chx+=9;\r
73                 colpee++;\r
74                 if(colpee>=32+24) colpee=32;\r
75         }\r
76         //modexprint(100, 100, 1, 47, 0, "wwww");\r
77         getch();\r
78         modexprint(0, 0, 1, 0, colpee, &rose);\r
79 //      modexprint(0, 0, 1, 0, colpee, ROSE);\r
80         getch();\r
81         modexLeave();\r
82 //      rosa=malloc(sizeof(ROSE));\r
83 //      (*rosa)=(byte)ROSE;\r
84         printf("\n%s\n", rose);\r
85         //printf("\nh=%d\n", '8');\r
86 //      printf("\n%c\n", e);\r
87 }\r