mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 19:10:21 +00:00
73 lines
1.3 KiB
C++
73 lines
1.3 KiB
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "Snapshotable.h"
|
|
|
|
class Vrc6Pulse: public Snapshotable
|
|
{
|
|
private:
|
|
uint8_t _volume = 0;
|
|
uint8_t _dutyCycle = 0;
|
|
bool _ignoreDuty = false;
|
|
uint16_t _frequency = 1;
|
|
bool _enabled = false;
|
|
|
|
int32_t _timer = 1;
|
|
uint8_t _step = 0;
|
|
uint8_t _frequencyShift = 0;
|
|
|
|
void StreamState(bool saving)
|
|
{
|
|
Stream(_volume, _dutyCycle, _ignoreDuty, _frequency, _enabled, _timer, _step, _frequencyShift);
|
|
}
|
|
|
|
public:
|
|
void WriteReg(uint16_t addr, uint8_t value)
|
|
{
|
|
switch(addr & 0x03) {
|
|
case 0:
|
|
_volume = value & 0x0F;
|
|
_dutyCycle = (value & 0x70) >> 4;
|
|
_ignoreDuty = (value & 0x80) == 0x80;
|
|
break;
|
|
|
|
case 1:
|
|
_frequency = (_frequency & 0x0F00) | value;
|
|
break;
|
|
|
|
case 2:
|
|
_frequency = (_frequency & 0xFF) | ((value & 0x0F) << 8);
|
|
_enabled = (value & 0x80) == 0x80;
|
|
if(!_enabled) {
|
|
_step = 0;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
void SetFrequencyShift(uint8_t shift)
|
|
{
|
|
_frequencyShift = shift;
|
|
}
|
|
|
|
void Clock()
|
|
{
|
|
if(_enabled) {
|
|
_timer--;
|
|
if(_timer == 0) {
|
|
_step = (_step + 1) & 0x0F;
|
|
_timer = (_frequency >> _frequencyShift) + 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
uint8_t GetVolume()
|
|
{
|
|
if(!_enabled) {
|
|
return 0;
|
|
} else if(_ignoreDuty) {
|
|
return _volume;
|
|
} else {
|
|
return _step <= _dutyCycle ? _volume : 0;
|
|
}
|
|
}
|
|
}; |