summaryrefslogtreecommitdiff
path: root/plugins/gme/game-music-emu-0.6pre/gme/Ym2413_Emu.cpp
blob: 99fb407c50bce9ae842de3768541166e49b3f810 (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
// Game_Music_Emu 0.5.5. http://www.slack.net/~ant/

#include "Ym2413_Emu.h"
#include "ym2413.h"

Ym2413_Emu::Ym2413_Emu() { opll = 0; }

Ym2413_Emu::~Ym2413_Emu()
{
	if ( opll ) ym2413_shutdown( opll );
}

int Ym2413_Emu::set_rate( double sample_rate, double clock_rate )
{
	if ( opll )
	{
		ym2413_shutdown( opll );
		opll = 0;
	}
	
	opll = ym2413_init( clock_rate, sample_rate, 0 );
	if ( !opll )
		return 1;
	
	reset();
	return 0;
}

void Ym2413_Emu::reset()
{
	ym2413_reset_chip( opll );
	ym2413_set_mask( opll, 0 );
}

void Ym2413_Emu::write( int addr, int data )
{
	ym2413_write( opll, 0, addr );
	ym2413_write( opll, 1, data );
}

void Ym2413_Emu::mute_voices( int mask )
{
	ym2413_set_mask( opll, mask );
}

void Ym2413_Emu::run( int pair_count, sample_t* out )
{
	SAMP bufMO[ 1024 ];
	SAMP bufRO[ 1024 ];
	SAMP * buffers[2] = { bufMO, bufRO };

	while (pair_count > 0)
	{
		int todo = pair_count;
		if (todo > 1024) todo = 1024;
		ym2413_update_one( opll, buffers, todo );

		for (int i = 0; i < todo; i++)
		{
			int output = bufMO [i];
			output += bufRO [i];
			if ( (short)output != output ) output = 0x7FFF ^ ( output >> 31 );
			out [0] = output;
			out [1] = output;
			out += 2;
		}

		pair_count -= todo;
	}
}