summaryrefslogtreecommitdiff
path: root/src/cmd/move.zig
blob: ceaa6db46ea40ce292b54f3a57507363b020f0b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const std = @import("std");
const Allocator = std.mem.Allocator;
const print = std.debug.print;

const types = @import("./types.zig");
const CommandStatus = types.CommandStatus;
const OutputCapture = types.OutputCapture;
const InputSource = types.InputSource;

pub const Move = struct {
    pub fn eval(move: Move, allocator: Allocator, output_capture: ?*OutputCapture, input_source: ?*InputSource) !CommandStatus {
        _ = move;
        _ = allocator;
        _ = input_source;

        const error_msg = "MOVE command not yet implemented\n";
        if (output_capture) |capture| {
            try capture.write(error_msg);
        } else {
            print("{s}", .{error_msg});
        }
        return CommandStatus{ .Code = 1 };
    }
};