]> 4ch.mooo.com Git - 16.git/blob - src/zcroll.c
something is bothering me very much on the animation part of frame. particularly...
[16.git] / src / zcroll.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 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 \r
23 #include "src/lib/scroll16.h"\r
24 #include "src/lib/16_timer.h"\r
25 #include "src/lib/16render.h"\r
26 #include "src/lib/16_dbg.h"\r
27 \r
28 //bitmap_t p;\r
29 static map_t map;\r
30 map_view_t mv[4];\r
31 float t;\r
32 sword bakapee;\r
33 //debugswitches\r
34 boolean panswitch=0,baka=0;\r
35 //extern boolean pageflipflop=1;\r
36 unsigned int i;\r
37 \r
38 #ifdef FADE\r
39 static word paloffset=0;\r
40 byte *dpal;\r
41 #endif\r
42 byte *gpal;\r
43 byte *ptr;\r
44 memptr pal;\r
45 \r
46 void main(int argc, char *argv[])\r
47 {\r
48         static global_game_variables_t gvar;\r
49         static player_t player[MaxPlayers];\r
50         if(argv[1]) bakapee = atoi(argv[1]);\r
51         else bakapee = 1;\r
52 \r
53         Startup16(&gvar);\r
54 \r
55         gvar.video.panp=0;\r
56 \r
57         // OK, this one takes hellova time and needs to be done in farmalloc or MM_...\r
58         //IN CA i think you use CAL_SetupGrFile but i do think we should work together on this part --sparky4\r
59         //player[0].ent = malloc(sizeof(entity_t));\r
60         player[0].enti.spri = malloc(sizeof(struct sprite));\r
61         player[0].enti.spri->spritesheet = malloc(sizeof(struct vrs_container));\r
62 \r
63         // create the map\r
64 //      fprintf(stderr, "testing map load~      ");\r
65         loadmap("data/test.map", &map);\r
66         chkmap(&map, 0);\r
67 //      printf("chkmap ok       ");\r
68 //      fprintf(stderr, "yay map loaded~~\n");\r
69 \r
70         // data\r
71         read_vrs(&gvar, "data/spri/chikyuu.vrs", player[0].enti.spri->spritesheet);\r
72         PCXBMP = bitmapLoadPcx("data/chikyuu.pcx", &gvar); // load sprite\r
73 \r
74         // input!\r
75         IN_Default(0, &player,ctrl_Keyboard1);\r
76 \r
77         // save the palette\r
78 #ifdef FADE\r
79         dpal = modexNewPal();\r
80         modexPalSave(dpal);\r
81         modexFadeOff(4, dpal);\r
82 #endif\r
83 \r
84         VGAmodeX(bakapee, 1, &gvar);\r
85 \r
86         /* fix up the palette and everything */\r
87 #ifdef FADE\r
88         modexPalBlack();        //reset the palette~\r
89 #endif\r
90         modexPalUpdate1(&PCXBMP->palette);\r
91 //      CA_LoadFile("data/spri/chikyuu.pal", &pal, &gvar);\r
92 //      modexPalUpdate1(pal);\r
93 #ifdef FADE\r
94         gpal = modexNewPal();\r
95         modexPalSave(gpal);\r
96         modexSavePalFile("data/g.pal", gpal);\r
97         modexPalBlack();        //so player will not see loadings~\r
98 #endif\r
99 \r
100         // setup camera and screen~\r
101         modexHiganbanaPageSetup(&gvar.video);\r
102         ZC_MVSetup(&mv, &map, &gvar);\r
103 \r
104         //renderswitch\r
105         gvar.video.rss=0;\r
106 \r
107         // set up paging\r
108         //TODO: LOAD map data and position the map in the middle of the screen if smaller then screen\r
109         mapGoTo(&mv, 0, 0);\r
110 \r
111         playerXYpos(0, 0, &player, &mv, 0);\r
112         EN_initplayer(&player, 0);\r
113         player[0].enti.spri->x = player[0].enti.x-4;\r
114         player[0].enti.spri->y = player[0].enti.y-16;\r
115 \r
116         player[0].enti.dire=31;\r
117         gvar.video.sprifilei = set_anim_by_id(player[0].enti.spri, player[0].enti.dire);\r
118         //print_anim_ids(player[0].enti.spri);\r
119         if (gvar.video.sprifilei == -1)\r
120         {\r
121 #ifdef FADE\r
122                 modexFadeOff(4, gpal);\r
123 #endif\r
124                 Quit(&gvar, "Wrong");\r
125 #ifdef FADE\r
126                 modexFadeOn(4, dpal);\r
127 #endif\r
128         }\r
129         animate_spri(&(player[0].enti), &gvar.video);\r
130 \r
131         VL_ShowPage(mv[0].page, 0, 0);//modexShowPage(mv[0].page);//!(gvar.video.p)\r
132 #ifdef FADE\r
133         modexFadeOn(4, gpal);\r
134 #endif\r
135         /*strcpy(global_temp_status_text, "press enter for the loop of zcroll\nescape to quit");\r
136         modexprint(&gvar.video.page[0], 144, 72, 1, 7, 0, global_temp_status_text);\r
137         while(!IN_KeyDown(sc_Enter)){ if(IN_KeyDown(sc_Escape)) goto quit; } IN_UserInput(1,1);*///wwww\r
138         while(!IN_KeyDown(sc_Escape))// && player[0].enti.hp>0)\r
139         {\r
140                 shinku(&gvar);\r
141                 //top left corner & bottem right corner of map veiw be set as map edge trigger since maps are actually square\r
142                 //to stop scrolling and have the player position data move to the edge of the screen with respect to the direction\r
143                 //when player[0].tx or player[0].ty == 0 or player[0].tx == 20 or player[0].ty == 15 then stop because that is edge of map and you do not want to walk of the map\r
144 \r
145                 //player movement\r
146                 IN_ReadControl(0, &player);\r
147                 if(!panswitch){\r
148                         //ZC_walk2(player[0].ent, mv);\r
149                         ZC_walk(&mv, &player, 0);\r
150                 }\r
151 \r
152                 //the scripting stuff....\r
153 /*              if(((mv[0].map->data[(player[0].triggerx-1)+(map.width*(player[0].triggery-1))] == 0) && IN_KeyDown(0x1C))||(player[0].tx == 5 && player[0].ty == 5))\r
154                 {\r
155                         short i;\r
156                         for(i=800; i>=400; i--)\r
157                         {\r
158                                 sound(i);\r
159                         }\r
160                         nosound();\r
161                 }\r
162                 if(player[0].enti.q == (TILEWH/(player[0].speed))+1 && player[0].info.dir != 2 && (player[0].triggerx == 5 && player[0].triggery == 5)){ player[0].enti.hp--; }\r
163 */              //debugging binds!\r
164                 if(IN_KeyDown(2)){ modexShowPage(mv[0].page); gvar.video.panp=0; }\r
165                 if(IN_KeyDown(25)){ modexpdump(mv[0].page);\r
166                          IN_UserInput(1,1);\r
167                 }       //p\r
168 \r
169                 if(IN_KeyDown(24)){ modexPalUpdate0(gpal); /*paloffset=0;*/ modexpdump(mv[0].page); IN_UserInput(1,1); } //o\r
170                 if(IN_KeyDown(22)){ modexPalUpdate0(gpal); } //u\r
171 \r
172                 //pan switch\r
173                 //if(IN_KeyDown(88)){panswitch=!panswitch; IN_UserInput(1,1);}  //f12\r
174                 if(IN_KeyDown(87))      //f11\r
175                 {\r
176                         pageflipflop=!pageflipflop;\r
177                         IN_UserInput(1,1);\r
178                 }\r
179                 if(IN_KeyDown(68))      //f10\r
180                 {\r
181                         gvar.kurokku.fpscap=!gvar.kurokku.fpscap;\r
182                         IN_UserInput(1,1);\r
183                 }\r
184                 if(IN_KeyDown(67))      //f9\r
185                 {\r
186                         modexClearRegion(mv[0].page, 0, 0, mv[0].page->width, mv[0].page->height, 2);\r
187                 }\r
188                 if(IN_KeyDown(66))      //f8\r
189                 {\r
190 //                      modexDrawSprite(mv[0].page, 16, 16, &p);\r
191 //                      modexDrawSprite(mv[0].page, 32+72, 16, (player[0].data));\r
192                         switch(i)\r
193                         {\r
194                                 case 11:\r
195                                         i=0;\r
196                                         player[0].enti.spri->x = TILEWH;\r
197                                 default:\r
198                                         i++;\r
199                                         animate_spri(&(player[0].enti), &gvar.video);// player[0].enti.spri->x += 16;\r
200                                 break;\r
201                         }\r
202                 }\r
203                 FUNCTIONKEYFUNCTIONS;\r
204                 if(IN_KeyDown(sc_L)){ modexClearRegion(&gvar.video.page[0], player[0].enti.x, player[0].enti.y, 16, 16, 1); }\r
205 \r
206                 //9\r
207 #ifdef FADE\r
208                 if(IN_KeyDown(10)){ modexPalOverscan(rand()%56); modexPalUpdate1(dpal); IN_UserInput(1,1); }\r
209 #endif\r
210                 if(IN_KeyDown(sc_R)){ modexPalOverscan(rand()%56); } //r\r
211 \r
212                 if((player[0].enti.q==1) && !(player[0].enti.x%TILEWH==0 && player[0].enti.y%TILEWH==0)) break; //incase things go out of sync!\r
213                 player[0].enti.hp = 0;\r
214         }\r
215 \r
216         /* fade back to text mode */\r
217         /* but 1st lets save the game palette~ */\r
218 #ifdef FADE\r
219         modexPalSave(gpal);\r
220         modexSavePalFile("data/g.pal", gpal);\r
221         modexFadeOff(4, gpal);\r
222 #endif\r
223         VGAmodeX(0, 1, &gvar);\r
224         Shutdown16(&gvar);\r
225         printf("\nProject 16 zcroll.exe. This is just a test file!\n");\r
226         printf("version %s\n", VERSION);\r
227         SCROLLEXITMESG;\r
228         WCPU_cpufpumesg();\r
229 #ifdef FADE\r
230         modexFadeOn(4, dpal);\r
231 #endif\r
232 }\r