add reverb command
This commit is contained in:
parent
ab9eaa1400
commit
159048550d
6 changed files with 35 additions and 1 deletions
|
@ -20,6 +20,7 @@ pub const CommandType = enum {
|
|||
Mbeq,
|
||||
Chorus,
|
||||
PitchScaler,
|
||||
Reverb,
|
||||
};
|
||||
|
||||
pub const Command = struct {
|
||||
|
@ -128,6 +129,7 @@ pub const Lang = struct {
|
|||
_ = try self.keywords.put("phaser", .Phaser);
|
||||
_ = try self.keywords.put("chorus", .Chorus);
|
||||
_ = try self.keywords.put("pitchscaler", .PitchScaler);
|
||||
_ = try self.keywords.put("reverb", .Reverb);
|
||||
}
|
||||
|
||||
pub fn parse(self: *Lang, data: []const u8) !CommandList {
|
||||
|
|
|
@ -74,7 +74,7 @@ pub const RunContext = struct {
|
|||
|
||||
return RunContext{
|
||||
.in_buf = try allocator.alloc(f32, 1),
|
||||
.out_buf = try allocator.alloc(f32, 1),
|
||||
.out_buf = try allocator.alloc(f32, 2),
|
||||
.instance = instance.?,
|
||||
};
|
||||
}
|
||||
|
|
|
@ -199,6 +199,11 @@ pub const Runner = struct {
|
|||
try image.runPlugin("http://plugin.org.uk/swh-plugins/pitchScaleHQ", pos, params);
|
||||
}
|
||||
|
||||
fn reverbCmd(self: *Runner, pos: Position, params: ParamList) !void {
|
||||
var image = try self.getImage();
|
||||
try image.runPlugin("http://invadarecords.com/plugins/lv2/erreverb/mono", pos, params);
|
||||
}
|
||||
|
||||
fn runCommand(self: *Runner, cmd: *lang.Command) !void {
|
||||
var params = ParamList.init(self.allocator);
|
||||
defer params.deinit();
|
||||
|
@ -270,6 +275,23 @@ pub const Runner = struct {
|
|||
try self.pitchScalerCmd(pos, params);
|
||||
},
|
||||
|
||||
.Reverb => blk: {
|
||||
const pos = try cmd.consumePosition();
|
||||
|
||||
try cmd.appendParam(¶ms, "bypass", 2);
|
||||
try cmd.appendParam(¶ms, "roomLength", 3);
|
||||
try cmd.appendParam(¶ms, "roomHeight", 4);
|
||||
try cmd.appendParam(¶ms, "sourceLR", 5);
|
||||
try cmd.appendParam(¶ms, "sourceFB", 6);
|
||||
try cmd.appendParam(¶ms, "listLR", 7);
|
||||
try cmd.appendParam(¶ms, "listFB", 8);
|
||||
try cmd.appendParam(¶ms, "hpf", 9);
|
||||
try cmd.appendParam(¶ms, "warmth", 10);
|
||||
try cmd.appendParam(¶ms, "diffusion", 11);
|
||||
|
||||
try self.reverbCmd(pos, params);
|
||||
},
|
||||
|
||||
else => blk: {
|
||||
std.debug.warn("Unsupported command: {}\n", cmd.command);
|
||||
break :blk RunError.UnknownCommand;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue