c0e249e993
This reverts commitdaf3b57e89
, reversing changes made to7a6e0b7d77
.
44 lines
No EOL
934 B
C++
44 lines
No EOL
934 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "PcmReader.h"
|
|
#include "../Utilities/ISerializable.h"
|
|
#include "../Utilities/VirtualFile.h"
|
|
|
|
class Spc;
|
|
|
|
class Msu1 final : public ISerializable
|
|
{
|
|
private:
|
|
Spc * _spc;
|
|
PcmReader _pcmReader;
|
|
uint8_t _volume = 100;
|
|
uint16_t _trackSelect = 0;
|
|
uint32_t _tmpDataPointer = 0;
|
|
uint32_t _dataPointer = 0;
|
|
string _romName;
|
|
string _romFolder;
|
|
string _trackPath;
|
|
|
|
bool _repeat = false;
|
|
bool _paused = false;
|
|
bool _audioBusy = false; //Always false
|
|
bool _dataBusy = false; //Always false
|
|
bool _trackMissing = false;
|
|
|
|
ifstream _dataFile;
|
|
uint32_t _dataSize;
|
|
|
|
void LoadTrack(uint32_t startOffset = 8);
|
|
|
|
public:
|
|
Msu1(VirtualFile romFile, Spc* spc);
|
|
|
|
static Msu1* Init(VirtualFile romFile, Spc* spc);
|
|
|
|
void Write(uint16_t addr, uint8_t value);
|
|
uint8_t Read(uint16_t addr);
|
|
|
|
void MixAudio(int16_t *buffer, size_t sampleCount, uint32_t sampleRate);
|
|
|
|
void Serialize(Serializer &s);
|
|
}; |