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
#![deny(clippy::unwrap_used)]

use data_struct::IError;

use crate::{
  data_struct::{Type, TypedByte},
  utils::convert_kind_byte,
};

pub mod compiler;
pub mod data_struct;
pub mod interpreter;
pub mod macros;

pub const ROBSON_FOLDER: &str = ".robson_o_grande";
pub const STDRB_FOLDER: &str = "stdrb";
#[cfg(test)]
mod tests;

pub mod utils;

pub trait Infra {
  fn read_line(&mut self) -> Result<String, std::io::Error>;
  fn print(&mut self, to_print: &[u8]);
  fn println(&mut self, to_print: String);
  fn flush(&mut self);
  fn enable_raw_mode(&self) -> Result<(), IError>;
  fn disable_raw_mode(&self) -> Result<(), IError>;
  fn clear_purge(&mut self) -> Result<(), IError>;
  fn clear_all(&mut self) -> Result<(), IError>;
  fn poll(&self, duration: u64) -> Result<u32, IError>;
  fn hide_cursor(&mut self) -> Result<(), IError>;
  fn show_cursor(&mut self) -> Result<(), IError>;
  fn move_cursor(&mut self, x: u32, y: u32) -> Result<(), IError>;
  fn use_color(&mut self, color: u32) -> Result<(), IError>;
  fn use_background(&mut self, color: u32) -> Result<(), IError>;
}

pub trait CompilerInfra {
  fn clone_self(&mut self) -> Box<dyn CompilerInfra>;
  fn color_print(&mut self, to_print: String, color: u64);
  fn println(&mut self, to_print: String);

  fn home_dir(&self) -> Option<String>;
  fn lines(&self, path: &str) -> Result<Vec<String>, IError>;
}

pub fn print_file_buffer(buffer: Vec<u8>) {
  let mut command = 0;
  let mut index = 0;
  while index < buffer.len() {
    let opcode = buffer[index];
    let kind_byte = buffer[index + 1];
    let param1_byte = [
      buffer[index + 2],
      buffer[index + 3],
      buffer[index + 4],
      buffer[index + 5],
    ];
    let param2_byte = [
      buffer[index + 6],
      buffer[index + 7],
      buffer[index + 8],
      buffer[index + 9],
    ];
    let param3_byte = [
      buffer[index + 10],
      buffer[index + 11],
      buffer[index + 12],
      buffer[index + 13],
    ];

    let types = buffer[index + 14];
    let converted_types = convert_kind_byte(types);
    let param1 = TypedByte {
      value: param1_byte,
      r#type: Type::from(converted_types[0]),
    };
    let param2 = TypedByte {
      value: param2_byte,
      r#type: Type::from(converted_types[1]),
    };
    let param3 = TypedByte {
      value: param3_byte,
      r#type: Type::from(converted_types[2]),
    };

    println!("command: {command}\nopcode: {opcode}\ntypes_byte: {types:08b}\nkind_byte: {kind_byte:08b}\nparam1: {param1}\nparam2: {param2}\nparam3: {param3}\n\n");

    index += 15;
    command += 1;
  }
}