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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
// * Copyright (c) 2023
// *
// * This project is dual-licensed under the MIT and Apache licenses.
// *
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
// ** APACHE 2.0 LICENSE
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
// *
// * Licensed under the Apache License, Version 2.0 (the "License");
// * you may not use this file except in compliance with the License.
// * You may obtain a copy of the License at
// *
// * http://www.apache.org/licenses/LICENSE-2.0
// *
// * Unless required by applicable law or agreed to in writing, software
// * distributed under the License is distributed on an "AS IS" BASIS,
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// * See the License for the specific language governing permissions and
// * limitations under the License.
// *
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
// ** MIT LICENSE
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
// *
// * Permission is hereby granted, free of charge, to any person obtaining a
// * copy
// * of this software and associated documentation files (the "Software"), to
// * deal
// * in the Software without restriction, including without limitation the
// * rights
// * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// * copies of the Software, and to permit persons to whom the Software is
// * furnished to do so, subject to the following conditions:
// *
// * The above copyright notice and this permission notice shall be included in
// * all
// * copies or substantial portions of the Software.
// *
// * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// * FROM,
// * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// * THE
// * SOFTWARE.
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
use std::fmt::{
self,
Display,
Formatter,
};
/// All possible instructions that can be understood by the interpreter
///
/// This enum is at the heart of the interpreter. This enumerates
/// all eight instructions that a brainfuck program can be composed of
/// in addition to a ninth No-Op instruction
///
/// # Examples
///
/// ```
/// use brainfoamkit_lib::Instruction;
///
/// let incrptr = Instruction::from_char('>');
/// let decrptr = Instruction::from_char('<');
///
/// assert_eq!(incrptr, Instruction::IncrementPointer);
/// assert_eq!(decrptr, Instruction::DecrementPointer);
/// ```
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum Instruction {
/// Instruction to Increment the Pointer
///
/// Internal representation of the `>` instruction.
IncrementPointer,
/// Instruction to Decrement the Pointer
///
/// Internal representation of the `<` instruction.
DecrementPointer,
/// Instruction to Increment the Value stored in memory location
///
/// Internal representation of the `+` instruction.
IncrementValue,
/// Instruction to Increment the Value stored in memory location
///
/// Internal representation of the `-` instruction.
DecrementValue,
/// Instruction to Output the currently stored value to the external
/// interface
///
/// Internal representation of the `.` instruction.
OutputValue,
/// Instruction to Input the currently available value at the external
/// interface
///
/// Internal representation of the `,` instruction.
InputValue,
/// Instruction to Start a loop if the current value is non-zero
///
/// Internal representation of the `[` instruction.
JumpForward,
/// Instruction to Restart a loop if the current value is non-zero
///
/// Internal representation of the `]` instruction.
JumpBackward,
/// Instruction to do nothing
///
/// This does not have a corresponding instruction in BrainFuck
NoOp,
}
impl Instruction {
/// Convert a char to an Instruction
///
/// This method takes in a a single instruction (character
/// and converts that into the instruction.
///
/// This ignores any instructions not in the standard alphabet
/// of `BrainFuck` and counts them as No-Ops
///
/// The following table and [associated github repository](https://github.com/AliSajid/BrainFoamKit/tree/alpha/lang#brainfuck-syntax)
/// show the entire syntax.
///
/// | Symbol | Effect |
/// | :------: | :------ |
/// | `+` | Increment the value in the current memory cell|
/// | `-` | Decrement the value in the current memory cell|
/// | `>` | Move the memory pointer to the right|
/// | `<` | Move the memory pointer to the left|
/// | `[` | Begin a loop: continue if value in memory cell is nonzero|
/// | `]` | End a loop: jump back to corresponding `[` if value in memory cell is nonzero|
/// | `.` | Output the ASCII value in the current memory cell|
/// | `,` | Read a single ASCII character and store it in the current memory cell|
/// | _ | Everything else is a No-Up|
///
/// # Argument
///
/// * `c` - A single character from the `BrainFuck` list of command
/// characters.
///
/// # Examples
///
/// ```
/// use brainfoamkit_lib::Instruction;
///
/// let instruction = Instruction::from_char('+');
///
/// assert_eq!(instruction, Instruction::IncrementValue)
/// ```
///
/// # Returns
///
/// The appropriate variant of the `Instruction` enum
///
/// # Notes
///
/// This version of `Instruction` treats every character other than the
/// eight specific characters as `NoOp`s
#[must_use]
pub const fn from_char(c: char) -> Self {
match c {
'>' => Self::IncrementPointer,
'<' => Self::DecrementPointer,
'+' => Self::IncrementValue,
'-' => Self::DecrementValue,
'.' => Self::OutputValue,
',' => Self::InputValue,
'[' => Self::JumpForward,
']' => Self::JumpBackward,
_ => Self::NoOp,
}
}
}
/// Convert an instruction to a String
///
/// This method converts a given instruction to a human-readable
/// instruction.
///
/// # Examples
///
/// ```
/// use brainfoamkit_lib::{
/// Instruction,
/// Nybble,
/// };
///
/// let instruction = Instruction::from_char('>');
///
/// assert_eq!(instruction.to_string(), "INCPTR");
/// ```
///
/// # Returns
///
/// The instruction as a string.
///
/// # See Also
///
/// * [`from_char()`](#method.from_char): Creates a new Instruction from a
/// string.
impl Display for Instruction {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
match *self {
Self::IncrementPointer => write!(f, "INCPTR"),
Self::DecrementPointer => write!(f, "DECPTR"),
Self::IncrementValue => write!(f, "INCVAL"),
Self::DecrementValue => write!(f, "DECVAL"),
Self::OutputValue => write!(f, "OUTVAL"),
Self::InputValue => write!(f, "INPVAL"),
Self::JumpForward => write!(f, "JMPFWD"),
Self::JumpBackward => write!(f, "JMPBCK"),
Self::NoOp => write!(f, "NOOP"),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_instruction_from_char() {
assert_eq!(Instruction::from_char('>'), Instruction::IncrementPointer);
assert_eq!(Instruction::from_char('<'), Instruction::DecrementPointer);
assert_eq!(Instruction::from_char('+'), Instruction::IncrementValue);
assert_eq!(Instruction::from_char('-'), Instruction::DecrementValue);
assert_eq!(Instruction::from_char('.'), Instruction::OutputValue);
assert_eq!(Instruction::from_char(','), Instruction::InputValue);
assert_eq!(Instruction::from_char('['), Instruction::JumpForward);
assert_eq!(Instruction::from_char(']'), Instruction::JumpBackward);
assert_eq!(Instruction::from_char(' '), Instruction::NoOp);
}
#[test]
fn test_instruction_display() {
assert_eq!(format!("{}", Instruction::IncrementPointer), "INCPTR");
assert_eq!(format!("{}", Instruction::DecrementPointer), "DECPTR");
assert_eq!(format!("{}", Instruction::IncrementValue), "INCVAL");
assert_eq!(format!("{}", Instruction::DecrementValue), "DECVAL");
assert_eq!(format!("{}", Instruction::OutputValue), "OUTVAL");
assert_eq!(format!("{}", Instruction::InputValue), "INPVAL");
assert_eq!(format!("{}", Instruction::JumpForward), "JMPFWD");
assert_eq!(format!("{}", Instruction::JumpBackward), "JMPBCK");
assert_eq!(format!("{}", Instruction::NoOp), "NOOP");
}
}