-
Notifications
You must be signed in to change notification settings - Fork 11
/
MKPAL.C
455 lines (329 loc) · 9.56 KB
/
MKPAL.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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/******************************************************************************
File: mkpal.c
Date: August 1994
(C) Williams Entertainment
Mortal Kombat III Palette Routines
******************************************************************************/
/* INCLUDES */
#include "system.h"
#ifdef SONY_PSX
#include "mksony.h"
#endif /* SONY_PSX */
#include "mkbkgd.h"
#include "mkos.h"
#include "mkpal.h"
/******************************************************************************
Function: void init_paltrans_queue(void)
By: David Schwartz
Date: Sept 1994
Parameters: None
Returns: None
Description: initialize the queue for palette transfers
******************************************************************************/
inline void init_paltrans_queue(void)
{
paltrans_start=paltrans_end=paltrans_queue; /* set empty queue (start=end=qstart) */
return;
}
/******************************************************************************
Function: WORD findpal(WORD *pal_id)
By: David Schwartz
Date: Sept 1994
Parameters: pal_id - pal id to find
Returns: color pal # the pal_id is using
0xffff - pal not found
Description: find the color map # to which the given palette is assigned
******************************************************************************/
WORD findpal(WORD *pal_id)
{
WORD l;
for (l=0;l<NUM_PALS;l++)
if (palram[l].palid==pal_id)
return(l);
return(UNKNOWN_PAL);
}
/******************************************************************************
Function: void clear_pal(void)
By: David Schwartz
Date: Sept 1994
Parameters: None
Returns: None
Description: clear out palette allocation ram
******************************************************************************/
void clear_pal(void)
{
init_paltrans_queue();
clear_fore_pal();
clear_back_pal();
#if DEBUG
usefpcnt=usebpcnt=0;
#endif
return;
}
/******************************************************************************
Function: void clear_fore_pal(void)
By: David Schwartz
Date: Sept 1994
Parameters: None
Returns: None
Description: clear out foreground palette map ram
******************************************************************************/
void clear_fore_pal(void)
{
int l;
for (l=0;l<NUM_F_PALS;l++)
memset(fpalram+l,0,sizeof(PALINFO));
return;
}
/******************************************************************************
Function: void clear_back_pal(void)
By: David Schwartz
Date: Sept 1994
Parameters: None
Returns: None
Description: clear out background palette map ram
******************************************************************************/
void clear_back_pal(void)
{
int l;
for (l=0;l<NUM_B_PALS;l++)
memset(bpalram+l,0,sizeof(PALINFO));
return;
}
/******************************************************************************
Function: void palset_xfer(WORD,WORD,WORD *)
By: David Schwartz
Date: Sept 1994
Parameters: cx - vram x addr
cy - vram y addr
clut - ptr to CLUT data
Returns: the clut # that this entry uses
Description: add a palette transfer to queue
******************************************************************************/
void palset_xfer(WORD cx,WORD cy,WORD *clut)
{
paltrans_end->csx=cx;
paltrans_end->csy=cy;
paltrans_end->count=GET_LONG(clut)++;
paltrans_end->csrc=(ADDRESS *)clut;
paltrans_end=((paltrans_end+1)==paltrans_queue+PALQ_MAX_ENTRY) ? paltrans_queue:paltrans_end+1;
return;
}
/******************************************************************************
Function: WORD get_fore_pal(WORD *pal_id)
By: David Schwartz
Date: Sept 1994
Parameters: pal_id - ptr to CLUT data
Returns: the clut # that this entry uses
Description: allocate a palette for the incoming CLUT (FOREGROUNDS)
******************************************************************************/
WORD get_fore_pal(WORD *pal_id)
{
PALINFO *palptr;
short l=0;
WORD cx,cy;
palptr=palram;
/* search, if id already exists in palette maps */
while (l<NUM_PALS)
{
if (palptr->palid==pal_id)
{
palptr->palcnt++; /* inc # of objects using this palette */
return(getClut((FORE_CLUT_START_X+((l%CLUT_FACTOR)<<CLUT_SHIFT_SIZE)),(FORE_CLUT_START_Y+(l/CLUT_FACTOR))));
}
palptr++;
l++;
}
/* find a spare palette */
l=0;
palptr=fpalram;
while (l<NUM_F_PALS)
{
if (palptr->palcnt==0 && (palptr->paltime==0 || palptr->paltime!=tick))
{
//setup palette transfer
palset_xfer((cx=FORE_CLUT_START_X+((l%CLUT_FACTOR)<<CLUT_SHIFT_SIZE)),(cy=FORE_CLUT_START_Y+(l/CLUT_FACTOR)),pal_id);
palptr->palcnt++; /* inc # of objects using this palette */
palptr->palid=pal_id; /* set id */
#if DEBUG
usefpcnt++;
#endif
return(getClut(cx,cy));
}
l++;
palptr++;
}
#if DEBUG
while (1)
{
POLLING;
}
#endif
return(0); /* no available palettes */
}
/******************************************************************************
Function: WORD get_back_pal(WORD *pal_id)
By: David Schwartz
Date: Sept 1994
Parameters: clut - ptr to CLUT data
Returns: the clut # that this entry uses
Description: allocate a palette for the incoming CLUT (BACKGROUNDS)
******************************************************************************/
WORD get_back_pal(WORD *pal_id)
{
PALINFO *palptr;
WORD l=0;
WORD cx,cy;
palptr=palram;
/* search, if id already exists in palette maps */
while (l<NUM_PALS)
{
if (palptr->palid==pal_id)
{
palptr->palcnt++; /* inc # of objects using this palette */
return(getClut((FORE_CLUT_START_X+((l%CLUT_FACTOR)<<CLUT_SHIFT_SIZE)),(FORE_CLUT_START_Y+(l/CLUT_FACTOR))));
}
palptr++;
l++;
}
/* find a spare palette */
l=0;
palptr=bpalram;
while (l<NUM_B_PALS)
{
if (palptr->palcnt==0 && (palptr->paltime==0 ||palptr->paltime!=tick))
{
//setup palette transfer
palset_xfer((cx=FORE_CLUT_START_X+(((NUM_F_PALS+l)%CLUT_FACTOR)<<CLUT_SHIFT_SIZE)),(cy=FORE_CLUT_START_Y+((NUM_F_PALS+l)/CLUT_FACTOR)),pal_id);
palptr->palcnt++; /* inc # of objects using this palette */
palptr->palid=pal_id; /* set id */
#if DEBUG
usebpcnt++;
#endif
return(getClut(cx,cy));
}
l++;
palptr++;
}
return(get_fore_pal(pal_id));
#if 0
while (1)
{
POLLING;
}
#endif
return(0); /* no available palettes */
}
/******************************************************************************
Function: void free_pal(WORD clut_id)
By: David Schwartz
Date: Sept 1994
Parameters: clut_id - clut id to free
Returns: None
Description: free a palette
******************************************************************************/
void free_pal(WORD clut_id)
{
short l;
PALINFO *palptr;
/* convert clut id into palram index */
l=(clut_id-getClut(FORE_CLUT_START_X,FORE_CLUT_START_Y))>>CLUT_ID_SHIFT;
if (l>=NUM_PALS) LOCKUP;
palptr=palram+l;
switch (palptr->palcnt)
{
case 0:
LOCKUP;
break;
case 1:
palptr->paltime=tick; /* remember ticked freed, since can't allocate same tick */
#if DEBUG
if (l<NUM_F_PALS)
usefpcnt--;
else usebpcnt--;
#endif
default:
palptr->palcnt--;
}
return;
}
/******************************************************************************
Function: void unget_pal(WORD clut_id)
By: David Schwartz
Date: Sept 1994
Parameters: clut_id - clut id to free
Returns: None
Description: clears out a palettes allocation count
******************************************************************************/
void unget_pal(WORD clut_id)
{
short l;
PALINFO *palptr;
/* convert clut id into palram index */
l=(clut_id-getClut(FORE_CLUT_START_X,FORE_CLUT_START_Y))>>CLUT_ID_SHIFT;
if (l>=NUM_PALS) LOCKUP;
palptr=palram+l;
if (palptr->palcnt>0)
palptr->paltime=tick; /* remember ticked freed, since can't allocate same tick */
palptr->palcnt=0;
#if DEBUG
if (l<NUM_F_PALS)
usefpcnt--;
else usebpcnt--;
#endif
return;
}
/******************************************************************************
Function: void blow_pal(WORD *pal_id)
By: David Schwartz
Date: Sept 1994
Parameters: clut_id - clut id to free
Returns: None
Description: zero out the address and color count of a palette map entry
******************************************************************************/
void blow_pal(WORD *pal_id)
{
short l=0;
PALINFO *palptr=palram;
/* find entry to blow up */
while (l<NUM_PALS)
{
if (palptr->palid==pal_id)
{
palptr->palcnt=0; /* kill count */
palptr->palid=0; /* kill id */
#if DEBUG
if (l<NUM_F_PALS)
usefpcnt--;
else usebpcnt--;
#endif
return;
}
palptr++;
l++;
}
return;
}
/******************************************************************************
Function: void transfer_palettes(void)
By: David Schwartz
Date: Sept 1994
Parameters: None
Returns: None
Description: transfers all palettes in queue
******************************************************************************/
void transfer_palettes(void)
{
RECT frame;
frame.h=1;
while (paltrans_start != paltrans_end)
{
frame.x=paltrans_start->csx;
frame.y=paltrans_start->csy;
frame.w=paltrans_start->count;
LOADIMAGE(&frame,paltrans_start->csrc);
if ((++paltrans_start)==(paltrans_queue+PALQ_MAX_ENTRY)) /* wrap ptr if needed */
paltrans_start=paltrans_queue;
}
return;
}