nucleation 0.1.14

A high-performance Minecraft schematic parser and utility library
Documentation
use std::collections::HashMap;
use quartz_nbt::NbtCompound;
use serde::{Deserialize, Serialize};
use crate::item::ItemStack;
use crate::utils::{NbtMap, NbtValue};

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct BlockEntity {
    pub nbt: NbtMap,
    pub id: String,
    pub position: (i32, i32, i32),
}




impl BlockEntity {
    pub fn new(id: String, position: (i32, i32, i32)) -> Self {
        BlockEntity {
            nbt: NbtMap::new(),
            id,
            position,
        }
    }

    pub fn with_nbt_data(mut self, key: String, value: NbtValue) -> Self {
        self.nbt.insert(key, value);
        self
    }

    pub fn to_hashmap(&self) -> HashMap<String, NbtValue> {
        let mut map = HashMap::new();
        map.insert("Id".to_string(), NbtValue::String(self.id.clone()));
        map.insert("Pos".to_string(), NbtValue::IntArray(vec![
            self.position.0,
            self.position.1,
            self.position.2
        ]));
        for (key, value) in &self.nbt {
            map.insert(key.clone(), value.clone());
        }
        map
    }


    pub fn add_item_stack(&mut self, item: ItemStack) {
        let mut items = self.nbt.get("Items").map(|items| {
            if let NbtValue::List(items) = items {
                items.clone()
            } else {
                vec![]
            }
        }).unwrap_or_else(|| vec![]);
        items.push(item.to_nbt());
        self.nbt.insert("Items".to_string(), NbtValue::List(items));
    }

    pub fn create_chest(position: (i32, i32, i32), items: Vec<ItemStack>) -> BlockEntity {
        let mut chest = BlockEntity::new("minecraft:chest".to_string(), position);
        for item_stack in items {
            chest.add_item_stack(item_stack);
        }
        chest
    }

    pub fn from_nbt(nbt: &NbtCompound) -> Self {
        let nbt_map = NbtMap::from_quartz_nbt(nbt);
        let id = nbt_map.get("Id")
            .and_then(|v| v.as_string())
            .cloned()
            .unwrap_or_else(|| "unknown".to_string());
        let position = nbt_map.get("Pos")
            .and_then(|v| v.as_int_array())
            .map(|v| (v[0], v[1], v[2]))
            .unwrap_or_else(|| (0, 0, 0));
        BlockEntity { nbt: nbt_map, id, position }
    }

    pub fn to_nbt(&self) -> NbtCompound {
        let mut nbt = NbtCompound::new();
        // Store the core BlockEntity fields
        nbt.insert("Id", NbtValue::String(self.id.clone()).to_quartz_nbt());
        nbt.insert("Pos", NbtValue::IntArray(vec![
            self.position.0,
            self.position.1,
            self.position.2
        ]).to_quartz_nbt());

        // Store the rest of the NBT data
        for (key, value) in &self.nbt {
            nbt.insert(key, value.to_quartz_nbt());
        }
        nbt
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::item::ItemStack;

    #[test]
    fn test_block_entity_creation() {
        let block_entity = BlockEntity::new("minecraft:chest".to_string(), (1, 2, 3));
        assert_eq!(block_entity.id, "minecraft:chest");
        assert_eq!(block_entity.position, (1, 2, 3));
    }

    #[test]
    fn test_block_entity_with_nbt_data() {
        let block_entity = BlockEntity::new("minecraft:chest".to_string(), (1, 2, 3))
            .with_nbt_data("CustomName".to_string(), NbtValue::String("Test".to_string()));
        assert_eq!(block_entity.nbt.get("CustomName"), Some(&NbtValue::String("Test".to_string())));
    }


}