mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-13 20:42:24 +00:00
97 lines
1.6 KiB
C++
97 lines
1.6 KiB
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "ApuLengthCounter.h"
|
|
|
|
class ApuEnvelope : public ApuLengthCounter
|
|
{
|
|
private:
|
|
bool _constantVolume = false;
|
|
uint8_t _volume = 0;
|
|
|
|
uint8_t _envelopeCounter = 0;
|
|
|
|
bool _start = false;
|
|
int8_t _divider = 0;
|
|
uint8_t _counter = 0;
|
|
|
|
protected:
|
|
ApuEnvelope(AudioChannel channel, SoundMixer* mixer) : ApuLengthCounter(channel, mixer)
|
|
{
|
|
}
|
|
|
|
void InitializeEnvelope(uint8_t regValue)
|
|
{
|
|
_constantVolume = (regValue & 0x10) == 0x10;
|
|
_volume = regValue & 0x0F;
|
|
}
|
|
|
|
void ResetEnvelope()
|
|
{
|
|
_start = true;
|
|
}
|
|
|
|
uint32_t GetVolume()
|
|
{
|
|
if(_lengthCounter > 0) {
|
|
if(_constantVolume) {
|
|
return _volume;
|
|
} else {
|
|
return _counter;
|
|
}
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
public:
|
|
virtual void Reset(bool softReset) override
|
|
{
|
|
ApuLengthCounter::Reset(softReset);
|
|
|
|
_constantVolume = false;
|
|
_volume = 0;
|
|
_envelopeCounter = 0;
|
|
_start = false;
|
|
_divider = 0;
|
|
_counter = 0;
|
|
}
|
|
|
|
virtual void StreamState(bool saving) override
|
|
{
|
|
ApuLengthCounter::StreamState(saving);
|
|
|
|
Stream(_constantVolume, _volume, _envelopeCounter, _start, _divider, _counter);
|
|
}
|
|
|
|
void TickEnvelope()
|
|
{
|
|
if(!_start) {
|
|
_divider--;
|
|
if(_divider < 0) {
|
|
_divider = _volume;
|
|
if(_counter > 0) {
|
|
_counter--;
|
|
} else if(_lengthCounterHalt) {
|
|
_counter = 15;
|
|
}
|
|
}
|
|
} else {
|
|
_start = false;
|
|
_counter = 15;
|
|
_divider = _volume;
|
|
}
|
|
}
|
|
|
|
ApuEnvelopeState GetState()
|
|
{
|
|
ApuEnvelopeState state;
|
|
state.ConstantVolume = _constantVolume;
|
|
state.Counter = _counter;
|
|
state.Divider = _divider;
|
|
state.Loop = _lengthCounterHalt;
|
|
state.StartFlag = _start;
|
|
state.Volume = _volume;
|
|
return state;
|
|
}
|
|
};
|