use crate::instruction::{Fill, Node, PString}; use std::collections::HashMap; use crate::errors::ParseError; type Result = std::result::Result; lazy_static! { pub static ref NROM: Vec = vec![ Segment { name: String::from("HEADER"), start: 0x0000, size: 0x0010, fill: Some(Fill { value: 0x00 }), }, Segment { name: String::from("VECTORS"), start: 0xFFFA, size: 0x0006, fill: Some(Fill { value: 0x00 }), }, Segment { name: String::from("CODE"), start: 0x8000, size: 0x7FFA, fill: Some(Fill { value: 0x00 }), }, Segment { name: String::from("CHARS"), start: 0x0000, size: 0x2000, fill: Some(Fill { value: 0x00 }), } ]; } #[derive(Debug, Clone, Eq, Ord, PartialEq, PartialOrd)] pub struct Segment { pub name: String, pub start: u16, pub size: usize, pub fill: Option, } #[derive(Debug)] pub struct Mapping { pub segments: Vec, pub nodes: HashMap>, pub current: String, } impl Mapping { pub fn new(mut segments: Vec) -> Self { segments.sort_by(|a, b| a.start.cmp(&b.start)); let mut nodes = HashMap::new(); for segment in segments.iter() { nodes.insert(segment.name.clone(), vec![]); } let current_segment = &segments.first().unwrap().name.clone(); Mapping { segments, nodes, current: current_segment.to_string(), } } pub fn reset(&mut self) { // TODO } pub fn switch(&mut self, id: &PString) -> Result<()> { if !self.nodes.contains_key(&id.value) { return Err( id.parser_error(format!("segment '{}' has not been defined", id.value).as_str()) ); } id.value.clone_into(&mut self.current); Ok(()) } pub fn current(&self) -> &Vec { self.nodes.get(&self.current).unwrap() } pub fn current_mut(&mut self) -> &mut Vec { self.nodes.get_mut(&self.current).unwrap() } pub fn push(&mut self, node: Node) { self.nodes.get_mut(&self.current).unwrap().push(node); } }