2024-08-08 13:12:37 -07:00
|
|
|
#include "zsm_backend.hpp"
|
2024-10-15 12:23:47 -07:00
|
|
|
#include <algorithm>
|
2024-08-08 13:12:37 -07:00
|
|
|
extern "C" {
|
2024-10-14 21:27:16 -07:00
|
|
|
#include "x16emu/glue.h"
|
2024-08-08 13:12:37 -07:00
|
|
|
#include "x16emu/vera_pcm.h"
|
|
|
|
#include "x16emu/vera_psg.h"
|
|
|
|
#include "x16emu/ymglue.h"
|
|
|
|
}
|
2024-10-18 10:45:22 -07:00
|
|
|
#include <ipc/common.pb.h>
|
2024-08-08 13:12:37 -07:00
|
|
|
#include <exception>
|
|
|
|
#include <filesystem>
|
|
|
|
#include "file_backend.hpp"
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <file_backend.hpp>
|
2024-10-18 10:45:22 -07:00
|
|
|
#include <util.hpp>
|
2024-11-12 14:53:44 -08:00
|
|
|
#include <license.hpp>
|
|
|
|
#include <assets/assets.h>
|
2024-10-14 21:27:16 -07:00
|
|
|
#define HZ (AUDIO_SAMPLERATE)
|
|
|
|
#define BUFFERS 32
|
2024-10-18 10:45:22 -07:00
|
|
|
#define _PROPERTY(name, type, default_value) \
|
2024-10-19 10:19:08 -07:00
|
|
|
type ZsmBackend::name() { \
|
2024-10-18 10:45:22 -07:00
|
|
|
std::optional<google::protobuf::Any> value_maybe = get(#name); \
|
|
|
|
if (value_maybe.has_value()) { \
|
2024-10-19 10:19:08 -07:00
|
|
|
return resolve_value<type>(value_maybe.value()); \
|
2024-10-18 10:45:22 -07:00
|
|
|
} \
|
|
|
|
return default_value; \
|
|
|
|
}
|
2024-10-19 10:19:08 -07:00
|
|
|
|
|
|
|
#include "properties.inc"
|
|
|
|
#undef _PROPERTY
|
|
|
|
std::vector<Property> ZsmBackend::get_property_list() {
|
|
|
|
std::vector<Property> properties;
|
|
|
|
properties.push_back(make_property(PropertyType::Boolean, "Enable PCM channel", "pcm_enable"));
|
|
|
|
properties.push_back(make_property(PropertyType::Boolean, "Enable PSG channels", "psg_enable"));
|
|
|
|
properties.push_back(make_property(PropertyType::Boolean, "Enable FM channels", "fm_enable"));
|
|
|
|
properties.push_back(make_property(PropertyType::Double, "Volume of PCM channel", "pcm_volume", make_hint(0.0, 1.0)));
|
|
|
|
properties.push_back(make_property(PropertyType::Double, "Volume of PSG channels", "psg_volume", make_hint(0.0, 1.0)));
|
|
|
|
properties.push_back(make_property(PropertyType::Double, "Volume of FM channels", "fm_volume", make_hint(0.0, 1.0)));
|
|
|
|
return properties;
|
|
|
|
}
|
2024-08-08 13:12:37 -07:00
|
|
|
void ZsmBackend::load(const char *filename) {
|
2024-09-28 10:31:06 -07:00
|
|
|
memset(&spec, 0, sizeof(spec));
|
2024-10-19 10:42:24 -07:00
|
|
|
current_file = filename;
|
2024-08-08 13:12:37 -07:00
|
|
|
spec.format = AUDIO_S16SYS;
|
2024-10-14 21:27:16 -07:00
|
|
|
spec.samples = 100;
|
2024-09-16 15:05:53 -07:00
|
|
|
spec.channels = 2;
|
2024-10-14 21:27:16 -07:00
|
|
|
spec.freq = PSG_FREQ;
|
|
|
|
spec.size = 100 * 2 * sizeof(int16_t);
|
2024-08-08 13:12:37 -07:00
|
|
|
file = open_file(filename);
|
|
|
|
char magic[2];
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(magic, 2, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
if (magic[0] != 0x7a || magic[1] != 0x6d) {
|
|
|
|
throw std::exception();
|
|
|
|
}
|
|
|
|
uint8_t version;
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(&version, 1, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
uint8_t loop_point[3];
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(loop_point, 3, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
this->loop_point = loop_point[0] | ((uint32_t)(loop_point[1]) << 8) | ((uint32_t)(loop_point[2]) << 16);
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(loop_point, 3, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
this->pcm_offset = loop_point[0] | ((uint32_t)(loop_point[1]) << 8) | ((uint32_t)(loop_point[2]) << 16);
|
2024-10-14 21:27:16 -07:00
|
|
|
pcm_offset += 3;
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(&fm_mask, 1, 1);
|
|
|
|
file->read(loop_point, 2, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
this->psg_channel_mask = loop_point[0] | ((uint16_t)(loop_point[1]) << 8);
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(loop_point, 2, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
this->tick_rate = loop_point[0] | ((uint16_t)(loop_point[1]) << 8);
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(loop_point, 2, 1); // Reserved.
|
2024-08-08 13:12:37 -07:00
|
|
|
music_data_start = file->get_pos();
|
2024-10-14 21:27:16 -07:00
|
|
|
this->loop_point += music_data_start;
|
|
|
|
file->seek(pcm_offset, SeekType::SET);
|
|
|
|
file->read(loop_point, 1, 1);
|
|
|
|
pcm_offset++;
|
2024-10-15 13:14:24 -07:00
|
|
|
pcm_data_offs = ((((uint16_t)loop_point[0]) + 1) * 16) + pcm_offset;
|
2024-10-16 13:06:40 -07:00
|
|
|
for (uint8_t i = 0; i <= loop_point[0]; i++) {
|
|
|
|
uint16_t instdef = (i * 16) + 1;
|
|
|
|
pcm_instrument *inst = new pcm_instrument();
|
|
|
|
file->seek(pcm_offset + instdef, SeekType::SET);
|
|
|
|
file->read(&inst->geom, 1, 1);
|
|
|
|
uint8_t bytes[10];
|
|
|
|
file->read(bytes, 10, 1);
|
|
|
|
inst->loop_rem = bytes[9];
|
|
|
|
inst->loop_rem <<= 8;
|
|
|
|
inst->loop_rem |= bytes[8];
|
|
|
|
inst->loop_rem <<= 8;
|
|
|
|
inst->loop_rem |= bytes[7];
|
|
|
|
inst->loop = loop_rem;
|
|
|
|
inst->islooped = bytes[6] & 0x80;
|
|
|
|
inst->remain = bytes[5];
|
|
|
|
inst->remain <<= 8;
|
|
|
|
inst->remain |= bytes[4];
|
|
|
|
inst->remain <<= 8;
|
|
|
|
inst->remain |= bytes[3];
|
|
|
|
uint32_t cur = bytes[2];
|
|
|
|
cur <<= 8;
|
|
|
|
cur |= bytes[1];
|
|
|
|
cur <<= 8;
|
|
|
|
cur |= bytes[0];
|
|
|
|
cur += pcm_data_offs;
|
|
|
|
inst->data = (uint8_t*)malloc(inst->remain);
|
|
|
|
file->seek(cur, SeekType::SET);
|
|
|
|
file->read(inst->data, 1, inst->remain);
|
|
|
|
inst->loop_rem = inst->remain - inst->loop_rem;
|
|
|
|
instruments.push_back(inst);
|
|
|
|
}
|
2024-10-14 21:27:16 -07:00
|
|
|
file->seek(music_data_start, SeekType::SET);
|
2024-10-15 12:23:47 -07:00
|
|
|
this->loop_point = std::max(this->loop_point, (uint32_t)music_data_start);
|
2024-10-15 13:01:07 -07:00
|
|
|
double prev_time = 0.0;
|
2024-10-14 21:27:16 -07:00
|
|
|
double time = 0.0;
|
|
|
|
double tmpDelayTicks = 0.0;
|
2024-10-15 12:23:47 -07:00
|
|
|
loop_pos = -1.0;
|
2024-10-15 13:01:07 -07:00
|
|
|
uint32_t prev_pos = music_data_start;
|
2024-08-08 13:12:37 -07:00
|
|
|
while (true) {
|
2024-10-14 21:27:16 -07:00
|
|
|
tmpDelayTicks -= get_delay_per_frame();
|
|
|
|
if (tmpDelayTicks < 0.0) {
|
|
|
|
ZsmCommand cmd = get_command();
|
2024-10-15 13:01:07 -07:00
|
|
|
size_t cur_pos = file->get_pos();
|
|
|
|
if (cur_pos >= this->loop_point && this->loop_pos < 0) {
|
2024-10-16 08:52:42 -07:00
|
|
|
loop_pos = time;
|
|
|
|
this->loop_point = cur_pos;
|
2024-10-15 13:01:07 -07:00
|
|
|
}
|
2024-10-14 21:27:16 -07:00
|
|
|
if (cmd.id == ZsmEOF) {
|
|
|
|
break;
|
|
|
|
} else if (cmd.id == Delay) {
|
|
|
|
time += ((double)cmd.delay) / ((double)(tick_rate));
|
|
|
|
tmpDelayTicks += cmd.delay;
|
|
|
|
}
|
2024-10-15 13:01:07 -07:00
|
|
|
prev_pos = file->get_pos();
|
|
|
|
prev_time = time;
|
2024-08-08 13:12:37 -07:00
|
|
|
}
|
|
|
|
}
|
2024-10-15 12:23:47 -07:00
|
|
|
if (this->loop_pos < 0.0) {
|
|
|
|
this->loop_pos = 0.0;
|
|
|
|
this->loop_point = music_data_start;
|
|
|
|
}
|
2024-10-14 21:27:16 -07:00
|
|
|
length = time;
|
2024-08-08 13:12:37 -07:00
|
|
|
music_data_len = file->get_pos();
|
|
|
|
switch_stream(0);
|
2024-10-14 21:27:16 -07:00
|
|
|
loop_end = length;
|
2024-10-15 09:44:56 -07:00
|
|
|
loop_start = this->loop_pos;
|
2024-10-14 21:27:16 -07:00
|
|
|
fm_stream = SDL_NewAudioStream(AUDIO_S16SYS, 2, YM_FREQ, AUDIO_S16SYS, 2, PSG_FREQ);
|
|
|
|
DEBUG.writefln("fm_stream: %ld -> %ld", YM_FREQ, PSG_FREQ);
|
2024-10-19 10:19:08 -07:00
|
|
|
#define _PROPERTY(name, type, default_value) \
|
|
|
|
{ \
|
|
|
|
std::string type_str = #type; \
|
|
|
|
google::protobuf::Any value; \
|
|
|
|
if (type_str == "bool") { \
|
|
|
|
BooleanProperty value_b; \
|
|
|
|
value_b.set_value(default_value); \
|
|
|
|
value.PackFrom(value_b); \
|
|
|
|
} else if (type_str == "double") { \
|
|
|
|
DoubleProperty value_d; \
|
|
|
|
value_d.set_value(default_value); \
|
|
|
|
value.PackFrom(value_d); \
|
|
|
|
} \
|
|
|
|
property_defaults[#name] = value; \
|
|
|
|
}
|
|
|
|
#include "properties.inc"
|
2024-08-08 13:12:37 -07:00
|
|
|
}
|
|
|
|
extern SDL_AudioSpec obtained;
|
|
|
|
void ZsmBackend::switch_stream(int idx) {
|
2024-10-14 21:27:16 -07:00
|
|
|
YM_Create(YM_FREQ);
|
|
|
|
YM_init(YM_FREQ/64, 60);
|
2024-10-15 10:05:18 -07:00
|
|
|
YM_reset();
|
2024-08-08 13:12:37 -07:00
|
|
|
psg_reset();
|
2024-10-15 10:05:18 -07:00
|
|
|
pcm_reset();
|
2024-10-14 21:27:16 -07:00
|
|
|
for (uint8_t i = 0; i < 16; i++) {
|
|
|
|
psg_writereg(i * 4 + 2, 0);
|
|
|
|
}
|
2024-10-16 10:56:24 -07:00
|
|
|
file->seek(music_data_start, SeekType::SET);
|
2024-10-14 21:27:16 -07:00
|
|
|
this->cpuClocks = 0.0;
|
|
|
|
this->delayTicks = 0.0;
|
|
|
|
this->ticks = 0.0;
|
2024-08-08 13:12:37 -07:00
|
|
|
}
|
|
|
|
void ZsmBackend::cleanup() {
|
|
|
|
delete file;
|
|
|
|
file = nullptr;
|
2024-10-14 21:27:16 -07:00
|
|
|
audio_buf.clear();
|
|
|
|
SDL_FreeAudioStream(fm_stream);
|
|
|
|
fm_stream = nullptr;
|
2024-10-16 13:06:40 -07:00
|
|
|
audio_sample = nullptr;
|
|
|
|
for (auto inst : instruments) {
|
|
|
|
delete inst;
|
|
|
|
}
|
|
|
|
instruments.clear();
|
2024-08-08 13:12:37 -07:00
|
|
|
}
|
2024-10-14 21:27:16 -07:00
|
|
|
void ZsmBackend::tick(bool step) {
|
|
|
|
delayTicks -= 1;
|
|
|
|
const double ClocksPerTick = ((double)HZ) / ((double)tick_rate);
|
2024-10-16 09:05:41 -07:00
|
|
|
double prevCpuClocks = cpuClocks;
|
|
|
|
double nextCpuClocks = cpuClocks + ClocksPerTick;
|
|
|
|
double ticks_remaining = ClocksPerTick;
|
2024-10-14 21:27:16 -07:00
|
|
|
while (delayTicks <= 0) {
|
|
|
|
ZsmCommand cmd = get_command();
|
|
|
|
switch (cmd.id) {
|
|
|
|
case ZsmEOF: {
|
|
|
|
if (step) {
|
|
|
|
file->seek(this->loop_point, SeekType::SET);
|
2024-10-15 12:23:47 -07:00
|
|
|
this->position = loop_pos;
|
2024-10-14 21:27:16 -07:00
|
|
|
} else {
|
|
|
|
throw std::exception();
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case PsgWrite: {
|
|
|
|
psg_writereg(cmd.psg_write.reg, cmd.psg_write.val);
|
|
|
|
} break;
|
|
|
|
case FmWrite: {
|
|
|
|
for (uint8_t i = 0; i < cmd.fm_write.len; i++) {
|
2024-11-12 14:53:44 -08:00
|
|
|
auto &pair = cmd.fm_write.regs[i];
|
|
|
|
YM_write_reg(pair.reg, pair.val);
|
|
|
|
while (YM_read_status()) {
|
|
|
|
size_t clocksToAddForYm = (size_t)std::ceil(((double)YM_FREQ)/((double)PSG_FREQ));
|
|
|
|
ticks_remaining -= clocksToAddForYm;
|
|
|
|
if (ticks_remaining < 0) {
|
|
|
|
delayTicks -= 1;
|
|
|
|
nextCpuClocks += ClocksPerTick;
|
|
|
|
ticks_remaining += ClocksPerTick;
|
|
|
|
}
|
|
|
|
audio_step(clocksToAddForYm);
|
|
|
|
}
|
2024-10-14 21:27:16 -07:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case Delay: {
|
|
|
|
delayTicks += cmd.delay;
|
|
|
|
position += ((double)cmd.delay) / ((double)(tick_rate));
|
|
|
|
} break;
|
|
|
|
case ExtCmd: {
|
|
|
|
//cmd.extcmd.channel
|
|
|
|
switch (cmd.extcmd.channel) {
|
|
|
|
case 0: {
|
|
|
|
for (size_t i = 0; i < cmd.extcmd.bytes; i += 2) {
|
|
|
|
switch (cmd.extcmd.pcm[i]) {
|
|
|
|
case 0: { // ctrl
|
2024-10-15 16:17:23 -07:00
|
|
|
uint8_t ctrl = cmd.extcmd.pcm[i + 1];
|
|
|
|
if (ctrl & 0x80) {
|
|
|
|
remain = 0;
|
|
|
|
}
|
|
|
|
pcm_write_ctrl(ctrl);
|
2024-10-14 21:27:16 -07:00
|
|
|
} break;
|
|
|
|
case 1: { // rate
|
|
|
|
pcm_write_rate(cmd.extcmd.pcm[i + 1]);
|
|
|
|
} break;
|
|
|
|
default: { // trigger
|
|
|
|
size_t file_pos = file->get_pos();
|
|
|
|
uint8_t ctrl = pcm_read_ctrl();
|
|
|
|
pcm_write_ctrl(ctrl | 0x80);
|
|
|
|
uint16_t pcm_idx = cmd.extcmd.pcm[i + 1];
|
2024-10-16 13:06:40 -07:00
|
|
|
pcm_instrument *inst = instruments[pcm_idx];
|
2024-10-14 21:27:16 -07:00
|
|
|
ctrl = pcm_read_ctrl() & 0x0F;
|
2024-10-16 13:06:40 -07:00
|
|
|
ctrl |= inst->geom & 0x30;
|
2024-10-14 21:27:16 -07:00
|
|
|
pcm_write_ctrl(ctrl);
|
2024-10-16 13:06:40 -07:00
|
|
|
audio_sample = inst->data;
|
|
|
|
loop = inst->loop;
|
|
|
|
loop_rem = inst->loop_rem;
|
|
|
|
remain = inst->remain;
|
|
|
|
islooped = inst->islooped;
|
|
|
|
cur = 0;
|
2024-10-14 21:27:16 -07:00
|
|
|
} break;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
// Nothing handled yet.
|
|
|
|
}
|
|
|
|
} break;
|
2024-08-08 13:12:37 -07:00
|
|
|
}
|
|
|
|
}
|
2024-10-24 11:33:08 -07:00
|
|
|
while (ym_pairs.size() > 0) {
|
|
|
|
reg_pair pair = ym_pairs.pop();
|
|
|
|
}
|
2024-10-16 09:05:41 -07:00
|
|
|
size_t nextCpuClocksInt = std::floor(nextCpuClocks);
|
|
|
|
size_t prevCpuClocksInt = std::floor(prevCpuClocks);
|
|
|
|
size_t cpuClocksIntDelta = nextCpuClocksInt - prevCpuClocksInt;
|
2024-10-16 10:34:33 -07:00
|
|
|
audio_step(ticks_remaining);
|
2024-10-16 09:05:41 -07:00
|
|
|
cpuClocks = std::fmod(nextCpuClocks, ClocksPerTick);
|
2024-10-14 21:27:16 -07:00
|
|
|
}
|
|
|
|
size_t ZsmBackend::render(void *buf, size_t maxlen) {
|
|
|
|
size_t sample_type_len = 2;
|
|
|
|
maxlen /= sample_type_len;
|
|
|
|
while (audio_buf.size() <= maxlen) {
|
|
|
|
tick(true);
|
|
|
|
}
|
|
|
|
size_t copied = copy_out(buf, maxlen) * sample_type_len;
|
|
|
|
maxlen *= sample_type_len;
|
|
|
|
return copied;
|
|
|
|
}
|
|
|
|
uint64_t ZsmBackend::get_min_samples() {
|
|
|
|
return spec.size;
|
|
|
|
}
|
|
|
|
std::optional<uint64_t> ZsmBackend::get_max_samples() {
|
|
|
|
return get_min_samples();
|
2024-08-08 13:12:37 -07:00
|
|
|
}
|
|
|
|
ZsmCommand ZsmBackend::get_command() {
|
|
|
|
ZsmCommandId cmdid;
|
|
|
|
uint8_t cmd_byte;
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(&cmd_byte, 1, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
if (cmd_byte == 0x80) {
|
|
|
|
cmdid = ZsmEOF;
|
|
|
|
} else {
|
2024-09-28 10:31:06 -07:00
|
|
|
if ((cmd_byte >> 6) == 0) {
|
2024-08-08 13:12:37 -07:00
|
|
|
cmdid = PsgWrite;
|
2024-09-28 10:31:06 -07:00
|
|
|
} else if ((cmd_byte >> 6) == 0b01) {
|
2024-08-08 13:12:37 -07:00
|
|
|
if (cmd_byte == 0b01000000) {
|
|
|
|
cmdid = ExtCmd;
|
|
|
|
} else {
|
|
|
|
cmdid = FmWrite;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cmdid = Delay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ZsmCommand output;
|
|
|
|
output.id = cmdid;
|
|
|
|
if (cmdid == ZsmEOF) {
|
|
|
|
return output;
|
|
|
|
} else if (cmdid == PsgWrite) {
|
|
|
|
uint8_t value;
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(&value, 1, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
output.psg_write.reg = cmd_byte & 0x3F;
|
|
|
|
output.psg_write.val = value;
|
|
|
|
} else if (cmdid == FmWrite) {
|
2024-09-28 10:31:06 -07:00
|
|
|
uint16_t _value;
|
|
|
|
uint8_t *value = (uint8_t*)(void*)(&_value);
|
2024-08-08 13:12:37 -07:00
|
|
|
uint8_t pairs = cmd_byte & 0b111111;
|
|
|
|
output.fm_write.len = pairs;
|
2024-09-28 10:31:06 -07:00
|
|
|
output.fm_write.regs = (reg_pair*)malloc((sizeof(reg_pair))*pairs);
|
2024-08-08 13:12:37 -07:00
|
|
|
for (uint8_t i = 0; i < pairs; i++) {
|
2024-09-28 10:31:06 -07:00
|
|
|
file->read(value, 2, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
output.fm_write.regs[i].reg = value[0];
|
|
|
|
output.fm_write.regs[i].val = value[1];
|
|
|
|
}
|
|
|
|
} else if (cmdid == ExtCmd) {
|
|
|
|
uint8_t ext_cmd_byte;
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(&ext_cmd_byte, 1, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
uint8_t bytes = ext_cmd_byte & 0x3F;
|
|
|
|
uint8_t ch = ext_cmd_byte >> 6;
|
|
|
|
output.extcmd.channel = ch;
|
|
|
|
output.extcmd.bytes = bytes;
|
|
|
|
if (ch == 1) {
|
2024-09-28 10:31:06 -07:00
|
|
|
output.extcmd.expansion.write_bytes = NULL;
|
2024-08-08 13:12:37 -07:00
|
|
|
} else {
|
|
|
|
output.extcmd.pcm = (uint8_t*)malloc(bytes); // Handles all other cases due to them being in a union, and each having the same type.
|
|
|
|
}
|
|
|
|
for (size_t i = 0; i < bytes; i++) {
|
|
|
|
uint8_t byte;
|
2024-09-16 15:05:53 -07:00
|
|
|
file->read(&byte, 1, 1);
|
2024-08-08 13:12:37 -07:00
|
|
|
switch (ch) {
|
|
|
|
case 0: {
|
|
|
|
output.extcmd.pcm[i] = byte;
|
|
|
|
} break;
|
|
|
|
case 1: {
|
|
|
|
if (i == 0) {
|
|
|
|
output.extcmd.expansion.chip_id = byte;
|
|
|
|
} else if (i == 1) {
|
|
|
|
output.extcmd.expansion.writes = byte;
|
2024-09-28 10:31:06 -07:00
|
|
|
output.extcmd.expansion.write_bytes = (uint8_t*)malloc(byte);
|
2024-08-08 13:12:37 -07:00
|
|
|
} else {
|
|
|
|
output.extcmd.expansion.write_bytes[i - 2] = byte;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case 2: {
|
|
|
|
output.extcmd.sync[i] = byte;
|
|
|
|
} break;
|
|
|
|
case 3: {
|
|
|
|
output.extcmd.custom[i] = byte;
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
2024-10-14 21:27:16 -07:00
|
|
|
} else if (cmdid == Delay) {
|
|
|
|
output.delay = cmd_byte & 0x7F;
|
2024-08-08 13:12:37 -07:00
|
|
|
}
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
ZsmCommand::~ZsmCommand() {
|
|
|
|
switch (id) {
|
|
|
|
case ExtCmd: {
|
|
|
|
if (extcmd.channel == 1) {
|
2024-09-28 10:31:06 -07:00
|
|
|
if (extcmd.expansion.write_bytes != NULL) {
|
|
|
|
free(extcmd.expansion.write_bytes);
|
|
|
|
}
|
2024-08-08 13:12:37 -07:00
|
|
|
} else {
|
|
|
|
free(extcmd.pcm);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case FmWrite: {
|
|
|
|
free(fm_write.regs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-14 21:27:16 -07:00
|
|
|
void ZsmBackend::seek_internal(double position, bool loop) {
|
2024-10-16 09:05:41 -07:00
|
|
|
this->position = std::floor(this->position * PSG_FREQ) / PSG_FREQ;
|
|
|
|
position = std::floor(position * PSG_FREQ) / PSG_FREQ;
|
|
|
|
if (this->position > position) {
|
2024-10-16 10:56:24 -07:00
|
|
|
switch_stream(0);
|
2024-10-16 09:05:41 -07:00
|
|
|
file->seek(music_data_start, SeekType::SET);
|
|
|
|
this->cpuClocks = 0.0;
|
|
|
|
this->delayTicks = 0;
|
|
|
|
this->ticks = 0.0;
|
|
|
|
this->position = 0.0;
|
|
|
|
} else if (this->position == position) {
|
|
|
|
audio_buf.clear();
|
|
|
|
return;
|
|
|
|
}
|
2024-10-14 21:27:16 -07:00
|
|
|
while (this->position < position) {
|
|
|
|
audio_buf.clear();
|
|
|
|
try {
|
|
|
|
tick(false);
|
|
|
|
} catch (std::exception) {
|
|
|
|
switch_stream(0);
|
2024-08-08 13:12:37 -07:00
|
|
|
file->seek(music_data_start, SeekType::SET);
|
2024-10-14 21:27:16 -07:00
|
|
|
this->cpuClocks = 0.0;
|
|
|
|
this->delayTicks = 0;
|
|
|
|
this->ticks = 0.0;
|
|
|
|
this->position = 0.0;
|
2024-10-16 09:05:41 -07:00
|
|
|
audio_buf.clear();
|
2024-10-14 21:27:16 -07:00
|
|
|
return;
|
2024-08-08 13:12:37 -07:00
|
|
|
}
|
|
|
|
}
|
2024-10-15 12:23:47 -07:00
|
|
|
size_t samples = std::min((size_t)((this->position - position) * PSG_FREQ), audio_buf.size());
|
2024-10-14 21:27:16 -07:00
|
|
|
while (samples--) {
|
|
|
|
audio_buf.pop();
|
|
|
|
}
|
2024-10-16 09:05:41 -07:00
|
|
|
this->position = position;
|
2024-08-08 13:12:37 -07:00
|
|
|
}
|
|
|
|
void ZsmBackend::seek(double position) {
|
2024-10-14 21:27:16 -07:00
|
|
|
seek_internal(position, false);
|
2024-08-08 13:12:37 -07:00
|
|
|
}
|
|
|
|
double ZsmBackend::get_position() {
|
|
|
|
return position;
|
|
|
|
}
|
|
|
|
int ZsmBackend::get_stream_idx() {
|
|
|
|
return 0;
|
|
|
|
}
|
2024-10-19 10:19:08 -07:00
|
|
|
|
|
|
|
void ZsmBackend::audio_step(size_t samples) {
|
|
|
|
if (samples == 0) return;
|
|
|
|
while (remain != 0 && pcm_fifo_avail() < samples) {
|
|
|
|
if (pcm_read_rate() == 0) break;
|
|
|
|
if ((--remain) == 0) {
|
|
|
|
if (islooped) {
|
|
|
|
cur = loop;
|
|
|
|
remain = loop_rem;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
size_t oldpos = file->get_pos();
|
|
|
|
uint8_t sample = audio_sample[cur++];
|
|
|
|
pcm_write_fifo(sample);
|
|
|
|
}
|
|
|
|
samples *= 2;
|
|
|
|
int16_t *psg_ptr = psg_buf.get_item_sized<int16_t>(samples);
|
|
|
|
int16_t *pcm_ptr = pcm_buf.get_item_sized<int16_t>(samples);
|
|
|
|
psg_render(psg_ptr, samples / 2);
|
|
|
|
pcm_render(pcm_ptr, samples / 2);
|
|
|
|
int16_t *out_ptr = out_buf.get_item_sized<int16_t>(samples);
|
|
|
|
// The exact amount of samples needed for the stream.
|
|
|
|
double ratio = ((double)YM_FREQ) / ((double)PSG_FREQ);
|
|
|
|
size_t needed_samples = ((size_t)std::floor(samples * ratio)) / 2;
|
|
|
|
int16_t *ym_ptr = ym_buf.get_item_sized<int16_t>(needed_samples * 2);
|
|
|
|
YM_stream_update(ym_ptr, needed_samples);
|
|
|
|
assert(SDL_AudioStreamPut(fm_stream, ym_ptr, needed_samples * 2 * sizeof(int16_t)) == 0);
|
|
|
|
while (SDL_AudioStreamAvailable(fm_stream) < ((samples + 2) * sizeof(int16_t))) {
|
|
|
|
YM_stream_update(ym_ptr, 1);
|
|
|
|
assert(SDL_AudioStreamPut(fm_stream, ym_ptr, 2 * sizeof(int16_t)) == 0);
|
|
|
|
}
|
|
|
|
int16_t *ym_resample_ptr = ym_resample_buf.get_item_sized<int16_t>(samples);
|
|
|
|
ssize_t ym_resample_len = SDL_AudioStreamGet(fm_stream, ym_resample_ptr, (samples + 2) * sizeof(int16_t));
|
|
|
|
assert(ym_resample_len >= 0);
|
|
|
|
ym_resample_len /= sizeof(int16_t);
|
|
|
|
for (size_t i = 0; i < samples / 2; i++) {
|
|
|
|
size_t j = i * 2;
|
|
|
|
int16_t psg[2] = {(int16_t)(psg_ptr[j] >> 1), (int16_t)(psg_ptr[j + 1] >> 1)};
|
|
|
|
int16_t pcm[2] = {(int16_t)(pcm_ptr[j] >> 2), (int16_t)(pcm_ptr[j + 1] >> 2)};
|
|
|
|
if (!pcm_enable()) memset(pcm, 0, sizeof(pcm));
|
|
|
|
if (!psg_enable()) memset(psg, 0, sizeof(psg));
|
|
|
|
pcm[0] *= pcm_volume();
|
|
|
|
pcm[1] *= pcm_volume();
|
|
|
|
psg[0] *= psg_volume();
|
|
|
|
psg[1] *= psg_volume();
|
|
|
|
int16_t vera[2] = {(int16_t)(psg[0] + pcm[0]), (int16_t)(psg[1] + pcm[1])};
|
|
|
|
int16_t fm[2] = {ym_resample_ptr[j], ym_resample_ptr[j + 1]};
|
|
|
|
if (!fm_enable()) memset(fm, 0, sizeof(fm));
|
|
|
|
fm[0] *= fm_volume();
|
|
|
|
fm[1] *= fm_volume();
|
|
|
|
int16_t mix[2] = {(int16_t)(vera[0] + (fm[0] >> 1)), (int16_t)(vera[1] + (fm[1] >> 1))};
|
|
|
|
out_ptr[j++] = mix[0];
|
|
|
|
out_ptr[j++] = mix[1];
|
|
|
|
}
|
|
|
|
audio_buf.push(out_ptr, samples);
|
|
|
|
}
|
2024-11-12 14:53:44 -08:00
|
|
|
void ZsmBackend::add_licenses() {
|
|
|
|
auto &license_data = get_license_data();
|
|
|
|
auto x16emu = LicenseData("x16emu", "bsd-2-clause");
|
|
|
|
LOAD_LICENSE(x16emu, x16emu);
|
|
|
|
license_data.insert(x16emu);
|
|
|
|
}
|