mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
78 lines
No EOL
1.6 KiB
C++
78 lines
No EOL
1.6 KiB
C++
#pragma once
|
|
#include "NES/APU/BaseExpansionAudio.h"
|
|
#include "NES/Mappers/Audio/Vrc6Pulse.h"
|
|
#include "NES/Mappers/Audio/Vrc6Saw.h"
|
|
#include "NES/APU/NesApu.h"
|
|
#include "NES/NesConsole.h"
|
|
#include "Utilities/Serializer.h"
|
|
|
|
class Vrc6Audio : public BaseExpansionAudio
|
|
{
|
|
private:
|
|
Vrc6Pulse _pulse1;
|
|
Vrc6Pulse _pulse2;
|
|
Vrc6Saw _saw;
|
|
bool _haltAudio = false;
|
|
int32_t _lastOutput = 0;
|
|
|
|
protected:
|
|
void Serialize(Serializer& s) override
|
|
{
|
|
SV(_pulse1);
|
|
SV(_pulse2);
|
|
SV(_saw);
|
|
SV(_lastOutput);
|
|
SV(_haltAudio);
|
|
}
|
|
|
|
void ClockAudio() override
|
|
{
|
|
if(!_haltAudio) {
|
|
_pulse1.Clock();
|
|
_pulse2.Clock();
|
|
_saw.Clock();
|
|
}
|
|
|
|
int32_t outputLevel = _pulse1.GetVolume() + _pulse2.GetVolume() + _saw.GetVolume();
|
|
_console->GetApu()->AddExpansionAudioDelta(AudioChannel::VRC6, (outputLevel - _lastOutput) * 15);
|
|
_lastOutput = outputLevel;
|
|
}
|
|
|
|
public:
|
|
Vrc6Audio(NesConsole* console) : BaseExpansionAudio(console)
|
|
{
|
|
Reset();
|
|
}
|
|
|
|
void Reset()
|
|
{
|
|
_lastOutput = 0;
|
|
_haltAudio = false;
|
|
}
|
|
|
|
void WriteRegister(uint16_t addr, uint8_t value)
|
|
{
|
|
switch(addr & 0xF003) {
|
|
case 0x9000: case 0x9001: case 0x9002:
|
|
_pulse1.WriteReg(addr, value);
|
|
break;
|
|
|
|
case 0x9003: {
|
|
_haltAudio = (value & 0x01) == 0x01;
|
|
uint8_t frequencyShift = (value & 0x04) == 0x04 ? 8 : ((value & 0x02) == 0x02 ? 4 : 0);
|
|
_pulse1.SetFrequencyShift(frequencyShift);
|
|
_pulse2.SetFrequencyShift(frequencyShift);
|
|
_saw.SetFrequencyShift(frequencyShift);
|
|
break;
|
|
}
|
|
|
|
case 0xA000: case 0xA001: case 0xA002:
|
|
_pulse2.WriteReg(addr, value);
|
|
break;
|
|
|
|
case 0xB000: case 0xB001: case 0xB002:
|
|
_saw.WriteReg(addr, value);
|
|
break;
|
|
}
|
|
}
|
|
}; |