2022-05-20 18:45:26 +00:00
|
|
|
/**
|
|
|
|
* Furnace Tracker - multi-system chiptune tracker
|
|
|
|
* Copyright (C) 2021-2022 tildearrow and contributors
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "rf5c68.h"
|
|
|
|
#include "../engine.h"
|
|
|
|
#include "../../ta-log.h"
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#define rWrite(a,v) {if(!skipRegisterWrites) {rf5c68.rf5c68_w(a,v); regPool[a]=v; if(dumpWrites) addWrite(a,v);}}
|
|
|
|
|
|
|
|
#define CHIP_FREQBASE 786432
|
|
|
|
|
|
|
|
const char* regCheatSheetRF5C68[]={
|
|
|
|
"Volume", "0",
|
|
|
|
"Panning", "1",
|
|
|
|
"FreqL", "2",
|
|
|
|
"FreqH", "3",
|
|
|
|
"LoopStartL", "4",
|
|
|
|
"LoopStartH", "5",
|
|
|
|
"StartH", "6",
|
|
|
|
"Control", "7",
|
|
|
|
"Disable", "8",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char** DivPlatformRF5C68::getRegisterSheet() {
|
|
|
|
return regCheatSheetRF5C68;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::chWrite(unsigned char ch, unsigned int addr, unsigned char val) {
|
|
|
|
if (!skipRegisterWrites) {
|
|
|
|
if (curChan!=ch) {
|
|
|
|
curChan=ch;
|
|
|
|
rWrite(7,curChan|0xc0);
|
|
|
|
}
|
|
|
|
regPool[16+((ch)<<4)+((addr)&0x0f)]=val;
|
|
|
|
rWrite(addr,val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::acquire(short* bufL, short* bufR, size_t start, size_t len) {
|
|
|
|
short buf[16][256];
|
|
|
|
short* chBufPtrs[16]={
|
|
|
|
buf[0],buf[1],buf[2],buf[3],buf[4],buf[5],buf[6],buf[7],
|
|
|
|
buf[8],buf[9],buf[10],buf[11],buf[12],buf[13],buf[14],buf[15]
|
|
|
|
};
|
|
|
|
size_t pos=start;
|
|
|
|
while (len > 0) {
|
|
|
|
size_t blockLen=MIN(len,256);
|
|
|
|
short* bufPtrs[2]={&bufL[pos],&bufR[pos]};
|
|
|
|
rf5c68.sound_stream_update(bufPtrs,chBufPtrs,blockLen);
|
|
|
|
for (int i=0; i<8; i++) {
|
|
|
|
for (size_t j=0; j<blockLen; j++) {
|
|
|
|
oscBuf[i]->data[oscBuf[i]->needle++]=buf[i*2][j]+buf[i*2+1][j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pos+=blockLen;
|
|
|
|
len-=blockLen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::tick(bool sysTick) {
|
|
|
|
for (int i=0; i<8; i++) {
|
|
|
|
chan[i].std.next();
|
|
|
|
if (chan[i].std.vol.had) {
|
Prepare for split sample chip instrument
(MSM6258, MSM6295, QSound, Sega PCM, ADPCM-A, ADPCM-B, YMZ280B, RF5C68)
Instrument color and icons are placeholder.
different volume range, hard panned/soft panned and/or independent volume per output, chip-dependent features (global volume, echo, etc)
Allow use sample in instrument tab for chip with sample support
Prepare to support X1-010 Seta 2 style bankswitch behavior
Prepare to support AY89x0 PCM DAC
Support volume for PCE sample (DAC)
Fix Lynx, Y8950 sample pitch matches to sample preview
Support PCM DAC with backward and pingpong loop mode
Reduce some codes
Add Sega PCM, AY89x0, QSound, PCM DAC, Lynx per-channel debug support
2022-08-27 07:27:36 +00:00
|
|
|
chan[i].outVol=((chan[i].vol&0xff)*MIN(chan[i].macroVolMul,chan[i].std.vol.val))/chan[i].macroVolMul;
|
2022-05-20 18:45:26 +00:00
|
|
|
chWrite(i,0,chan[i].outVol);
|
|
|
|
}
|
|
|
|
if (chan[i].std.arp.had) {
|
|
|
|
if (!chan[i].inPorta) {
|
2022-08-22 20:59:45 +00:00
|
|
|
chan[i].baseFreq=NOTE_FREQUENCY(parent->calcArp(chan[i].note,chan[i].std.arp.val));
|
2022-05-20 18:45:26 +00:00
|
|
|
}
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
|
|
|
if (chan[i].std.pitch.had) {
|
|
|
|
if (chan[i].std.pitch.mode) {
|
|
|
|
chan[i].pitch2+=chan[i].std.pitch.val;
|
2022-05-23 03:47:40 +00:00
|
|
|
CLAMP_VAR(chan[i].pitch2,-32768,32767);
|
2022-05-20 18:45:26 +00:00
|
|
|
} else {
|
|
|
|
chan[i].pitch2=chan[i].std.pitch.val;
|
|
|
|
}
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
}
|
|
|
|
// panning registers are reversed in this chip
|
|
|
|
if (chan[i].std.panL.had) {
|
|
|
|
chan[i].panning&=0xf0;
|
|
|
|
chan[i].panning|=chan[i].std.panL.val&15;
|
|
|
|
}
|
|
|
|
if (chan[i].std.panR.had) {
|
|
|
|
chan[i].panning&=0x0f;
|
|
|
|
chan[i].panning|=(chan[i].std.panR.val&15)<<4;
|
|
|
|
}
|
|
|
|
if (chan[i].std.panL.had || chan[i].std.panR.had) {
|
Prepare for split sample chip instrument
(MSM6258, MSM6295, QSound, Sega PCM, ADPCM-A, ADPCM-B, YMZ280B, RF5C68)
Instrument color and icons are placeholder.
different volume range, hard panned/soft panned and/or independent volume per output, chip-dependent features (global volume, echo, etc)
Allow use sample in instrument tab for chip with sample support
Prepare to support X1-010 Seta 2 style bankswitch behavior
Prepare to support AY89x0 PCM DAC
Support volume for PCE sample (DAC)
Fix Lynx, Y8950 sample pitch matches to sample preview
Support PCM DAC with backward and pingpong loop mode
Reduce some codes
Add Sega PCM, AY89x0, QSound, PCM DAC, Lynx per-channel debug support
2022-08-27 07:27:36 +00:00
|
|
|
chWrite(i,1,isMuted[i]?0:chan[i].panning);
|
|
|
|
}
|
|
|
|
if (chan[i].std.phaseReset.had) {
|
|
|
|
if (chan[i].std.phaseReset.val==1 && chan[i].active) {
|
|
|
|
chan[i].audPos=0;
|
|
|
|
chan[i].setPos=true;
|
|
|
|
}
|
2022-05-20 18:45:26 +00:00
|
|
|
}
|
|
|
|
if (chan[i].setPos) {
|
|
|
|
// force keyon
|
|
|
|
chan[i].keyOn=true;
|
|
|
|
chan[i].setPos=false;
|
|
|
|
} else {
|
|
|
|
chan[i].audPos=0;
|
|
|
|
}
|
2022-09-26 01:07:21 +00:00
|
|
|
// TODO: BANG BANG BANG
|
|
|
|
// AAAAAAAAAAAAAAAAAAA
|
|
|
|
// ASGDJFJFSDGL;ASDHFKJLSHFLKAJSFHKLJVSJ
|
2022-05-20 18:45:26 +00:00
|
|
|
if (chan[i].freqChanged || chan[i].keyOn || chan[i].keyOff) {
|
|
|
|
unsigned char keyon=regPool[8]&~(1<<i);
|
|
|
|
unsigned char keyoff=keyon|(1<<i);
|
|
|
|
DivSample* s=parent->getSample(chan[i].sample);
|
|
|
|
double off=(s->centerRate>=1)?((double)s->centerRate/8363.0):1.0;
|
|
|
|
chan[i].freq=(int)(off*parent->calcFreq(chan[i].baseFreq,chan[i].pitch,false,2,chan[i].pitch2,chipClock,CHIP_FREQBASE));
|
|
|
|
if (chan[i].freq>65535) chan[i].freq=65535;
|
|
|
|
if (chan[i].keyOn) {
|
2022-09-26 01:07:21 +00:00
|
|
|
unsigned int start=sampleOffRFC[chan[i].sample];
|
2022-05-20 18:45:26 +00:00
|
|
|
unsigned int loop=start+s->length8;
|
|
|
|
if (chan[i].audPos>0) {
|
|
|
|
start=start+MIN(chan[i].audPos,s->length8);
|
|
|
|
}
|
2022-07-22 04:36:42 +00:00
|
|
|
if (s->isLoopable()) {
|
2022-08-28 01:50:57 +00:00
|
|
|
loop=start+s->loopStart;
|
2022-05-20 18:45:26 +00:00
|
|
|
}
|
|
|
|
start=MIN(start,getSampleMemCapacity()-31);
|
|
|
|
loop=MIN(loop,getSampleMemCapacity()-31);
|
|
|
|
rWrite(8,keyoff); // force keyoff first
|
|
|
|
chWrite(i,6,start>>8);
|
|
|
|
chWrite(i,4,loop&0xff);
|
|
|
|
chWrite(i,5,loop>>8);
|
|
|
|
if (!chan[i].std.vol.had) {
|
|
|
|
chan[i].outVol=chan[i].vol;
|
|
|
|
chWrite(i,0,chan[i].outVol);
|
|
|
|
}
|
|
|
|
rWrite(8,keyon);
|
|
|
|
chan[i].keyOn=false;
|
|
|
|
}
|
|
|
|
if (chan[i].keyOff) {
|
|
|
|
rWrite(8,keyoff);
|
|
|
|
chan[i].keyOff=false;
|
|
|
|
}
|
|
|
|
if (chan[i].freqChanged) {
|
|
|
|
chWrite(i,2,chan[i].freq&0xff);
|
|
|
|
chWrite(i,3,chan[i].freq>>8);
|
|
|
|
chan[i].freqChanged=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformRF5C68::dispatch(DivCommand c) {
|
|
|
|
switch (c.cmd) {
|
|
|
|
case DIV_CMD_NOTE_ON: {
|
|
|
|
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_AMIGA);
|
Prepare for split sample chip instrument
(MSM6258, MSM6295, QSound, Sega PCM, ADPCM-A, ADPCM-B, YMZ280B, RF5C68)
Instrument color and icons are placeholder.
different volume range, hard panned/soft panned and/or independent volume per output, chip-dependent features (global volume, echo, etc)
Allow use sample in instrument tab for chip with sample support
Prepare to support X1-010 Seta 2 style bankswitch behavior
Prepare to support AY89x0 PCM DAC
Support volume for PCE sample (DAC)
Fix Lynx, Y8950 sample pitch matches to sample preview
Support PCM DAC with backward and pingpong loop mode
Reduce some codes
Add Sega PCM, AY89x0, QSound, PCM DAC, Lynx per-channel debug support
2022-08-27 07:27:36 +00:00
|
|
|
chan[c.chan].macroVolMul=ins->type==DIV_INS_AMIGA?64:255;
|
2022-05-20 18:45:26 +00:00
|
|
|
chan[c.chan].sample=ins->amiga.getSample(c.value);
|
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].baseFreq=NOTE_FREQUENCY(c.value);
|
|
|
|
}
|
|
|
|
if (chan[c.chan].sample<0 || chan[c.chan].sample>=parent->song.sampleLen) {
|
|
|
|
chan[c.chan].sample=-1;
|
|
|
|
}
|
|
|
|
if (c.value!=DIV_NOTE_NULL) {
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
}
|
|
|
|
chan[c.chan].active=true;
|
|
|
|
chan[c.chan].keyOn=true;
|
|
|
|
chan[c.chan].macroInit(ins);
|
2022-06-01 00:03:31 +00:00
|
|
|
if (!parent->song.brokenOutVol && !chan[c.chan].std.vol.will) {
|
|
|
|
chan[c.chan].outVol=chan[c.chan].vol;
|
|
|
|
}
|
2022-05-20 18:45:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_NOTE_OFF:
|
|
|
|
chan[c.chan].sample=-1;
|
|
|
|
chan[c.chan].active=false;
|
|
|
|
chan[c.chan].keyOff=true;
|
|
|
|
chan[c.chan].macroInit(NULL);
|
|
|
|
break;
|
|
|
|
case DIV_CMD_NOTE_OFF_ENV:
|
|
|
|
case DIV_CMD_ENV_RELEASE:
|
|
|
|
chan[c.chan].std.release();
|
|
|
|
break;
|
|
|
|
case DIV_CMD_INSTRUMENT:
|
|
|
|
if (chan[c.chan].ins!=c.value || c.value2==1) {
|
|
|
|
chan[c.chan].ins=c.value;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_VOLUME:
|
|
|
|
if (chan[c.chan].vol!=c.value) {
|
|
|
|
chan[c.chan].vol=c.value;
|
|
|
|
if (!chan[c.chan].std.vol.has) {
|
|
|
|
chan[c.chan].outVol=c.value;
|
|
|
|
chWrite(c.chan,0,chan[c.chan].outVol);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DIV_CMD_GET_VOLUME:
|
|
|
|
if (chan[c.chan].std.vol.has) {
|
|
|
|
return chan[c.chan].vol;
|
|
|
|
}
|
|
|
|
return chan[c.chan].outVol;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PANNING:
|
|
|
|
chan[c.chan].panning=(c.value>>4)|(c.value2&0xf0);
|
|
|
|
chWrite(c.chan,1,isMuted[c.chan]?0:chan[c.chan].panning);
|
|
|
|
break;
|
|
|
|
case DIV_CMD_PITCH:
|
|
|
|
chan[c.chan].pitch=c.value;
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_NOTE_PORTA: {
|
|
|
|
int destFreq=NOTE_FREQUENCY(c.value2);
|
|
|
|
bool return2=false;
|
|
|
|
if (destFreq>chan[c.chan].baseFreq) {
|
|
|
|
chan[c.chan].baseFreq+=c.value;
|
|
|
|
if (chan[c.chan].baseFreq>=destFreq) {
|
|
|
|
chan[c.chan].baseFreq=destFreq;
|
|
|
|
return2=true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
chan[c.chan].baseFreq-=c.value;
|
|
|
|
if (chan[c.chan].baseFreq<=destFreq) {
|
|
|
|
chan[c.chan].baseFreq=destFreq;
|
|
|
|
return2=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
if (return2) {
|
|
|
|
chan[c.chan].inPorta=false;
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_LEGATO: {
|
|
|
|
chan[c.chan].baseFreq=NOTE_FREQUENCY(c.value+((chan[c.chan].std.arp.will && !chan[c.chan].std.arp.mode)?(chan[c.chan].std.arp.val-12):(0)));
|
|
|
|
chan[c.chan].freqChanged=true;
|
|
|
|
chan[c.chan].note=c.value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DIV_CMD_PRE_PORTA:
|
|
|
|
if (chan[c.chan].active && c.value2) {
|
|
|
|
if (parent->song.resetMacroOnPorta) chan[c.chan].macroInit(parent->getIns(chan[c.chan].ins,DIV_INS_AMIGA));
|
|
|
|
}
|
2022-07-04 06:43:59 +00:00
|
|
|
if (!chan[c.chan].inPorta && c.value && !parent->song.brokenPortaArp && chan[c.chan].std.arp.will) chan[c.chan].baseFreq=NOTE_FREQUENCY(chan[c.chan].note);
|
2022-05-20 18:45:26 +00:00
|
|
|
chan[c.chan].inPorta=c.value;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_SAMPLE_POS:
|
|
|
|
chan[c.chan].audPos=c.value;
|
|
|
|
chan[c.chan].setPos=true;
|
|
|
|
break;
|
|
|
|
case DIV_CMD_GET_VOLMAX:
|
|
|
|
return 255;
|
|
|
|
break;
|
|
|
|
case DIV_ALWAYS_SET_VOLUME:
|
|
|
|
return 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::muteChannel(int ch, bool mute) {
|
|
|
|
isMuted[ch]=mute;
|
|
|
|
chWrite(ch,1,mute?0:chan[ch].panning);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::forceIns() {
|
|
|
|
for (int i=0; i<8; i++) {
|
|
|
|
chan[i].insChanged=true;
|
|
|
|
chan[i].freqChanged=true;
|
|
|
|
chan[i].sample=-1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void* DivPlatformRF5C68::getChanState(int ch) {
|
|
|
|
return &chan[ch];
|
|
|
|
}
|
|
|
|
|
2022-06-05 23:17:00 +00:00
|
|
|
DivMacroInt* DivPlatformRF5C68::getChanMacroInt(int ch) {
|
|
|
|
return &chan[ch].std;
|
|
|
|
}
|
|
|
|
|
2022-05-20 18:45:26 +00:00
|
|
|
DivDispatchOscBuffer* DivPlatformRF5C68::getOscBuffer(int ch) {
|
|
|
|
return oscBuf[ch];
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::reset() {
|
|
|
|
memset(regPool,0,144);
|
|
|
|
rf5c68.device_reset();
|
|
|
|
rWrite(0x08,0xff); // keyoff all channels
|
|
|
|
for (int i=0; i<8; i++) {
|
|
|
|
chan[i]=DivPlatformRF5C68::Channel();
|
|
|
|
chan[i].std.setEngine(parent);
|
|
|
|
chWrite(i,0,255);
|
|
|
|
chWrite(i,1,isMuted[i]?0:255);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DivPlatformRF5C68::isStereo() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::notifyInsChange(int ins) {
|
|
|
|
for (int i=0; i<8; i++) {
|
|
|
|
if (chan[i].ins==ins) {
|
|
|
|
chan[i].insChanged=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::notifyWaveChange(int wave) {
|
|
|
|
// TODO when wavetables are added
|
|
|
|
// TODO they probably won't be added unless the samples reside in RAM
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::notifyInsDeletion(void* ins) {
|
|
|
|
for (int i=0; i<8; i++) {
|
|
|
|
chan[i].std.notifyInsDeletion((DivInstrument*)ins);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::setFlags(unsigned int flags) {
|
|
|
|
switch (flags&0x0f) {
|
|
|
|
case 1: chipClock=10000000; break;
|
|
|
|
case 2: chipClock=12500000; break;
|
|
|
|
default: chipClock=8000000; break;
|
|
|
|
}
|
|
|
|
chipType=flags>>4;
|
|
|
|
rate=chipClock/384;
|
|
|
|
for (int i=0; i<8; i++) {
|
|
|
|
oscBuf[i]->rate=rate;
|
|
|
|
}
|
|
|
|
rf5c68=(chipType==1)?rf5c164_device():rf5c68_device();
|
|
|
|
rf5c68.device_start(sampleMem);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::poke(unsigned int addr, unsigned short val) {
|
|
|
|
rWrite(addr&0x0f,val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::poke(std::vector<DivRegWrite>& wlist) {
|
|
|
|
for (DivRegWrite& i: wlist) rWrite(i.addr&0x0f,i.val);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* DivPlatformRF5C68::getRegisterPool() {
|
|
|
|
return regPool;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformRF5C68::getRegisterPoolSize() {
|
|
|
|
return 144;
|
|
|
|
}
|
|
|
|
|
|
|
|
const void* DivPlatformRF5C68::getSampleMem(int index) {
|
|
|
|
return index == 0 ? sampleMem : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t DivPlatformRF5C68::getSampleMemCapacity(int index) {
|
|
|
|
return index == 0 ? 65536 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t DivPlatformRF5C68::getSampleMemUsage(int index) {
|
|
|
|
return index == 0 ? sampleMemLen : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::renderSamples() {
|
|
|
|
memset(sampleMem,0,getSampleMemCapacity());
|
2022-09-26 01:07:21 +00:00
|
|
|
memset(sampleOffRFC,0,256*sizeof(unsigned int));
|
2022-05-20 18:45:26 +00:00
|
|
|
|
|
|
|
size_t memPos=0;
|
|
|
|
for (int i=0; i<parent->song.sampleLen; i++) {
|
|
|
|
DivSample* s=parent->song.sample[i];
|
2022-08-11 13:21:54 +00:00
|
|
|
int length=s->getLoopEndPosition(DIV_SAMPLE_DEPTH_8BIT);
|
2022-05-20 18:45:26 +00:00
|
|
|
int actualLength=MIN((int)(getSampleMemCapacity()-memPos)-31,length);
|
|
|
|
if (actualLength>0) {
|
2022-09-26 01:07:21 +00:00
|
|
|
sampleOffRFC[i]=memPos;
|
2022-05-20 18:45:26 +00:00
|
|
|
for (int j=0; j<actualLength; j++) {
|
|
|
|
// convert to signed magnitude
|
|
|
|
signed char val=s->data8[j];
|
|
|
|
CLAMP_VAR(val,-127,126);
|
|
|
|
sampleMem[memPos++]=(val>0)?(val|0x80):(0-val);
|
|
|
|
}
|
|
|
|
// write end of sample marker
|
|
|
|
memset(&sampleMem[memPos],0xff,31);
|
|
|
|
memPos+=31;
|
|
|
|
}
|
|
|
|
if (actualLength<length) {
|
|
|
|
logW("out of RF5C68 PCM memory for sample %d!",i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// align memPos to 256-byte boundary
|
|
|
|
memPos=(memPos+0xff)&~0xff;
|
|
|
|
}
|
|
|
|
sampleMemLen=memPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivPlatformRF5C68::init(DivEngine* p, int channels, int sugRate, unsigned int flags) {
|
|
|
|
parent=p;
|
|
|
|
dumpWrites=false;
|
|
|
|
skipRegisterWrites=false;
|
|
|
|
|
|
|
|
for (int i=0; i<8; i++) {
|
|
|
|
isMuted[i]=false;
|
|
|
|
oscBuf[i]=new DivDispatchOscBuffer;
|
|
|
|
}
|
|
|
|
sampleMem=new unsigned char[getSampleMemCapacity()];
|
|
|
|
sampleMemLen=0;
|
|
|
|
setFlags(flags);
|
|
|
|
reset();
|
|
|
|
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivPlatformRF5C68::quit() {
|
|
|
|
delete[] sampleMem;
|
|
|
|
for (int i=0; i<8; i++) {
|
|
|
|
delete oscBuf[i];
|
|
|
|
}
|
|
|
|
}
|