2014-06-22 15:02:04 +00:00
|
|
|
#include <string>
|
2017-02-27 20:57:46 +00:00
|
|
|
#include <mutex>
|
|
|
|
|
2020-10-03 22:25:21 +00:00
|
|
|
#include "Common/File/VFS/VFS.h"
|
2020-10-04 18:48:47 +00:00
|
|
|
#include "Common/UI/Root.h"
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2020-08-15 18:53:08 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2020-10-03 22:25:21 +00:00
|
|
|
#include "Common/Data/Format/RIFF.h"
|
2020-08-15 10:25:39 +00:00
|
|
|
#include "Common/Log.h"
|
2020-08-10 07:12:51 +00:00
|
|
|
#include "Common/Serialize/SerializeFuncs.h"
|
2020-08-15 18:53:08 +00:00
|
|
|
#include "Common/TimeUtil.h"
|
2020-10-05 18:58:33 +00:00
|
|
|
#include "Common/Data/Collections/FixedSizeQueue.h"
|
2014-06-22 15:02:04 +00:00
|
|
|
#include "Core/HW/SimpleAudioDec.h"
|
2015-01-29 13:58:03 +00:00
|
|
|
#include "Core/HLE/__sceAudio.h"
|
2014-06-22 15:02:04 +00:00
|
|
|
#include "GameInfoCache.h"
|
2015-02-23 08:07:34 +00:00
|
|
|
#include "Core/Config.h"
|
2020-08-02 17:44:48 +00:00
|
|
|
#include "UI/BackgroundAudio.h"
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
struct WavData {
|
2020-08-03 09:29:54 +00:00
|
|
|
int num_channels = -1;
|
|
|
|
int sample_rate = -1;
|
|
|
|
int numFrames = -1;
|
|
|
|
int samplesPerSec = -1;
|
|
|
|
int avgBytesPerSec = -1;
|
|
|
|
int raw_offset_loop_start = 0;
|
|
|
|
int raw_offset_loop_end = 0;
|
|
|
|
int loop_start_offset = 0;
|
|
|
|
int loop_end_offset = 0;
|
2020-08-02 19:55:46 +00:00
|
|
|
int codec = 0;
|
2020-08-03 09:29:54 +00:00
|
|
|
int raw_bytes_per_frame = 0;
|
|
|
|
uint8_t *raw_data = nullptr;
|
|
|
|
int raw_data_size = 0;
|
2020-08-02 19:55:46 +00:00
|
|
|
u8 at3_extradata[16];
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
void Read(RIFFReader &riff);
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
~WavData() {
|
2020-08-03 09:29:54 +00:00
|
|
|
free(raw_data);
|
|
|
|
raw_data = nullptr;
|
2020-08-02 19:55:46 +00:00
|
|
|
}
|
|
|
|
};
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
void WavData::Read(RIFFReader &file_) {
|
|
|
|
// If we have no loop start info, we'll just loop the entire audio.
|
2020-08-03 09:29:54 +00:00
|
|
|
raw_offset_loop_start = 0;
|
|
|
|
raw_offset_loop_end = 0;
|
2020-08-02 19:55:46 +00:00
|
|
|
|
|
|
|
if (file_.Descend('RIFF')) {
|
|
|
|
file_.ReadInt(); //get past 'WAVE'
|
|
|
|
if (file_.Descend('fmt ')) { //enter the format chunk
|
|
|
|
int temp = file_.ReadInt();
|
|
|
|
int format = temp & 0xFFFF;
|
|
|
|
switch (format) {
|
|
|
|
case 0xFFFE:
|
|
|
|
codec = PSP_CODEC_AT3PLUS;
|
|
|
|
break;
|
|
|
|
case 0x270:
|
|
|
|
codec = PSP_CODEC_AT3;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
// Raw wave data, no codec
|
|
|
|
codec = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR_LOG(SCEAUDIO, "Unexpected wave format %04x", format);
|
|
|
|
return;
|
|
|
|
}
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
num_channels = temp >> 16;
|
2014-06-22 16:55:14 +00:00
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
samplesPerSec = file_.ReadInt();
|
2020-08-03 09:29:54 +00:00
|
|
|
/*avgBytesPerSec =*/ file_.ReadInt();
|
2016-08-05 17:48:18 +00:00
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
temp = file_.ReadInt();
|
2020-08-03 09:29:54 +00:00
|
|
|
raw_bytes_per_frame = temp & 0xFFFF;
|
2020-08-02 19:55:46 +00:00
|
|
|
|
|
|
|
if (codec == PSP_CODEC_AT3) {
|
|
|
|
// The first two bytes are actually not a useful part of the extradata.
|
|
|
|
// We already read 16 bytes, so make sure there's enough left.
|
|
|
|
if (file_.GetCurrentChunkSize() >= 32) {
|
|
|
|
file_.ReadData(at3_extradata, 16);
|
|
|
|
} else {
|
|
|
|
memset(at3_extradata, 0, sizeof(at3_extradata));
|
2014-06-22 16:55:14 +00:00
|
|
|
}
|
2014-06-22 15:02:04 +00:00
|
|
|
}
|
2020-08-02 19:55:46 +00:00
|
|
|
file_.Ascend();
|
2020-08-15 14:13:24 +00:00
|
|
|
// INFO_LOG(AUDIO, "got fmt data: %i", samplesPerSec);
|
2020-08-02 19:55:46 +00:00
|
|
|
} else {
|
2020-08-15 14:13:24 +00:00
|
|
|
ERROR_LOG(AUDIO, "Error - no format chunk in wav");
|
2020-08-02 19:55:46 +00:00
|
|
|
file_.Ascend();
|
|
|
|
return;
|
|
|
|
}
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
if (file_.Descend('smpl')) {
|
|
|
|
std::vector<u8> smplData;
|
|
|
|
smplData.resize(file_.GetCurrentChunkSize());
|
|
|
|
file_.ReadData(&smplData[0], (int)smplData.size());
|
|
|
|
|
|
|
|
int numLoops = *(int *)&smplData[28];
|
|
|
|
struct AtracLoopInfo {
|
|
|
|
int cuePointID;
|
|
|
|
int type;
|
|
|
|
int startSample;
|
|
|
|
int endSample;
|
|
|
|
int fraction;
|
|
|
|
int playCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (numLoops > 0 && smplData.size() >= 36 + sizeof(AtracLoopInfo) * numLoops) {
|
|
|
|
AtracLoopInfo *loops = (AtracLoopInfo *)&smplData[36];
|
|
|
|
int samplesPerFrame = codec == PSP_CODEC_AT3PLUS ? 2048 : 1024;
|
|
|
|
|
|
|
|
for (int i = 0; i < numLoops; ++i) {
|
|
|
|
// Only seen forward loops, so let's ignore others.
|
|
|
|
if (loops[i].type != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// We ignore loop interpolation (fraction) and play count for now.
|
2020-08-03 09:29:54 +00:00
|
|
|
raw_offset_loop_start = (loops[i].startSample / samplesPerFrame) * raw_bytes_per_frame;
|
|
|
|
loop_start_offset = loops[i].startSample % samplesPerFrame;
|
|
|
|
raw_offset_loop_end = (loops[i].endSample / samplesPerFrame) * raw_bytes_per_frame;
|
|
|
|
loop_end_offset = loops[i].endSample % samplesPerFrame;
|
2020-08-02 19:55:46 +00:00
|
|
|
|
|
|
|
if (loops[i].playCount == 0) {
|
|
|
|
// This was an infinite loop, so ignore the rest.
|
|
|
|
// In practice, there's usually only one and it's usually infinite.
|
|
|
|
break;
|
2019-08-17 20:31:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
file_.Ascend();
|
|
|
|
}
|
|
|
|
|
|
|
|
// enter the data chunk
|
|
|
|
if (file_.Descend('data')) {
|
|
|
|
int numBytes = file_.GetCurrentChunkSize();
|
2020-08-03 09:29:54 +00:00
|
|
|
numFrames = numBytes / raw_bytes_per_frame; // numFrames
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2020-08-03 09:29:54 +00:00
|
|
|
raw_data = (uint8_t *)malloc(numBytes);
|
|
|
|
raw_data_size = numBytes;
|
2020-08-02 19:55:46 +00:00
|
|
|
if (num_channels == 1 || num_channels == 2) {
|
2020-08-03 09:29:54 +00:00
|
|
|
file_.ReadData(raw_data, numBytes);
|
2014-06-22 15:02:04 +00:00
|
|
|
} else {
|
2020-08-15 14:13:24 +00:00
|
|
|
ERROR_LOG(AUDIO, "Error - bad blockalign or channels");
|
2020-08-03 09:29:54 +00:00
|
|
|
free(raw_data);
|
|
|
|
raw_data = nullptr;
|
2014-06-22 15:02:04 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-12-04 16:33:42 +00:00
|
|
|
file_.Ascend();
|
2014-06-22 15:02:04 +00:00
|
|
|
} else {
|
2020-08-15 14:13:24 +00:00
|
|
|
ERROR_LOG(AUDIO, "Error - no data chunk in wav");
|
2020-08-02 19:55:46 +00:00
|
|
|
file_.Ascend();
|
2014-06-22 15:02:04 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-08-02 19:55:46 +00:00
|
|
|
file_.Ascend();
|
|
|
|
} else {
|
2020-08-15 14:13:24 +00:00
|
|
|
ERROR_LOG(AUDIO, "Could not descend into RIFF file.");
|
2020-08-02 19:55:46 +00:00
|
|
|
return;
|
2014-06-22 15:02:04 +00:00
|
|
|
}
|
2020-08-02 19:55:46 +00:00
|
|
|
sample_rate = samplesPerSec;
|
|
|
|
}
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
// Really simple looping in-memory AT3 player that also takes care of reading the file format.
|
|
|
|
// Turns out that AT3 files used for this are modified WAVE files so fairly easy to parse.
|
|
|
|
class AT3PlusReader {
|
|
|
|
public:
|
|
|
|
explicit AT3PlusReader(const std::string &data)
|
|
|
|
: file_((const uint8_t *)&data[0], (int32_t)data.size()) {
|
|
|
|
// Normally 8k but let's be safe.
|
|
|
|
buffer_ = new short[32 * 1024];
|
|
|
|
|
|
|
|
skip_next_samples_ = 0;
|
|
|
|
|
|
|
|
wave_.Read(file_);
|
|
|
|
|
|
|
|
decoder_ = new SimpleAudio(wave_.codec, wave_.sample_rate, wave_.num_channels);
|
|
|
|
if (wave_.codec == PSP_CODEC_AT3) {
|
2020-08-03 09:29:54 +00:00
|
|
|
decoder_->SetExtraData(&wave_.at3_extradata[2], 14, wave_.raw_bytes_per_frame);
|
2020-08-02 19:55:46 +00:00
|
|
|
}
|
2020-08-15 10:25:39 +00:00
|
|
|
INFO_LOG(AUDIO, "read ATRAC, frames: %d, rate %d", wave_.numFrames, wave_.sample_rate);
|
2014-06-22 15:02:04 +00:00
|
|
|
}
|
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
~AT3PlusReader() {
|
2014-06-22 15:02:04 +00:00
|
|
|
delete[] buffer_;
|
2019-08-17 20:31:52 +00:00
|
|
|
buffer_ = nullptr;
|
2014-06-22 15:02:04 +00:00
|
|
|
delete decoder_;
|
2019-08-17 20:31:52 +00:00
|
|
|
decoder_ = nullptr;
|
2014-06-22 15:02:04 +00:00
|
|
|
}
|
|
|
|
|
2020-08-03 09:29:54 +00:00
|
|
|
bool IsOK() { return wave_.raw_data != nullptr; }
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2015-01-29 13:58:03 +00:00
|
|
|
bool Read(int *buffer, int len) {
|
2020-08-03 09:29:54 +00:00
|
|
|
if (!wave_.raw_data)
|
2014-06-22 15:57:12 +00:00
|
|
|
return false;
|
2015-02-28 21:24:35 +00:00
|
|
|
|
2014-07-16 14:49:48 +00:00
|
|
|
while (bgQueue.size() < (size_t)(len * 2)) {
|
2019-08-17 20:31:52 +00:00
|
|
|
int outBytes = 0;
|
2020-08-03 09:29:54 +00:00
|
|
|
decoder_->Decode(wave_.raw_data + raw_offset_, wave_.raw_bytes_per_frame, (uint8_t *)buffer_, &outBytes);
|
2014-06-22 15:02:04 +00:00
|
|
|
if (!outBytes)
|
2014-06-22 15:57:12 +00:00
|
|
|
return false;
|
2014-06-22 15:02:04 +00:00
|
|
|
|
2020-08-03 09:29:54 +00:00
|
|
|
if (wave_.raw_offset_loop_end != 0 && raw_offset_ == wave_.raw_offset_loop_end) {
|
2019-08-17 20:31:52 +00:00
|
|
|
// Only take the remaining bytes, but convert to stereo s16.
|
2020-08-03 09:29:54 +00:00
|
|
|
outBytes = std::min(outBytes, wave_.loop_end_offset * 4);
|
2019-08-17 20:31:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int start = skip_next_samples_;
|
|
|
|
skip_next_samples_ = 0;
|
|
|
|
|
|
|
|
for (int i = start; i < outBytes / 2; i++) {
|
2014-06-22 15:02:04 +00:00
|
|
|
bgQueue.push(buffer_[i]);
|
|
|
|
}
|
|
|
|
|
2020-08-03 09:29:54 +00:00
|
|
|
if (wave_.raw_offset_loop_end != 0 && raw_offset_ == wave_.raw_offset_loop_end) {
|
2019-08-17 20:31:52 +00:00
|
|
|
// Time to loop. Account for the addition below.
|
2020-08-03 09:29:54 +00:00
|
|
|
raw_offset_ = wave_.raw_offset_loop_start - wave_.raw_bytes_per_frame;
|
2019-08-17 20:31:52 +00:00
|
|
|
// This time we're counting each stereo sample.
|
2020-08-03 09:29:54 +00:00
|
|
|
skip_next_samples_ = wave_.loop_start_offset * 2;
|
2019-08-17 20:31:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handle loops when there's no loop info.
|
2020-08-03 09:29:54 +00:00
|
|
|
raw_offset_ += wave_.raw_bytes_per_frame;
|
|
|
|
if (raw_offset_ >= wave_.raw_data_size) {
|
2014-06-22 15:02:04 +00:00
|
|
|
raw_offset_ = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < len * 2; i++) {
|
|
|
|
buffer[i] = bgQueue.pop_front();
|
|
|
|
}
|
2014-06-22 15:57:12 +00:00
|
|
|
return true;
|
2014-06-22 15:02:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-12-04 16:27:47 +00:00
|
|
|
RIFFReader file_;
|
2020-08-02 19:55:46 +00:00
|
|
|
|
|
|
|
WavData wave_;
|
|
|
|
|
2019-08-17 20:31:52 +00:00
|
|
|
int raw_offset_ = 0;
|
|
|
|
int skip_next_samples_ = 0;
|
2014-06-22 15:02:04 +00:00
|
|
|
FixedSizeQueue<s16, 128 * 1024> bgQueue;
|
2019-08-17 20:31:52 +00:00
|
|
|
short *buffer_ = nullptr;
|
|
|
|
SimpleAudio *decoder_ = nullptr;
|
2014-06-22 15:02:04 +00:00
|
|
|
};
|
|
|
|
|
2020-08-02 17:44:48 +00:00
|
|
|
BackgroundAudio g_BackgroundAudio;
|
|
|
|
|
2020-08-02 17:56:57 +00:00
|
|
|
BackgroundAudio::BackgroundAudio() {
|
|
|
|
buffer = new int[BUFSIZE]();
|
2021-02-16 02:04:11 +00:00
|
|
|
sndLoadPending_.store(false);
|
2020-08-02 17:56:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BackgroundAudio::~BackgroundAudio() {
|
|
|
|
delete[] buffer;
|
|
|
|
}
|
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
BackgroundAudio::Sample *BackgroundAudio::LoadSample(const std::string &path) {
|
|
|
|
size_t bytes;
|
|
|
|
uint8_t *data = VFSReadFile(path.c_str(), &bytes);
|
|
|
|
if (!data) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-08-02 21:02:30 +00:00
|
|
|
RIFFReader reader(data, (int)bytes);
|
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
WavData wave;
|
2020-08-02 21:02:30 +00:00
|
|
|
wave.Read(reader);
|
2020-08-02 19:55:46 +00:00
|
|
|
|
2020-08-11 20:28:36 +00:00
|
|
|
delete [] data;
|
|
|
|
|
2020-08-03 09:29:54 +00:00
|
|
|
if (wave.num_channels != 2 || wave.sample_rate != 44100 || wave.raw_bytes_per_frame != 4) {
|
2020-08-15 14:13:24 +00:00
|
|
|
ERROR_LOG(AUDIO, "Wave format not supported for mixer playback. Must be 16-bit raw stereo. '%s'", path.c_str());
|
2020-08-02 19:55:46 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
int16_t *samples = new int16_t[2 * wave.numFrames];
|
2020-08-03 09:29:54 +00:00
|
|
|
memcpy(samples, wave.raw_data, wave.numFrames * wave.raw_bytes_per_frame);
|
2020-08-02 19:55:46 +00:00
|
|
|
|
|
|
|
return new BackgroundAudio::Sample(samples, wave.numFrames);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BackgroundAudio::LoadSamples() {
|
2020-08-03 09:29:54 +00:00
|
|
|
samples_.resize((size_t)UI::UISound::COUNT);
|
|
|
|
samples_[(size_t)UI::UISound::BACK] = std::unique_ptr<Sample>(LoadSample("sfx_back.wav"));
|
|
|
|
samples_[(size_t)UI::UISound::SELECT] = std::unique_ptr<Sample>(LoadSample("sfx_select.wav"));
|
|
|
|
samples_[(size_t)UI::UISound::CONFIRM] = std::unique_ptr<Sample>(LoadSample("sfx_confirm.wav"));
|
|
|
|
samples_[(size_t)UI::UISound::TOGGLE_ON] = std::unique_ptr<Sample>(LoadSample("sfx_toggle_on.wav"));
|
|
|
|
samples_[(size_t)UI::UISound::TOGGLE_OFF] = std::unique_ptr<Sample>(LoadSample("sfx_toggle_off.wav"));
|
2020-08-02 21:02:30 +00:00
|
|
|
|
|
|
|
UI::SetSoundCallback([](UI::UISound sound) {
|
2020-08-03 09:29:54 +00:00
|
|
|
g_BackgroundAudio.PlaySFX(sound);
|
2020-08-02 21:02:30 +00:00
|
|
|
});
|
2020-08-02 19:55:46 +00:00
|
|
|
}
|
|
|
|
|
2020-08-03 09:29:54 +00:00
|
|
|
void BackgroundAudio::PlaySFX(UI::UISound sfx) {
|
|
|
|
std::lock_guard<std::mutex> lock(mutex_);
|
2020-08-02 21:02:30 +00:00
|
|
|
plays_.push_back(PlayInstance{ sfx, 0, 64, false });
|
2020-08-02 19:55:46 +00:00
|
|
|
}
|
|
|
|
|
2020-08-02 17:44:48 +00:00
|
|
|
void BackgroundAudio::Clear(bool hard) {
|
2017-01-28 09:38:38 +00:00
|
|
|
if (!hard) {
|
2020-08-03 09:29:54 +00:00
|
|
|
fadingOut_ = true;
|
|
|
|
volume_ = 1.0f;
|
2017-01-28 09:38:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-08-03 09:29:54 +00:00
|
|
|
if (at3Reader_) {
|
|
|
|
delete at3Reader_;
|
|
|
|
at3Reader_ = nullptr;
|
2015-02-28 20:42:32 +00:00
|
|
|
}
|
2020-08-03 09:29:54 +00:00
|
|
|
playbackOffset_ = 0;
|
2021-02-16 02:04:11 +00:00
|
|
|
sndLoadPending_ = false;
|
2015-02-28 20:42:32 +00:00
|
|
|
}
|
|
|
|
|
2021-05-05 23:31:38 +00:00
|
|
|
void BackgroundAudio::SetGame(const Path &path) {
|
2020-08-03 09:29:54 +00:00
|
|
|
if (path == bgGamePath_) {
|
2014-06-22 15:02:04 +00:00
|
|
|
// Do nothing
|
|
|
|
return;
|
|
|
|
}
|
2014-06-22 15:26:15 +00:00
|
|
|
|
2021-02-16 02:04:11 +00:00
|
|
|
std::lock_guard<std::mutex> lock(mutex_);
|
|
|
|
if (path.empty()) {
|
2020-08-02 17:44:48 +00:00
|
|
|
Clear(false);
|
2021-02-16 02:04:11 +00:00
|
|
|
sndLoadPending_ = false;
|
2020-08-03 09:29:54 +00:00
|
|
|
fadingOut_ = true;
|
2017-01-28 09:38:38 +00:00
|
|
|
} else {
|
2020-08-02 17:44:48 +00:00
|
|
|
Clear(true);
|
2020-08-03 09:29:54 +00:00
|
|
|
gameLastChanged_ = time_now_d();
|
2021-02-16 02:04:11 +00:00
|
|
|
sndLoadPending_ = true;
|
2020-08-03 09:29:54 +00:00
|
|
|
fadingOut_ = false;
|
2017-01-28 09:38:38 +00:00
|
|
|
}
|
2020-08-03 09:29:54 +00:00
|
|
|
volume_ = 1.0f;
|
|
|
|
bgGamePath_ = path;
|
2014-06-22 15:02:04 +00:00
|
|
|
}
|
|
|
|
|
2020-08-02 17:44:48 +00:00
|
|
|
int BackgroundAudio::Play() {
|
2020-08-03 09:29:54 +00:00
|
|
|
std::lock_guard<std::mutex> lock(mutex_);
|
2015-02-28 20:42:32 +00:00
|
|
|
|
|
|
|
// Immediately stop the sound if it is turned off while playing.
|
|
|
|
if (!g_Config.bEnableSound) {
|
2020-08-02 17:44:48 +00:00
|
|
|
Clear(true);
|
2015-02-28 20:42:32 +00:00
|
|
|
__PushExternalAudio(0, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-08-02 19:55:46 +00:00
|
|
|
double now = time_now_d();
|
2020-08-03 09:29:54 +00:00
|
|
|
int sz = lastPlaybackTime_ <= 0.0 ? 44100 / 60 : (int)((now - lastPlaybackTime_) * 44100);
|
2020-08-02 21:02:30 +00:00
|
|
|
sz = std::min(BUFSIZE / 2, sz);
|
2020-08-03 09:29:54 +00:00
|
|
|
if (at3Reader_) {
|
2021-02-09 23:20:13 +00:00
|
|
|
if (at3Reader_->Read(buffer, sz)) {
|
|
|
|
if (fadingOut_) {
|
|
|
|
for (int i = 0; i < sz*2; i += 2) {
|
|
|
|
buffer[i] *= volume_;
|
|
|
|
buffer[i + 1] *= volume_;
|
|
|
|
volume_ += delta_;
|
2017-01-28 09:38:38 +00:00
|
|
|
}
|
|
|
|
}
|
2015-01-29 13:58:03 +00:00
|
|
|
}
|
|
|
|
} else {
|
2020-08-02 21:02:30 +00:00
|
|
|
for (int i = 0; i < sz * 2; i += 2) {
|
|
|
|
buffer[i] = 0;
|
|
|
|
buffer[i + 1] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-02 21:09:04 +00:00
|
|
|
// Mix in menu sound effects. Terribly slow mixer but meh.
|
2020-08-02 21:02:30 +00:00
|
|
|
if (!plays_.empty()) {
|
|
|
|
for (int i = 0; i < sz * 2; i += 2) {
|
|
|
|
std::vector<PlayInstance>::iterator iter = plays_.begin();
|
|
|
|
while (iter != plays_.end()) {
|
|
|
|
PlayInstance inst = *iter;
|
|
|
|
auto sample = samples_[(int)inst.sound].get();
|
2020-08-03 09:29:54 +00:00
|
|
|
if (!sample || iter->offset >= sample->length_) {
|
2020-08-02 21:02:30 +00:00
|
|
|
iter->done = true;
|
|
|
|
iter = plays_.erase(iter);
|
|
|
|
} else {
|
|
|
|
if (!iter->done) {
|
|
|
|
buffer[i] += sample->data_[inst.offset * 2] * inst.volume >> 8;
|
|
|
|
buffer[i + 1] += sample->data_[inst.offset * 2 + 1] * inst.volume >> 8;
|
|
|
|
}
|
|
|
|
iter->offset++;
|
|
|
|
iter++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-22 15:02:04 +00:00
|
|
|
}
|
2015-01-29 13:58:03 +00:00
|
|
|
|
2020-08-02 21:02:30 +00:00
|
|
|
__PushExternalAudio(buffer, sz);
|
|
|
|
|
2020-08-03 09:29:54 +00:00
|
|
|
if (at3Reader_ && fadingOut_ && volume_ <= 0.0f) {
|
2020-08-02 21:02:30 +00:00
|
|
|
Clear(true);
|
2020-08-03 09:29:54 +00:00
|
|
|
fadingOut_ = false;
|
|
|
|
gameLastChanged_ = 0;
|
2020-08-02 21:02:30 +00:00
|
|
|
}
|
|
|
|
|
2020-08-03 09:29:54 +00:00
|
|
|
lastPlaybackTime_ = now;
|
2020-08-02 21:02:30 +00:00
|
|
|
|
2014-06-22 15:02:04 +00:00
|
|
|
return 0;
|
2014-07-16 14:49:48 +00:00
|
|
|
}
|
2019-09-27 21:53:31 +00:00
|
|
|
|
2020-08-02 17:44:48 +00:00
|
|
|
void BackgroundAudio::Update() {
|
2019-09-27 21:53:31 +00:00
|
|
|
// If there's a game, and some time has passed since the selected game
|
|
|
|
// last changed... (to prevent crazy amount of reads when skipping through a list)
|
2021-02-16 02:04:11 +00:00
|
|
|
if (sndLoadPending_ && (time_now_d() - gameLastChanged_ > 0.5)) {
|
2020-08-03 09:29:54 +00:00
|
|
|
std::lock_guard<std::mutex> lock(mutex_);
|
2021-02-16 02:04:11 +00:00
|
|
|
// Already loaded somehow? Or no game info cache?
|
|
|
|
if (at3Reader_ || !g_gameInfoCache)
|
|
|
|
return;
|
2019-09-27 21:53:31 +00:00
|
|
|
|
2021-02-16 02:04:11 +00:00
|
|
|
// Grab some audio from the current game and play it.
|
|
|
|
std::shared_ptr<GameInfo> gameInfo = g_gameInfoCache->GetInfo(nullptr, bgGamePath_, GAMEINFO_WANTSND);
|
|
|
|
if (!gameInfo || gameInfo->pending) {
|
|
|
|
// Should try again shortly..
|
|
|
|
return;
|
|
|
|
}
|
2019-09-27 21:53:31 +00:00
|
|
|
|
2021-02-16 02:04:11 +00:00
|
|
|
const std::string &data = gameInfo->sndFileData;
|
|
|
|
if (!data.empty()) {
|
|
|
|
at3Reader_ = new AT3PlusReader(data);
|
|
|
|
lastPlaybackTime_ = 0.0;
|
2019-09-27 21:53:31 +00:00
|
|
|
}
|
2021-02-16 02:04:11 +00:00
|
|
|
sndLoadPending_ = false;
|
2019-09-27 21:53:31 +00:00
|
|
|
}
|
|
|
|
}
|