OSDN Git Service

going to work on bg draw today!
[proj16/16.git] / src / lib / 16_sprit.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/16_sprit.h"\r
24 \r
25 char* get_curr_anim_name(struct sprite *spri)\r
26 {\r
27         // Retrive animation name list\r
28         struct vrs_header far *vrs = spri->spritesheet->vrs_hdr;\r
29         uint32_t far *anim_names_offsets =      (uint32_t far *)\r
30                                                 ((byte far *)vrs +\r
31                                                  vrs->offset_table[VRS_HEADER_OFFSET_ANIMATION_NAME_LIST]);\r
32 \r
33         return (char *)(vrs + anim_names_offsets[spri->curr_anim]);\r
34 }\r
35 \r
36 void init_anim(struct sprite *spri, int anim_index)\r
37 {\r
38         struct vrs_header far *vrs = spri->spritesheet->vrs_hdr;\r
39         uint32_t far *anim_lists_offsets =      (uint32_t far *)\r
40                                                 ((byte far *)vrs +\r
41                                                  vrs->offset_table[VRS_HEADER_OFFSET_ANIMATION_LIST]);\r
42         struct vrs_animation_list_entry_t far *anim_list =      (struct vrs_animation_list_entry_t far *)\r
43                                                                 ((byte far *)vrs +\r
44                                                                  anim_lists_offsets[anim_index]);\r
45 \r
46         // Upon new animation, start from the first sprite in it\r
47         spri->curr_anim = anim_index;\r
48         spri->curr_anim_spri = 0;\r
49         spri->curr_spri_id = anim_list[0].sprite_id;\r
50         spri->delay = anim_list[0].delay;\r
51 \r
52         spri->curr_anim_list = anim_list;\r
53 }\r
54 \r
55 int set_anim_by_id(struct sprite *spri, int anim_id)\r
56 {\r
57         int new_anim_index = 0;\r
58         int iter_id;\r
59         struct vrs_header far *vrs = spri->spritesheet->vrs_hdr;\r
60         // Retruve animation ids list\r
61         uint16_t far *anim_ids =        (uint16_t far *)\r
62                                         ((byte far *)vrs +\r
63                                          vrs->offset_table[VRS_HEADER_OFFSET_ANIMATION_ID_LIST]);\r
64 \r
65         // Loop through animation id untill match or end of list\r
66         while(iter_id = anim_ids[new_anim_index])\r
67         {\r
68                 // Return on successful match\r
69                 if (iter_id == anim_id)\r
70                 {\r
71                         init_anim(spri, new_anim_index);\r
72                         return 0;\r
73                 }\r
74                 new_anim_index++;\r
75         }\r
76         return -1;\r
77 }\r
78 \r
79 void print_anim_ids(struct sprite *spri)\r
80 {\r
81         int new_anim_index = 0;\r
82         int iter_id;\r
83         struct vrs_header far *vrs = spri->spritesheet->vrs_hdr;\r
84         // Retruve animation ids list\r
85         uint16_t far *anim_ids =        (uint16_t far *)\r
86                                         ((byte far *)vrs +\r
87                                          vrs->offset_table[VRS_HEADER_OFFSET_ANIMATION_ID_LIST]);\r
88 \r
89         if(!anim_ids[new_anim_index])\r
90                 return;\r
91         // Loop through animation id untill match or end of list\r
92         while(iter_id = anim_ids[new_anim_index])\r
93         {\r
94                 printf("s%d ", iter_id);\r
95                 new_anim_index++;\r
96         }\r
97 }\r
98 \r
99 void animate_spri(entity_t *enti, video_t *video)\r
100 {\r
101 #define INC_PER_FRAME if(enti->q&1) enti->persist_aniframe++; if(enti->persist_aniframe>4) enti->persist_aniframe = 1;\r
102         const unsigned int offscreen_ofs =      video->page[0].pagesize+video->page[1].pagesize;//(vga_state.vga_stride * vga_state.vga_height);\r
103         const unsigned int pattern_ofs =        0x10000UL - (uint16_t)video->page[2].data;//(vga_state.vga_stride * vga_state.vga_height);\r
104         unsigned int copy_ofs =                 offscreen_ofs;\r
105         unsigned int display_ofs =              0x0000;\r
106         unsigned int i,o,o2; int j;\r
107         int x,y,rx,ry,w,h;\r
108 \r
109         VGA_RAM_PTR omemptr = (VGA_RAM_PTR)video->page[0].data;// save original mem ptr\r
110         x=enti->spri->x;\r
111         y=enti->spri->y;\r
112 \r
113         // Depending on delay, update indices\r
114 //#define FRAME1 modexDrawSpriteRegion(pip[(pip->video->p)].page, x, y, 48, player[pn].enti.dire, 24, 32,       PLAYERBMPDATAPTR);\r
115 //#define FRAME2 modexDrawSpriteRegion(pip[(pip->video->p)].page, x, y, 24, player[pn].enti.dire, 24, 32,       PLAYERBMPDATAPTR); stand\r
116 //#define FRAME3 modexDrawSpriteRegion(pip[(pip->video->p)].page, x, y, 0, player[pn].enti.dire, 24, 32,        PLAYERBMPDATAPTR);\r
117 //#define FRAME4 modexDrawSpriteRegion(pip[(pip->video->p)].page, x, y, 24, player[pn].enti.dire, 24, 32,       PLAYERBMPDATAPTR); stand\r
118 \r
119         /* copy active display (0) to offscreen buffer (0x4000) */\r
120         vga_state.vga_draw_stride_limit = vga_state.vga_draw_stride = vga_state.vga_stride;\r
121         vga_setup_wm1_block_copy();\r
122         vga_wm1_mem_block_copy(copy_ofs,        display_ofs,    vga_state.vga_stride * vga_state.vga_height);\r
123         vga_restore_rm0wm0();\r
124 \r
125         switch(enti->spri->delay)\r
126         {\r
127                 // Delay = 0 means that sprite should loop. Nothing to change here\r
128                 case 0:\r
129                 break;\r
130 \r
131                 // Delay = 1 means that on next time unit sprite should be changed\r
132                 case 1:\r
133                         INC_PER_FRAME\r
134                         enti->spri->curr_anim_spri++;\r
135 \r
136                         // If we hit the end of an animation sequence, restart it\r
137                         if(!(   enti->spri->curr_spri_id = enti->spri->curr_anim_list[enti->spri->curr_anim_spri].sprite_id)){\r
138                                 enti->spri->curr_anim_spri = 0;\r
139                                 enti->spri->curr_spri_id = enti->spri->curr_anim_list[enti->spri->curr_anim_spri].sprite_id;\r
140                         }\r
141                         enti->spri->delay = enti->spri->curr_anim_list[enti->spri->curr_anim_spri].delay;\r
142 \r
143                 // Delay > 1 means that we should not change sprite yet. Decrease delay\r
144                 default:\r
145                         enti->spri->delay--;\r
146                 break;\r
147         }\r
148 \r
149         // Events go here\r
150 \r
151 \r
152 \r
153         // Draw sprite\r
154         j = get_vrl_by_id(enti->spri->spritesheet, enti->spri->curr_spri_id, enti->spri->sprite_vrl_cont);\r
155         if(j < 0)\r
156         {\r
157                 //Quit (gv, "Error retriving required sprite");\r
158                 return;\r
159         }\r
160 \r
161         // render box bounds. y does not need modification, but x and width must be multiple of 4\r
162         if(!video->rss){\r
163         if (x >= enti->overdraww) rx = (x - enti->overdraww) & (~3);\r
164                 else rx = -(video->page[0].dx);\r
165         if (y >= enti->overdrawh) ry = (y - enti->overdrawh);\r
166                 else ry = -(video->page[0].dy);\r
167         h = enti->spri->sprite_vrl_cont->vrl_header->height + enti->overdrawh + y - ry;\r
168         w = (x + enti->spri->sprite_vrl_cont->vrl_header->width + (enti->overdraww*2) + 3 - rx) & (~3) - enti->overdraww;//round up\r
169         if ((rx+w) > video->page[0].width) w = video->page[0].width-rx;\r
170         if ((ry+h) > video->page[0].height) h = video->page[0].height-ry;\r
171 \r
172         // block copy pattern to where we will draw the sprite\r
173         vga_setup_wm1_block_copy();\r
174         o2 = offscreen_ofs;\r
175         o = pattern_ofs + (ry * video->page[0].stridew) + (rx >> 2); // source offscreen                0x10000UL -\r
176         for (i=0;i < h;i++,o += video->page[0].stridew,o2 += (w >> 2)) vga_wm1_mem_block_copy(o2,o,w >> 2);\r
177 \r
178         // must restore Write Mode 0/Read Mode 0 for this code to continue drawing normally\r
179         vga_restore_rm0wm0();\r
180 \r
181         // replace VGA stride with our own and mem ptr. then sprite rendering at this stage is just (0,0)\r
182         vga_state.vga_draw_stride = w >> 2;\r
183         vga_state.vga_graphics_ram = omemptr + offscreen_ofs;\r
184         }else{ rx=ry=w=h=0; vga_state.vga_graphics_ram = (VGA_RAM_PTR)video->page[0].data; }\r
185         vga_state.vga_draw_stride_limit = (video->page[0].width + 3 - x) >> 2;//round up\r
186 \r
187         // then the sprite. note modding ram ptr means we just draw to (x&3,0)\r
188 #ifndef SPRITE\r
189         modexClearRegion(&video->page[0], x, y, 16, 32, 1);\r
190 #else\r
191         draw_vrl1_vgax_modex(\r
192                 x-rx,\r
193                 y-ry,\r
194                 enti->spri->sprite_vrl_cont->vrl_header,\r
195                 enti->spri->sprite_vrl_cont->line_offsets,\r
196                 enti->spri->sprite_vrl_cont->buffer + sizeof(struct vrl1_vgax_header),\r
197                 enti->spri->sprite_vrl_cont->data_size\r
198         );\r
199 #endif\r
200         if(!video->rss){\r
201         // restore ptr\r
202         vga_state.vga_graphics_ram = omemptr;\r
203 \r
204         // block copy to visible RAM from offscreen\r
205         vga_setup_wm1_block_copy();\r
206         o = offscreen_ofs; // source offscreen\r
207         o2 = (ry * video->page[0].stridew) + (rx >> 2); // dest visible (original stride)\r
208         for (i=0;i < h;i++,o += vga_state.vga_draw_stride,o2 += video->page[0].stridew) vga_wm1_mem_block_copy(o2,o,w >> 2);\r
209         // must restore Write Mode 0/Read Mode 0 for this code to continue drawing normally\r
210         vga_restore_rm0wm0();\r
211         }\r
212         // restore stride\r
213         vga_state.vga_draw_stride_limit = vga_state.vga_draw_stride = video->page[0].stridew;\r
214 \r
215         vga_state.vga_graphics_ram = video->omemptr;\r
216 }\r
217 \r
218 \r
219 \r
220 \r