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
mod cli;
mod ipg;
mod latex;
mod ui;

use std::fs::File;
use std::path::{Path, PathBuf};

use regex::Regex;
use rustyline::{CompletionType, Editor};

fn main() {
    if let Err(e) = _main() {
        std::process::exit(e);
    }
}

fn _main() -> Result<(), i32> {
    let args = cli::build().get_matches();

    // Execute subcommand instead of main program if specified
    match args.subcommand() {
        ("completions", Some(args)) => return cli::gen_completions(args),
        ("ipg-csv", Some(args)) => return ipg::main(args),
        ("latex", Some(args)) => return latex::main(args),
        _ => (),
    }

    // Load the program from the filename given as the first cli parameter
    let mut program = if let Some(file_name) = args.value_of("2i-programm") {
        Some(load_programm(&Path::new(&file_name)).map_err(|_| 2)?)
    } else {
        None
    };

    let io = emulator::IoRegisters::new();
    let mut computer = Computer::new(&io);

    println!("2i-emulator {}, GPLv3, https://github.com/klemens/2i-emulator",
             option_env!("CARGO_PKG_VERSION").unwrap_or("*"));
    ui::status(&mut computer, &io, &program, None);

    // Set up line editing and completion
    let completer = Completer::default();
    let config = rustyline::Config::builder().completion_type(CompletionType::List);
    let mut line_reader = Editor::with_config(config.build());
    line_reader.set_completer(Some(&completer));

    // eg: FD = 1101
    let input_pattern = Regex::new(r"^(?P<index>F[C-F])\s+=\s+(?P<value>[01]{1,8})$").unwrap();

    while let Ok(line) = line_reader.readline("> ") {
        let line = line.trim();

        // Add all non-empty inputs to the history
        if ! line.is_empty() {
            line_reader.add_history_entry(line.as_ref());
        }

        if line.is_empty() {
            if let Some(ref program_inner) = program {
                // Execute next instruction and display the updated ui
                match computer.step(&program_inner) {
                    Ok(flags) => {
                        ui::status(&mut computer, &io, &program, Some(flags));
                    }
                    Err(err) => {
                        println!("Fehler beim Ausführen des Befehls: \"{}\"", err);
                        return Err(100);
                    }
                }
            } else {
                println!("Fehler: Kein Mikroprogramm geladen! (Laden per \"load prog.2i\")");
            }
        } else if line.starts_with("load ") {
            let path = cmdline_parser::parse_single(&line[5..].trim());

            if let Ok(prog) = load_programm(Path::new(&path)) {
                program = Some(prog);
                // Reset computer (only keep io registers)
                computer = Computer::new(&io);
                ui::status(&mut computer, &io, &program, None);
            }
        } else if line.starts_with("trigger ") {
            match &line[8..] {
                "INTA" => computer.cpu.trigger_volatile_interrupt(),
                "INTB" => computer.cpu.trigger_stored_interrupt(),
                int => {
                    println!("Kein gültiger interrupt: {}", int);
                    continue;
                }
            };
            ui::status(&mut computer, &io, &program, None);
        } else if line == "exit" || line == "quit" {
            break;
        } else if line == "help" {
            ui::display_help();
        } else if line == "ram" {
            ui::display_ram(&computer.ram);
        } else if line == "program" {
            if let Some(ref program) = program {
                ui::display_program(&program);
            } else {
                println!("Aktuell kein Mikroprogramm geladen.")
            }
        } else if let Some(matches) = input_pattern.captures(line) {
            // Try to set one of the input registers
            if let Ok(value) = u8::from_str_radix(&matches["value"], 2) {
                match &matches["index"] {
                    "FC" => io.inspect_input().borrow_mut()[0] = value,
                    "FD" => io.inspect_input().borrow_mut()[1] = value,
                    "FE" => io.inspect_input().borrow_mut()[2] = value,
                    "FF" => io.inspect_input().borrow_mut()[3] = value,
                    _ => panic!("Invalid regex match"),
                }
                ui::status(&mut computer, &io, &program, None);
            } else {
                println!("Ungültiger Wert.");
            }
        } else {
            println!("Ungültige Eingabe. \"help\" für Hilfe.");
        }
    }

    Ok(())
}

/// Load 2i program from path and print errors to stdout if it failes
fn load_programm(path: &Path) -> Result<Program, ()> {
    if let Ok(file) = File::open(&path) {
        match emulator::parse::read_program(file) {
            Ok(program) => Ok(Program { path: path.into(), instructions: program }),
            Err(err) => {
                println!("Fehler beim Laden des Programms: {}", err);
                Err(())
            }
        }
    } else {
        println!("Die angegebene Datei konnte nicht geöffnet werden.");
        Err(())
    }
}

#[derive(Default)]
pub struct Computer<'a> {
    cpu: emulator::Cpu,
    instruction_pointer: usize,
    ram: emulator::Ram<'a>,
}

impl<'a> Computer<'a> {
    fn new(io: &'a emulator::IoRegisters) -> Computer<'a> {
        let mut computer = Computer::default();
        computer.ram.add_overlay(0xFC, 0xFF, io);
        computer
    }

    /// Execute next instruction and update the instruction pointer
    fn step(&mut self, program: &Program) -> emulator::Result<emulator::Flags> {
        let instruction = program.instructions[self.instruction_pointer];
        self.cpu.execute_instruction(instruction, &mut self.ram).map(|(ip, flags)| {
            self.instruction_pointer = ip;
            flags
        })
    }
}

pub struct Program {
    path: PathBuf,
    instructions: [emulator::Instruction; 32],
}

#[derive(Default)]
struct Completer {
    path_completer: rustyline::completion::FilenameCompleter,
}

impl rustyline::completion::Completer for Completer {
    fn complete(&self, line: &str, pos: usize) -> rustyline::Result<(usize, Vec<String>)> {
        // complete file paths for the load command
        if line.starts_with("load ") && pos >= 5 {
            return self.path_completer.complete(line, pos);
        }

        // complete normal commands only at the end
        if pos < line.len() {
            return Ok((0, vec![]));
        }

        let commands = [
            "exit",
            "load ",
            "FC = ",
            "FD = ",
            "FE = ",
            "FF = ",
            "trigger INTA",
            "trigger INTB",
            "help",
            "quit",
            "ram",
            "program",
        ];

        let completions = commands.iter().filter_map(|&command| {
            // Only keep commands, for which the input is a real prefix
            if command.starts_with(line) && command != line {
                Some(command.into())
            } else {
                None
            }
        }).collect();

        Ok((0, completions))
    }
}