ensoniq-buddy/src/application.jsx

352 lines
7.0 KiB
JavaScript

// var h = preact.h;
import { calc_sr, calc_shift, log2 } from './utils';
import { NoteInput, NoteFrequency } from './note_input';
import { RadioGroup } from './radio_group';
import { WaveData } from './wave_data';
import { Oscillators, WaveSize, Resolution, Frequency, Assembler, WaveShape } from './input';
function nmultiply(x) {
if (x == 0) return 0;
if (x == 1) return <i>n</i>;
return <>{x} * <i>n</i></>;
// return paren ? <span>({x} * <i>n</i>)</span> : <span>{x} * <i>n</i></span>;
}
function simplify(res, freq) {
while (res && !(freq & 0x01)) {
freq >>= 1;
--res;
}
return [res, freq];
}
function SampleDisplay(props) {
var { shift, freq } = props;
var freq2 = log2(freq);
var fspan = <span title="Frequency">{freq}</span>;
var rv = [];
rv.push(
<div>
Sample<sub>n</sub> = RAM[ ({fspan} * <i>n</i>) >> {shift} ]
</div>
);
rv.push(
<div>
Sample<sub>n</sub> = RAM[ ({fspan} * <i>n</i>) / {1 << shift} ]
</div>
);
if (freq2) {
if (freq2 >= shift) {
rv.push(
<div>
Sample<sub>n</sub> = RAM[ { nmultiply(freq / ( 1 << shift)) } ]
</div>
);
} else {
rv.push(
<div>
Sample<sub>n</sub> = RAM[ { nmultiply(freq >> freq2) } >> {shift - freq2} ]
</div>
);
rv.push(
<div>
Sample<sub>n</sub> = RAM[ { nmultiply(freq >> freq2) } / { 1 << (shift - freq2) } ]
</div>
);
}
}
return rv;
}
function NoteDisplay(props) {
var { osc, note } = props;
const wave = 0; // 256
const sr = calc_sr(osc);
const note_frq = NoteFrequency(note);
const f = note_frq / (sr / (1 << (8 + wave)));
// best_res = 7 - Math.ceil(Math.log2(f)) ?
// best_freq = f * (1 << calc_shift(best_res, 0)) ?
var best_res = 0;
var best_freq = 0;
for (var res = 0; res < 8; ++res) {
var tmp = Math.round(f * (1 << calc_shift(res, wave)));
if (tmp >= 0x10000) break;
best_res = res;
best_freq = tmp;
}
[best_res, best_freq] = simplify(best_res, best_freq);
return (
<>
<div>Wave Size: 256</div>
<div>Resolution: {best_res}</div>
<div>Frequency: {best_freq}</div>
</>
);
}
function ResampleDisplay(props) {
var { osc, size, freq } = props;
const sr = calc_sr(osc);
const f = freq / sr;
var best_res = 0;
var best_freq = 0;
for (var res = 0; res < 8; ++res) {
var tmp = Math.round(f * (1 << calc_shift(res, size)));
if (tmp >= 0x10000) break;
best_res = res;
best_freq = tmp;
}
[best_res, best_freq] = simplify(best_res, best_freq);
var best_shift = calc_shift(best_res, size);
return (
<>
<div>Resolution: {best_res}</div>
<div>Frequency: {best_freq}</div>
<SampleDisplay freq={best_freq} shift={best_shift} />
</>
);
}
// oscillators generate addresses, not samples.
// accumulator is 24-bit.
// frequency is 16-bit.
// accumulator n = freq * n
// sample n = memory[(freq * n) >> res. shift]
export class Application extends preact.Component {
constructor(props) {
super(props);
this._oscChange = this.oscChange.bind(this);
this._waveChange = this.waveChange.bind(this);
this._resChange = this.resChange.bind(this);
this._freqChange = this.freqChange.bind(this);
this._noteChange = this.noteChange.bind(this);
this._tabChange = this.tabChange.bind(this);
this._asmChange = this.asmChange.bind(this);
this._shapeChange = this.shapeChange.bind(this);
this._inFreqChange = this.inFreqChange.bind(this);
this._inSizeChange = this.inSizeChange.bind(this);
this.state = {
osc: 32, wave: 0, res: 0, freq: 512, tab: 0,
note: 4*12, assembler: 0, shape: 0,
in_freq: 44100, in_size: 0,
};
}
oscChange(e) {
e.preventDefault();
var v = +e.target.value || 0;
this.setState( { osc: v } );
}
waveChange(e) {
e.preventDefault();
var v = +e.target.value || 0;
this.setState( { wave: v } );
}
resChange(e) {
e.preventDefault();
var v = +e.target.value || 0;
this.setState( { res: v } );
}
freqChange(e) {
e.preventDefault();
var v = +e.target.value >> 0;
if (v < 0) v = 0;
if (v > 65535) v = 65535;
this.setState( { freq: v } );
}
inFreqChange(e) {
e.preventDefault();
var v = +e.target.value >> 0;
if (v < 0) v = 0;
if (v > 65535) v = 65535;
this.setState( { in_freq: v } );
}
inSizeChange(e) {
e.preventDefault();
var v = +e.target.value || 0;
this.setState( { in_size: v } );
}
tabChange(e) {
e.preventDefault();
var v = +e.target.value;
this.setState({ tab: v });
}
noteChange(v) {
this.setState({ note: v });
}
asmChange(e) {
e.preventDefault();
var v = +e.target.value;
this.setState({ assembler: v});
}
shapeChange(e) {
e.preventDefault();
var v = +e.target.value;
this.setState({ shape: v});
}
sampleChildren() {
var { osc, wave, res, freq } = this.state;
var shift = calc_shift(res, wave);
return (
<>
<div>
<label>Oscillators</label> <Oscillators value={osc} onChange={this._oscChange} />
</div>
<div>
<label>Wave Size</label> <WaveSize value={wave} onChange={this._waveChange} />
</div>
<div>
<label>Resolution</label> <Resolution value={res} onChange={this._resChange} />
</div>
<div>
<label>Frequency</label> <Frequency value={freq} onChange={this._freqChange} />
</div>
<SampleDisplay freq={freq} shift={shift} />
</>
);
}
noteChildren() {
var { osc, wave, note } = this.state;
return (
<>
<div>
<label>Oscillators</label> <Oscillators value={osc} onChange={this._oscChange} />
</div>
<div>
<label>Note</label> <NoteInput value={note} onChange={this._noteChange} />
</div>
<NoteDisplay osc={osc} note={note} wave={wave} />
</>
);
}
waveChildren() {
var { assembler, shape } = this.state;
return (
<>
<div>
<label>Assembler</label> <Assembler value={assembler} onChange={this._asmChange} />
</div>
<div>
<label>Wave Type</label> <WaveShape value={shape} onChange={this._shapeChange} />
</div>
<WaveData assembler={assembler} shape={shape} />
</>
);
}
resampleChildren() {
var { osc, in_freq, in_size } = this.state;
// freq not limited to 65,535 ?
return (
<>
<div>
<label>Oscillators</label> <Oscillators value={osc} onChange={this._oscChange} />
</div>
<div>
<label>In Frequency</label> <Frequency value={in_freq} onChange={this._inFreqChange} />
</div>
<div>
<label>In Size</label> <WaveSize value={in_size} onChange={this._inSizeChange} />
</div>
<ResampleDisplay osc={osc} size={in_size} freq={in_freq} />
</>
);
}
render() {
var { osc, wave, res, freq, tab } = this.state;
// var shift = calc_shift(res, wave);
var children;
switch(tab){
case 0: children = this.sampleChildren(); break;
case 1: children = this.resampleChildren(); break;
case 2: children = this.noteChildren(); break;
case 3: children = this.waveChildren(); break;
}
var options = ["Sample", "Resample", "Note", "Wave"].map( (o, ix) => {
return <option key={ix} value={ix}>{o}</option>;
});
return (
<fieldset>
<legend><select value={tab} onChange={this._tabChange}>{options}</select></legend>
{children}
</fieldset>
);
}
}