OSDN Git Service

16a0c77f07b49f2f79ca54072774cad219f70ddd
[proj16/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
58         /* setup camera and screen~ */
59         gvar.video.page[0] = modexDefaultPage(&gvar.video.page[0]);
60         gvar.video.page[0].width += (TILEWH*2);
61         gvar.video.page[0].height += (TILEWH*2);
62         textInit();
63
64         //modexPalUpdate(bmp.palette); //____
65         //modexDrawBmp(VGA, 0, 0, &bmp, 0); //____
66         //getch(); //____
67
68         modexShowPage(&gvar.video.page[0]);
69
70 // screen savers
71 #ifdef BOINK
72         while(d>0)      // on!
73         {
74                 if(!kbhit())
75                 { // conditions of screen saver
76                         ding(&gvar.video.page[0], &bakapee, key);
77                 }
78                 else
79                 {
80                         #ifndef MXLIB
81                         mxChangeMode(0);
82 #else
83                         VGAmodeX(0, &gvar);
84 #endif
85                         //modexLeave();
86                         // user imput switch
87                         fprintf(stderr, "xx=%d  yy=%d\n", bakapee.xx, bakapee.yy);
88                         printf("Enter 1, 2, 3, 4, or 6 to run a screensaver, or enter 0 to quit.\n", getch());  // prompt the user
89                         scanf("%d", &key);
90                         //if(key==3){xx=yy=0;} // crazy screen saver wwww
91                         if(key==0){ d=0; }else{
92                                 gvar.video.page[0] = modexDefaultPage(&gvar.video.page[0]);
93                                 gvar.video.page[0].width += (TILEWH*2);
94                                 gvar.video.page[0].height += (TILEWH*2);
95 #ifdef MXLIB
96                                 VGAmodeX(1, &gvar);
97 #else
98                                 mxChangeMode(3);
99 #endif
100                                 modexShowPage(&gvar.video.page[0]);
101                         }
102                 }
103         }
104 #else
105         while(1)
106         { // conditions of screen saver
107                 while(!kbhit())
108                 {
109                         ding(&gvar.video.page[0], &bakapee, key);
110                 }
111                 //end of screen savers
112                 /*for(int x = 0; x < gvar.video.page[0].width; ++x)
113                 {
114                         modexputPixel(&page, x, 0, 15);
115                         mxPutPixel(x, gvar.video.page[0].height-1, 15);
116                         }
117                 for (int y = 0; y < VH; ++y)
118                         {
119                                 mxPutPixel(0, y, 15);
120                                 mxPutPixel(gvar.video.page[0].width-1, y, 15);
121                         }
122                 for (int x = 0; x < VW; ++x)
123                         {
124                                 mxPutPixel(x, 0, 15);
125                                 mxPutPixel(x, VH-1, 15);
126                         }
127                 for (int y = 240; y < VH; ++y)
128                         {
129                                 mxPutPixel(0, y, 15);
130                                 mxPutPixel(VW-1, y, 15);
131                         }*/
132                 pdump(&gvar.video.page[0]);
133                 getch();
134                 //text box
135                 /*++++mxBitBlt(xpos, ypos+(TILEWH*12), gvar.video.page[0].width, TILEWH*BUFFMX, 0, BS); //copy background
136                 mxFillBox(xpos, ypos+(TILEWH*12), gvar.video.page[0].width, TILEWH*BUFFMX, 0, OP_SET); // background for text box
137                 //+(QUADWH*6)
138                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-48, "========================================");
139                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-40, "|    |Chikyuu:$line1");
140                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-32, "|    |$line2");
141                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-24, "|    |$line3");
142                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-16, "|    |$line4");
143                 mxOutText(xpos+1, ypos+gvar.video.page[0].height-8,  "========================================");
144                 mxFillBox(xpos+QUADWH, ypos+QUADWH+(TILEWH*12), TILEWH*2, TILEWH*2, 9, OP_SET); //portriat~
145                 getch();
146                 mxBitBlt(0, BS, gvar.video.page[0].width, TILEWH*BUFFMX, xpos, ypos+(TILEWH*12)); //copy background
147                 getch();++++*/
148                 while(!kbhit())
149                 {
150                         //for(int i=0;i<TILEWH;i++){
151                                 ding(&gvar.video.page[0], &bakapee, key);
152                                 modexPanPage(&gvar.video.page[0], xpos, ypos);
153 //++++mxFillBox(384, 304, 384, 304, 10, OP_SET);
154 //mxBitBlt(xpos, ypos, gvar.video.page[0].width, gvar.video.page[0].height, 32, (gvar.video.page[0].height+64+32));
155 //++++mxBitBlt(TILEWH*2, TILEWH*2, gvar.video.page[0].width, gvar.video.page[0].height, 32, (gvar.video.page[0].height+64+32));
156                                 //for(word o = 0; o<TILEWH; o++){
157                                         xpos+=xdir;
158                                         ypos+=ydir;
159                                         //if(ypos==1 || (ypos==(BH-gvar.video.page[0].height-1)))delay(500);
160                                         //if((xpos>(VW-gvar.video.page[0].width-1)) || (xpos<1))delay(500);
161                                         //mxWaitRetrace();
162 //mxBitBlt(32, (gvar.video.page[0].height+32), gvar.video.page[0].width, gvar.video.page[0].height, xpos, ypos);
163 //++++mxBitBlt(TILEWH*2, (gvar.video.page[0].height+64+32), gvar.video.page[0].width, gvar.video.page[0].height, TILEWH*2, TILEWH*2);
164 //xpos=ypos=TILEWH*2;
165                                         //????modexPanPage(&gvar.video.page[0], 32, 32);
166                                 //}
167                                 if( (xpos>(VW-gvar.video.page[0].width-1))  || (xpos<1)){xdir=-xdir;}
168                                 if( (ypos>(BH-gvar.video.page[0].height-1)) || (ypos<1)){ydir=-ydir;} // { Hit a boundry, change
169                         //}//    direction!
170 //mxBitBlt(32, (gvar.video.page[0].height+64+32), gvar.video.page[0].width, gvar.video.page[0].height, xpos, ypos);
171 //mxBitBlt(TILEWH*2, (gvar.video.page[0].height+64+32), gvar.video.page[0].width, gvar.video.page[0].height, TILEWH*2, TILEWH*2);
172                 }
173         ch=getch();
174         if(ch==0x71)break; // 'q'
175         if(ch==0x1b)break; // 'ESC'
176         }
177 //      VGAmodeX(0, &gvar);
178 #endif
179         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");
180 }
181 //pee!