This is a text adventure. Just enjoy playing it :-D
(Yes, I could automate exploration, item collection and somehow detecting the items you shouldn't want to take, but where's the fun in that).
from __future__ import annotations
import sys
from typing import Callable, List
from intcode import CPU, Instruction, InstructionSet, base_opcodes
def ascii_input() -> Callable[[], int]:
buffer: List[int] = []
def input_one() -> int:
nonlocal buffer
if not buffer:
buffer += input().encode("ASCII")
buffer += (10,)
buffer.reverse()
return buffer.pop()
return input_one
def print_ascii(value: int) -> None:
sys.stdout.write(chr(value))
def run_ascii(memory: List[int]) -> None:
opcodes: InstructionSet = {
**base_opcodes,
3: Instruction(ascii_input(), output=True),
4: Instruction(print_ascii, 1),
}
CPU(opcodes).reset(memory).execute()
import aocd
data = aocd.get_data(day=25, year=2019)
memory = list(map(int, data.split(",")))
run_ascii(memory)
== Hull Breach == You got in through a hole in the floor here. To keep your ship from also freezing, the hole has been sealed. Doors here lead: - north - east - south Command?