2019-12-07 18:21:36 +01:00
|
|
|
use aoc::err;
|
|
|
|
use aoc::Result;
|
|
|
|
|
|
|
|
mod parameter;
|
|
|
|
|
|
|
|
use parameter::Parameter;
|
|
|
|
|
|
|
|
pub fn parse_memory(s: &str) -> Result<Vec<i64>> {
|
|
|
|
s.trim_end()
|
|
|
|
.split(',')
|
|
|
|
.map(|x| x.parse().map_err(|e| err!("couldn't parse int: {}", e)))
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Opcode {
|
|
|
|
Add(Parameter, Parameter, Parameter),
|
|
|
|
Multiply(Parameter, Parameter, Parameter),
|
|
|
|
Input(Parameter),
|
|
|
|
Output(Parameter),
|
|
|
|
JumpTrue(Parameter, Parameter),
|
|
|
|
JumpFalse(Parameter, Parameter),
|
|
|
|
LessThan(Parameter, Parameter, Parameter),
|
|
|
|
Equals(Parameter, Parameter, Parameter),
|
|
|
|
Halt,
|
|
|
|
}
|
|
|
|
|
2019-12-07 23:04:50 +01:00
|
|
|
#[derive(Debug)]
|
2019-12-07 18:21:36 +01:00
|
|
|
pub struct Intcode {
|
|
|
|
pub memory: Vec<i64>,
|
|
|
|
input: Vec<i64>,
|
|
|
|
pub output: Vec<i64>,
|
|
|
|
ip: usize,
|
|
|
|
next_input: usize,
|
2019-12-07 23:04:50 +01:00
|
|
|
wait_input: bool,
|
2019-12-07 18:21:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Intcode {
|
|
|
|
pub fn new(input: &str) -> Result<Self> {
|
|
|
|
let memory = parse_memory(input)?;
|
|
|
|
|
|
|
|
Ok(Intcode::with_memory(memory))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_memory(memory: Vec<i64>) -> Self {
|
|
|
|
Intcode {
|
|
|
|
memory,
|
|
|
|
input: Vec::new(),
|
|
|
|
output: Vec::new(),
|
|
|
|
ip: 0,
|
|
|
|
next_input: 0,
|
2019-12-07 23:04:50 +01:00
|
|
|
wait_input: false,
|
2019-12-07 18:21:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add_input(&mut self, value: i64) {
|
|
|
|
self.input.push(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_opcode(&self) -> Result<Opcode> {
|
|
|
|
let instruction = self.memory[self.ip];
|
|
|
|
|
|
|
|
let opcode = instruction % 100;
|
|
|
|
let mode1 = instruction / 100;
|
|
|
|
let mode2 = instruction / 1000;
|
|
|
|
let mode3 = instruction / 10000;
|
|
|
|
match opcode {
|
|
|
|
1 => {
|
|
|
|
let op1 = Parameter::new(mode1, self.memory.get(self.ip + 1).copied())?;
|
|
|
|
let op2 = Parameter::new(mode2, self.memory.get(self.ip + 2).copied())?;
|
|
|
|
let dst = Parameter::new(mode3, self.memory.get(self.ip + 3).copied())?;
|
|
|
|
|
|
|
|
if let Parameter::Immediate(_) = dst {
|
|
|
|
Err(err!("add: destination parameter can't be immediate"))
|
|
|
|
} else {
|
|
|
|
Ok(Opcode::Add(op1, op2, dst))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
2 => {
|
|
|
|
let op1 = Parameter::new(mode1, self.memory.get(self.ip + 1).copied())?;
|
|
|
|
let op2 = Parameter::new(mode2, self.memory.get(self.ip + 2).copied())?;
|
|
|
|
let dst = Parameter::new(mode3, self.memory.get(self.ip + 3).copied())?;
|
|
|
|
|
|
|
|
if let Parameter::Immediate(_) = dst {
|
|
|
|
Err(err!("multiply: destination parameter can't be immediate"))
|
|
|
|
} else {
|
|
|
|
Ok(Opcode::Multiply(op1, op2, dst))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
3 => {
|
|
|
|
let dst = Parameter::new(mode1, self.memory.get(self.ip + 1).copied())?;
|
|
|
|
|
|
|
|
if let Parameter::Immediate(_) = dst {
|
|
|
|
Err(err!("input: destination parameter can't be immediate"))
|
|
|
|
} else {
|
|
|
|
Ok(Opcode::Input(dst))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
4 => {
|
|
|
|
let op = Parameter::new(mode1, self.memory.get(self.ip + 1).copied())?;
|
|
|
|
|
|
|
|
Ok(Opcode::Output(op))
|
|
|
|
}
|
|
|
|
5 => {
|
|
|
|
let test = Parameter::new(mode1, self.memory.get(self.ip + 1).copied())?;
|
|
|
|
let dst = Parameter::new(mode2, self.memory.get(self.ip + 2).copied())?;
|
|
|
|
|
|
|
|
Ok(Opcode::JumpTrue(test, dst))
|
|
|
|
}
|
|
|
|
6 => {
|
|
|
|
let test = Parameter::new(mode1, self.memory.get(self.ip + 1).copied())?;
|
|
|
|
let dst = Parameter::new(mode2, self.memory.get(self.ip + 2).copied())?;
|
|
|
|
|
|
|
|
Ok(Opcode::JumpFalse(test, dst))
|
|
|
|
}
|
|
|
|
7 => {
|
|
|
|
let op1 = Parameter::new(mode1, self.memory.get(self.ip + 1).copied())?;
|
|
|
|
let op2 = Parameter::new(mode2, self.memory.get(self.ip + 2).copied())?;
|
|
|
|
let dst = Parameter::new(mode3, self.memory.get(self.ip + 3).copied())?;
|
|
|
|
|
|
|
|
if let Parameter::Immediate(_) = dst {
|
|
|
|
Err(err!("less than: destination parameter can't be immediate"))
|
|
|
|
} else {
|
|
|
|
Ok(Opcode::LessThan(op1, op2, dst))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
8 => {
|
|
|
|
let op1 = Parameter::new(mode1, self.memory.get(self.ip + 1).copied())?;
|
|
|
|
let op2 = Parameter::new(mode2, self.memory.get(self.ip + 2).copied())?;
|
|
|
|
let dst = Parameter::new(mode3, self.memory.get(self.ip + 3).copied())?;
|
|
|
|
|
|
|
|
if let Parameter::Immediate(_) = dst {
|
|
|
|
Err(err!("equals: destination parameter can't be immediate"))
|
|
|
|
} else {
|
|
|
|
Ok(Opcode::Equals(op1, op2, dst))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
99 => Ok(Opcode::Halt),
|
|
|
|
_ => Err(err!("unknown opcode: {}", opcode)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-07 23:04:50 +01:00
|
|
|
fn exec(&mut self) -> Result<bool> {
|
2019-12-07 18:21:36 +01:00
|
|
|
loop {
|
|
|
|
if self.ip >= self.memory.len() {
|
|
|
|
return Err(err!("reached end of program without halting"));
|
|
|
|
}
|
|
|
|
|
|
|
|
let opcode = self.get_opcode()?;
|
|
|
|
|
|
|
|
match opcode {
|
|
|
|
Opcode::Add(op1, op2, dst) => {
|
|
|
|
let val1 = op1.get(&self.memory)?;
|
|
|
|
let val2 = op2.get(&self.memory)?;
|
|
|
|
|
|
|
|
dst.set(&mut self.memory, val1 + val2)?;
|
|
|
|
|
|
|
|
self.ip += 4;
|
|
|
|
}
|
|
|
|
Opcode::Multiply(op1, op2, dst) => {
|
|
|
|
let val1 = op1.get(&self.memory)?;
|
|
|
|
let val2 = op2.get(&self.memory)?;
|
|
|
|
|
|
|
|
dst.set(&mut self.memory, val1 * val2)?;
|
|
|
|
|
|
|
|
self.ip += 4;
|
|
|
|
}
|
|
|
|
Opcode::Input(dst) => {
|
|
|
|
let input = if self.next_input < self.input.len() {
|
|
|
|
let res = self.input[self.next_input];
|
|
|
|
self.next_input += 1;
|
2019-12-07 23:04:50 +01:00
|
|
|
res
|
|
|
|
} else if self.wait_input {
|
|
|
|
break Ok(false);
|
2019-12-07 18:21:36 +01:00
|
|
|
} else {
|
2019-12-07 23:04:50 +01:00
|
|
|
break Err(err!("tried to read input but it was empty"));
|
|
|
|
};
|
2019-12-07 18:21:36 +01:00
|
|
|
dst.set(&mut self.memory, input)?;
|
|
|
|
|
|
|
|
self.ip += 2;
|
|
|
|
}
|
|
|
|
Opcode::Output(op) => {
|
|
|
|
let val = op.get(&self.memory)?;
|
|
|
|
self.output.push(val);
|
|
|
|
|
|
|
|
self.ip += 2;
|
|
|
|
}
|
|
|
|
Opcode::JumpTrue(test, dst) => {
|
|
|
|
let val = test.get(&self.memory)?;
|
|
|
|
let dst = dst.get(&self.memory)?;
|
|
|
|
if dst < 0 {
|
|
|
|
return Err(err!("dst must be a valid address: {}", dst));
|
|
|
|
}
|
|
|
|
|
|
|
|
if val != 0 {
|
|
|
|
self.ip = dst as usize;
|
|
|
|
} else {
|
|
|
|
self.ip += 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Opcode::JumpFalse(test, dst) => {
|
|
|
|
let val = test.get(&self.memory)?;
|
|
|
|
let dst = dst.get(&self.memory)?;
|
|
|
|
if dst < 0 {
|
|
|
|
return Err(err!("dst must be a valid address: {}", dst));
|
|
|
|
}
|
|
|
|
|
|
|
|
if val == 0 {
|
|
|
|
self.ip = dst as usize;
|
|
|
|
} else {
|
|
|
|
self.ip += 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Opcode::LessThan(op1, op2, dst) => {
|
|
|
|
let val1 = op1.get(&self.memory)?;
|
|
|
|
let val2 = op2.get(&self.memory)?;
|
|
|
|
|
|
|
|
let res = if val1 < val2 { 1 } else { 0 };
|
|
|
|
dst.set(&mut self.memory, res)?;
|
|
|
|
|
|
|
|
self.ip += 4;
|
|
|
|
}
|
|
|
|
Opcode::Equals(op1, op2, dst) => {
|
|
|
|
let val1 = op1.get(&self.memory)?;
|
|
|
|
let val2 = op2.get(&self.memory)?;
|
|
|
|
|
|
|
|
let res = if val1 == val2 { 1 } else { 0 };
|
|
|
|
dst.set(&mut self.memory, res)?;
|
|
|
|
|
|
|
|
self.ip += 4;
|
|
|
|
}
|
2019-12-07 23:04:50 +01:00
|
|
|
Opcode::Halt => break Ok(true),
|
2019-12-07 18:21:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-07 23:04:50 +01:00
|
|
|
pub fn run_and_wait(&mut self) -> Result<bool> {
|
|
|
|
self.wait_input = true;
|
|
|
|
self.exec()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn run(&mut self) -> Result<()> {
|
|
|
|
self.wait_input = false;
|
|
|
|
self.exec()?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2019-12-07 18:21:36 +01:00
|
|
|
pub fn get_day02_output(&self) -> Option<i64> {
|
|
|
|
self.memory.get(0).copied()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_day05_output(&self) -> Option<i64> {
|
|
|
|
for (i, out) in self.output.iter().enumerate() {
|
|
|
|
if i < self.output.len() - 1 {
|
|
|
|
assert_eq!(*out, 0);
|
|
|
|
} else {
|
|
|
|
return Some(*out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|