@grame/faustwasm 0.13.7 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/standalone/faustwasm/index.d.ts +3 -0
- package/assets/standalone/faustwasm/index.js +29 -6
- package/assets/standalone/faustwasm/index.js.map +2 -2
- package/dist/cjs/index.d.ts +3 -0
- package/dist/cjs/index.js +29 -6
- package/dist/cjs/index.js.map +2 -2
- package/dist/cjs-bundle/index.d.ts +3 -0
- package/dist/cjs-bundle/index.js +29 -6
- package/dist/cjs-bundle/index.js.map +2 -2
- package/dist/esm/index.d.ts +3 -0
- package/dist/esm/index.js +29 -6
- package/dist/esm/index.js.map +2 -2
- package/dist/esm-bundle/index.d.ts +3 -0
- package/dist/esm-bundle/index.js +29 -6
- package/dist/esm-bundle/index.js.map +2 -2
- package/package.json +1 -1
- package/src/FaustAudioWorkletNode.ts +14 -4
- package/src/FaustWebAudioDsp.ts +16 -2
- package/src/types.ts +2 -0
- package/test/faustlive-wasm/faustwasm/index.d.ts +3 -0
- package/test/faustlive-wasm/faustwasm/index.js +29 -6
- package/test/faustlive-wasm/faustwasm/index.js.map +2 -2
- package/test/node/test-param-aliases.js +73 -0
- package/test/organ/create-node.js +252 -0
- package/test/organ/dsp-meta.json +131 -0
- package/test/organ/dsp-module.wasm +0 -0
- package/test/organ/faust-pwa.js +344 -0
- package/test/organ/faust-ui/index.css +442 -0
- package/test/organ/faust-ui/index.css.map +1 -0
- package/test/organ/faust-ui/index.d.ts +1 -0
- package/test/organ/faust-ui/index.js +3756 -0
- package/test/organ/faust-ui/index.js.map +1 -0
- package/test/organ/faustwasm/index.d.ts +1730 -0
- package/test/organ/faustwasm/index.js +5969 -0
- package/test/organ/faustwasm/index.js.map +7 -0
- package/test/organ/icon.png +0 -0
- package/test/organ/index.html +76 -0
- package/test/organ/index.js +69 -0
- package/test/organ/manifest.json +17 -0
- package/test/organ/service-worker.js +165 -0
|
@@ -132,6 +132,7 @@ export interface FaustUIInputItem {
|
|
|
132
132
|
type: FaustUIInputType;
|
|
133
133
|
label: string;
|
|
134
134
|
address: string;
|
|
135
|
+
shortname: string;
|
|
135
136
|
url: string;
|
|
136
137
|
index: number;
|
|
137
138
|
init?: number;
|
|
@@ -144,6 +145,7 @@ export interface FaustUIOutputItem {
|
|
|
144
145
|
type: FaustUIOutputType;
|
|
145
146
|
label: string;
|
|
146
147
|
address: string;
|
|
148
|
+
shortname: string;
|
|
147
149
|
index: number;
|
|
148
150
|
min?: number;
|
|
149
151
|
max?: number;
|
|
@@ -1394,6 +1396,7 @@ export declare class FaustAudioWorkletNode<Poly extends boolean = false> extends
|
|
|
1394
1396
|
protected fUICallback: UIHandler;
|
|
1395
1397
|
protected fDescriptor: FaustUIInputItem[];
|
|
1396
1398
|
protected fCommunicator: FaustAudioWorkletNodeCommunicator;
|
|
1399
|
+
protected fParamAliases: Record<string, string>;
|
|
1397
1400
|
constructor(context: BaseAudioContext, name: string, factory: LooseFaustDspFactory, options?: Partial<FaustAudioWorkletNodeOptions<Poly>>);
|
|
1398
1401
|
protected handleMessageAux: (e: MessageEvent) => void;
|
|
1399
1402
|
private handleDeviceMotion;
|
|
@@ -2526,11 +2526,25 @@ var FaustBaseWebAudioDsp = class _FaustBaseWebAudioDsp {
|
|
|
2526
2526
|
this.fPathTable = {};
|
|
2527
2527
|
this.fUICallback = (item) => {
|
|
2528
2528
|
if (item.type === "hbargraph" || item.type === "vbargraph") {
|
|
2529
|
+
const registerPath = (alias) => {
|
|
2530
|
+
if (this.fPathTable[alias] === void 0) {
|
|
2531
|
+
this.fPathTable[alias] = item.index;
|
|
2532
|
+
}
|
|
2533
|
+
};
|
|
2529
2534
|
this.fOutputsItems.push(item.address);
|
|
2530
|
-
|
|
2535
|
+
registerPath(item.address);
|
|
2536
|
+
registerPath(item.shortname);
|
|
2537
|
+
registerPath(item.label);
|
|
2531
2538
|
} else if (item.type === "vslider" || item.type === "hslider" || item.type === "button" || item.type === "checkbox" || item.type === "nentry") {
|
|
2539
|
+
const registerPath = (alias) => {
|
|
2540
|
+
if (this.fPathTable[alias] === void 0) {
|
|
2541
|
+
this.fPathTable[alias] = item.index;
|
|
2542
|
+
}
|
|
2543
|
+
};
|
|
2532
2544
|
this.fInputsItems.push(item.address);
|
|
2533
|
-
|
|
2545
|
+
registerPath(item.address);
|
|
2546
|
+
registerPath(item.shortname);
|
|
2547
|
+
registerPath(item.label);
|
|
2534
2548
|
this.fDescriptor.push(item);
|
|
2535
2549
|
if (!item.meta) return;
|
|
2536
2550
|
item.meta.forEach((meta) => {
|
|
@@ -4735,11 +4749,19 @@ var FaustAudioWorkletNode = class extends (globalThis.AudioWorkletNode || null)
|
|
|
4735
4749
|
this.fComputeHandler = null;
|
|
4736
4750
|
this.fPlotHandler = null;
|
|
4737
4751
|
this.fDescriptor = [];
|
|
4752
|
+
this.fParamAliases = {};
|
|
4738
4753
|
this.fInputsItems = [];
|
|
4739
4754
|
this.fUICallback = (item) => {
|
|
4740
4755
|
if (item.type === "vslider" || item.type === "hslider" || item.type === "button" || item.type === "checkbox" || item.type === "nentry") {
|
|
4741
4756
|
this.fInputsItems.push(item.address);
|
|
4742
4757
|
this.fDescriptor.push(item);
|
|
4758
|
+
const registerAlias = (alias) => {
|
|
4759
|
+
if (!this.fParamAliases[alias]) {
|
|
4760
|
+
this.fParamAliases[alias] = item.address;
|
|
4761
|
+
}
|
|
4762
|
+
};
|
|
4763
|
+
registerAlias(item.shortname);
|
|
4764
|
+
registerAlias(item.label);
|
|
4743
4765
|
if (!item.meta) return;
|
|
4744
4766
|
item.meta.forEach((meta) => {
|
|
4745
4767
|
const { midi, acc, gyr } = meta;
|
|
@@ -4894,13 +4916,14 @@ var FaustAudioWorkletNode = class extends (globalThis.AudioWorkletNode || null)
|
|
|
4894
4916
|
});
|
|
4895
4917
|
}
|
|
4896
4918
|
setParamValue(path, value) {
|
|
4897
|
-
const
|
|
4898
|
-
this.port.postMessage(
|
|
4899
|
-
const param = this.parameters.get(
|
|
4919
|
+
const resolved = this.fParamAliases[path] || path;
|
|
4920
|
+
this.port.postMessage({ type: "param", data: { path: resolved, value } });
|
|
4921
|
+
const param = this.parameters.get(resolved);
|
|
4900
4922
|
if (param) param.setValueAtTime(value, this.context.currentTime);
|
|
4901
4923
|
}
|
|
4902
4924
|
getParamValue(path) {
|
|
4903
|
-
const
|
|
4925
|
+
const resolved = this.fParamAliases[path] || path;
|
|
4926
|
+
const param = this.parameters.get(resolved);
|
|
4904
4927
|
return param ? param.value : 0;
|
|
4905
4928
|
}
|
|
4906
4929
|
getParams() {
|