scritcher/src/lang.zig

308 lines
7.9 KiB
Zig
Raw Normal View History

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{
NoCommandGiven,
UnknownCommand,
2019-07-09 03:04:01 +00:00
ArgRequired,
2019-07-08 03:23:12 +00:00
};
2019-07-08 02:03:55 +00:00
pub const CommandType = enum {
Noop,
Load,
2019-07-10 19:06:44 +00:00
Quicksave,
2019-07-11 00:43:23 +00:00
RunQS,
2019-07-10 19:06:44 +00:00
2019-07-08 02:03:55 +00:00
Amp,
2019-07-10 16:24:03 +00:00
RFlanger,
2019-07-10 19:06:44 +00:00
Eq,
2019-07-10 19:24:43 +00:00
Phaser,
2019-07-10 19:43:30 +00:00
Mbeq,
2019-07-10 19:59:15 +00:00
Chorus,
2019-07-10 20:31:18 +00:00
PitchScaler,
2019-07-10 23:19:40 +00:00
Reverb,
Highpass,
2019-07-11 13:20:09 +00:00
Delay,
2019-07-13 19:46:26 +00:00
Vinyl,
2019-07-13 20:20:14 +00:00
RevDelay,
Noise,
2019-07-13 22:55:57 +00:00
WildNoise,
Write,
2019-07-22 20:04:43 +00:00
Rotate,
2019-07-08 02:03:55 +00:00
};
pub const Command = struct {
command: CommandType,
2019-07-08 03:09:34 +00:00
args: ArgList,
cur_idx: usize = 0,
2019-07-08 02:03:55 +00:00
pub fn print(self: *const Command) void {
2019-07-08 03:09:34 +00:00
std.debug.warn("cmd:{}\n", self.command);
2019-07-08 02:03:55 +00:00
}
2019-07-09 01:40:52 +00:00
2019-07-09 03:04:01 +00:00
pub fn argAt(self: *const Command, idx: usize) ![]const u8 {
const args = self.args.toSliceConst();
if (idx > (args.len - 1)) {
std.debug.warn("Expected argument at index {}\n", idx);
return ParseError.ArgRequired;
}
return args[idx];
}
pub fn usizeArgAt(self: *const Command, idx: usize) !usize {
var arg = try self.argAt(idx);
return try std.fmt.parseInt(usize, arg, 10);
}
pub fn consumePosition(self: *Command) !plugin.Position {
self.cur_idx = 2;
2019-07-10 19:06:44 +00:00
return plugin.Position{
.split = try self.usizeArgAt(0),
.index = try self.usizeArgAt(1),
};
}
2019-07-09 01:40:52 +00:00
pub fn intArgAt(self: *const Command, idx: usize) !i32 {
2019-07-09 03:04:01 +00:00
var arg = try self.argAt(idx);
2019-07-09 01:40:52 +00:00
return try std.fmt.parseInt(i32, arg, 10);
}
pub fn floatArgAt(self: *const Command, idx: usize) !f32 {
2019-07-09 03:04:01 +00:00
var arg = try self.argAt(idx);
2019-07-09 01:40:52 +00:00
return try std.fmt.parseFloat(f32, arg);
}
2019-07-10 19:43:30 +00:00
pub fn floatArgMany(
self: *const Command,
allocator: *std.mem.Allocator,
start_index: usize,
elements: usize,
default: f32,
) ![]const f32 {
var i: usize = start_index;
var arr = std.ArrayList(f32).init(allocator);
while (i < elements) : (i += 1) {
var value: f32 = self.floatArgAt(i) catch |err| blk: {
std.debug.warn("\tdoing default on arg {}\n", i);
break :blk default;
};
try arr.append(value);
}
return arr.toSliceConst();
}
2019-07-10 19:59:15 +00:00
pub fn appendParam(
self: *Command,
2019-07-10 19:59:15 +00:00
params: *plugin.ParamList,
symbol: []const u8,
) !void {
var val = try self.floatArgAt(self.cur_idx);
self.cur_idx += 1;
2019-07-10 19:59:15 +00:00
try params.append(plugin.Param{
.sym = symbol,
.value = val,
});
}
pub fn appendParamMap(
self: *Command,
map: *plugin.ParamMap,
symbol: []const u8,
) !void {
var val = try self.floatArgAt(self.cur_idx);
self.cur_idx += 1;
_ = try map.put(symbol, val);
}
2019-07-08 02:03:55 +00:00
};
2019-07-08 03:09:34 +00:00
pub const CommandList = std.ArrayList(*Command);
pub const ArgList = std.ArrayList([]const u8);
pub const KeywordMap = std.AutoHashMap([]const u8, CommandType);
2019-07-08 02:03:55 +00:00
pub const Lang = struct {
allocator: *std.mem.Allocator,
keywords: KeywordMap,
2019-07-08 02:03:55 +00:00
pub fn init(allocator: *std.mem.Allocator) Lang {
return Lang{
.allocator = allocator,
.keywords = KeywordMap.init(allocator),
};
}
2019-08-08 00:04:51 +00:00
pub fn deinit(self: *Lang) void {
self.keywords.deinit();
}
fn fillKeywords(self: *Lang) !void {
_ = try self.keywords.put("noop", .Noop);
_ = try self.keywords.put("load", .Load);
_ = try self.keywords.put("quicksave", .Quicksave);
2019-07-11 00:43:23 +00:00
_ = try self.keywords.put("runqs", .RunQS);
_ = try self.keywords.put("amp", .Amp);
_ = try self.keywords.put("rflanger", .RFlanger);
2019-07-10 19:06:44 +00:00
_ = try self.keywords.put("eq", .Eq);
2019-07-10 19:43:30 +00:00
_ = try self.keywords.put("mbeq", .Mbeq);
2019-07-10 19:24:43 +00:00
_ = try self.keywords.put("phaser", .Phaser);
2019-07-10 19:59:15 +00:00
_ = try self.keywords.put("chorus", .Chorus);
2019-07-10 20:31:18 +00:00
_ = try self.keywords.put("pitchscaler", .PitchScaler);
2019-07-10 23:19:40 +00:00
_ = try self.keywords.put("reverb", .Reverb);
_ = try self.keywords.put("highpass", .Highpass);
2019-07-11 13:20:09 +00:00
_ = try self.keywords.put("delay", .Delay);
2019-07-13 19:46:26 +00:00
_ = try self.keywords.put("vinyl", .Vinyl);
2019-07-13 20:20:14 +00:00
_ = try self.keywords.put("revdelay", .RevDelay);
// custom implementations (not lv2)
_ = try self.keywords.put("noise", .Noise);
2019-07-13 22:55:57 +00:00
_ = try self.keywords.put("wildnoise", .WildNoise);
_ = try self.keywords.put("write", .Write);
2019-07-22 20:04:43 +00:00
// even more custom
_ = try self.keywords.put("rotate", .Rotate);
2019-07-08 02:03:55 +00:00
}
// TODO remove this once AutoHashMap is fixed.
pub fn getCommand(self: *Lang, stmt: []const u8) ?CommandType {
const commands = [_][]const u8{
"noop",
"load",
"quicksave",
"runqs",
"amp",
"rflanger",
"eq",
"phaser",
"mbeq",
"chorus",
"pitchscaler",
"reverb",
"highpass",
"delay",
"vinyl",
"revdelay",
"noise",
"wildnoise",
"write",
"rotate",
};
const command_types = [_]CommandType{
.Noop,
.Load,
.Quicksave,
.RunQS,
.Amp,
.RFlanger,
.Eq,
.Phaser,
.Mbeq,
.Chorus,
.PitchScaler,
.Reverb,
.Highpass,
.Delay,
.Vinyl,
.RevDelay,
.Noise,
.WildNoise,
.Write,
.Rotate,
};
std.debug.assert(commands.len == command_types.len);
for (commands) |command, idx| {
if (std.mem.eql(u8, stmt, command)) return command_types[idx];
}
return null;
}
2019-07-08 03:09:34 +00:00
pub fn parse(self: *Lang, data: []const u8) !CommandList {
2019-07-08 02:03:55 +00:00
var splitted_it = std.mem.separate(data, ";");
try self.fillKeywords();
2019-07-08 02:03:55 +00:00
var cmds = CommandList.init(self.allocator);
while (splitted_it.next()) |stmt_orig| {
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-07-09 01:41:38 +00:00
if (stmt[0] == '#') continue;
2019-07-08 02:03:55 +00:00
2019-07-08 03:09:34 +00:00
// TODO better tokenizer instead of just tokenize(" ");
var tok_it = std.mem.tokenize(stmt, " ");
2019-07-08 03:23:12 +00:00
var cmd_opt = tok_it.next();
if (cmd_opt == null) return ParseError.NoCommandGiven;
var command = cmd_opt.?;
var ctype_opt = self.getCommand(command);
var ctype: CommandType = undefined;
if (ctype_opt) |ctype_val| {
ctype = ctype_val;
} else {
std.debug.warn("Unknown command: '{}' ({})\n", command, command.len);
return ParseError.UnknownCommand;
}
2019-07-08 03:09:34 +00:00
var args = ArgList.init(self.allocator);
while (tok_it.next()) |arg| {
try args.append(arg);
}
// construct final Command based on command
var cmd_ptr = try self.allocator.create(Command);
cmd_ptr.* = Command{ .command = ctype, .args = args };
try cmds.append(cmd_ptr);
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);
std.testing.expectEqual(cmds.at(0).command, .Noop);
}
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);
std.testing.expectEqual(cmds.at(0).command, .Load);
std.testing.expectEqual(cmds.at(1).command, .Phaser);
std.testing.expectEqual(cmds.at(2).command, .Quicksave);
}