]> 4ch.mooo.com Git - 16.git/blob - src/bakapi.c
Merge remote-tracking branch 'upstream/master'
[16.git] / src / bakapi.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\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 screen.heightould 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 \r
23 #include "src/bakapi.h"\r
24 \r
25 /*\r
26  * BAKAPEE!\r
27  */\r
28 global_game_variables_t gvar;\r
29 static bakapee_t bakapee;\r
30 word key,d,xpos,ypos,xdir,ydir;\r
31 sword vgamodex_mode = 1; // 320x240 default\r
32 int ch=0x0;\r
33 \r
34 void\r
35 main(int argc, char *argvar[])\r
36 {\r
37         char *a;\r
38         int i;\r
39         word panq=1, pand=0;\r
40         boolean panswitch=0;\r
41 \r
42         // allow changing default mode from command line\r
43         for (i=1;i < argc;) {\r
44                 a = argvar[i++];\r
45 \r
46                 if (*a == '-') {\r
47                         do { a++; } while (*a == '-');\r
48 \r
49                         if (!strcmp(a,"mx")) {\r
50                                 // (based on src/lib/modex16.c)\r
51                                 // 1 = 320x240\r
52                                 // 2 = 160x120\r
53                                 // 3 = 320x200\r
54                                 // 4 = 192x144\r
55                                 // 5 = 256x192\r
56                                 vgamodex_mode = (sword)strtoul(argvar[i++],NULL,0);\r
57                         }\r
58                         else {\r
59                                 fprintf(stderr,"Unknown switch %s\n",a);\r
60                                 return;\r
61                         }\r
62                 }\r
63                 else {\r
64                         fprintf(stderr,"Unknown command arg %s\n",a);\r
65                         return;\r
66                 }\r
67         }\r
68 \r
69         // DOSLIB: check our environment\r
70         probe_dos();\r
71 \r
72         // DOSLIB: what CPU are we using?\r
73         // NTS: I can see from the makefile Sparky4 intends this to run on 8088 by the -0 switch in CFLAGS.\r
74         //      So this code by itself shouldn't care too much what CPU it's running on. Except that other\r
75         //      parts of this project (DOSLIB itself) rely on CPU detection to know what is appropriate for\r
76         //      the CPU to carry out tasks. --J.C.\r
77         cpu_probe();\r
78 \r
79         // DOSLIB: check for VGA\r
80         if (!probe_vga()) {\r
81                 printf("VGA probe failed\n");\r
82                 return;\r
83         }\r
84         // hardware must be VGA or higher!\r
85         if (!(vga_state.vga_flags & VGA_IS_VGA)) {\r
86                 printf("This program requires VGA or higher graphics hardware\n");\r
87                 return;\r
88         }\r
89 \r
90         // main variables values\r
91         d=4; // switch variable\r
92         key=2; // default screensaver number\r
93         xpos=TILEWHD;\r
94         ypos=TILEWHD;\r
95         xdir=1;\r
96         ydir=1;\r
97 \r
98         VGAmodeX(vgamodex_mode, 1, &gvar); // TODO: Suggestion: Instead of magic numbers for the first param, might I suggest defining an enum or some #define constants that are easier to remember? --J.C.\r
99                 // this code is written around modex16 which so far is a better fit than using DOSLIB vga directly, so leave MXLIB code in.\r
100                 // we'll integrate DOSLIB vga into that part of the code instead for less disruption. -- J.C.\r
101 \r
102         bakapee.xx = rand()&0%gvar.video.page[0].width;\r
103         bakapee.yy = rand()&0%gvar.video.page[0].height;\r
104         bakapee.gq = 0;\r
105         bakapee.sx=0;\r
106         bakapee.sy=0;\r
107         bakapee.bakax=0;\r
108         bakapee.bakay=0;\r
109         bakapee.coor=0;\r
110         bakapee.tile=0;\r
111 \r
112         /* setup camera and screen~ */\r
113         gvar.video.page[0] = modexDefaultPage(&gvar.video.page[0]);\r
114         textInit();\r
115 \r
116         //modexPalUpdate(bmp.palette); //____\r
117         //modexDrawBmp(VGA, 0, 0, &bmp, 0); //____\r
118         //getch(); //____\r
119 \r
120         modexShowPage(&gvar.video.page[0]);\r
121 \r
122 // screen savers\r
123 #ifdef BOINK\r
124         while(d>0)      // on!\r
125         {\r
126                 int c;\r
127                 /* run screensaver routine until keyboard input */\r
128                 while (key > 0) {\r
129                         if (kbhit()) {\r
130                                 if(!panswitch)\r
131                                 {\r
132                                         getch(); // eat keyboard input\r
133                                         break;\r
134                                 }else c=getch();\r
135                         }\r
136 \r
137                         if(!panswitch)  ding(&gvar.video.page[0], &bakapee, key);\r
138                         else                    ding(&gvar.video.page[0], &bakapee, 2);\r
139                         if(panswitch!=0)\r
140                         {\r
141                                 //right movement\r
142                                 if((c==0x4d && pand == 0) || pand == 2)\r
143                                 {\r
144                                         if(pand == 0){ pand = 2; }\r
145                                         if(panq<=(TILEWH/(4)))\r
146                                         {\r
147                                                 gvar.video.page[0].dx++;\r
148                                                 modexShowPage(&gvar.video.page[0]);\r
149                                                 panq++;\r
150                                         } else { panq = 1; pand = 0; }\r
151                                 }\r
152                                 //left movement\r
153                                 if((c==0x4b && pand == 0) || pand == 4)\r
154                                 {\r
155                                         if(pand == 0){ pand = 4; }\r
156                                         if(panq<=(TILEWH/(4)))\r
157                                         {\r
158                                                 gvar.video.page[0].dx--;\r
159                                                 modexShowPage(&gvar.video.page[0]);\r
160                                                 panq++;\r
161                                         } else { panq = 1; pand = 0; }\r
162                                 }\r
163                                 //down movement\r
164                                 if((c==0x50 && pand == 0) || pand == 3)\r
165                                 {\r
166                                         if(pand == 0){ pand = 3; }\r
167                                         if(panq<=(TILEWH/(4)))\r
168                                         {\r
169                                                 gvar.video.page[0].dy++;\r
170                                                 modexShowPage(&gvar.video.page[0]);\r
171                                                 panq++;\r
172                                         } else { panq = 1; pand = 0; }\r
173                                 }\r
174                                 //up movement\r
175                                 if((c==0x48 && pand == 0) || pand == 1)\r
176                                 {\r
177                                         if(pand == 0){ pand = 1; }\r
178                                         if(panq<=(TILEWH/(4)))\r
179                                         {\r
180                                                 gvar.video.page[0].dy--;\r
181                                                 modexShowPage(&gvar.video.page[0]);\r
182                                                 panq++;\r
183                                         } else { panq = 1; pand = 0; }\r
184                                 }\r
185                                 if(c==0x71 || c==0xb1 || c=='p')\r
186                                 {\r
187                                         //getch(); // eat keyboard input\r
188                                         panswitch=0;\r
189                                         break; // 'q' or 'ESC' or 'p'\r
190                                 }\r
191                         }\r
192                 }\r
193 \r
194                 {\r
195 \r
196                 // this code is written around modex16 which so far is a better fit than using DOSLIB vga directly, so leave MXLIB code in.\r
197                 // we'll integrate DOSLIB vga into that part of the code instead for less disruption. -- J.C.\r
198                         VGAmodeX(0, 0, &gvar);\r
199                         // user imput switch\r
200                         //fprintf(stderr, "xx=%d        yy=%d   tile=%d\n", bakapee.xx, bakapee.yy, bakapee.tile);\r
201                         //fprintf(stderr, "dx=%d        dy=%d   ", gvar.video.page[0].dx, gvar.video.page[0].dy);\r
202                         printf("Tiled mode is ");\r
203                         switch (bakapee.tile)\r
204                         {\r
205                                 case 0:\r
206                                         printf("off.    ");\r
207                                 break;\r
208                                 case 1:\r
209                                         printf("on.     ");\r
210                                 break;\r
211                         }\r
212                         //printf("\n");\r
213                         printf("Pan mode is ");\r
214                         switch (panswitch)\r
215                         {\r
216                                 case 0:\r
217                                         printf("off.\n");\r
218                                 break;\r
219                                 case 1:\r
220                                         printf("on.\n");\r
221                                 break;\r
222                         }\r
223                         printf("Enter 1, 2, 3, 4, 5, 6, 8, or 9 to run a screensaver, or enter 0 to quit.\n");\r
224 pee:\r
225                         c = getch();\r
226                         switch (c) {\r
227                                 case 27: /* Escape key */\r
228                                 case '0':\r
229                                         d=0;\r
230                                         break;\r
231                                 case 'p': // test pan\r
232                                 switch (panswitch)\r
233                                 {\r
234                                         case 0:\r
235                                                 panswitch=1;\r
236                                         break;\r
237                                         case 1:\r
238                                                 panswitch=0;\r
239                                         break;\r
240                                 }\r
241                                 goto pee;\r
242                                 break;\r
243                                 case 'b': // test tile change\r
244                                         switch (bakapee.tile)\r
245                                         {\r
246                                                 case 0:\r
247                                                         bakapee.tile=1;\r
248                                                 break;\r
249                                                 case 1:\r
250                                                         bakapee.tile=0;\r
251                                                 break;\r
252                                         }\r
253                                         key=0;\r
254                                         break;\r
255                                 case '8':\r
256                                         c+=8;\r
257                                 case '1':\r
258                                 case '2':\r
259                                 case '3':\r
260                                 case '4':\r
261                                 case '5':\r
262                                 case '6':\r
263                                 case '9':\r
264                                         key = c - '0';\r
265                                         VGAmodeX(vgamodex_mode, 0, &gvar);\r
266                                         gvar.video.page[0] = modexDefaultPage(&gvar.video.page[0]);\r
267                 // this code is written around modex16 which so far is a better fit than using DOSLIB vga directly, so leave MXLIB code in.\r
268                 // we'll integrate DOSLIB vga into that part of the code instead for less disruption. -- J.C.\r
269                                         modexShowPage(&gvar.video.page[0]);\r
270                                         break;\r
271                                 default:\r
272                                         key=0;\r
273                                         break;\r
274                         }\r
275                 }\r
276         }\r
277 #else // !defined(BOINK)\r
278 // FIXME: Does not compile. Do you want to remove this?\r
279 // INFO: This is a testing section for textrendering and panning for project 16 --sparky4\r
280         while(1)\r
281         { // conditions of screen saver\r
282 //              while(!kbhit())\r
283 //              {\r
284 //                      ding(&gvar.video.page[0], &bakapee, key);\r
285 //              }\r
286                 //end of screen savers\r
287                 //pdump(&gvar.video.page[0]);\r
288 \r
289 //              mxOutText(xpos+1, ypos+gvar.video.page[0].height-48, "========================================");\r
290 //              mxOutText(xpos+1, ypos+gvar.video.page[0].height-40, "|    |Chikyuu:$line1");\r
291 //              mxOutText(xpos+1, ypos+gvar.video.page[0].height-32, "|    |$line2");\r
292 //              mxOutText(xpos+1, ypos+gvar.video.page[0].height-24, "|    |$line3");\r
293 //              mxOutText(xpos+1, ypos+gvar.video.page[0].height-16, "|    |$line4");\r
294 //              mxOutText(xpos+1, ypos+gvar.video.page[0].height-8,  "========================================");\r
295 \r
296         ding(&gvar.video.page[0], &bakapee, key);\r
297         modexPanPage(&gvar.video.page[0], xpos, ypos);\r
298         c = getch();\r
299 \r
300 //      xpos+=xdir;\r
301 //      ypos+=ydir;\r
302 //      if( (xpos>(gvar.video.page[0].sw-gvar.video.page[0].width-1))  || (xpos<1)){xdir=-xdir;}\r
303 //      if( (ypos>(gvar.video.page[0].sh-gvar.video.page[0].height-1)) || (ypos<1)){ydir=-ydir;}\r
304 //      ch=getch();\r
305         if(ch==0x71)break; // 'q'\r
306         if(ch==0x1b)break; // 'ESC'\r
307         }\r
308         VGAmodeX(0, 1, &gvar);\r
309 #endif // defined(BOINK)\r
310 //      printf("page.width=%u   ", gvar.video.page[0].width); printf("page.height=%u\n", gvar.video.page[0].height);\r
311         printf("bakapi ver. 1.04.16.04\nis made by sparky4\81i\81\86\83Ö\81\85\81j feel free to use it ^^\nLicence: GPL v3\n");\r
312         printf("compiled on 2016/04/04\n");\r
313 }\r
314 //pee!\r