Merge branch 'tunsweep'
[gbajam21] / src / gamescr.c
1 #include <stdlib.h>
2 #include <string.h>
3 #include "gbaregs.h"
4 #include "game.h"
5 #include "dma.h"
6 #include "data.h"
7 #include "util.h"
8 #include "intr.h"
9 #include "input.h"
10 #include "sprite.h"
11 #include "debug.h"
12
13 static void draw_tunnel(void);
14 static void vblank(void);
15
16 static int nframes, backbuf;
17 static uint16_t *vram[] = { (uint16_t*)VRAM_LFB_FB0_ADDR, (uint16_t*)VRAM_LFB_FB1_ADDR };
18 static unsigned char *tex;
19 static uint16_t bnstate;
20
21 #define MAX_SPR         4
22 static uint16_t oam[4 * MAX_SPR];
23
24 static short x = 120, y = 80;
25 static unsigned char rot;
26
27 static int32_t tunrot;
28 static int32_t tunmat[4], tunx, tuny;
29
30 void gamescr(void)
31 {
32         int i;
33         int32_t scale;
34         uint16_t *cdst;
35         unsigned char *csrc;
36
37         REG_DISPCNT = 4 | DISPCNT_BG2 | DISPCNT_OBJ | DISPCNT_FB1;
38
39         vblperf_setcolor(0xff);
40
41         /* sprite setup */
42         spr_setup(16, 16, spr_game_pixels, spr_game_cmap);
43
44         wait_vblank();
45         spr_clear();
46         spr_oam_clear(oam, 0);
47         spr_oam_clear(oam, 1);
48         spr_oam_clear(oam, 2);
49         spr_oam_clear(oam, 3);
50
51         cdst = (uint16_t*)CRAM_BG_ADDR;
52         csrc = tuncross_cmap;
53         for(i=0; i<256; i++) {
54                 *cdst++ = CONV_RGB24_RGB15(csrc[0], csrc[1], csrc[2]);
55                 csrc += 3;
56         }
57
58         fillblock_16byte(vram[0], 0xffffffff, 240 * 160 / 16);
59         fillblock_16byte(vram[1], 0xffffffff, 240 * 160 / 16);
60
61         tex = iwram_sbrk(32 * 32);
62         memcpy(tex, tuncross_pixels, 32 * 32);
63
64         scale = 0x100;//230;
65         REG_BG2PA = scale;
66         REG_BG2PB = 0;
67         REG_BG2PC = 0;
68         REG_BG2PD = scale;
69         REG_BG2X = (120 << 8) - scale * 120;
70         REG_BG2Y = (80 << 8) - scale * 80;
71
72         /*select_input(BN_DPAD);*/
73
74         mask(INTR_VBLANK);
75         screen_vblank = vblank;
76         unmask(INTR_VBLANK);
77
78         nframes = 0;
79         for(;;) {
80                 backbuf = ++nframes & 1;
81
82                 bnstate = ~REG_KEYINPUT;
83
84                 draw_tunnel();
85
86                 vblperf_end();
87                 wait_vblank();
88                 present(backbuf);
89                 vblperf_begin();
90         }
91 }
92
93 __attribute__((noinline, target("arm"), section(".iwram")))
94 static void draw_tunnel(void)
95 {
96         int i, j, tx, ty, angle, depth, zoffs, uoffs, flip, tunturn;
97         static int tunsweep;
98         uint16_t pptop, ppbot;
99         uint16_t *top, *bot;
100         uint32_t tun, *tunptr;
101
102         //tunsweep = SIN(nframes) >> 4;
103
104         if((bnstate & BN_RT) && tunsweep > -31) tunsweep--;
105         if((bnstate & BN_LT) && tunsweep < 31) tunsweep++;
106
107         flip = tunsweep < 0;
108         tunturn = abs(tunsweep) & 0x1f;
109
110         zoffs = nframes;
111
112         uoffs = flip ? -nframes : nframes;
113
114         top = vram[backbuf];
115         bot = vram[backbuf] + 159 * 240 / 2;
116         tunptr = tunmap + tunturn * 9600;
117
118         if(flip) {
119                 tunptr += 240/2;
120                 for(i=0; i<80; i++) {
121                         for(j=0; j<240/2; j++) {
122                                 tun = *--tunptr;
123                                 tun = (tun >> 16) | (tun << 16);
124
125                                 angle = tun & 0xff;
126                                 depth = (tun >> 8) & 0xff;
127                                 tx = ~((angle >> 1) - uoffs) & 0x1f;
128                                 ty = ((depth >> 1) + zoffs) & 0x1f;
129                                 pptop = tex[(ty << 5) + tx];
130                                 tx = ((angle >> 1) + uoffs) & 0x1f;
131                                 ppbot = tex[(ty << 5) + tx];
132
133                                 angle = (tun >> 16) & 0xff;
134                                 depth = (tun >> 24) & 0xff;
135                                 tx = ~((angle >> 1) - uoffs) & 0x1f;
136                                 ty = ((depth >> 1) + zoffs) & 0x1f;
137                                 pptop |= (uint16_t)tex[(ty << 5) + tx] << 8;
138                                 tx = ((angle >> 1) + uoffs) & 0x1f;
139                                 ppbot |= (uint16_t)tex[(ty << 5) + tx] << 8;
140
141                                 *top++ = pptop;
142                                 *bot++ = ppbot;
143                         }
144                         bot -= 240;
145                         tunptr += 240;
146                 }
147         } else {
148                 for(i=0; i<80; i++) {
149                         for(j=0; j<240/2; j++) {
150                                 tun = *tunptr++;
151
152                                 angle = tun & 0xff;
153                                 depth = (tun >> 8) & 0xff;
154                                 tx = ((angle >> 1) - uoffs) & 0x1f;
155                                 ty = ((depth >> 1) + zoffs) & 0x1f;
156                                 pptop = tex[(ty << 5) + tx];
157                                 tx = ~((angle >> 1) + uoffs) & 0x1f;
158                                 ppbot = tex[(ty << 5) + tx];
159
160                                 angle = (tun >> 16) & 0xff;
161                                 depth = (tun >> 24) & 0xff;
162                                 tx = ((angle >> 1) - uoffs) & 0x1f;
163                                 ty = ((depth >> 1) + zoffs) & 0x1f;
164                                 pptop |= (uint16_t)tex[(ty << 5) + tx] << 8;
165                                 tx = ~((angle >> 1) + uoffs) & 0x1f;
166                                 ppbot |= (uint16_t)tex[(ty << 5) + tx] << 8;
167
168                                 *top++ = pptop;
169                                 *bot++ = ppbot;
170                         }
171                         bot -= 240;
172                 }
173         }
174 }
175
176 __attribute__((noinline, target("arm"), section(".iwram")))
177 static void vblank(void)
178 {
179         uint16_t bnstate;
180         int16_t mat[4];
181         static short gate_speed;
182
183         bnstate = ~REG_KEYINPUT;
184         if(bnstate & BN_DPAD) {
185                 if(gate_speed < 5) {
186                         gate_speed++;
187                 }
188
189                 if(bnstate & BN_LEFT) x -= gate_speed;
190                 if(bnstate & BN_RIGHT) x += gate_speed;
191                 if(bnstate & BN_UP) y -= gate_speed;
192                 if(bnstate & BN_DOWN) y += gate_speed;
193
194                 if(x < 0) x = 0;
195                 if(x > 239) x = 239;
196                 if(y < 0) y = 0;
197                 if(y > 159) y = 159;
198         } else {
199                 gate_speed = 0;
200         }
201
202         if(bnstate & BN_A) rot -= 2;
203         if(bnstate & BN_B) rot += 2;
204
205
206         spr_oam(oam, 0, 512 + 256, x - 64, y - 64, SPR_256COL | SPR_SZ64 | SPR_DBLSZ |
207                         SPR_ROTSCL | SPR_ROTSCL_SEL(0));
208
209         mat[0] = COS(rot);
210         mat[1] = -SIN(rot);
211         mat[2] = SIN(rot);
212         mat[3] = COS(rot);
213         spr_transform(oam, 0, mat);
214
215
216         dma_copy16(3, (void*)OAM_ADDR, oam, sizeof oam / 2, 0);
217 }