forked from StrafesNET/map-tool
rewrite duplicated code as closure
This commit is contained in:
parent
eeac376500
commit
91f452a94b
51
src/main.rs
51
src/main.rs
@ -1106,9 +1106,9 @@ fn extract_textures(paths:Vec<std::path::PathBuf>,vpk_path:std::path::PathBuf)->
|
||||
texture_file_name2.set_extension("vmt");
|
||||
println!("texture_name={:?}",texture_file_name);
|
||||
let mut found_texture=false;
|
||||
//why can't I write a function for this without importing the ZipArchive lib
|
||||
{
|
||||
if let Some(mut stuff)=match (zippyt.by_name(texture_file_name.to_str().unwrap()),tree.get(texture_file_name.to_str().unwrap())){
|
||||
//LMAO imagine having to write type names
|
||||
let mut f=|search_file_name,write_file_name|{
|
||||
if let Some(mut stuff)=match (zippyt.by_name(search_file_name),tree.get(search_file_name)){
|
||||
(Ok(mut zip_file),None)=>{
|
||||
let mut buf=Vec::new();
|
||||
zip_file.read_to_end(&mut buf)?;
|
||||
@ -1118,7 +1118,6 @@ fn extract_textures(paths:Vec<std::path::PathBuf>,vpk_path:std::path::PathBuf)->
|
||||
_=>None,
|
||||
}{
|
||||
found_texture=true;
|
||||
let texture_name=texture_name.clone();
|
||||
thread_handles.push(s.spawn(move||{
|
||||
let image=vtf::from_bytes(&mut stuff)?.highres_image.decode(0)?.to_rgba8();
|
||||
|
||||
@ -1137,7 +1136,7 @@ fn extract_textures(paths:Vec<std::path::PathBuf>,vpk_path:std::path::PathBuf)->
|
||||
|
||||
//write dds
|
||||
let mut dest=std::path::PathBuf::from("textures/dds");
|
||||
dest.push(texture_name);
|
||||
dest.push(write_file_name);
|
||||
dest.set_extension("dds");
|
||||
std::fs::create_dir_all(dest.parent().unwrap())?;
|
||||
let mut writer = std::io::BufWriter::new(std::fs::File::create(dest)?);
|
||||
@ -1145,46 +1144,10 @@ fn extract_textures(paths:Vec<std::path::PathBuf>,vpk_path:std::path::PathBuf)->
|
||||
Ok::<(),anyhow::Error>(())
|
||||
}));
|
||||
}
|
||||
}
|
||||
{
|
||||
if let Some(mut stuff)=match (zippyt.by_name(texture_file_name2.to_str().unwrap()),tree.get(texture_file_name2.to_str().unwrap())){
|
||||
(Ok(mut zip_file),None)=>{
|
||||
let mut buf=Vec::new();
|
||||
zip_file.read_to_end(&mut buf)?;
|
||||
Some(buf)
|
||||
},
|
||||
(_,Some(vpk_entry))=>Some(vpk_entry.get()?.to_vec()),
|
||||
_=>None,
|
||||
}{
|
||||
found_texture=true;
|
||||
let texture_name=texture_name.clone();
|
||||
thread_handles.push(s.spawn(move||{
|
||||
let image=vtf::from_bytes(&mut stuff)?.highres_image.decode(0)?.to_rgba8();
|
||||
|
||||
let format=if image.width()%4!=0||image.height()%4!=0{
|
||||
image_dds::ImageFormat::R8G8B8A8Srgb
|
||||
}else{
|
||||
image_dds::ImageFormat::BC7Srgb
|
||||
Ok::<(),anyhow::Error>(())
|
||||
};
|
||||
//this fails if the image dimensions are not a multiple of 4
|
||||
let dds = image_dds::dds_from_image(
|
||||
&image,
|
||||
format,
|
||||
image_dds::Quality::Slow,
|
||||
image_dds::Mipmaps::GeneratedAutomatic,
|
||||
)?;
|
||||
|
||||
//write dds
|
||||
let mut dest=std::path::PathBuf::from("textures/dds");
|
||||
dest.push(texture_name);
|
||||
dest.set_extension("dds");
|
||||
std::fs::create_dir_all(dest.parent().unwrap())?;
|
||||
let mut writer = std::io::BufWriter::new(std::fs::File::create(dest)?);
|
||||
dds.write(&mut writer)?;
|
||||
Ok::<(),anyhow::Error>(())
|
||||
}));
|
||||
}
|
||||
}
|
||||
f(texture_file_name.as_os_str().to_str().unwrap(),texture_name.clone())?;
|
||||
f(texture_file_name2.as_os_str().to_str().unwrap(),texture_name.clone())?;
|
||||
if !found_texture{
|
||||
println!("no data");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user