wip
This commit is contained in:
parent
bd191c65a1
commit
9dd4a48630
115
src/main.rs
115
src/main.rs
@ -1,6 +1,6 @@
|
|||||||
use std::{borrow::Cow, time::Instant};
|
use std::{borrow::Cow, time::Instant};
|
||||||
use wgpu::{util::DeviceExt, AstcBlock, AstcChannel};
|
use wgpu::{util::DeviceExt, AstcBlock, AstcChannel};
|
||||||
use model::{Vertex,ModelData,ModelInstance};
|
use model::{Vertex,ModelInstance};
|
||||||
use body::{InputInstruction, PhysicsInstruction};
|
use body::{InputInstruction, PhysicsInstruction};
|
||||||
use instruction::{TimedInstruction, InstructionConsumer};
|
use instruction::{TimedInstruction, InstructionConsumer};
|
||||||
|
|
||||||
@ -17,12 +17,8 @@ struct Entity {
|
|||||||
index_buf: wgpu::Buffer,
|
index_buf: wgpu::Buffer,
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ModelGraphicsInstance {
|
|
||||||
model_transform: glam::Affine3A,
|
|
||||||
color: glam::Vec4,
|
|
||||||
}
|
|
||||||
struct ModelGraphics {
|
struct ModelGraphics {
|
||||||
instances: Vec<ModelGraphicsInstance>,
|
instances: Vec<ModelInstance>,
|
||||||
vertex_buf: wgpu::Buffer,
|
vertex_buf: wgpu::Buffer,
|
||||||
entities: Vec<Entity>,
|
entities: Vec<Entity>,
|
||||||
bind_group: wgpu::BindGroup,
|
bind_group: wgpu::BindGroup,
|
||||||
@ -88,12 +84,10 @@ impl GraphicsData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn generate_model_physics(&mut self,indexed_models:&model::IndexedModelInstances){
|
fn generate_model_physics(&mut self,indexed_models:&model::IndexedModelInstances){
|
||||||
for instance in indexed_models.instances{
|
for model in indexed_models.models{
|
||||||
//make aabb and run vertices to get realistic bounds
|
//make aabb and run vertices to get realistic bounds
|
||||||
if let Some(model)=indexed_models.models.get(instance.model as usize){
|
for model_instance in model.instances{
|
||||||
self.physics.models.push(body::ModelPhysics::from_model(model,instance.model_transform));
|
self.physics.models.push(body::ModelPhysics::from_model(&model,model_instance.model_transform));
|
||||||
}else{
|
|
||||||
println!("oh no model missing id={}",instance.model);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
println!("Physics Objects: {}",self.physics.models.len());
|
println!("Physics Objects: {}",self.physics.models.len());
|
||||||
@ -143,14 +137,43 @@ impl GraphicsData {
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//de-index models and split groups with different textures into separate models
|
||||||
|
//the models received here are supposed to be tightly packed, i.e. no code needs to check if two models are using the same groups.
|
||||||
|
let mut unique_texture_models=Vec::with_capacity(indexed_models.models.len());
|
||||||
|
for model in indexed_models.models.drain(..){
|
||||||
|
//check each group, if it's using a new texture then make a new clone of the model
|
||||||
|
let id=unique_texture_models.len();
|
||||||
|
let mut unique_textures=Vec::new();
|
||||||
|
for group in model.groups.drain(..){
|
||||||
|
//ignore zero coppy optimization for now
|
||||||
|
let texture_index=if let Some(texture_index)=unique_textures.iter().position(|&texture|texture==group.texture){
|
||||||
|
texture_index
|
||||||
|
}else{
|
||||||
|
//create new texture_index
|
||||||
|
let texture_index=unique_textures.len();
|
||||||
|
unique_textures.push(group.texture);
|
||||||
|
unique_texture_models.push(model::IndexedModel{
|
||||||
|
unique_pos:model.unique_pos.clone(),
|
||||||
|
unique_tex:model.unique_tex.clone(),
|
||||||
|
unique_normal:model.unique_normal.clone(),
|
||||||
|
unique_color:model.unique_color.clone(),
|
||||||
|
unique_vertices:model.unique_vertices.clone(),
|
||||||
|
groups:Vec::new(),
|
||||||
|
instances:model.instances.clone(),
|
||||||
|
});
|
||||||
|
texture_index
|
||||||
|
};
|
||||||
|
unique_texture_models[id+texture_index].groups.push(group);
|
||||||
|
}
|
||||||
|
}
|
||||||
//drain the modeldata vec so entities can be /moved/ to models.entities
|
//drain the modeldata vec so entities can be /moved/ to models.entities
|
||||||
let mut instance_count=0;
|
let mut instance_count=0;
|
||||||
let uniform_buffer_binding_size=<GraphicsData as framework::Example>::required_limits().max_uniform_buffer_binding_size as usize;
|
let uniform_buffer_binding_size=<GraphicsData as framework::Example>::required_limits().max_uniform_buffer_binding_size as usize;
|
||||||
let chunk_size=uniform_buffer_binding_size/MODEL_BUFFER_SIZE_BYTES;
|
let chunk_size=uniform_buffer_binding_size/MODEL_BUFFER_SIZE_BYTES;
|
||||||
self.models.reserve(modeldatas.len());
|
self.models.reserve(unique_texture_models.len());
|
||||||
for modeldata in modeldatas.drain(..) {
|
for model in unique_texture_models.drain(..) {
|
||||||
let n_instances=modeldata.instances.len();
|
let n_instances=model.instances.len();
|
||||||
for instances_chunk in modeldata.instances.rchunks(chunk_size){
|
for instances_chunk in model.instances.rchunks(chunk_size){
|
||||||
instance_count+=1;
|
instance_count+=1;
|
||||||
let model_uniforms = get_instances_buffer_data(instances_chunk);
|
let model_uniforms = get_instances_buffer_data(instances_chunk);
|
||||||
let model_buf = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
|
let model_buf = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
|
||||||
@ -158,7 +181,7 @@ impl GraphicsData {
|
|||||||
contents: bytemuck::cast_slice(&model_uniforms),
|
contents: bytemuck::cast_slice(&model_uniforms),
|
||||||
usage: wgpu::BufferUsages::UNIFORM | wgpu::BufferUsages::COPY_DST,
|
usage: wgpu::BufferUsages::UNIFORM | wgpu::BufferUsages::COPY_DST,
|
||||||
});
|
});
|
||||||
let texture_view=match modeldata.texture{
|
let texture_view=match model.texture{
|
||||||
Some(texture_id)=>{
|
Some(texture_id)=>{
|
||||||
match double_map.get(&texture_id){
|
match double_map.get(&texture_id){
|
||||||
Some(&mapped_texture_id)=>&texture_views[mapped_texture_id as usize],
|
Some(&mapped_texture_id)=>&texture_views[mapped_texture_id as usize],
|
||||||
@ -187,14 +210,14 @@ impl GraphicsData {
|
|||||||
});
|
});
|
||||||
let vertex_buf = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
|
let vertex_buf = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
|
||||||
label: Some("Vertex"),
|
label: Some("Vertex"),
|
||||||
contents: bytemuck::cast_slice(&modeldata.vertices),
|
contents: bytemuck::cast_slice(&model.vertices),
|
||||||
usage: wgpu::BufferUsages::VERTEX,
|
usage: wgpu::BufferUsages::VERTEX,
|
||||||
});
|
});
|
||||||
//all of these are being moved here
|
//all of these are being moved here
|
||||||
self.models.push(ModelGraphics{
|
self.models.push(ModelGraphics{
|
||||||
instances:instances_chunk.to_vec(),
|
instances:instances_chunk.to_vec(),
|
||||||
vertex_buf,
|
vertex_buf,
|
||||||
entities: modeldata.entities.iter().map(|indices|{
|
entities: model.entities.iter().map(|indices|{
|
||||||
let index_buf = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
|
let index_buf = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
|
||||||
label: Some("Index"),
|
label: Some("Index"),
|
||||||
contents: bytemuck::cast_slice(&indices),
|
contents: bytemuck::cast_slice(&indices),
|
||||||
@ -261,42 +284,42 @@ impl framework::Example for GraphicsData {
|
|||||||
device: &wgpu::Device,
|
device: &wgpu::Device,
|
||||||
queue: &wgpu::Queue,
|
queue: &wgpu::Queue,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
let mut modeldatas = Vec::<ModelData>::new();
|
let mut indexed_models = Vec::new();
|
||||||
modeldatas.append(&mut model::generate_modeldatas(obj::ObjData::load_buf(&include_bytes!("../models/teslacyberv3.0.obj")[..]).unwrap(),ModelData::COLOR_FLOATS_WHITE));
|
indexed_models.append(&mut model::generate_indexed_model_list_from_obj(obj::ObjData::load_buf(&include_bytes!("../models/teslacyberv3.0.obj")[..]).unwrap(),*glam::Vec4::ONE.as_ref()));
|
||||||
modeldatas.append(&mut model::generate_modeldatas(obj::ObjData::load_buf(&include_bytes!("../models/suzanne.obj")[..]).unwrap(),ModelData::COLOR_FLOATS_WHITE));
|
indexed_models.append(&mut model::generate_indexed_model_list_from_obj(obj::ObjData::load_buf(&include_bytes!("../models/suzanne.obj")[..]).unwrap(),*glam::Vec4::ONE.as_ref()));
|
||||||
modeldatas.append(&mut model::generate_modeldatas(obj::ObjData::load_buf(&include_bytes!("../models/teapot.obj")[..]).unwrap(),ModelData::COLOR_FLOATS_WHITE));
|
indexed_models.append(&mut model::generate_indexed_model_list_from_obj(obj::ObjData::load_buf(&include_bytes!("../models/teapot.obj")[..]).unwrap(),*glam::Vec4::ONE.as_ref()));
|
||||||
modeldatas.push(primitives::the_unit_cube_lol());
|
indexed_models.push(primitives::the_unit_cube_lol());
|
||||||
println!("models.len = {:?}", modeldatas.len());
|
println!("models.len = {:?}", indexed_models.len());
|
||||||
modeldatas[0].instances.push(ModelInstance{
|
indexed_models[0].instances.push(ModelInstance{
|
||||||
model_transform:glam::Affine3A::from_translation(glam::vec3(10.,0.,-10.)),
|
model_transform:glam::Affine3A::from_translation(glam::vec3(10.,0.,-10.)),
|
||||||
color:ModelData::COLOR_VEC4_WHITE,
|
color:glam::Vec4::ONE,
|
||||||
});
|
});
|
||||||
//quad monkeys
|
//quad monkeys
|
||||||
modeldatas[1].instances.push(ModelInstance{
|
indexed_models[1].instances.push(ModelInstance{
|
||||||
model_transform:glam::Affine3A::from_translation(glam::vec3(10.,5.,10.)),
|
model_transform:glam::Affine3A::from_translation(glam::vec3(10.,5.,10.)),
|
||||||
color:ModelData::COLOR_VEC4_WHITE,
|
color:glam::Vec4::ONE,
|
||||||
});
|
});
|
||||||
modeldatas[1].instances.push(ModelInstance{
|
indexed_models[1].instances.push(ModelInstance{
|
||||||
model_transform:glam::Affine3A::from_translation(glam::vec3(20.,5.,10.)),
|
model_transform:glam::Affine3A::from_translation(glam::vec3(20.,5.,10.)),
|
||||||
color:glam::vec4(1.0,0.0,0.0,1.0),
|
color:glam::vec4(1.0,0.0,0.0,1.0),
|
||||||
});
|
});
|
||||||
modeldatas[1].instances.push(ModelInstance{
|
indexed_models[1].instances.push(ModelInstance{
|
||||||
model_transform:glam::Affine3A::from_translation(glam::vec3(10.,5.,20.)),
|
model_transform:glam::Affine3A::from_translation(glam::vec3(10.,5.,20.)),
|
||||||
color:glam::vec4(0.0,1.0,0.0,1.0),
|
color:glam::vec4(0.0,1.0,0.0,1.0),
|
||||||
});
|
});
|
||||||
modeldatas[1].instances.push(ModelInstance{
|
indexed_models[1].instances.push(ModelInstance{
|
||||||
model_transform:glam::Affine3A::from_translation(glam::vec3(20.,5.,20.)),
|
model_transform:glam::Affine3A::from_translation(glam::vec3(20.,5.,20.)),
|
||||||
color:glam::vec4(0.0,0.0,1.0,1.0),
|
color:glam::vec4(0.0,0.0,1.0,1.0),
|
||||||
});
|
});
|
||||||
//teapot
|
//teapot
|
||||||
modeldatas[2].instances.push(ModelInstance{
|
indexed_models[2].instances.push(ModelInstance{
|
||||||
model_transform:glam::Affine3A::from_translation(glam::vec3(-10.,5.,10.)),
|
model_transform:glam::Affine3A::from_translation(glam::vec3(-10.,5.,10.)),
|
||||||
color:ModelData::COLOR_VEC4_WHITE,
|
color:glam::Vec4::ONE,
|
||||||
});
|
});
|
||||||
//ground
|
//ground
|
||||||
modeldatas[3].instances.push(ModelInstance{
|
indexed_models[3].instances.push(ModelInstance{
|
||||||
model_transform:glam::Affine3A::from_translation(glam::vec3(0.,0.,0.))*glam::Affine3A::from_scale(glam::vec3(160.0, 1.0, 160.0)),
|
model_transform:glam::Affine3A::from_translation(glam::vec3(0.,0.,0.))*glam::Affine3A::from_scale(glam::vec3(160.0, 1.0, 160.0)),
|
||||||
color:ModelData::COLOR_VEC4_WHITE,
|
color:glam::Vec4::ONE,
|
||||||
});
|
});
|
||||||
|
|
||||||
let camera_bind_group_layout = device.create_bind_group_layout(&wgpu::BindGroupLayoutDescriptor {
|
let camera_bind_group_layout = device.create_bind_group_layout(&wgpu::BindGroupLayoutDescriptor {
|
||||||
@ -656,8 +679,12 @@ impl framework::Example for GraphicsData {
|
|||||||
temp_squid_texture_view: squid_texture_view,
|
temp_squid_texture_view: squid_texture_view,
|
||||||
};
|
};
|
||||||
|
|
||||||
graphics.generate_model_physics(&modeldatas);
|
let indexed_model_instances=model::IndexedModelInstances{
|
||||||
graphics.generate_model_graphics(&device,&queue,modeldatas,Vec::new());
|
textures:Vec::new(),
|
||||||
|
models:indexed_models,
|
||||||
|
};
|
||||||
|
graphics.generate_model_physics(&indexed_model_instances);
|
||||||
|
graphics.generate_model_graphics(&device,&queue,indexed_model_instances);
|
||||||
|
|
||||||
return graphics;
|
return graphics;
|
||||||
}
|
}
|
||||||
@ -680,30 +707,30 @@ impl framework::Example for GraphicsData {
|
|||||||
//.snf = "SNBF"
|
//.snf = "SNBF"
|
||||||
if let (Ok(()),Ok(()))=(std::io::Read::read_exact(&mut input, &mut first_8),std::io::Seek::rewind(&mut input)){
|
if let (Ok(()),Ok(()))=(std::io::Read::read_exact(&mut input, &mut first_8),std::io::Seek::rewind(&mut input)){
|
||||||
//
|
//
|
||||||
if let Some(Ok((modeldatas,textures,spawn_point)))={
|
if let Some(Ok((indexed_model_instances,spawn_point)))={
|
||||||
if &first_8==b"<roblox!"{
|
if &first_8==b"<roblox!"{
|
||||||
if let Ok(dom) = rbx_binary::from_reader(input){
|
if let Ok(dom) = rbx_binary::from_reader(input){
|
||||||
Some(load_roblox::generate_modeldatas_roblox(dom))
|
Some(load_roblox::generate_indexed_models_roblox(dom))
|
||||||
}else{
|
}else{
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
}else if &first_8==b"<roblox "{
|
}else if &first_8==b"<roblox "{
|
||||||
if let Ok(dom) = rbx_xml::from_reader(input,rbx_xml::DecodeOptions::default()){
|
if let Ok(dom) = rbx_xml::from_reader(input,rbx_xml::DecodeOptions::default()){
|
||||||
Some(load_roblox::generate_modeldatas_roblox(dom))
|
Some(load_roblox::generate_indexed_models_roblox(dom))
|
||||||
}else{
|
}else{
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
//}else if &first_8[0..4]==b"VBSP"{
|
//}else if &first_8[0..4]==b"VBSP"{
|
||||||
// self.generate_modeldatas_valve(input)
|
// self.generate_indexed_models_valve(input)
|
||||||
}else{
|
}else{
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
}{
|
}{
|
||||||
//if generate_modeldatas succeeds, clear the previous ones
|
//if generate_indexed_models succeeds, clear the previous ones
|
||||||
self.models.clear();
|
self.models.clear();
|
||||||
self.physics.models.clear();
|
self.physics.models.clear();
|
||||||
self.generate_model_physics(&modeldatas);
|
self.generate_model_physics(&indexed_model_instances);
|
||||||
self.generate_model_graphics(device,queue,modeldatas,textures);
|
self.generate_model_graphics(device,queue,indexed_model_instances);
|
||||||
//manual reset
|
//manual reset
|
||||||
let time=self.physics.time;
|
let time=self.physics.time;
|
||||||
instruction::InstructionConsumer::process_instruction(&mut self.physics, instruction::TimedInstruction{
|
instruction::InstructionConsumer::process_instruction(&mut self.physics, instruction::TimedInstruction{
|
||||||
|
@ -7,7 +7,7 @@ pub struct Vertex {
|
|||||||
pub normal: [f32; 3],
|
pub normal: [f32; 3],
|
||||||
pub color: [f32; 4],
|
pub color: [f32; 4],
|
||||||
}
|
}
|
||||||
#[derive(Hash,PartialEq,Eq)]
|
#[derive(Clone,Hash,PartialEq,Eq)]
|
||||||
pub struct IndexedVertex{
|
pub struct IndexedVertex{
|
||||||
pub pos:u32,
|
pub pos:u32,
|
||||||
pub tex:u32,
|
pub tex:u32,
|
||||||
@ -28,21 +28,20 @@ pub struct IndexedModel{
|
|||||||
pub unique_color:Vec<[f32; 4]>,
|
pub unique_color:Vec<[f32; 4]>,
|
||||||
pub unique_vertices:Vec<IndexedVertex>,
|
pub unique_vertices:Vec<IndexedVertex>,
|
||||||
pub groups: Vec<IndexedGroup>,
|
pub groups: Vec<IndexedGroup>,
|
||||||
|
pub instances:Vec<ModelInstance>,
|
||||||
}
|
}
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct ModelInstance{
|
pub struct ModelInstance{
|
||||||
pub model:u32,
|
|
||||||
pub model_transform:glam::Affine3A,
|
pub model_transform:glam::Affine3A,
|
||||||
pub color:glam::Vec4,
|
pub color:glam::Vec4,
|
||||||
}
|
}
|
||||||
pub struct IndexedModelInstances{
|
pub struct IndexedModelInstances{
|
||||||
pub textures:Vec<String>,//RenderPattern
|
pub textures:Vec<String>,//RenderPattern
|
||||||
pub models:Vec<IndexedModel>,
|
pub models:Vec<IndexedModel>,
|
||||||
pub instances:Vec<ModelInstance>,
|
|
||||||
//object_index for spawns, triggers etc?
|
//object_index for spawns, triggers etc?
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn generate_indexed_model_from_obj(data:obj::ObjData,color:[f32;4]) -> Vec<IndexedModel>{
|
pub fn generate_indexed_model_list_from_obj(data:obj::ObjData,color:[f32;4]) -> Vec<IndexedModel>{
|
||||||
let mut unique_vertex_index = std::collections::HashMap::<obj::IndexTuple,u32>::new();
|
let mut unique_vertex_index = std::collections::HashMap::<obj::IndexTuple,u32>::new();
|
||||||
return data.objects.iter().map(|&object|{
|
return data.objects.iter().map(|&object|{
|
||||||
unique_vertex_index.clear();
|
unique_vertex_index.clear();
|
||||||
@ -78,6 +77,7 @@ pub fn generate_indexed_model_from_obj(data:obj::ObjData,color:[f32;4]) -> Vec<I
|
|||||||
unique_color: vec![color],
|
unique_color: vec![color],
|
||||||
unique_vertices,
|
unique_vertices,
|
||||||
groups,
|
groups,
|
||||||
|
instances:Vec::new(),
|
||||||
}
|
}
|
||||||
}).collect()
|
}).collect()
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user