2019-07-08 02:03:55 +00:00
|
|
|
const std = @import("std");
|
|
|
|
|
2019-07-10 19:06:44 +00:00
|
|
|
const plugin = @import("plugin.zig");
|
|
|
|
|
2019-07-08 03:23:12 +00:00
|
|
|
pub const ParseError = error{
|
2019-09-09 02:28:09 +00:00
|
|
|
OutOfMemory,
|
2019-07-09 03:04:01 +00:00
|
|
|
ArgRequired,
|
2019-08-08 23:27:24 +00:00
|
|
|
ParseFail,
|
2019-07-08 03:23:12 +00:00
|
|
|
};
|
|
|
|
|
2019-07-08 02:03:55 +00:00
|
|
|
pub const CommandType = enum {
|
2020-05-30 19:57:00 +00:00
|
|
|
/// "LV2 Commands" are commands that receive split, index, and then receive
|
|
|
|
/// any f64 arguments.
|
|
|
|
lv2_command,
|
|
|
|
};
|
|
|
|
|
2020-05-31 19:55:50 +00:00
|
|
|
fn LV2Command(
|
2020-05-31 20:18:36 +00:00
|
|
|
comptime tag: Command.Tag,
|
2020-05-31 20:11:17 +00:00
|
|
|
comptime plugin_url: []const u8,
|
2020-05-31 19:55:50 +00:00
|
|
|
comptime LV2Parameters: type,
|
|
|
|
) type {
|
|
|
|
return struct {
|
|
|
|
pub const base_tag = tag;
|
2020-05-31 20:16:57 +00:00
|
|
|
pub const command_type = CommandType.lv2_command;
|
2020-05-31 20:11:17 +00:00
|
|
|
pub const lv2_url = plugin_url;
|
2020-05-31 19:55:50 +00:00
|
|
|
|
2020-05-31 20:18:36 +00:00
|
|
|
base: Command,
|
2020-05-31 19:55:50 +00:00
|
|
|
split: usize,
|
|
|
|
index: usize,
|
|
|
|
parameters: LV2Parameters,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-31 20:18:36 +00:00
|
|
|
pub const Command = struct {
|
2020-05-31 01:25:30 +00:00
|
|
|
tag: Tag,
|
|
|
|
|
|
|
|
pub const Tag = enum {
|
|
|
|
noop,
|
|
|
|
load,
|
|
|
|
quicksave,
|
|
|
|
runqs,
|
|
|
|
|
|
|
|
amp,
|
|
|
|
rflanger,
|
|
|
|
eq,
|
|
|
|
phaser,
|
|
|
|
mbeq,
|
|
|
|
chorus,
|
|
|
|
pitchscaler,
|
|
|
|
reverb,
|
|
|
|
highpass,
|
|
|
|
delay,
|
|
|
|
vinyl,
|
|
|
|
revdelay,
|
|
|
|
gate,
|
|
|
|
detune,
|
|
|
|
overdrive,
|
|
|
|
degrade,
|
|
|
|
repsycho,
|
|
|
|
talkbox,
|
|
|
|
dyncomp,
|
|
|
|
thruzero,
|
|
|
|
foverdrive,
|
|
|
|
gverb,
|
|
|
|
invert,
|
|
|
|
tapedelay,
|
|
|
|
moddelay,
|
|
|
|
multichorus,
|
|
|
|
saturator,
|
|
|
|
vintagedelay,
|
|
|
|
|
|
|
|
noise,
|
|
|
|
wildnoise,
|
|
|
|
write,
|
|
|
|
embed,
|
|
|
|
|
|
|
|
rotate,
|
|
|
|
};
|
|
|
|
|
2020-05-31 01:39:45 +00:00
|
|
|
pub fn tagToType(tag: Tag) type {
|
|
|
|
return switch (tag) {
|
|
|
|
.noop => Noop,
|
|
|
|
.load => Load,
|
|
|
|
.quicksave => Quicksave,
|
|
|
|
.runqs => RunQS,
|
|
|
|
|
|
|
|
.amp => Amp,
|
|
|
|
.rflanger => RFlanger,
|
2020-05-31 19:55:50 +00:00
|
|
|
.eq => Eq,
|
|
|
|
.phaser => Phaser,
|
2020-05-31 20:53:33 +00:00
|
|
|
.mbeq => Mbeq,
|
|
|
|
.chorus => Chorus,
|
|
|
|
.pitchscaler => Pitchscaler,
|
|
|
|
.reverb => Reverb,
|
|
|
|
.highpass => Highpass,
|
|
|
|
.delay => Delay,
|
|
|
|
.vinyl => Vinyl,
|
|
|
|
.revdelay => Revdelay,
|
|
|
|
.gate => Gate,
|
|
|
|
.detune => Detune,
|
|
|
|
.overdrive => Overdrive,
|
|
|
|
.degrade => Degrade,
|
|
|
|
.repsycho => Repsycho,
|
|
|
|
.talkbox => Talkbox,
|
|
|
|
.dyncomp => Dyncomp,
|
|
|
|
.thruzero => Thruzero,
|
|
|
|
.foverdrive => Foverdrive,
|
2020-05-31 21:29:42 +00:00
|
|
|
.gverb => Gverb,
|
|
|
|
.invert => Invert,
|
|
|
|
.tapedelay => Tapedelay,
|
|
|
|
.moddelay => Moddelay,
|
|
|
|
.multichorus => Multichorus,
|
|
|
|
.saturator => Saturator,
|
|
|
|
.vintagedelay => Vintagedelay,
|
2020-05-31 19:55:50 +00:00
|
|
|
|
2020-05-31 01:39:45 +00:00
|
|
|
else => @panic("TODO"),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-31 01:56:45 +00:00
|
|
|
pub fn cast(base: *const @This(), comptime T: type) ?*const T {
|
2020-05-31 01:25:30 +00:00
|
|
|
if (base.tag != T.base_tag)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
return @fieldParentPtr(T, "base", base);
|
|
|
|
}
|
|
|
|
|
2020-05-31 01:39:45 +00:00
|
|
|
pub fn print(base: *const @This()) void {
|
2020-05-31 02:57:34 +00:00
|
|
|
std.debug.warn("tag: {}\n", .{base.tag});
|
2020-05-31 01:39:45 +00:00
|
|
|
}
|
|
|
|
|
2020-05-31 01:25:30 +00:00
|
|
|
pub const Noop = struct {
|
|
|
|
pub const base_tag = Tag.noop;
|
2020-05-31 20:18:36 +00:00
|
|
|
base: Command,
|
2020-05-31 01:25:30 +00:00
|
|
|
};
|
2020-05-30 19:57:00 +00:00
|
|
|
|
|
|
|
pub const Load = struct {
|
2020-05-31 01:25:30 +00:00
|
|
|
pub const base_tag = Tag.load;
|
2020-05-31 20:18:36 +00:00
|
|
|
base: Command,
|
2020-05-30 19:57:00 +00:00
|
|
|
path: []const u8,
|
|
|
|
};
|
|
|
|
|
2020-05-31 01:25:30 +00:00
|
|
|
pub const Quicksave = struct {
|
|
|
|
pub const base_tag = Tag.quicksave;
|
2020-05-31 20:18:36 +00:00
|
|
|
base: Command,
|
2020-05-31 01:25:30 +00:00
|
|
|
};
|
2020-05-30 19:57:00 +00:00
|
|
|
|
|
|
|
pub const RunQS = struct {
|
2020-05-31 01:25:30 +00:00
|
|
|
pub const base_tag = Tag.runqs;
|
2020-05-30 19:57:00 +00:00
|
|
|
program: []const u8,
|
2020-05-31 20:18:36 +00:00
|
|
|
base: Command,
|
2020-05-30 19:57:00 +00:00
|
|
|
};
|
|
|
|
|
2020-05-31 19:55:50 +00:00
|
|
|
pub const Amp = LV2Command(
|
|
|
|
.amp,
|
|
|
|
"http://lv2plug.in/plugins/eg-amp",
|
|
|
|
struct {
|
|
|
|
gain: f32
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
pub const RFlanger = LV2Command(
|
|
|
|
.rflanger,
|
|
|
|
"http://plugin.org.uk/swh-plugins/retroFlange",
|
|
|
|
struct {
|
|
|
|
delay_depth_avg: f32, law_freq: f32
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
pub const Eq = LV2Command(
|
|
|
|
.rflanger,
|
|
|
|
"http://plugin.org.uk/swh-plugins/dj_eq_mono",
|
|
|
|
struct {
|
|
|
|
lo: f32, mid: f32, hi: f32
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
pub const Phaser = LV2Command(
|
2020-05-31 20:53:33 +00:00
|
|
|
.phaser,
|
2020-05-31 19:55:50 +00:00
|
|
|
"http://plugin.org.uk/swh-plugins/lfoPhaser",
|
|
|
|
struct {
|
|
|
|
lfo_rate: f32, lfo_depth: f32, fb: f32, spread: f32
|
|
|
|
},
|
|
|
|
);
|
2020-05-31 20:53:33 +00:00
|
|
|
|
|
|
|
pub const Mbeq = LV2Command(
|
|
|
|
.mbeq,
|
|
|
|
"http://plugin.org.uk/swh-plugins/mbeq",
|
|
|
|
struct {
|
|
|
|
band_1: f32,
|
|
|
|
band_2: f32,
|
|
|
|
band_3: f32,
|
|
|
|
band_4: f32,
|
|
|
|
band_5: f32,
|
|
|
|
band_6: f32,
|
|
|
|
band_7: f32,
|
|
|
|
band_8: f32,
|
|
|
|
band_9: f32,
|
|
|
|
band_10: f32,
|
|
|
|
band_11: f32,
|
|
|
|
band_12: f32,
|
|
|
|
band_13: f32,
|
|
|
|
band_14: f32,
|
|
|
|
band_15: f32,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
pub const Chorus = LV2Command(
|
|
|
|
.chorus,
|
|
|
|
"http://plugin.org.uk/swh-plugins/multivoiceChorus",
|
|
|
|
struct {
|
|
|
|
voices: f32,
|
|
|
|
delay_base: f32,
|
|
|
|
voice_spread: f32,
|
|
|
|
detune: f32,
|
|
|
|
law_freq: f32,
|
|
|
|
attendb: f32,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
pub const Pitchscaler = LV2Command(
|
|
|
|
.pitchscaler,
|
|
|
|
"http://plugin.org.uk/swh-plugins/pitchScaleHQ",
|
|
|
|
struct { mult: f32 },
|
|
|
|
);
|
|
|
|
|
|
|
|
pub const Reverb = LV2Command(
|
|
|
|
.reverb,
|
|
|
|
"http://invadarecords.com/plugins/lv2/erreverb/mono",
|
|
|
|
struct {
|
|
|
|
roomLength: f32,
|
|
|
|
roomWidth: f32,
|
|
|
|
roomHeight: f32,
|
|
|
|
sourceLR: f32,
|
|
|
|
sourceFB: f32,
|
|
|
|
listLR: f32,
|
|
|
|
listFB: f32,
|
|
|
|
hpf: f32,
|
|
|
|
warmth: f32,
|
|
|
|
diffusion: f32,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
pub const Highpass = LV2Command(.highpass, "http://invadarecords.com/plugins/lv2/filter/hpf/mono", struct {
|
|
|
|
freq: f32,
|
|
|
|
gain: f32,
|
|
|
|
noClip: f32,
|
|
|
|
});
|
|
|
|
|
|
|
|
pub const Delay = LV2Command(.delay, "http://plugin.org.uk/swh-plugins/delayorama", struct {
|
|
|
|
seed: f32,
|
|
|
|
gain: f32,
|
|
|
|
feedback_pc: f32,
|
|
|
|
tap_count: f32,
|
|
|
|
first_delay: f32,
|
|
|
|
delay_range: f32,
|
|
|
|
delay_scale: f32,
|
|
|
|
delay_rand_pc: f32,
|
|
|
|
gain_scale: f32,
|
|
|
|
wet: f32,
|
|
|
|
});
|
|
|
|
|
|
|
|
pub const Vinyl = LV2Command(.vinyl, "http://plugin.org.uk/swh-plugins/vynil", struct {
|
|
|
|
year: f32,
|
|
|
|
rpm: f32,
|
|
|
|
warp: f32,
|
|
|
|
click: f32,
|
|
|
|
wear: f32,
|
|
|
|
});
|
|
|
|
|
|
|
|
pub const Revdelay = LV2Command(.revdelay, "http://plugin.org.uk/swh-plugins/revdelay", struct {
|
|
|
|
delay_time: f32,
|
|
|
|
dry_level: f32,
|
|
|
|
wet_level: f32,
|
|
|
|
feedback: f32,
|
|
|
|
xfade_samp: f32,
|
|
|
|
});
|
|
|
|
// pub const Noise= LV2Command(.,,struct{});
|
|
|
|
pub const Gate = LV2Command(.gate, "http://hippie.lt/lv2/gate", struct {
|
|
|
|
@"switch": f32,
|
|
|
|
threshold: f32,
|
|
|
|
attack: f32,
|
|
|
|
hold: f32,
|
|
|
|
decay: f32,
|
|
|
|
gaterange: f32,
|
|
|
|
});
|
|
|
|
pub const Detune = LV2Command(.detune, "http://drobilla.net/plugins/mda/Detune", struct {
|
|
|
|
detune: f32,
|
|
|
|
mix: f32,
|
|
|
|
output: f32,
|
|
|
|
latency: f32,
|
|
|
|
});
|
|
|
|
pub const Overdrive = LV2Command(.overdrive, "http://drobilla.net/plugins/mda/Overdrive", struct {
|
|
|
|
drive: f32,
|
|
|
|
muffle: f32,
|
|
|
|
output: f32,
|
|
|
|
});
|
|
|
|
pub const Degrade = LV2Command(.degrade, "http://drobilla.net/plugins/mda/Degrade", struct {
|
|
|
|
headroom: f32,
|
|
|
|
quant: f32,
|
|
|
|
rate: f32,
|
|
|
|
post_filt: f32,
|
|
|
|
non_lin: f32,
|
|
|
|
output: f32,
|
|
|
|
});
|
|
|
|
pub const Repsycho = LV2Command(.repsycho, "http://drobilla.net/plugins/mda/RePsycho", struct {
|
|
|
|
tune: f32,
|
|
|
|
fine: f32,
|
|
|
|
decay: f32,
|
|
|
|
thresh: f32,
|
|
|
|
hold: f32,
|
|
|
|
mix: f32,
|
|
|
|
quality: f32,
|
|
|
|
});
|
|
|
|
pub const Talkbox = LV2Command(.talkbox, "http://drobilla.net/plugins/mda/TalkBox", struct {
|
|
|
|
wet: f32,
|
|
|
|
dry: f32,
|
|
|
|
carrier: f32,
|
|
|
|
quality: f32,
|
|
|
|
});
|
|
|
|
pub const Dyncomp = LV2Command(.dyncomp, "http://gareus.org/oss/lv2/darc#mono", struct {
|
|
|
|
enable: f32,
|
|
|
|
hold: f32,
|
|
|
|
inputgain: f32,
|
|
|
|
threshold: f32,
|
|
|
|
ratio: f32,
|
|
|
|
attack: f32,
|
|
|
|
release: f32,
|
|
|
|
gain_min: f32,
|
|
|
|
gain_max: f32,
|
|
|
|
rms: f32,
|
|
|
|
});
|
|
|
|
pub const Foverdrive = LV2Command(.foverdrive, "http://plugin.org.uk/swh-plugins/foverdrive", struct {
|
|
|
|
drive: f32,
|
|
|
|
});
|
|
|
|
pub const Thruzero = LV2Command(.thruzero, "http://drobilla.net/plugins/mda/ThruZero", struct {
|
|
|
|
rate: f32, mix: f32, feedback: f32, depth_mod: f32
|
|
|
|
});
|
2020-05-31 21:29:42 +00:00
|
|
|
|
|
|
|
pub const Gverb = LV2Command(.gverb, "http://plugin.org.uk/swh-plugins/gverb", struct {
|
|
|
|
roomsize: f32,
|
|
|
|
revtime: f32,
|
|
|
|
damping: f32,
|
|
|
|
inputbandwidth: f32,
|
|
|
|
drylevel: f32,
|
|
|
|
earlylevel: f32,
|
|
|
|
taillevel: f32,
|
|
|
|
});
|
|
|
|
pub const Invert = LV2Command(.invert, "http://plugin.org.uk/swh-plugins/inv", struct {});
|
|
|
|
pub const Tapedelay = LV2Command(.tapedelay, "http://plugin.org.uk/swh-plugins/tapeDelay", struct {
|
|
|
|
speed: f32,
|
|
|
|
da_db: f32,
|
|
|
|
|
|
|
|
t1d: f32,
|
|
|
|
t1a_db: f32,
|
|
|
|
|
|
|
|
t2d: f32,
|
|
|
|
t2a_db: f32,
|
|
|
|
|
|
|
|
t3d: f32,
|
|
|
|
t3a_db: f32,
|
|
|
|
|
|
|
|
t4d: f32,
|
|
|
|
t4a_db: f32,
|
|
|
|
});
|
2020-06-01 00:10:43 +00:00
|
|
|
|
|
|
|
pub const Moddelay = LV2Command(
|
|
|
|
.moddelay,
|
|
|
|
"http://plugin.org.uk/swh-plugins/modDelay",
|
|
|
|
struct {
|
|
|
|
base: f32,
|
|
|
|
},
|
|
|
|
);
|
2020-05-31 21:29:42 +00:00
|
|
|
|
|
|
|
pub const Multichorus = LV2Command(.multichorus, "http://calf.sourceforge.net/plugins/MultiChorus", struct {
|
|
|
|
min_delay: f32,
|
|
|
|
mod_depth: f32,
|
|
|
|
mod_rate: f32,
|
|
|
|
stereo: f32,
|
|
|
|
voices: f32,
|
|
|
|
vphase: f32,
|
|
|
|
amount: f32,
|
|
|
|
dry: f32,
|
|
|
|
freq: f32,
|
|
|
|
freq2: f32,
|
|
|
|
q: f32,
|
|
|
|
overlap: f32,
|
|
|
|
level_in: f32,
|
|
|
|
level_out: f32,
|
|
|
|
lfo: f32,
|
|
|
|
});
|
|
|
|
pub const Saturator = LV2Command(.saturator, "http://calf.sourceforge.net/plugins/Saturator", struct {
|
|
|
|
bypass: f32,
|
|
|
|
level_in: f32,
|
|
|
|
level_out: f32,
|
|
|
|
mix: f32,
|
|
|
|
drive: f32,
|
|
|
|
blend: f32,
|
|
|
|
lp_pre_freq: f32,
|
|
|
|
hp_pre_freq: f32,
|
|
|
|
lp_post_freq: f32,
|
|
|
|
hp_post_freq: f32,
|
|
|
|
p_freq: f32,
|
|
|
|
p_level: f32,
|
|
|
|
p_q: f32,
|
|
|
|
pre: f32,
|
|
|
|
post: f32,
|
|
|
|
});
|
|
|
|
pub const Vintagedelay = LV2Command(.vintagedelay, "http://calf.sourceforge.net/plugins/VintageDelay", struct {
|
|
|
|
level_in: f32,
|
|
|
|
level_out: f32,
|
|
|
|
subdiv: f32,
|
|
|
|
time_l: f32,
|
|
|
|
time_r: f32,
|
|
|
|
feedback: f32,
|
|
|
|
amount: f32,
|
|
|
|
mix_mode: f32,
|
|
|
|
medium: f32,
|
|
|
|
dry: f32,
|
|
|
|
width: f32,
|
|
|
|
fragmentation: f32,
|
|
|
|
pbeats: f32,
|
|
|
|
pfrag: f32,
|
|
|
|
timing: f32,
|
|
|
|
bpm: f32,
|
|
|
|
ms: f32,
|
|
|
|
hz: f32,
|
|
|
|
bpm_host: f32,
|
|
|
|
});
|
2020-05-30 19:57:00 +00:00
|
|
|
};
|
|
|
|
|
2020-05-31 20:18:36 +00:00
|
|
|
pub const CommandList = std.ArrayList(*Command);
|
2019-09-03 15:45:17 +00:00
|
|
|
pub const ArgList = std.ArrayList([]const u8);
|
2019-08-09 21:40:11 +00:00
|
|
|
|
2019-09-03 15:45:17 +00:00
|
|
|
pub const KeywordMap = std.StringHashMap(CommandType);
|
2019-07-08 02:03:55 +00:00
|
|
|
|
2019-10-06 18:07:30 +00:00
|
|
|
/// A parser.
|
2019-07-08 02:03:55 +00:00
|
|
|
pub const Lang = struct {
|
|
|
|
allocator: *std.mem.Allocator,
|
|
|
|
|
2019-08-09 14:28:40 +00:00
|
|
|
has_error: bool = false,
|
|
|
|
line: usize = 0,
|
|
|
|
|
2019-07-08 02:03:55 +00:00
|
|
|
pub fn init(allocator: *std.mem.Allocator) Lang {
|
2019-07-10 17:44:22 +00:00
|
|
|
return Lang{
|
|
|
|
.allocator = allocator,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-31 19:57:12 +00:00
|
|
|
pub fn deinit(self: *Lang) void {}
|
2019-08-08 00:04:51 +00:00
|
|
|
|
2019-09-10 15:12:10 +00:00
|
|
|
pub fn reset(self: *Lang) void {
|
|
|
|
self.has_error = false;
|
|
|
|
self.line = 0;
|
|
|
|
}
|
2020-01-15 01:31:20 +00:00
|
|
|
fn doError(self: *Lang, comptime fmt: []const u8, args: var) void {
|
|
|
|
std.debug.warn("error at line {}: ", .{self.line});
|
2019-08-09 14:28:40 +00:00
|
|
|
std.debug.warn(fmt, args);
|
2020-01-15 01:31:20 +00:00
|
|
|
std.debug.warn("\n", .{});
|
2019-08-09 14:28:40 +00:00
|
|
|
self.has_error = true;
|
|
|
|
}
|
|
|
|
|
2020-05-31 01:25:30 +00:00
|
|
|
fn parseCommandArguments(
|
|
|
|
self: *@This(),
|
|
|
|
comptime command_struct: type,
|
|
|
|
tok_it: *std.mem.TokenIterator,
|
|
|
|
commands: *CommandList,
|
|
|
|
) !void {
|
|
|
|
// Based on the command struct fields, we can parse the arguments.
|
|
|
|
var cmd = try self.allocator.create(command_struct);
|
2020-05-31 20:08:35 +00:00
|
|
|
const is_lv2_command = switch (command_struct.base_tag) {
|
|
|
|
.noop, .load, .quicksave, .runqs => false,
|
|
|
|
else => command_struct.command_type == .lv2_command,
|
|
|
|
};
|
2020-05-31 01:25:30 +00:00
|
|
|
|
2020-05-31 20:08:35 +00:00
|
|
|
// TODO: crash when no arguments are left but we still need
|
|
|
|
// arguments...
|
2020-05-31 01:25:30 +00:00
|
|
|
|
2020-05-31 20:08:35 +00:00
|
|
|
if (is_lv2_command) {
|
2020-06-01 00:10:43 +00:00
|
|
|
const split = tok_it.next();
|
|
|
|
if (split == null) {
|
|
|
|
self.doError("Expected split parameter, got EOL", .{});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const index = tok_it.next();
|
|
|
|
if (index == null) {
|
|
|
|
self.doError("Expected index parameter, got EOL", .{});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.split = try std.fmt.parseInt(usize, split.?, 10);
|
|
|
|
cmd.index = try std.fmt.parseInt(usize, index.?, 10);
|
2020-05-31 01:25:30 +00:00
|
|
|
|
2020-05-31 20:11:26 +00:00
|
|
|
inline for (@typeInfo(@TypeOf(cmd.parameters)).Struct.fields) |cmd_field| {
|
2020-05-31 20:08:35 +00:00
|
|
|
const arg = tok_it.next().?;
|
|
|
|
const argument_value = switch (cmd_field.field_type) {
|
|
|
|
f32 => try std.fmt.parseFloat(f32, arg),
|
|
|
|
else => @compileError("LV2 parameter struct can only have f32 fields"),
|
|
|
|
};
|
2020-05-31 02:57:42 +00:00
|
|
|
|
2020-05-31 20:08:35 +00:00
|
|
|
std.debug.warn("parsing {}, arg of type {} => {}\n", .{
|
|
|
|
@typeName(command_struct),
|
|
|
|
@typeName(@TypeOf(argument_value)),
|
|
|
|
argument_value,
|
|
|
|
});
|
|
|
|
|
2020-05-31 20:11:26 +00:00
|
|
|
@field(cmd.parameters, cmd_field.name) = argument_value;
|
2020-05-31 20:08:35 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
inline for (@typeInfo(command_struct).Struct.fields) |cmd_field| {
|
|
|
|
comptime {
|
|
|
|
if (std.mem.eql(u8, cmd_field.name, "base")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const arg = tok_it.next().?;
|
|
|
|
const argument_value = switch (cmd_field.field_type) {
|
|
|
|
usize => try std.fmt.parseInt(usize, arg, 10),
|
|
|
|
i32 => try std.fmt.parseInt(i32, arg, 10),
|
|
|
|
f32 => try std.fmt.parseFloat(f32, arg),
|
|
|
|
[]const u8 => try self.allocator.dupe(u8, arg),
|
|
|
|
else => @panic("Invalid parameter type (" ++ @typeName(cmd_field.field_type) ++ ") left on command struct " ++ @typeName(command_struct) ++ "."),
|
|
|
|
};
|
|
|
|
|
|
|
|
std.debug.warn("parsing {}, arg of type {} => {}\n", .{
|
|
|
|
@typeName(command_struct),
|
|
|
|
@typeName(@TypeOf(argument_value)),
|
|
|
|
argument_value,
|
|
|
|
});
|
|
|
|
|
2020-05-31 20:11:32 +00:00
|
|
|
@field(cmd, cmd_field.name) = argument_value;
|
2020-05-31 20:08:35 +00:00
|
|
|
}
|
2020-05-31 01:25:30 +00:00
|
|
|
}
|
|
|
|
|
2020-05-31 01:39:52 +00:00
|
|
|
cmd.base.tag = command_struct.base_tag;
|
2020-05-31 02:57:42 +00:00
|
|
|
const command = cmd.base.cast(command_struct).?;
|
|
|
|
std.debug.warn("cmd: {}\n", .{command});
|
2020-05-31 01:39:52 +00:00
|
|
|
|
2020-05-31 02:57:42 +00:00
|
|
|
try commands.append(&cmd.base);
|
2020-05-31 01:25:30 +00:00
|
|
|
}
|
|
|
|
|
2020-05-31 01:29:13 +00:00
|
|
|
pub fn parse(self: *Lang, data: []const u8) !CommandList {
|
2020-04-10 02:51:33 +00:00
|
|
|
var splitted_it = std.mem.split(data, ";");
|
2019-07-08 02:03:55 +00:00
|
|
|
var cmds = CommandList.init(self.allocator);
|
|
|
|
|
|
|
|
while (splitted_it.next()) |stmt_orig| {
|
2019-08-09 14:28:40 +00:00
|
|
|
self.line += 1;
|
2019-07-08 02:03:55 +00:00
|
|
|
var stmt = std.mem.trimRight(u8, stmt_orig, "\n");
|
2019-07-08 16:55:54 +00:00
|
|
|
stmt = std.mem.trimLeft(u8, stmt, "\n");
|
2019-07-08 02:03:55 +00:00
|
|
|
|
|
|
|
if (stmt.len == 0) continue;
|
2019-08-13 13:19:39 +00:00
|
|
|
if (std.mem.startsWith(u8, stmt, "#")) continue;
|
2019-07-08 02:03:55 +00:00
|
|
|
|
2020-05-31 01:25:30 +00:00
|
|
|
// TODO better tokenizer instead of just tokenize(" ")...maybe????
|
2019-07-08 03:09:34 +00:00
|
|
|
var tok_it = std.mem.tokenize(stmt, " ");
|
|
|
|
|
2019-07-08 03:23:12 +00:00
|
|
|
var cmd_opt = tok_it.next();
|
2019-08-09 14:28:40 +00:00
|
|
|
if (cmd_opt == null) {
|
2020-01-15 01:31:20 +00:00
|
|
|
self.doError("No command given", .{});
|
2019-08-09 14:28:40 +00:00
|
|
|
continue;
|
|
|
|
}
|
2020-05-30 20:48:14 +00:00
|
|
|
const command_string = cmd_opt.?;
|
2019-07-10 17:44:22 +00:00
|
|
|
|
2020-05-30 20:48:14 +00:00
|
|
|
var found: bool = false;
|
|
|
|
|
2020-05-31 20:18:36 +00:00
|
|
|
inline for (@typeInfo(Command).Struct.decls) |cmd_struct_decl| {
|
2020-05-31 01:25:30 +00:00
|
|
|
switch (cmd_struct_decl.data) {
|
|
|
|
.Type => |typ| switch (@typeInfo(typ)) {
|
|
|
|
.Struct => {},
|
|
|
|
else => continue,
|
|
|
|
},
|
|
|
|
else => continue,
|
|
|
|
}
|
|
|
|
|
2020-05-30 20:48:14 +00:00
|
|
|
const struct_name = cmd_struct_decl.name;
|
|
|
|
comptime var lowered_command_name = [_]u8{0} ** struct_name.len;
|
|
|
|
comptime {
|
|
|
|
for (struct_name) |c, i| {
|
|
|
|
lowered_command_name[i] = std.ascii.toLower(c);
|
|
|
|
}
|
|
|
|
}
|
2019-12-02 23:13:19 +00:00
|
|
|
|
2020-05-31 01:25:30 +00:00
|
|
|
// if we have a match, we know the proper struct type
|
|
|
|
// to use. this actually works compared to storing command_struct
|
|
|
|
// in a variable because then that variable must be comptime.
|
|
|
|
|
|
|
|
// the drawback of this approach is that our emitted code is basically linear
|
|
|
|
// because we don't use the hashmap anymore. maybe #5359 can help.
|
|
|
|
|
2020-05-30 20:48:14 +00:00
|
|
|
if (std.mem.eql(u8, &lowered_command_name, command_string)) {
|
|
|
|
found = true;
|
2020-05-31 01:25:30 +00:00
|
|
|
const cmd_struct_type = cmd_struct_decl.data.Type;
|
|
|
|
try self.parseCommandArguments(cmd_struct_type, &tok_it, &cmds);
|
2020-05-30 20:48:14 +00:00
|
|
|
}
|
2019-07-08 03:09:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-30 20:48:14 +00:00
|
|
|
if (!found) {
|
|
|
|
self.doError("Unknown command '{}' ({})", .{ command_string, command_string.len });
|
2019-08-09 14:28:40 +00:00
|
|
|
continue;
|
2020-05-30 20:48:14 +00:00
|
|
|
}
|
2019-08-08 23:13:49 +00:00
|
|
|
|
2020-05-30 20:48:14 +00:00
|
|
|
// try cmds.append(cmd);
|
2019-07-08 02:03:55 +00:00
|
|
|
}
|
|
|
|
|
2019-08-09 14:28:40 +00:00
|
|
|
if (self.has_error) return ParseError.ParseFail;
|
2019-08-08 23:30:24 +00:00
|
|
|
|
2019-07-08 02:03:55 +00:00
|
|
|
return cmds;
|
|
|
|
}
|
|
|
|
};
|
2019-07-08 03:09:34 +00:00
|
|
|
|
2019-08-08 00:04:51 +00:00
|
|
|
test "noop" {
|
|
|
|
var lang = Lang.init(std.heap.direct_allocator);
|
2019-08-08 00:09:04 +00:00
|
|
|
defer lang.deinit();
|
|
|
|
|
2019-08-08 00:04:51 +00:00
|
|
|
var cmds = try lang.parse("noop;");
|
2019-08-08 00:09:04 +00:00
|
|
|
defer cmds.deinit();
|
|
|
|
|
2019-08-08 00:04:51 +00:00
|
|
|
std.testing.expectEqual(cmds.len, 1);
|
2020-05-12 20:48:15 +00:00
|
|
|
std.testing.expectEqual(cmds.items[0].command, .Noop);
|
2019-08-08 00:04:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test "load, phaser, quicksave" {
|
|
|
|
var lang = Lang.init(std.heap.direct_allocator);
|
2019-08-08 00:09:04 +00:00
|
|
|
defer lang.deinit();
|
|
|
|
|
2019-08-08 00:04:51 +00:00
|
|
|
const prog =
|
|
|
|
\\load :0;
|
|
|
|
\\phaser 3 1 25 0.25 0 1;
|
|
|
|
\\quicksave;
|
|
|
|
;
|
2019-08-08 00:09:04 +00:00
|
|
|
|
2019-08-08 00:04:51 +00:00
|
|
|
var cmds = try lang.parse(prog);
|
2019-08-08 00:09:04 +00:00
|
|
|
defer cmds.deinit();
|
2019-08-08 00:04:51 +00:00
|
|
|
|
|
|
|
std.testing.expectEqual(cmds.len, 3);
|
2020-05-12 20:48:15 +00:00
|
|
|
std.testing.expectEqual(cmds.items[0].command, .Load);
|
|
|
|
std.testing.expectEqual(cmds.items[1].command, .Phaser);
|
|
|
|
std.testing.expectEqual(cmds.items[2].command, .Quicksave);
|
2019-08-08 00:04:51 +00:00
|
|
|
}
|