Midi Bindings for split controls.
This commit is contained in:
+2
-2
@@ -1,10 +1,10 @@
|
|||||||
cmake_minimum_required(VERSION 3.16.0)
|
cmake_minimum_required(VERSION 3.16.0)
|
||||||
project(pipedal
|
project(pipedal
|
||||||
VERSION 1.2.33
|
VERSION 1.2.34
|
||||||
DESCRIPTION "PiPedal Guitar Effect Pedal For Raspberry Pi"
|
DESCRIPTION "PiPedal Guitar Effect Pedal For Raspberry Pi"
|
||||||
HOMEPAGE_URL "https://rerdavies.github.io/pipedal"
|
HOMEPAGE_URL "https://rerdavies.github.io/pipedal"
|
||||||
)
|
)
|
||||||
set (DISPLAY_VERSION "v1.2.31beta1")
|
set (DISPLAY_VERSION "v1.2.34beta2")
|
||||||
|
|
||||||
set (CMAKE_INSTALL_PREFIX "/usr/")
|
set (CMAKE_INSTALL_PREFIX "/usr/")
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
|
|
||||||
<img src='docs/GithubBanner.png' width="100%" /><br/>
|
<img src='docs/GithubBanner.png' width="100%" /><br/>
|
||||||
|
|
||||||
Download: <a href='https://rerdavies.github.io/pipedal/download.html'>v1.2.33 Beta1</a>
|
Download: <a href='https://rerdavies.github.io/pipedal/download.html'>v1.2.34 Beta1</a>
|
||||||
|
|
||||||
Website: [https://rerdavies.github.io/pipedal](https://rerdavies.github.io/pipedal).
|
Website: [https://rerdavies.github.io/pipedal](https://rerdavies.github.io/pipedal).
|
||||||
|
|
||||||
|
|
||||||
> NEW version 1.2.33 beta1 release, providing support for Raspberry Pi OS Bookworm. See the [release notes](https://rerdavies.github.io/pipedal/ReleaseNotes) for details.
|
> NEW version 1.2.34 beta2 release, providing support for Raspberry Pi OS Bookworm. See the [release notes](https://rerdavies.github.io/pipedal/ReleaseNotes) for details.
|
||||||
|
|
||||||
Use your Raspberry Pi as a guitar effects pedal. Configure and control PiPedal with your phone or tablet.
|
Use your Raspberry Pi as a guitar effects pedal. Configure and control PiPedal with your phone or tablet.
|
||||||
PiPedal running on a Raspberry Pi 4 provides stable super-low-latency audio via external USB audio devices, or internal Raspberry Pi audio hats.
|
PiPedal running on a Raspberry Pi 4 provides stable super-low-latency audio via external USB audio devices, or internal Raspberry Pi audio hats.
|
||||||
|
|||||||
+3
-3
@@ -4,17 +4,17 @@
|
|||||||
|
|
||||||
Download the most recent Debian (.deb) package for your platform:
|
Download the most recent Debian (.deb) package for your platform:
|
||||||
|
|
||||||
- <a href="https://github.com/rerdavies/pipedal/releases/download/v1.2.33/pipedal_1.2.33_arm64.deb">Raspberry Pi OS Bookworm (64-bit) v1.2.33 Beta1</a>
|
- <a href="https://github.com/rerdavies/pipedal/releases/download/v1.2.34/pipedal_1.2.34_arm64.deb">Raspberry Pi OS Bookworm (64-bit) v1.2.34 Beta2</a>
|
||||||
- <a href="https://github.com/rerdavies/pipedal/releases/download/v1.1.31/pipedal_1.1.31_arm64.deb">Ubuntu 21.04 or Raspberry Pi OS Buster (64-bit) v1.1.31</a>
|
- <a href="https://github.com/rerdavies/pipedal/releases/download/v1.1.31/pipedal_1.1.31_arm64.deb">Ubuntu 21.04 or Raspberry Pi OS Buster (64-bit) v1.1.31</a>
|
||||||
|
|
||||||
v1.2.33 Beta1 is does not currently support Ubuntu 21.04, or older versions of Raspberry Pi OS.
|
v1.2.34 Beta1 is does not currently support Ubuntu 21.04, or older versions of Raspberry Pi OS.
|
||||||
|
|
||||||
Install the package by running
|
Install the package by running
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo apt update
|
sudo apt update
|
||||||
cd ~/Downloads
|
cd ~/Downloads
|
||||||
sudo apt-get install ./pipedal_1.2.33_arm64.deb
|
sudo apt-get install ./pipedal_1.2.34_arm64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
Follow the instructions in [_Configuring PiPedal After Installation_](https://rerdavies.github.io/pipedal/Configuring.html) to complete the installation.
|
Follow the instructions in [_Configuring PiPedal After Installation_](https://rerdavies.github.io/pipedal/Configuring.html) to complete the installation.
|
||||||
|
|||||||
+144
-2
@@ -520,7 +520,10 @@ export class UiControl implements Deserializable<UiControl> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
|
}
|
||||||
|
applyProperties(properties: Partial<UiControl>): UiControl
|
||||||
|
{
|
||||||
|
return {...this,...properties};
|
||||||
}
|
}
|
||||||
private hasScalePoint(value: number): boolean {
|
private hasScalePoint(value: number): boolean {
|
||||||
for (let scale_point of this.scale_points)
|
for (let scale_point of this.scale_points)
|
||||||
@@ -726,7 +729,7 @@ export class UiControl implements Deserializable<UiControl> {
|
|||||||
text += "s";
|
text += "s";
|
||||||
break;
|
break;
|
||||||
// Midinote: not handled.
|
// Midinote: not handled.
|
||||||
// semitone12TET not handled.
|
// semitone12TET not handled.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -759,6 +762,7 @@ export class UiControl implements Deserializable<UiControl> {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export class UiPlugin implements Deserializable<UiPlugin> {
|
export class UiPlugin implements Deserializable<UiPlugin> {
|
||||||
deserialize(input: any): UiPlugin
|
deserialize(input: any): UiPlugin
|
||||||
{
|
{
|
||||||
@@ -802,6 +806,11 @@ export class UiPlugin implements Deserializable<UiPlugin> {
|
|||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
isSplit(): boolean {
|
||||||
|
return this.uri === "uri://two-play/pipedal/pedalboard#Split";
|
||||||
|
|
||||||
|
}
|
||||||
getControl(key: string): UiControl | undefined {
|
getControl(key: string): UiControl | undefined {
|
||||||
for (let i = 0; i < this.controls.length; ++i)
|
for (let i = 0; i < this.controls.length; ++i)
|
||||||
{
|
{
|
||||||
@@ -860,3 +869,136 @@ export class UiPlugin implements Deserializable<UiPlugin> {
|
|||||||
is_vst3 : boolean = false;
|
is_vst3 : boolean = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
export function makeSplitUiPlugin(): UiPlugin
|
||||||
|
{
|
||||||
|
|
||||||
|
return new UiPlugin().deserialize({
|
||||||
|
uri: "uri://two-play/pipedal/pedalboard#Split",
|
||||||
|
name: "Split",
|
||||||
|
brand: "",
|
||||||
|
label: "",
|
||||||
|
plugin_type: PluginType.SplitA,
|
||||||
|
plugin_display_type: "Split",
|
||||||
|
author_name: "",
|
||||||
|
author_homepage: "",
|
||||||
|
audio_inputs: 1,
|
||||||
|
audio_outputs: 1,
|
||||||
|
has_midi_input: 0,
|
||||||
|
has_midi_output: 0,
|
||||||
|
description: "",
|
||||||
|
controls: [
|
||||||
|
new UiControl().applyProperties({
|
||||||
|
symbol: "splitType",
|
||||||
|
name: "Type",
|
||||||
|
index: 0,
|
||||||
|
is_input: true,
|
||||||
|
min_value: 0.0,
|
||||||
|
max_value: 2.0,
|
||||||
|
enumeration_property: true,
|
||||||
|
scale_points: [
|
||||||
|
new ScalePoint().deserialize({value: 0, label: "A/B"}),
|
||||||
|
new ScalePoint().deserialize({value: 1, label: "mix"}),
|
||||||
|
new ScalePoint().deserialize({value: 1, label: "L/R"}),
|
||||||
|
],
|
||||||
|
is_bypass: false,
|
||||||
|
is_program_controller: false,
|
||||||
|
custom_units: "",
|
||||||
|
connection_optional: false,
|
||||||
|
|
||||||
|
}) ,
|
||||||
|
new UiControl().applyProperties({
|
||||||
|
symbol: "select",
|
||||||
|
name: "Select",
|
||||||
|
index: 1,
|
||||||
|
is_input: true,
|
||||||
|
min_value: 0.0,
|
||||||
|
max_value: 1.0,
|
||||||
|
enumeration_property: true,
|
||||||
|
scale_points: [
|
||||||
|
new ScalePoint().deserialize({value: 0, label: "A"}),
|
||||||
|
new ScalePoint().deserialize({value: 1, label: "B"}),
|
||||||
|
],
|
||||||
|
is_bypass: false,
|
||||||
|
is_program_controller: false,
|
||||||
|
custom_units: "",
|
||||||
|
connection_optional: false,
|
||||||
|
|
||||||
|
}) ,
|
||||||
|
|
||||||
|
new UiControl().applyProperties({
|
||||||
|
symbol: "mix",
|
||||||
|
name: "Mix",
|
||||||
|
index: 2,
|
||||||
|
is_input: true,
|
||||||
|
min_value: -1.0,
|
||||||
|
max_value: 1.0,
|
||||||
|
is_bypass: false,
|
||||||
|
is_program_controller: false,
|
||||||
|
custom_units: "",
|
||||||
|
connection_optional: false,
|
||||||
|
|
||||||
|
}) ,
|
||||||
|
new UiControl().applyProperties({
|
||||||
|
symbol: "panL",
|
||||||
|
name: "Pan Top",
|
||||||
|
index: 3,
|
||||||
|
is_input: true,
|
||||||
|
min_value: -1.0,
|
||||||
|
max_value: 1.0,
|
||||||
|
is_bypass: false,
|
||||||
|
is_program_controller: false,
|
||||||
|
custom_units: "",
|
||||||
|
connection_optional: false,
|
||||||
|
|
||||||
|
}) ,
|
||||||
|
new UiControl().applyProperties({
|
||||||
|
symbol: "volL",
|
||||||
|
name: "Vol Top",
|
||||||
|
index: 4,
|
||||||
|
is_input: true,
|
||||||
|
min_value: -60.0,
|
||||||
|
max_value: 12.0,
|
||||||
|
is_bypass: false,
|
||||||
|
is_program_controller: false,
|
||||||
|
custom_units: "",
|
||||||
|
connection_optional: false,
|
||||||
|
|
||||||
|
}) ,
|
||||||
|
new UiControl().applyProperties({
|
||||||
|
symbol: "panR",
|
||||||
|
name: "Pan Bottom",
|
||||||
|
index: 5,
|
||||||
|
is_input: true,
|
||||||
|
min_value: -1.0,
|
||||||
|
max_value: 1.0,
|
||||||
|
is_bypass: false,
|
||||||
|
is_program_controller: false,
|
||||||
|
custom_units: "",
|
||||||
|
connection_optional: false,
|
||||||
|
|
||||||
|
}) ,
|
||||||
|
new UiControl().applyProperties({
|
||||||
|
symbol: "volR",
|
||||||
|
name: "Vol Bottom",
|
||||||
|
index: 6,
|
||||||
|
is_input: true,
|
||||||
|
min_value: -60.0,
|
||||||
|
max_value: 12.0,
|
||||||
|
is_bypass: false,
|
||||||
|
is_program_controller: false,
|
||||||
|
custom_units: "",
|
||||||
|
connection_optional: false,
|
||||||
|
})
|
||||||
|
],
|
||||||
|
port_groups: [],
|
||||||
|
fileProperties: [],
|
||||||
|
frequencyPlots: [],
|
||||||
|
is_vst3 : false,
|
||||||
|
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ import MicNoneOutlinedIcon from '@mui/icons-material/MicNoneOutlined';
|
|||||||
import MicOutlinedIcon from '@mui/icons-material/MicOutlined';
|
import MicOutlinedIcon from '@mui/icons-material/MicOutlined';
|
||||||
import IconButton from '@mui/material/IconButton';
|
import IconButton from '@mui/material/IconButton';
|
||||||
import NumericInput from './NumericInput';
|
import NumericInput from './NumericInput';
|
||||||
|
import { UiPlugin } from './Lv2Plugin';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -45,6 +46,7 @@ interface MidiBindingViewProps extends WithStyles<typeof styles> {
|
|||||||
instanceId: number;
|
instanceId: number;
|
||||||
listen: boolean;
|
listen: boolean;
|
||||||
midiBinding: MidiBinding;
|
midiBinding: MidiBinding;
|
||||||
|
uiPlugin: UiPlugin;
|
||||||
onChange: (instanceId: number, newBinding: MidiBinding) => void;
|
onChange: (instanceId: number, newBinding: MidiBinding) => void;
|
||||||
onListen: (instanceId: number, key: string, listenForControl: boolean) => void;
|
onListen: (instanceId: number, key: string, listenForControl: boolean) => void;
|
||||||
}
|
}
|
||||||
@@ -139,8 +141,7 @@ const MidiBindingView =
|
|||||||
render() {
|
render() {
|
||||||
let classes = this.props.classes;
|
let classes = this.props.classes;
|
||||||
let midiBinding = this.props.midiBinding;
|
let midiBinding = this.props.midiBinding;
|
||||||
let pedalboardItem = this.model.pedalboard.get().getItem(this.props.instanceId);
|
let uiPlugin = this.props.uiPlugin;
|
||||||
let uiPlugin = this.model.getUiPlugin(pedalboardItem.uri);
|
|
||||||
if (!uiPlugin) {
|
if (!uiPlugin) {
|
||||||
return (<div />);
|
return (<div />);
|
||||||
}
|
}
|
||||||
@@ -258,7 +259,11 @@ const MidiBindingView =
|
|||||||
value={midiBinding.switchControlType}
|
value={midiBinding.switchControlType}
|
||||||
>
|
>
|
||||||
<MenuItem value={MidiBinding.LATCH_CONTROL_TYPE}>Toggle</MenuItem>
|
<MenuItem value={MidiBinding.LATCH_CONTROL_TYPE}>Toggle</MenuItem>
|
||||||
<MenuItem value={MidiBinding.MOMENTARY_CONTROL_TYPE}>Momentary</MenuItem>
|
<MenuItem value={MidiBinding.MOMENTARY_CONTROL_TYPE}>{
|
||||||
|
(midiBinding.bindingType === MidiBinding.BINDING_TYPE_NOTE) ?
|
||||||
|
"Note on/off"
|
||||||
|
: "Control value"
|
||||||
|
}</MenuItem>
|
||||||
</Select>
|
</Select>
|
||||||
</div>
|
</div>
|
||||||
))
|
))
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ import IconButton from '@mui/material/IconButton';
|
|||||||
import MidiBinding from './MidiBinding';
|
import MidiBinding from './MidiBinding';
|
||||||
import MidiBindingView from './MidiBindingView';
|
import MidiBindingView from './MidiBindingView';
|
||||||
import Snackbar from '@mui/material/Snackbar';
|
import Snackbar from '@mui/material/Snackbar';
|
||||||
|
import { UiPlugin,makeSplitUiPlugin } from './Lv2Plugin';
|
||||||
|
|
||||||
const styles = (theme: Theme) => createStyles({
|
const styles = (theme: Theme) => createStyles({
|
||||||
dialogAppBar: {
|
dialogAppBar: {
|
||||||
@@ -62,6 +63,10 @@ const styles = (theme: Theme) => createStyles({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function not_null<T>(value: T | null) {
|
||||||
|
if (!value) throw Error("Unexpected null value");
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
export interface MidiBindingDialogProps extends WithStyles<typeof styles> {
|
export interface MidiBindingDialogProps extends WithStyles<typeof styles> {
|
||||||
open: boolean,
|
open: boolean,
|
||||||
@@ -189,7 +194,43 @@ export const MidiBindingDialog =
|
|||||||
let item = v.value;
|
let item = v.value;
|
||||||
|
|
||||||
|
|
||||||
let plugin = this.model.getUiPlugin(item.uri);
|
let isSplit = item.uri === "uri://two-play/pipedal/pedalboard#Split";
|
||||||
|
let plugin : UiPlugin | null = this.model.getUiPlugin(item.uri);
|
||||||
|
if (plugin === null && isSplit)
|
||||||
|
{
|
||||||
|
plugin = makeSplitUiPlugin();
|
||||||
|
let splitType = item.getControlValue("splitType");
|
||||||
|
not_null(plugin.getControl("splitType")).not_on_gui = true;
|
||||||
|
switch (splitType)
|
||||||
|
{
|
||||||
|
case 0: // A/B
|
||||||
|
not_null(plugin.getControl("select")).not_on_gui = false;
|
||||||
|
not_null(plugin.getControl("mix")).not_on_gui = true;
|
||||||
|
not_null(plugin.getControl("volL")).not_on_gui = true;
|
||||||
|
not_null(plugin.getControl("panL")).not_on_gui = true;
|
||||||
|
not_null(plugin.getControl("volR")).not_on_gui = true;
|
||||||
|
not_null(plugin.getControl("panR")).not_on_gui = true;
|
||||||
|
break;
|
||||||
|
case 1: //mixer
|
||||||
|
not_null(plugin.getControl("select")).not_on_gui = true;
|
||||||
|
not_null(plugin.getControl("mix")).not_on_gui = false;
|
||||||
|
not_null(plugin.getControl("volL")).not_on_gui = true;
|
||||||
|
not_null(plugin.getControl("panL")).not_on_gui = true;
|
||||||
|
not_null(plugin.getControl("volR")).not_on_gui = true;
|
||||||
|
not_null(plugin.getControl("panR")).not_on_gui = true;
|
||||||
|
break;
|
||||||
|
case 2: // L/R
|
||||||
|
not_null(plugin.getControl("select")).not_on_gui = true;
|
||||||
|
not_null(plugin.getControl("mix")).not_on_gui = true;
|
||||||
|
not_null(plugin.getControl("volL")).not_on_gui = false;
|
||||||
|
not_null(plugin.getControl("panL")).not_on_gui = false;
|
||||||
|
not_null(plugin.getControl("volR")).not_on_gui = false;
|
||||||
|
not_null(plugin.getControl("panR")).not_on_gui = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// xxx
|
||||||
|
}
|
||||||
if (plugin) {
|
if (plugin) {
|
||||||
result.push(
|
result.push(
|
||||||
<tr>
|
<tr>
|
||||||
@@ -200,29 +241,33 @@ export const MidiBindingDialog =
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
);
|
);
|
||||||
result.push(
|
if (!isSplit)
|
||||||
<tr>
|
{
|
||||||
<td className={classes.nameTd}>
|
result.push(
|
||||||
<Typography noWrap style={{ verticalAlign: "center", height: 48 }}>
|
<tr>
|
||||||
Bypass
|
<td className={classes.nameTd}>
|
||||||
</Typography>
|
<Typography noWrap style={{ verticalAlign: "center", height: 48 }}>
|
||||||
</td>
|
Bypass
|
||||||
<td className={classes.bindingTd}>
|
</Typography>
|
||||||
<MidiBindingView instanceId={item.instanceId} midiBinding={item.getMidiBinding("__bypass")}
|
</td>
|
||||||
onListen={(instanceId: number, symbol: string, listenForControl: boolean) => {
|
<td className={classes.bindingTd}>
|
||||||
if (instanceId === -2)
|
<MidiBindingView instanceId={item.instanceId} midiBinding={item.getMidiBinding("__bypass")}
|
||||||
{
|
uiPlugin={plugin}
|
||||||
this.cancelListenForControl();
|
onListen={(instanceId: number, symbol: string, listenForControl: boolean) => {
|
||||||
} else {
|
if (instanceId === -2)
|
||||||
this.handleListenForControl(instanceId, symbol, listenForControl);
|
{
|
||||||
}
|
this.cancelListenForControl();
|
||||||
}}
|
} else {
|
||||||
listen={item.instanceId === this.state.listenInstanceId && this.state.listenSymbol === "__bypass"}
|
this.handleListenForControl(instanceId, symbol, listenForControl);
|
||||||
onChange={(instanceId: number, newItem: MidiBinding) => this.handleItemChanged(instanceId, newItem)}
|
}
|
||||||
/>
|
}}
|
||||||
</td>
|
listen={item.instanceId === this.state.listenInstanceId && this.state.listenSymbol === "__bypass"}
|
||||||
</tr>
|
onChange={(instanceId: number, newItem: MidiBinding) => this.handleItemChanged(instanceId, newItem)}
|
||||||
);
|
/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
for (let i = 0; i < plugin.controls.length; ++i) {
|
for (let i = 0; i < plugin.controls.length; ++i) {
|
||||||
let control = plugin.controls[i];
|
let control = plugin.controls[i];
|
||||||
@@ -244,6 +289,7 @@ export const MidiBindingDialog =
|
|||||||
</td>
|
</td>
|
||||||
<td className={classes.bindingTd}>
|
<td className={classes.bindingTd}>
|
||||||
<MidiBindingView instanceId={item.instanceId}
|
<MidiBindingView instanceId={item.instanceId}
|
||||||
|
uiPlugin={plugin}
|
||||||
midiBinding={item.getMidiBinding(symbol)}
|
midiBinding={item.getMidiBinding(symbol)}
|
||||||
listen={item.instanceId === this.state.listenInstanceId && this.state.listenSymbol === symbol}
|
listen={item.instanceId === this.state.listenInstanceId && this.state.listenSymbol === symbol}
|
||||||
onListen={(instanceId: number, symbol: string, listenForControl: boolean) => {
|
onListen={(instanceId: number, symbol: string, listenForControl: boolean) => {
|
||||||
|
|||||||
@@ -423,6 +423,7 @@ export class PiPedalModel //implements PiPedalModel
|
|||||||
//if (retry !== 0) {
|
//if (retry !== 0) {
|
||||||
if (this.restartExpected) {
|
if (this.restartExpected) {
|
||||||
this.setState(State.ApplyingChanges);
|
this.setState(State.ApplyingChanges);
|
||||||
|
this.restartExpected = false;
|
||||||
} else {
|
} else {
|
||||||
this.setState(State.Reconnecting);
|
this.setState(State.Reconnecting);
|
||||||
}
|
}
|
||||||
|
|||||||
+9
-20
@@ -261,15 +261,15 @@ void Lv2Pedalboard::PrepareMidiMap(const PedalboardItem &pedalboardItem)
|
|||||||
{
|
{
|
||||||
if (pedalboardItem.midiBindings().size() != 0)
|
if (pedalboardItem.midiBindings().size() != 0)
|
||||||
{
|
{
|
||||||
auto pluginInfo = pHost->GetPluginInfo(pedalboardItem.uri());
|
Lv2PluginInfo::ptr pluginInfo;
|
||||||
const Lv2PluginInfo *pPluginInfo;
|
if (pedalboardItem.uri() == SPLIT_PEDALBOARD_ITEM_URI)
|
||||||
if (pluginInfo == nullptr && pedalboardItem.uri() == SPLIT_PEDALBOARD_ITEM_URI)
|
|
||||||
{
|
{
|
||||||
pPluginInfo = GetSplitterPluginInfo();
|
pluginInfo = GetSplitterPluginInfo();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
pPluginInfo = pluginInfo.get();
|
pluginInfo = pHost->GetPluginInfo(pedalboardItem.uri());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int effectIndex = this->GetIndexOfInstanceId(pedalboardItem.instanceId());
|
int effectIndex = this->GetIndexOfInstanceId(pedalboardItem.instanceId());
|
||||||
@@ -351,21 +351,10 @@ void Lv2Pedalboard::PrepareMidiMap(const Pedalboard &pedalboard)
|
|||||||
auto &item = pedalboard.items()[i];
|
auto &item = pedalboard.items()[i];
|
||||||
PrepareMidiMap(item);
|
PrepareMidiMap(item);
|
||||||
|
|
||||||
auto pluginInfo = pHost->GetPluginInfo(item.uri());
|
|
||||||
|
|
||||||
if (pluginInfo)
|
|
||||||
{
|
|
||||||
for (size_t bindingIndex = 0; bindingIndex < item.midiBindings().size(); ++bindingIndex)
|
|
||||||
{
|
|
||||||
auto &binding = item.midiBindings()[i];
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
std::sort(this->midiMappings.begin(), this->midiMappings.end(),
|
|
||||||
[](const MidiMapping &left, const MidiMapping &right)
|
|
||||||
{ return left.key < right.key; });
|
|
||||||
}
|
}
|
||||||
|
std::sort(this->midiMappings.begin(), this->midiMappings.end(),
|
||||||
|
[](const MidiMapping &left, const MidiMapping &right)
|
||||||
|
{ return left.key < right.key; });
|
||||||
}
|
}
|
||||||
void Lv2Pedalboard::Activate()
|
void Lv2Pedalboard::Activate()
|
||||||
{
|
{
|
||||||
@@ -606,7 +595,7 @@ void Lv2Pedalboard::OnMidiMessage(size_t size, uint8_t *message,
|
|||||||
if (size < 3)
|
if (size < 3)
|
||||||
return;
|
return;
|
||||||
index = message[1];
|
index = message[1];
|
||||||
value = 127;
|
value = message[2] == 0? 0: 127; // zero velocity = note off.
|
||||||
}
|
}
|
||||||
else if (cmd == 0xB0) // midi control.
|
else if (cmd == 0xB0) // midi control.
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1266,21 +1266,20 @@ void PiPedalModel::OnNotifyMidiValueChanged(int64_t instanceId, int portIndex, f
|
|||||||
PedalboardItem *item = this->pedalboard.GetItem(instanceId);
|
PedalboardItem *item = this->pedalboard.GetItem(instanceId);
|
||||||
if (item)
|
if (item)
|
||||||
{
|
{
|
||||||
const Lv2PluginInfo *pPluginInfo;
|
Lv2PluginInfo::ptr pPluginInfo;
|
||||||
if (item->uri() == SPLIT_PEDALBOARD_ITEM_URI)
|
if (item->uri() == SPLIT_PEDALBOARD_ITEM_URI)
|
||||||
{
|
{
|
||||||
pPluginInfo = GetSplitterPluginInfo();
|
pPluginInfo = GetSplitterPluginInfo();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
auto pluginInfo = lv2Host.GetPluginInfo(item->uri());
|
pPluginInfo = lv2Host.GetPluginInfo(item->uri());
|
||||||
pPluginInfo = pluginInfo.get();
|
|
||||||
}
|
}
|
||||||
if (pPluginInfo)
|
if (pPluginInfo)
|
||||||
{
|
{
|
||||||
if (portIndex == -1)
|
if (portIndex == -1)
|
||||||
{
|
{
|
||||||
// bypass!
|
// bypass! yyy this->value!!!
|
||||||
this->pedalboard.SetItemEnabled(instanceId, value != 0);
|
this->pedalboard.SetItemEnabled(instanceId, value != 0);
|
||||||
// take a snapshot incase a client unsusbscribes in the notification handler (in which case the mutex won't protect us)
|
// take a snapshot incase a client unsusbscribes in the notification handler (in which case the mutex won't protect us)
|
||||||
IPiPedalModelSubscriber **t = new IPiPedalModelSubscriber *[this->subscribers.size()];
|
IPiPedalModelSubscriber **t = new IPiPedalModelSubscriber *[this->subscribers.size()];
|
||||||
@@ -1675,16 +1674,15 @@ void PiPedalModel::SetJackServerSettings(const JackServerSettings &jackServerSet
|
|||||||
|
|
||||||
void PiPedalModel::UpdateDefaults(PedalboardItem *pedalboardItem)
|
void PiPedalModel::UpdateDefaults(PedalboardItem *pedalboardItem)
|
||||||
{
|
{
|
||||||
std::shared_ptr<Lv2PluginInfo> t = lv2Host.GetPluginInfo(pedalboardItem->uri());
|
std::shared_ptr<Lv2PluginInfo> pPlugin = lv2Host.GetPluginInfo(pedalboardItem->uri());
|
||||||
const Lv2PluginInfo *pPlugin = t.get();
|
if (!pPlugin)
|
||||||
if (pPlugin == nullptr)
|
|
||||||
{
|
{
|
||||||
if (pedalboardItem->uri() == SPLIT_PEDALBOARD_ITEM_URI)
|
if (pedalboardItem->uri() == SPLIT_PEDALBOARD_ITEM_URI)
|
||||||
{
|
{
|
||||||
pPlugin = GetSplitterPluginInfo();
|
pPlugin = GetSplitterPluginInfo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (pPlugin != nullptr)
|
if (pPlugin)
|
||||||
{
|
{
|
||||||
for (size_t i = 0; i < pPlugin->ports().size(); ++i)
|
for (size_t i = 0; i < pPlugin->ports().size(); ++i)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1353,6 +1353,10 @@ Lv2PortGroup::Lv2PortGroup(PluginHost *lv2Host, const std::string &groupUri)
|
|||||||
name_ = nodeAsString(nameNode);
|
name_ = nodeAsString(nameNode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Lv2PluginInfo::isSplit() const
|
||||||
|
{
|
||||||
|
return uri_ == SPLIT_PEDALBOARD_ITEM_URI;
|
||||||
|
}
|
||||||
std::shared_ptr<HostWorkerThread> PluginHost::GetHostWorkerThread()
|
std::shared_ptr<HostWorkerThread> PluginHost::GetHostWorkerThread()
|
||||||
{
|
{
|
||||||
return pHostWorkerThread;
|
return pHostWorkerThread;
|
||||||
|
|||||||
@@ -337,8 +337,10 @@ namespace pipedal
|
|||||||
friend class PluginHost;
|
friend class PluginHost;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
using ptr = std::shared_ptr<Lv2PluginInfo>;
|
||||||
Lv2PluginInfo(PluginHost *lv2Host, LilvWorld *pWorld, const LilvPlugin *);
|
Lv2PluginInfo(PluginHost *lv2Host, LilvWorld *pWorld, const LilvPlugin *);
|
||||||
Lv2PluginInfo() {}
|
Lv2PluginInfo() {}
|
||||||
|
bool isSplit() const ;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::shared_ptr<PiPedalUI> FindWritablePathProperties(PluginHost *lv2Host, const LilvPlugin *pPlugin);
|
std::shared_ptr<PiPedalUI> FindWritablePathProperties(PluginHost *lv2Host, const LilvPlugin *pPlugin);
|
||||||
|
|||||||
+4
-2
@@ -33,6 +33,8 @@ static std::shared_ptr<Lv2PortInfo> MakeBypassPortInfo()
|
|||||||
bypassPortInfo->is_input(true);
|
bypassPortInfo->is_input(true);
|
||||||
bypassPortInfo->is_control_port(true);
|
bypassPortInfo->is_control_port(true);
|
||||||
bypassPortInfo->index(-1);
|
bypassPortInfo->index(-1);
|
||||||
|
|
||||||
|
|
||||||
bypassPortInfo->min_value(0);
|
bypassPortInfo->min_value(0);
|
||||||
bypassPortInfo->max_value(1);
|
bypassPortInfo->max_value(1);
|
||||||
bypassPortInfo->default_value(1);
|
bypassPortInfo->default_value(1);
|
||||||
@@ -159,9 +161,9 @@ static Lv2PluginInfo makeSplitterPluginInfo()
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
Lv2PluginInfo g_splitterPluginInfo = makeSplitterPluginInfo();
|
Lv2PluginInfo::ptr g_splitterPluginInfo = std::make_shared<Lv2PluginInfo>(makeSplitterPluginInfo());
|
||||||
|
|
||||||
const Lv2PluginInfo *pipedal::GetSplitterPluginInfo() { return &g_splitterPluginInfo; }
|
Lv2PluginInfo::ptr pipedal::GetSplitterPluginInfo() { return g_splitterPluginInfo; }
|
||||||
|
|
||||||
int SplitEffect::GetControlIndex(const std::string &symbol) const
|
int SplitEffect::GetControlIndex(const std::string &symbol) const
|
||||||
{
|
{
|
||||||
|
|||||||
+1
-1
@@ -36,7 +36,7 @@ namespace pipedal
|
|||||||
class Lv2PluginInfo;
|
class Lv2PluginInfo;
|
||||||
class Lv2PortInfo;
|
class Lv2PortInfo;
|
||||||
|
|
||||||
const Lv2PluginInfo *GetSplitterPluginInfo();
|
std::shared_ptr<Lv2PluginInfo> GetSplitterPluginInfo();
|
||||||
|
|
||||||
const Lv2PortInfo *GetBypassPortInfo();
|
const Lv2PortInfo *GetBypassPortInfo();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user