1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#![no_std]
#![feature(rustc_attrs)]

/// See [println!] for details
#[macro_export]
macro_rules! print {
    ($($arg:tt)*) => {
        write!($crate::Stdout, $($arg)*).unwrap()
    };
}

/// A drop-in replacement for Rust's normal `println!` macro (albiet a very slow one).
/// 
/// If practical, [print_str!] and [print_int] are often more than ten times faster.
#[macro_export]
macro_rules! println {
    ($($arg:tt)*) => {
        writeln!($crate::Stdout, $($arg)*).unwrap()
    }
}

// TODO:
/*#[macro_export]
macro_rules! print_direct {
    ($($tail:tt)*) => {
       concat!("tellraw @a [", print_direct!(@inner $($tail)*))
    };
    (@inner str $val:literal, $($tail:tt,)*) => {
        concat!("{\"text\":\"", $val, "\"}, ", print_direct!($($tail),*))
    };
    (@inner i32 $val:expr, $($tail:tt,)*) => {
        concat!("{\"score\": {\"name\": \"$0\", \"objective\": \"$obj\" } }")
    };
    (@inner) => {
        "]"
    };
}*/

/// Prints a string literal.
#[macro_export]
macro_rules! print_str {
    ($data:expr) => {
        $crate::print_raw($data.as_ptr(), $data.len())
    }
}

/// Allows inserting commands directly into the code that optionally take an input register.
/// 
/// - $obj expands to the scoreboard objective used by Langcraft.
/// - $0 expands to the argument provided.
/// 
/// With no arguments:
/// ```
/// insert_asm!("say hello world");
/// ```
/// 
/// With an input:
/// ```
/// let foo = 42;
/// insert_asm!("execute if score $0 $obj matches 42..42 run say Foo was 42", foo);
/// ```
#[macro_export]
macro_rules! insert_asm {
    ($asm:literal) => {
        insert_asm!($asm, 0)
    };
    ($asm:literal, $input:expr) => {
        insert_asm($asm.as_ptr(), $asm.len(), $input)
    };
}

/// Place a block at the turtle's current position.
/// 
/// For example, to place a cobblestone block at the coordinates 0 1 2:
/// ```
/// turtle_x(0);
/// turtle_y(1);
/// turtle_z(2);
/// turtle_set_raw!("minecraft:cobblestone");
/// ```
#[macro_export]
macro_rules! turtle_set_raw {
    ($block:literal) => {
        $crate::insert_asm(
            concat!("execute at @e[tag=turtle] run setblock ~ ~ ~ ", $block).as_ptr(),
            concat!("execute at @e[tag=turtle] run setblock ~ ~ ~ ", $block).len(),
            0
        )
    }
}

/// A limited subset of blocks for convenient usage.
#[repr(i32)]
#[derive(Debug, PartialEq, PartialOrd, Clone, Copy)]
pub enum McBlock {
    Air,
    Cobblestone,
    Granite,
    Andesite,
    Diorite,
    LapisBlock,
    IronBlock,
    GoldBlock,
    DiamondBlock,
    RedstoneBlock,
    EmeraldBlock,
}

impl Into<&'static str> for McBlock {
    fn into(self) -> &'static str {
        match self {
            McBlock::Air => "minecraft:air",
            McBlock::Cobblestone => "minecraft:cobblestone",
            McBlock::Granite => "minecraft:granite",
            McBlock::Andesite => "minecraft:andesite",
            McBlock::Diorite => "minecraft:diorite",
            McBlock::LapisBlock => "minecraft:lapis_block",
            McBlock::IronBlock => "minecraft:iron_block",
            McBlock::GoldBlock => "minecraft:gold_block",
            McBlock::DiamondBlock => "minecraft:diamond_block",
            McBlock::RedstoneBlock => "minecraft:redstone_block",
            McBlock::EmeraldBlock => "minecraft:emerald_block",
        }
    }
}

#[doc(hidden)]
pub struct Stdout;

impl core::fmt::Write for Stdout {
    fn write_str(&mut self, s: &str) -> core::fmt::Result {
        for b in s.bytes() {
            putc(b);
        }
        Ok(())
    }
}

/// Set the X coordinate of the turtle
pub fn turtle_x(x: i32) {
    unsafe {
        insert_asm!(
            "execute as @e[tag=turtle] store result entity @s Pos[0] double 1 run scoreboard players get $0 $obj",
            x
        );
    }
}

/// Set the Y coordinate of the turtle
pub fn turtle_y(y: i32) {
    unsafe {
        insert_asm!(
            "execute as @e[tag=turtle] store result entity @s Pos[1] double 1 run scoreboard players get $0 $obj",
            y
        );
    }
}

/// Set the Z coordinate of the turtle
pub fn turtle_z(z: i32) {
    unsafe {
        insert_asm!(
            "execute as @e[tag=turtle] store result entity @s Pos[2] double 1 run scoreboard players get $0 $obj",
            z
        );
    }
}

/// Write a character to `stdout`. No text is displayed until a newline is written.
pub fn putc(c: u8) {
    // TODO: Add checks for non-printing characters

    unsafe {
        insert_asm!(
            "scoreboard players operation %%temp0_putc $obj = $0 $obj",
            c as i32
        );
        insert_asm!("function stdout:putc", 0);
    }
}

/// Prints out a value to the chat
pub fn print_int(value: i32) {
    unsafe { print(value) }
}

extern "C" {
    #[doc(hidden)]
    #[rustc_args_required_const(0, 1)]
    pub fn insert_asm(data: *const u8, len: usize, input: i32);

    #[doc(hidden)]
    pub fn print_raw(data: *const u8, len: usize);

    #[doc(hidden)]
    pub fn print(value: i32);

    /// Sets the block at the turtle's position
    pub fn turtle_set(block: McBlock);

    /// Returns 1 if the block at the turtle's position matches the argument
    pub fn turtle_check(block: McBlock) -> bool;

    /// Returns the block at the turtle's position
    pub fn turtle_get() -> McBlock;

    /// Returns the char at the turtle's position
    pub fn turtle_get_char() -> u8;
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}