2024-01-08 18:29:57 -08:00
|
|
|
const VALVE_SCALE:f32=1.0/16.0;
|
2024-01-08 17:31:51 -08:00
|
|
|
pub fn generate_indexed_models<R:std::io::Read+std::io::Seek>(input:&mut R)->Result<crate::model::IndexedModelInstances,vbsp::BspError>{
|
2023-10-09 21:37:07 -07:00
|
|
|
let mut s=Vec::new();
|
|
|
|
|
|
|
|
match input.read_to_end(&mut s){
|
2024-01-08 17:31:51 -08:00
|
|
|
Ok(_)=>(),
|
|
|
|
Err(e)=>println!("load_bsp::generate_indexed_models read_to_end failed: {:?}",e),
|
2023-10-09 21:37:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
match vbsp::Bsp::read(s.as_slice()){
|
2024-01-08 17:31:51 -08:00
|
|
|
Ok(bsp)=>{
|
|
|
|
let mut spawn_point=crate::integer::Planar64Vec3::ZERO;
|
2023-10-02 15:28:57 -07:00
|
|
|
|
2024-01-08 18:06:18 -08:00
|
|
|
let vertices: Vec<_> = bsp
|
|
|
|
.vertices
|
|
|
|
.iter()
|
2024-01-08 19:43:44 -08:00
|
|
|
.map(|vertex|<[f32;3]>::from(vertex.position))
|
2024-01-08 18:06:18 -08:00
|
|
|
.collect();
|
|
|
|
|
|
|
|
|
2024-01-08 19:43:44 -08:00
|
|
|
let models=bsp.models().map(|world_model|{
|
|
|
|
//non-deduplicated
|
|
|
|
let mut spam_pos=Vec::new();
|
|
|
|
let mut spam_tex=Vec::new();
|
2024-01-08 19:54:29 -08:00
|
|
|
let mut spam_normal=Vec::new();
|
2024-01-08 19:43:44 -08:00
|
|
|
let mut spam_vertices=Vec::new();
|
|
|
|
let groups=world_model.faces()
|
|
|
|
.filter(|face| face.is_visible())//TODO: look at this
|
|
|
|
.map(|face|{
|
|
|
|
let face_texture=face.texture();
|
|
|
|
let face_texture_data=face_texture.texture_data();
|
|
|
|
let (s,t)=(glam::Vec3A::from_slice(&face_texture.texture_transforms_u[0..3]),glam::Vec3A::from_slice(&face_texture.texture_transforms_v[0..3]));
|
|
|
|
let (s0,t0)=(face_texture.texture_transforms_u[3],face_texture.texture_transforms_v[3]);
|
2024-01-08 19:54:29 -08:00
|
|
|
|
|
|
|
//normal
|
|
|
|
let normal=face.normal();
|
|
|
|
let normal_idx=spam_normal.len() as u32;
|
|
|
|
spam_normal.push(crate::integer::Planar64Vec3::try_from([normal.x,normal.z,normal.y]).unwrap());
|
2024-01-08 19:43:44 -08:00
|
|
|
|
|
|
|
crate::model::IndexedGroup{
|
|
|
|
texture:None,
|
|
|
|
polys:vec![crate::model::IndexedPolygon{vertices:face.vertex_indexes().map(|vertex_index|{
|
|
|
|
let pos=glam::Vec3A::from_array(vertices[vertex_index as usize]);
|
|
|
|
let pos_idx=spam_pos.len();
|
|
|
|
spam_pos.push(glam::Vec3Swizzles::xzy(pos)*VALVE_SCALE);
|
|
|
|
|
|
|
|
//calculate texture coordinates
|
|
|
|
let tex=[(pos.dot(s)+s0)/face_texture_data.width as f32,(pos.dot(t)+t0)/face_texture_data.height as f32];
|
|
|
|
let tex_idx=spam_tex.len() as u32;
|
|
|
|
spam_tex.push(tex);
|
|
|
|
|
|
|
|
let i=spam_vertices.len() as u32;
|
|
|
|
spam_vertices.push(crate::model::IndexedVertex{
|
|
|
|
pos: pos_idx as u32,
|
|
|
|
tex: tex_idx as u32,
|
2024-01-08 19:54:29 -08:00
|
|
|
normal: normal_idx,
|
2024-01-08 19:43:44 -08:00
|
|
|
color: 0,
|
|
|
|
});
|
|
|
|
i
|
|
|
|
}).collect()}],
|
|
|
|
}
|
|
|
|
}).collect();
|
|
|
|
crate::model::IndexedModel{
|
|
|
|
unique_pos:spam_pos.into_iter().map(|v|crate::integer::Planar64Vec3::try_from(v).unwrap()).collect(),
|
|
|
|
unique_tex:spam_tex.into_iter().map(|v|crate::model::TextureCoordinate::from_array(v)).collect(),
|
2024-01-08 19:54:29 -08:00
|
|
|
unique_normal:spam_normal,
|
2024-01-08 19:43:44 -08:00
|
|
|
unique_color:vec![glam::Vec4::ONE],
|
|
|
|
unique_vertices:spam_vertices,
|
|
|
|
groups,
|
|
|
|
instances:vec![crate::model::ModelInstance{
|
|
|
|
attributes:crate::model::CollisionAttributes::Decoration,
|
|
|
|
..Default::default()
|
2024-01-08 18:06:18 -08:00
|
|
|
}],
|
2024-01-08 18:29:57 -08:00
|
|
|
}
|
|
|
|
}).collect();
|
2024-01-08 18:06:18 -08:00
|
|
|
|
2024-01-08 17:31:51 -08:00
|
|
|
Ok(crate::model::IndexedModelInstances{
|
|
|
|
textures:Vec::new(),
|
2024-01-08 19:43:44 -08:00
|
|
|
models,
|
2024-01-08 17:31:51 -08:00
|
|
|
spawn_point,
|
|
|
|
modes:Vec::new(),
|
|
|
|
})
|
|
|
|
},
|
|
|
|
Err(e)=>{
|
|
|
|
println!("rotten {:?}",e);
|
|
|
|
Err(e)
|
|
|
|
},
|
2023-10-02 15:28:57 -07:00
|
|
|
}
|
|
|
|
}
|