Compare commits

..

No commits in common. "73c52141468b59d48750ca29c7cc03e859a8eacc" and "9937365433e06adc4571d5edbf0954542fe26041" have entirely different histories.

2 changed files with 19 additions and 39 deletions

View File

@ -230,13 +230,6 @@ pub fn doRepl(allocator: *std.mem.Allocator, args_it: anytype) !void {
}
}
fn doHelp() void {
std.debug.warn("scritcher!\n", .{});
std.debug.warn("usage: scritcher [run|help|repl]\n", .{});
std.debug.warn("\tscritcher run path_to_script.scri path_to_input_file.bmp\n", .{});
std.debug.warn("\tscritcher repl path_to_script.scri path_to_input_file.bmp\n", .{});
}
pub fn main() !void {
// const allocator = std.heap.page_allocator;
var allocator_instance = std.heap.GeneralPurposeAllocator(.{}){};
@ -255,38 +248,25 @@ pub fn main() !void {
// TODO print help
_ = args_it.skip();
const cli_command_opt = args_it.next(allocator);
if (cli_command_opt == null) {
return doHelp();
}
const scri_path = try (args_it.next(allocator) orelse @panic("expected scri path or 'repl'"));
defer allocator.free(scri_path);
const cli_command = try cli_command_opt.?;
defer allocator.free(cli_command);
if (std.mem.eql(u8, cli_command, "help")) {
return doHelp();
} else if (std.mem.eql(u8, cli_command, "repl")) {
if (std.mem.eql(u8, scri_path, "repl")) {
return try doRepl(allocator, &args_it);
} else if (std.mem.eql(u8, cli_command, "run")) {
const scri_path = try (args_it.next(allocator) orelse @panic("run: expected scri path"));
defer allocator.free(scri_path);
var file = try std.fs.cwd().openFile(scri_path, .{});
defer file.close();
// sadly, we read it all into memory. such is life
const total_bytes = try file.getEndPos();
var data = try allocator.alloc(u8, total_bytes);
defer allocator.free(data);
_ = try file.read(data);
var cmds = try lang.parse(data);
defer cmds.deinit();
try runner.runCommands(cmds, true);
} else {
std.debug.warn("unknown command: '{s}'\n", .{cli_command});
return error.UnknownCommand;
}
var file = try std.fs.cwd().openFile(scri_path, .{});
defer file.close();
// sadly, we read it all into memory. such is life
const total_bytes = try file.getEndPos();
var data = try allocator.alloc(u8, total_bytes);
defer allocator.free(data);
_ = try file.read(data);
var cmds = try lang.parse(data);
defer cmds.deinit();
try runner.runCommands(cmds, true);
}

View File

@ -65,7 +65,7 @@ pub const Runner = struct {
// 'scritcher repl ./script ./image'
// ':0' should ALWAYS point to the image.
if (self.repl) index += 4 else index += 3;
if (self.repl) index += 3 else index += 2;
for (self.args) |arg, idx| {
std.debug.warn("arg{d} = {s}\n", .{ idx, arg });