summaryrefslogtreecommitdiff
path: root/plugins/ao/eng_psf/eng_spu.c
blob: dbda70acc0c790bc73429f0b37ed86094111e750 (plain)
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
/*
	Audio Overload SDK - SPU file format engine

	Copyright (c) 2007 R. Belmont and Richard Bannister.

	All rights reserved.

	Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

	* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
	* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
	* Neither the names of R. Belmont and Richard Bannister nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
	"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
	LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
	A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
	CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
	EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
	PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
	PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
	LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
	NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
	SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

//
// eng_spu.c
//
// Note: support for old-format files is not tested and may not work.  All the rips I could find
//       are in the newer format.  Also, CDDA and XA commands do not work - I've not found a rip using them.
//

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#include "ao.h"
#include "eng_protos.h"
#include "cpuintrf.h"
#include "psx.h"
#include "peops/externals.h"
#include "peops/spu.h"
#include "peops/regs.h"

typedef struct {
    uint8 *start_of_file, *song_ptr;
    uint32 cur_tick, cur_event, num_events, next_tick, end_tick;
    int old_fmt;
    char name[128], song[128], company[128];
    char *spu_pOutput;
    mips_cpu_context *mips_cpu;
} spu_synth_t;


static void spu_update (unsigned char* pSound,long lBytes,void *data)
{
    spu_synth_t *s = data;
	memcpy(s->spu_pOutput, pSound, lBytes);
}


void *spu_start(const char *path, uint8 *buffer, uint32 length)
{
    spu_synth_t *s = malloc (sizeof (spu_synth_t));
    memset (s, 0, sizeof (spu_synth_t));

	int i;
	uint16 reg;

	if (strncmp((char *)buffer, "SPU", 3))
	{
		spu_stop (s);
		return NULL;
	}

	s->start_of_file = buffer;

    s->mips_cpu = mips_alloc ();
	SPUinit(s->mips_cpu, spu_update, s);
	SPUopen(s->mips_cpu);
	setlength(s->mips_cpu->spu, ~0, 0);

	// upload the SPU RAM image
	SPUinjectRAMImage(s->mips_cpu, (unsigned short *)&buffer[0]);

	// apply the register image	
	for (i = 0; i < 512; i += 2)
	{
		reg = buffer[0x80000+i] | buffer[0x80000+i+1]<<8;

		SPUwriteRegister(s->mips_cpu, (i/2)+0x1f801c00, reg);
	}

	s->old_fmt = 1;

	if ((buffer[0x80200] != 0x44) || (buffer[0x80201] != 0xac) || (buffer[0x80202] != 0x00) || (buffer[0x80203] != 0x00))
	{
		s->old_fmt = 0;
	}

	if (s->old_fmt)
	{
		s->num_events = buffer[0x80204] | buffer[0x80205]<<8 | buffer[0x80206]<<16 | buffer[0x80207]<<24;

		if (((s->num_events * 12) + 0x80208) > length)
		{
			s->old_fmt = 0;
		}
		else
		{
			s->cur_tick = 0;
		}
	}

	if (!s->old_fmt)
	{
		s->end_tick = buffer[0x80200] | buffer[0x80201]<<8 | buffer[0x80202]<<16 | buffer[0x80203]<<24; 
		s->cur_tick = buffer[0x80204] | buffer[0x80205]<<8 | buffer[0x80206]<<16 | buffer[0x80207]<<24; 
		s->next_tick = s->cur_tick;
	}

	s->song_ptr = &buffer[0x80208];
	s->cur_event = 0;

	strncpy((char *)&buffer[4], s->name, 128);
	strncpy((char *)&buffer[0x44], s->song, 128);
	strncpy((char *)&buffer[0x84], s->company, 128);

	return s;
}

static void spu_tick(spu_synth_t *s)
{
	uint32 time, reg, size;
	uint16 rdata;
	uint8 opcode;

	if (s->old_fmt)
	{
		time = s->song_ptr[0] | s->song_ptr[1]<<8 | s->song_ptr[2]<<16 | s->song_ptr[3]<<24;

		while ((time == s->cur_tick) && (s->cur_event < s->num_events))
		{
			reg = s->song_ptr[4] | s->song_ptr[5]<<8 | s->song_ptr[6]<<16 | s->song_ptr[7]<<24;
			rdata = s->song_ptr[8] | s->song_ptr[9]<<8;

			SPUwriteRegister(s->mips_cpu, reg, rdata);

			s->cur_event++;
			s->song_ptr += 12;

			time = s->song_ptr[0] | s->song_ptr[1]<<8 | s->song_ptr[2]<<16 | s->song_ptr[3]<<24;
		}
	}
	else
	{
		if (s->cur_tick < s->end_tick)
		{
			while (s->cur_tick == s->next_tick)
			{
				opcode = s->song_ptr[0];
				s->song_ptr++;

				switch (opcode)
				{
					case 0:	// write register
						reg = s->song_ptr[0] | s->song_ptr[1]<<8 | s->song_ptr[2]<<16 | s->song_ptr[3]<<24;
						rdata = s->song_ptr[4] | s->song_ptr[5]<<8;

						SPUwriteRegister(s->mips_cpu, reg, rdata);

						s->next_tick = s->song_ptr[6] | s->song_ptr[7]<<8 | s->song_ptr[8]<<16 | s->song_ptr[9]<<24; 
						s->song_ptr += 10;
						break;

					case 1:	// read register
				 		reg = s->song_ptr[0] | s->song_ptr[1]<<8 | s->song_ptr[2]<<16 | s->song_ptr[3]<<24;
						SPUreadRegister(s->mips_cpu, reg);
						s->next_tick = s->song_ptr[4] | s->song_ptr[5]<<8 | s->song_ptr[6]<<16 | s->song_ptr[7]<<24; 
						s->song_ptr += 8;
						break;

					case 2: // dma write
						size = s->song_ptr[0] | s->song_ptr[1]<<8 | s->song_ptr[2]<<16 | s->song_ptr[3]<<24; 
						s->song_ptr += (4 + size);
						s->next_tick = s->song_ptr[0] | s->song_ptr[1]<<8 | s->song_ptr[2]<<16 | s->song_ptr[3]<<24; 
						s->song_ptr += 4;
						break;

					case 3: // dma read
						s->next_tick = s->song_ptr[4] | s->song_ptr[5]<<8 | s->song_ptr[6]<<16 | s->song_ptr[7]<<24; 
						s->song_ptr += 8;
						break;

					case 4: // xa play
						s->song_ptr += (32 + 16384);
						s->next_tick = s->song_ptr[0] | s->song_ptr[1]<<8 | s->song_ptr[2]<<16 | s->song_ptr[3]<<24; 
						s->song_ptr += 4;
						break;

					case 5: // cdda play
						size = s->song_ptr[0] | s->song_ptr[1]<<8 | s->song_ptr[2]<<16 | s->song_ptr[3]<<24; 
						s->song_ptr += (4 + size);
						s->next_tick = s->song_ptr[0] | s->song_ptr[1]<<8 | s->song_ptr[2]<<16 | s->song_ptr[3]<<24; 
						s->song_ptr += 4;
						break;

					default:
						printf("Unknown opcode %d\n", opcode);
						exit(-1);
						break;
				}
			}
		}
		else
		{
//			ao_s->song_done = 1;
		}
	}

	s->cur_tick++;
}

int32 spu_gen(void *handle, int16 *buffer, uint32 samples)
{
    spu_synth_t *s = handle;
	int i, run = 1;

	if (s->old_fmt)
	{
		if (s->cur_event >= s->num_events)
		{
			run = 0;
		}
	}
	else
	{
		if (s->cur_tick >= s->end_tick)
		{
			run = 0;
		}
	}

	if (run)
	{
		for (i = 0; i < samples; i++)
		{
		  	spu_tick(s);
			SPUasync(s->mips_cpu, 384);
		}

		s->spu_pOutput = (char *)buffer;
		SPU_flushboot(s->mips_cpu);
	}
	else
	{
		memset(buffer, 0, samples*2*sizeof(int16));
	}

	return AO_SUCCESS;
}

int32 spu_stop(void *handle)
{
    free (handle);
	return AO_SUCCESS;
}

int32 spu_command(void *handle, int32 command, int32 parameter)
{
    spu_synth_t *s = handle;
	switch (command)
	{
		case COMMAND_GET_MIN:
		case COMMAND_GET_MAX:
		{
			return 0;
		}
		break;
		
		case COMMAND_HAS_PREV:
		case COMMAND_HAS_NEXT:
		case COMMAND_PREV:
		case COMMAND_NEXT:
		case COMMAND_JUMP:
		{
			return AO_FAIL;
		}
		break;
		
		case COMMAND_RESTART:
		{
            printf ("eng_spu restart\n");
            uint8 *buffer = s->start_of_file;
            int i;
            uint16 reg;

            // apply the register image	
            for (i = 0; i < 512; i += 2)
            {
                reg = buffer[0x80000+i] | buffer[0x80000+i+1]<<8;

                SPUwriteRegister(s->mips_cpu, (i/2)+0x1f801c00, reg);
            }

            if (!s->old_fmt)
            {
                s->end_tick = buffer[0x80200] | buffer[0x80201]<<8 | buffer[0x80202]<<16 | buffer[0x80203]<<24; 
                s->cur_tick = buffer[0x80204] | buffer[0x80205]<<8 | buffer[0x80206]<<16 | buffer[0x80207]<<24; 
                s->next_tick = s->cur_tick;
            }

            s->song_ptr = &buffer[0x80208];
            s->cur_event = 0;
			return AO_SUCCESS;
		}
		break;
		
#if VERBOSE
		default:
			printf("Unknown command executed!\n");
			break;
#endif		
	}
	
	return AO_FAIL;
}

int32 spu_fill_info(void *handle, ao_display_info *info)
{
    spu_synth_t *s = handle;
	strcpy(info->title[1], "Game: ");
	sprintf(info->info[1], "%.128s", s->name);
	strcpy(info->title[2], "Song: ");
	sprintf(info->info[2], "%.128s", s->song);
	strcpy(info->title[3], "Company: ");
	sprintf(info->info[3], "%.128s", s->company);

	return AO_SUCCESS;
}