-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsprites.c
350 lines (293 loc) · 6.52 KB
/
sprites.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/* Jedi/Sector One */
#include "ping.h"
#include "spr_dsp.h"
void sprite_normRaq(unsigned char *where, const int deca)
{
#include "inc/normraq.inc"
}
void sprite_bigRaq(unsigned char *where, const int deca)
{
#include "inc/bigraq.inc"
}
void sprite_horiRaq(unsigned char *where, const int deca)
{
#include "inc/horiraq.inc"
}
#if BONI_SUPPORT
void sprite_bonus0(unsigned char *where, const int deca)
{
#include "inc/bonus0.inc"
}
void sprite_bonus1(unsigned char *where, const int deca)
{
#include "inc/bonus1.inc"
}
void sprite_bonus2(unsigned char *where, const int deca)
{
#include "inc/bonus2.inc"
}
void sprite_bonus3(unsigned char *where, const int deca)
{
#include "inc/bonus3.inc"
}
#if ALLBONI_SUPPORT
void sprite_bonus4(unsigned char *where, const int deca)
{
#include "inc/bonus4.inc"
}
void sprite_bonus5(unsigned char *where, const int deca)
{
#include "inc/bonus5.inc"
}
#endif
void sprite_bonus6(unsigned char *where, const int deca)
{
#include "inc/bonus6.inc"
}
void sprite_bonus7(unsigned char *where, const int deca)
{
#include "inc/bonus7.inc"
}
#if ALLBONI_SUPPORT
void sprite_bonus8(unsigned char *where, const int deca)
{
#include "inc/bonus8.inc"
}
#endif
void sprite_bonus9(unsigned char *where, const int deca)
{
#include "inc/bonus9.inc"
}
void sprite_bonus10(unsigned char *where, const int deca)
{
#include "inc/bonus10.inc"
}
void sprite_bonus11(unsigned char *where, const int deca)
{
#include "inc/bonus11.inc"
}
void sprite_bonus12(unsigned char *where, const int deca)
{
#include "inc/bonus12.inc"
}
void sprite_bonus13(unsigned char *where, const int deca)
{
#include "inc/bonus13.inc"
}
void sprite_bonusback(unsigned char *where, const int deca)
{
#include "inc/bonusbck.inc"
}
void sprite_rond0(unsigned char *where, const int deca)
{
#include "inc/rond0.inc"
}
void sprite_rond1(unsigned char *where, const int deca)
{
#include "inc/rond1.inc"
}
void sprite_rond2(unsigned char *where, const int deca)
{
#include "inc/rond2.inc"
}
void sprite_rond3(unsigned char *where, const int deca)
{
#include "inc/rond3.inc"
}
void sprite_rond4(unsigned char *where, const int deca)
{
#include "inc/rond4.inc"
}
void sprite_rond5(unsigned char *where, const int deca)
{
#include "inc/rond5.inc"
}
void sprite_rond6(unsigned char *where, const int deca)
{
#include "inc/rond6.inc"
}
void sprite_rond7(unsigned char *where, const int deca)
{
#include "inc/rond7.inc"
}
void sprite_rond8(unsigned char *where, const int deca)
{
#include "inc/rond8.inc"
}
void sprite_rond9(unsigned char *where, const int deca)
{
#include "inc/rond9.inc"
}
void sprite_rond10(unsigned char *where, const int deca)
{
#include "inc/rond10.inc"
}
void sprite_rond11(unsigned char *where, const int deca)
{
#include "inc/rond11.inc"
}
void sprite_rond12(unsigned char *where, const int deca)
{
#include "inc/rond12.inc"
}
void sprite_rond13(unsigned char *where, const int deca)
{
#include "inc/rond13.inc"
}
void sprite_rond14(unsigned char *where, const int deca)
{
#include "inc/rond14.inc"
}
void sprite_rond15(unsigned char *where, const int deca)
{
#include "inc/rond15.inc"
}
void sprite_rond16(unsigned char *where, const int deca)
{
#include "inc/rond16.inc"
}
void sprite_rond17(unsigned char *where, const int deca)
{
#include "inc/rond17.inc"
}
void sprite_rond18(unsigned char *where, const int deca)
{
#include "inc/rond18.inc"
}
void sprite_rond19(unsigned char *where, const int deca)
{
#include "inc/rond19.inc"
}
void sprite_rond20(unsigned char *where, const int deca)
{
#include "inc/rond20.inc"
}
void sprite_rond21(unsigned char *where, const int deca)
{
#include "inc/rond21.inc"
}
void sprite_rond22(unsigned char *where, const int deca)
{
#include "inc/rond22.inc"
}
void sprite_rond23(unsigned char *where, const int deca)
{
#include "inc/rond23.inc"
}
void sprite_rond24(unsigned char *where, const int deca)
{
#include "inc/rond24.inc"
}
void sprite_rond25(unsigned char *where, const int deca)
{
#include "inc/rond25.inc"
}
void sprite_rond26(unsigned char *where, const int deca)
{
#include "inc/rond26.inc"
}
void sprite_rond27(unsigned char *where, const int deca)
{
#include "inc/rond27.inc"
}
void sprite_rond28(unsigned char *where, const int deca)
{
#include "inc/rond28.inc"
}
void sprite_rond29(unsigned char *where, const int deca)
{
#include "inc/rond29.inc"
}
void sprite_rond30(unsigned char *where, const int deca)
{
#include "inc/rond30.inc"
}
void sprite_rond31(unsigned char *where, const int deca)
{
#include "inc/rond31.inc"
}
#endif
/* */
#include "spr_load.h"
void load_normRaq(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/normraq.inc"
}
void load_bigRaq(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bigraq.inc"
}
void load_horiRaq(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/horiraq.inc"
}
#if BONI_SUPPORT
void load_bonus0(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus0.inc"
}
void load_bonus1(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus1.inc"
}
void load_bonus2(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus2.inc"
}
void load_bonus3(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus3.inc"
}
#if ALLBONI_SUPPORT
void load_bonus4(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus4.inc"
}
void load_bonus5(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus5.inc"
}
#endif
void load_bonus6(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus6.inc"
}
void load_bonus7(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus7.inc"
}
#if ALLBONI_SUPPORT
void load_bonus8(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus8.inc"
}
#endif
void load_bonus9(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus9.inc"
}
void load_bonus10(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus10.inc"
}
void load_bonus11(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus11.inc"
}
void load_bonus12(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus12.inc"
}
void load_bonus13(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonus13.inc"
}
void load_bonusback(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/bonusbck.inc"
}
void load_rondback(register unsigned char *where, const ptrdiff_t offset)
{
#include "inc/rond0.inc"
}
#endif