From 2eef7843a20f90ad0bb2ab8f024fbe0664a5ebbe Mon Sep 17 00:00:00 2001 From: Quaternions Date: Wed, 24 Jul 2024 11:59:37 -0700 Subject: [PATCH] generate resource ids + implement load_mesh --- src/map.rs | 62 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 46 insertions(+), 16 deletions(-) diff --git a/src/map.rs b/src/map.rs index c43105c..b5a679a 100644 --- a/src/map.rs +++ b/src/map.rs @@ -11,7 +11,9 @@ use strafesnet_common::gameplay_modes; pub enum Error{ InvalidHeader(binrw::Error), InvalidBlockId(BlockId), - InvalidRegion(binrw::Error), + InvalidMeshId(model::MeshId), + InvalidTextureId(model::TextureId), + InvalidData(binrw::Error), File(crate::file::Error), } @@ -73,17 +75,29 @@ for model_id in 0..num_models{ //if you hash the resource itself and set the first 8 bits to this, that's the resource uuid #[binrw] #[brw(little,repr=u8)] -enum Resource{ +enum ResourceType{ Mesh, Texture, - Shader, - Sound, - Video, - Animation, + //Shader, + //Sound, + //Video, + //Animation, } +const RESOURCE_TYPE_VARIANT_COUNT:u8=2; #[binrw] #[brw(little)] struct ResourceId(u128); +impl ResourceId{ + fn resource_type(&self)->Option{ + let discriminant=self.0 as u8; + //TODO: use this when it is stabilized https://github.com/rust-lang/rust/issues/73662 + //if (discriminant as usize)(){ + match discriminantSome(unsafe{std::mem::transmute::(discriminant)}), + false=>None, + } + } +} struct ResourceMap{ meshes:HashMap, @@ -107,7 +121,7 @@ struct SpacialBlockHeader{ #[binrw] #[brw(little)] struct ResourceBlockHeader{ - resource:Resource, + resource:ResourceType, id:BlockId, } #[binrw] @@ -152,7 +166,7 @@ pub struct StreamableMap{ bvh:BvhNode, //something something resources hashmaps resource_blocks:ResourceMap, - resource_external:ResourceMap, + //resource_external:ResourceMap, } impl StreamableMap{ pub(crate) fn new(mut file:crate::file::File)->Result{ @@ -162,13 +176,31 @@ impl StreamableMap{ let bvh=header.spacial_blocks.into_iter().map(|spacial_block| (spacial_block.id,spacial_block.extents.into()) ).collect(); - //TODO: generate mesh ids and texture ids from resource list order + //generate mesh ids and texture ids from resource list order + let mut resource_blocks=ResourceMap::default(); + for resource_block_header in header.resource_blocks{ + match resource_block_header.resource{ + ResourceType::Mesh=>{ + resource_blocks.meshes.insert( + //generate the id from the current length + model::MeshId::new(resource_blocks.meshes.len() as u32), + resource_block_header.id + ); + }, + ResourceType::Texture=>{ + resource_blocks.textures.insert( + model::TextureId::new(resource_blocks.textures.len() as u32), + resource_block_header.id + ); + }, + } + } Ok(Self{ file, modes:strafesnet_common::gameplay_modes::Modes::new(modes), bvh:strafesnet_common::bvh::generate_bvh(bvh), - resource_blocks:Default::default(), - resource_external:Default::default(), + resource_blocks, + //resource_external:Default::default(), }) } pub fn get_intersecting_region_block_ids(&self,aabb:&Aabb)->Vec{ @@ -182,15 +214,13 @@ impl StreamableMap{ //load resources into self.resources //return Region let mut block=self.file.block_reader(block_id).map_err(Error::File)?; - let region:Region=block.read_le().map_err(Error::InvalidRegion)?; + let region:Region=block.read_le().map_err(Error::InvalidData)?; Ok(region.models.into_iter().map(Into::into).collect()) } - /* pub fn load_mesh(&mut self,mesh_id:model::MeshId)->Result{ - let block_id=self.resource_blocks.meshes.get(mesh_id).ok_or_err(Error::NotFound)?; + let block_id=*self.resource_blocks.meshes.get(&mesh_id).ok_or(Error::InvalidMeshId(mesh_id))?; let mut block=self.file.block_reader(block_id).map_err(Error::File)?; - let mesh:newtypes::model::Mesh=block.read_le().map_err(Error::InvalidRegion)?; + let mesh:newtypes::model::Mesh=block.read_le().map_err(Error::InvalidData)?; Ok(mesh.into()) } - */ }