]> 4ch.mooo.com Git - 16.git/blob - src/bakapi.c
wwww
[16.git] / src / bakapi.c
1 /* Project 16 Source Code~
2  * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669
3  *
4  * This file is part of Project 16.
5  *
6  * Project 16 is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Project 16 is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You screen.heightould have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,
19  * Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  */
22
23 #include "src/bakapi.h"
24
25 /*
26  * BAKAPEE!
27  */
28 global_game_variables_t gvar;
29 static bakapee_t bakapee;
30 word key,d,xpos,ypos,xdir,ydir;
31 int ch=0x0;
32
33 void
34 main(int argc, char *argvar[])
35 {
36         // main variables values
37         d=4; // switch variable
38         key=2; // default screensaver number
39         xpos=TILEWH*2;
40         ypos=TILEWH*2;
41         xdir=1;
42         ydir=1;
43
44 #ifdef MXLIB
45         VGAmodeX(1, &gvar);
46 #else
47         mxSetMode(3);
48 #endif
49         bakapee.xx = rand()&0%gvar.video.page[0].width;
50         bakapee.yy = rand()&0%gvar.video.page[0].height;
51         bakapee.gq = 0;
52         bakapee.sx=0;
53         bakapee.sy=0;
54         bakapee.bakax=0;
55         bakapee.bakay=0;
56         bakapee.coor=0;
57         bakapee.tile=0;
58
59         /* setup camera and screen~ */
60         gvar.video.page[0] = modexDefaultPage(&gvar.video.page[0]);
61         gvar.video.page[0].width += (TILEWH*2);
62         gvar.video.page[0].height += (TILEWH*2);
63         textInit();
64
65         //modexPalUpdate(bmp.palette); //____
66         //modexDrawBmp(VGA, 0, 0, &bmp, 0); //____
67         //getch(); //____
68
69         modexShowPage(&gvar.video.page[0]);
70
71 // screen savers
72 #ifdef BOINK
73         while(d>0)      // on!
74         {
75                 if(!kbhit())
76                 { // conditions of screen saver
77                         ding(&gvar.video.page[0], &bakapee, key);
78                 }
79                 else
80                 {
81                         #ifndef MXLIB
82                         mxChangeMode(0);
83 #else
84                         VGAmodeX(0, &gvar);
85 #endif
86                         //modexLeave();
87                         // user imput switch
88                         fprintf(stderr, "xx=%d  yy=%d\n", bakapee.xx, bakapee.yy);
89                         printf("Enter 1, 2, 3, 4, or 6 to run a screensaver, or enter 0 to quit.\n", getch());  // prompt the user
90 //                      printf("Enter 1, 2, 3, 4, or 6 to run a screensaver, or enter 0 to quit.\n");  // prompt the user
91 //                      clrstdin();
92                         scanf("%d", &key);
93                         //if(key==3){xx=yy=0;} // crazy screen saver wwww
94                         if(key==0){ d=0; }else{
95                                 gvar.video.page[0] = modexDefaultPage(&gvar.video.page[0]);
96                                 gvar.video.page[0].width += (TILEWH*2);
97                                 gvar.video.page[0].height += (TILEWH*2);
98 #ifdef MXLIB
99                                 VGAmodeX(1, &gvar);
100 #else
101                                 mxChangeMode(3);
102 #endif
103                                 modexShowPage(&gvar.video.page[0]);
104                         }
105                 }
106         }
107 #else
108         while(1)
109         { // conditions of screen saver
110                 while(!kbhit())
111                 {
112                         ding(&gvar.video.page[0], &bakapee, key);
113                 }
114                 //end of screen savers
115                 /*for(int x = 0; x < gvar.video.page[0].width; ++x)
116                 {
117                         modexputPixel(&page, x, 0, 15);
118                         mxPutPixel(x, gvar.video.page[0].height-1, 15);
119                         }
120                 for (int y = 0; y < VH; ++y)
121                         {
122                                 mxPutPixel(0, y, 15);
123                                 mxPutPixel(gvar.video.page[0].width-1, y, 15);
124                         }
125                 for (int x = 0; x < VW; ++x)
126                         {
127                                 mxPutPixel(x, 0, 15);
128                                 mxPutPixel(x, VH-1, 15);
129                         }
130                 for (int y = 240; y < VH; ++y)
131                         {
132                                 mxPutPixel(0, y, 15);
133                                 mxPutPixel(VW-1, y, 15);
134                         }*/
135                 pdump(&gvar.video.page[0]);
136                 getch();
137                 //text box
138                 /*++++mxBitBlt(xpos, ypos+(TILEWH*12), gvar.video.page[0].width, TILEWH*BUFFMX, 0, BS); //copy background
139                 mxFillBox(xpos, ypos+(TILEWH*12), gvar.video.page[0].width, TILEWH*BUFFMX, 0, OP_SET); // background for text box
140                 //+(QUADWH*6)
141                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-48, "========================================");
142                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-40, "|    |Chikyuu:$line1");
143                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-32, "|    |$line2");
144                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-24, "|    |$line3");
145                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-16, "|    |$line4");
146                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-8,  "========================================");
147                 mxFillBox(xpos+QUADWH, ypos+QUADWH+(TILEWH*12), TILEWH*2, TILEWH*2, 9, OP_SET); //portriat~
148                 getch();
149                 mxBitBlt(0, BS, gvar.video.page[0].width, TILEWH*BUFFMX, xpos, ypos+(TILEWH*12)); //copy background
150                 getch();++++*/
151                 while(!kbhit())
152                 {
153                         //for(int i=0;i<TILEWH;i++){
154                                 ding(&gvar.video.page[0], &bakapee, key);
155                                 modexPanPage(&gvar.video.page[0], xpos, ypos);
156 //++++mxFillBox(384, 304, 384, 304, 10, OP_SET);
157 //mxBitBlt(xpos, ypos, gvar.video.page[0].width, gvar.video.page[0].height, 32, (gvar.video.page[0].height+64+32));
158 //++++mxBitBlt(TILEWH*2, TILEWH*2, gvar.video.page[0].width, gvar.video.page[0].height, 32, (gvar.video.page[0].height+64+32));
159                                 //for(word o = 0; o<TILEWH; o++){
160                                         xpos+=xdir;
161                                         ypos+=ydir;
162                                         //if(ypos==1 || (ypos==(BH-gvar.video.page[0].height-1)))delay(500);
163                                         //if((xpos>(VW-gvar.video.page[0].width-1)) || (xpos<1))delay(500);
164                                         //mxWaitRetrace();
165 //mxBitBlt(32, (gvar.video.page[0].height+32), gvar.video.page[0].width, gvar.video.page[0].height, xpos, ypos);
166 //++++mxBitBlt(TILEWH*2, (gvar.video.page[0].height+64+32), gvar.video.page[0].width, gvar.video.page[0].height, TILEWH*2, TILEWH*2);
167 //xpos=ypos=TILEWH*2;
168                                         //????modexPanPage(&gvar.video.page[0], 32, 32);
169                                 //}
170                                 if( (xpos>(VW-gvar.video.page[0].width-1))  || (xpos<1)){xdir=-xdir;}
171                                 if( (ypos>(BH-gvar.video.page[0].height-1)) || (ypos<1)){ydir=-ydir;} // { Hit a boundry, change
172                         //}//    direction!
173 //mxBitBlt(32, (gvar.video.page[0].height+64+32), gvar.video.page[0].width, gvar.video.page[0].height, xpos, ypos);
174 //mxBitBlt(TILEWH*2, (gvar.video.page[0].height+64+32), gvar.video.page[0].width, gvar.video.page[0].height, TILEWH*2, TILEWH*2);
175                 }
176         ch=getch();
177         if(ch==0x71)break; // 'q'
178         if(ch==0x1b)break; // 'ESC'
179         }
180 //      VGAmodeX(0, &gvar);
181 #endif
182         printf("bakapi ver. 1.04.13.04\nis made by sparky4\81i\81\86\83Ö\81\85\81j feel free to use it ^^\nLicence: GPL v3\n");
183 }
184 //pee!