learn-wgpu/code/beginner/tutorial7-instancing/src/challenge.rs

691 lines
24 KiB
Rust
Raw Normal View History

use std::iter;
2020-09-05 22:45:52 +00:00
use cgmath::prelude::*;
2020-09-28 05:24:43 +00:00
use wgpu::util::DeviceExt;
2019-12-31 00:04:38 +00:00
use winit::{
event::*,
2020-09-28 05:24:43 +00:00
event_loop::{ControlFlow, EventLoop},
2019-12-31 00:04:38 +00:00
window::{Window, WindowBuilder},
};
2020-02-24 23:23:23 +00:00
mod texture;
2019-12-31 00:04:38 +00:00
#[repr(C)]
#[derive(Copy, Clone, Debug, bytemuck::Pod, bytemuck::Zeroable)]
2019-12-31 00:04:38 +00:00
struct Vertex {
position: [f32; 3],
tex_coords: [f32; 2],
}
impl Vertex {
2021-02-12 06:29:40 +00:00
fn desc<'a>() -> wgpu::VertexBufferLayout<'a> {
2019-12-31 00:04:38 +00:00
use std::mem;
2021-02-12 06:29:40 +00:00
wgpu::VertexBufferLayout {
array_stride: mem::size_of::<Vertex>() as wgpu::BufferAddress,
2021-09-11 16:19:15 +00:00
step_mode: wgpu::VertexStepMode::Vertex,
2019-12-31 00:04:38 +00:00
attributes: &[
2021-02-12 06:29:40 +00:00
wgpu::VertexAttribute {
2019-12-31 00:04:38 +00:00
offset: 0,
shader_location: 0,
2021-05-01 21:55:26 +00:00
format: wgpu::VertexFormat::Float32x3,
2019-12-31 00:04:38 +00:00
},
2021-02-12 06:29:40 +00:00
wgpu::VertexAttribute {
2019-12-31 00:04:38 +00:00
offset: mem::size_of::<[f32; 3]>() as wgpu::BufferAddress,
shader_location: 1,
2021-05-01 21:55:26 +00:00
format: wgpu::VertexFormat::Float32x2,
2019-12-31 00:04:38 +00:00
},
2020-09-28 05:24:43 +00:00
],
2019-12-31 00:04:38 +00:00
}
}
}
const VERTICES: &[Vertex] = &[
2020-09-28 05:24:43 +00:00
Vertex {
position: [-0.0868241, -0.49240386, 0.0],
tex_coords: [1.0 - 0.4131759, 1.0 - 0.00759614],
}, // A
Vertex {
position: [-0.49513406, -0.06958647, 0.0],
tex_coords: [1.0 - 0.0048659444, 1.0 - 0.43041354],
}, // B
Vertex {
position: [-0.21918549, 0.44939706, 0.0],
2021-08-04 12:32:59 +00:00
tex_coords: [1.0 - 0.28081453, 1.0 - 0.949397],
2020-09-28 05:24:43 +00:00
}, // C
Vertex {
position: [0.35966998, 0.3473291, 0.0],
2021-08-04 12:32:59 +00:00
tex_coords: [1.0 - 0.85967, 1.0 - 0.84732914],
2020-09-28 05:24:43 +00:00
}, // D
Vertex {
position: [0.44147372, -0.2347359, 0.0],
tex_coords: [1.0 - 0.9414737, 1.0 - 0.2652641],
}, // E
2019-12-31 00:04:38 +00:00
];
2022-01-11 13:50:25 +00:00
const INDICES: &[u16] = &[0, 1, 4, 1, 2, 4, 2, 3, 4];
2019-12-31 00:04:38 +00:00
2020-08-03 10:44:46 +00:00
#[rustfmt::skip]
2019-12-31 00:04:38 +00:00
pub const OPENGL_TO_WGPU_MATRIX: cgmath::Matrix4<f32> = cgmath::Matrix4::new(
1.0, 0.0, 0.0, 0.0,
2020-04-24 03:17:41 +00:00
0.0, 1.0, 0.0, 0.0,
2019-12-31 00:04:38 +00:00
0.0, 0.0, 0.5, 0.0,
0.0, 0.0, 0.5, 1.0,
);
2020-01-09 20:08:01 +00:00
const NUM_INSTANCES_PER_ROW: u32 = 10;
2020-09-28 05:24:43 +00:00
const INSTANCE_DISPLACEMENT: cgmath::Vector3<f32> = cgmath::Vector3::new(
NUM_INSTANCES_PER_ROW as f32 * 0.5,
0.0,
NUM_INSTANCES_PER_ROW as f32 * 0.5,
);
2020-01-09 20:08:01 +00:00
2019-12-31 00:04:38 +00:00
struct Camera {
eye: cgmath::Point3<f32>,
target: cgmath::Point3<f32>,
up: cgmath::Vector3<f32>,
aspect: f32,
fovy: f32,
znear: f32,
zfar: f32,
}
impl Camera {
fn build_view_projection_matrix(&self) -> cgmath::Matrix4<f32> {
2021-04-11 07:46:59 +00:00
let view = cgmath::Matrix4::look_at_rh(self.eye, self.target, self.up);
2019-12-31 00:04:38 +00:00
let proj = cgmath::perspective(cgmath::Deg(self.fovy), self.aspect, self.znear, self.zfar);
2020-08-03 10:44:46 +00:00
proj * view
2019-12-31 00:04:38 +00:00
}
}
#[repr(C)]
#[derive(Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
2021-08-26 18:33:10 +00:00
struct CameraUniform {
view_proj: [[f32; 4]; 4],
2019-12-31 00:04:38 +00:00
}
2021-08-26 18:33:10 +00:00
impl CameraUniform {
2019-12-31 00:04:38 +00:00
fn new() -> Self {
Self {
view_proj: cgmath::Matrix4::identity().into(),
2019-12-31 00:04:38 +00:00
}
}
2020-01-09 20:08:01 +00:00
fn update_view_proj(&mut self, camera: &Camera) {
self.view_proj = (OPENGL_TO_WGPU_MATRIX * camera.build_view_projection_matrix()).into();
2020-01-09 20:08:01 +00:00
}
2019-12-31 00:04:38 +00:00
}
struct CameraController {
speed: f32,
is_forward_pressed: bool,
is_backward_pressed: bool,
is_left_pressed: bool,
is_right_pressed: bool,
}
impl CameraController {
fn new(speed: f32) -> Self {
Self {
speed,
is_forward_pressed: false,
is_backward_pressed: false,
is_left_pressed: false,
is_right_pressed: false,
}
}
fn process_events(&mut self, event: &WindowEvent) -> bool {
match event {
WindowEvent::KeyboardInput {
2020-09-28 05:24:43 +00:00
input:
KeyboardInput {
state,
virtual_keycode: Some(keycode),
..
},
2019-12-31 00:04:38 +00:00
..
} => {
let is_pressed = *state == ElementState::Pressed;
match keycode {
VirtualKeyCode::W | VirtualKeyCode::Up => {
self.is_forward_pressed = is_pressed;
true
}
VirtualKeyCode::A | VirtualKeyCode::Left => {
self.is_left_pressed = is_pressed;
true
}
VirtualKeyCode::S | VirtualKeyCode::Down => {
self.is_backward_pressed = is_pressed;
true
}
VirtualKeyCode::D | VirtualKeyCode::Right => {
self.is_right_pressed = is_pressed;
true
}
_ => false,
}
}
_ => false,
}
}
fn update_camera(&self, camera: &mut Camera) {
2020-07-02 00:17:31 +00:00
let forward = camera.target - camera.eye;
let forward_norm = forward.normalize();
let forward_mag = forward.magnitude();
// Prevents glitching when camera gets too close to the
// center of the scene.
if self.is_forward_pressed && forward_mag > self.speed {
camera.eye += forward_norm * self.speed;
2019-12-31 00:04:38 +00:00
}
if self.is_backward_pressed {
2020-07-02 00:17:31 +00:00
camera.eye -= forward_norm * self.speed;
2019-12-31 00:04:38 +00:00
}
2020-07-02 00:17:31 +00:00
let right = forward_norm.cross(camera.up);
// Redo radius calc in case the up/ down is pressed.
let forward = camera.target - camera.eye;
let forward_mag = forward.magnitude();
2019-12-31 00:04:38 +00:00
if self.is_right_pressed {
2020-09-28 05:24:43 +00:00
// Rescale the distance between the target and eye so
// that it doesn't change. The eye therefore still
2020-07-02 00:17:31 +00:00
// lies on the circle made by the target and eye.
camera.eye = camera.target - (forward + right * self.speed).normalize() * forward_mag;
2019-12-31 00:04:38 +00:00
}
if self.is_left_pressed {
2020-07-02 00:17:31 +00:00
camera.eye = camera.target - (forward - right * self.speed).normalize() * forward_mag;
2019-12-31 00:04:38 +00:00
}
}
}
2020-01-09 20:08:01 +00:00
const ROTATION_SPEED: f32 = 2.0 * std::f32::consts::PI / 60.0;
struct Instance {
position: cgmath::Vector3<f32>,
rotation: cgmath::Quaternion<f32>,
}
impl Instance {
2020-09-05 22:45:52 +00:00
fn to_raw(&self) -> InstanceRaw {
2020-09-28 05:24:43 +00:00
let transform =
cgmath::Matrix4::from_translation(self.position) * cgmath::Matrix4::from(self.rotation);
2020-11-18 18:48:37 +00:00
InstanceRaw {
transform: transform.into(),
}
2020-01-09 20:08:01 +00:00
}
}
2020-04-24 03:17:41 +00:00
#[repr(C)]
2020-11-18 17:48:28 +00:00
#[derive(Copy, Clone, Debug, bytemuck::Pod, bytemuck::Zeroable)]
2020-04-24 03:17:41 +00:00
struct InstanceRaw {
2020-11-18 17:48:28 +00:00
transform: [[f32; 4]; 4],
2020-04-24 03:17:41 +00:00
}
2020-11-18 17:48:28 +00:00
impl InstanceRaw {
2021-02-12 06:29:40 +00:00
fn desc<'a>() -> wgpu::VertexBufferLayout<'a> {
2020-11-18 17:48:28 +00:00
use std::mem;
2021-02-12 06:29:40 +00:00
wgpu::VertexBufferLayout {
array_stride: mem::size_of::<InstanceRaw>() as wgpu::BufferAddress,
2020-11-18 17:48:28 +00:00
// We need to switch from using a step mode of Vertex to Instance
// This means that our shaders will only change to use the next
// instance when the shader starts processing a new instance
2021-09-11 16:19:15 +00:00
step_mode: wgpu::VertexStepMode::Instance,
2020-11-18 17:48:28 +00:00
attributes: &[
2021-02-12 06:29:40 +00:00
wgpu::VertexAttribute {
2020-11-18 17:48:28 +00:00
offset: 0,
// While our vertex shader only uses locations 0, and 1 now, in later tutorials we'll
// be using 2, 3, and 4, for Vertex. We'll start at slot 5 not conflict with them later
shader_location: 5,
2021-05-01 21:55:26 +00:00
format: wgpu::VertexFormat::Float32x4,
2020-11-18 17:48:28 +00:00
},
// A mat4 takes up 4 vertex slots as it is technically 4 vec4s. We need to define a slot
// for each vec4. We don't have to do this in code though.
2021-02-12 06:29:40 +00:00
wgpu::VertexAttribute {
2020-11-18 17:48:28 +00:00
offset: mem::size_of::<[f32; 4]>() as wgpu::BufferAddress,
shader_location: 6,
2021-05-01 21:55:26 +00:00
format: wgpu::VertexFormat::Float32x4,
2020-11-18 17:48:28 +00:00
},
2021-02-12 06:29:40 +00:00
wgpu::VertexAttribute {
2020-11-18 17:48:28 +00:00
offset: mem::size_of::<[f32; 8]>() as wgpu::BufferAddress,
shader_location: 7,
2021-05-01 21:55:26 +00:00
format: wgpu::VertexFormat::Float32x4,
2020-11-18 17:48:28 +00:00
},
2021-02-12 06:29:40 +00:00
wgpu::VertexAttribute {
2020-11-18 17:48:28 +00:00
offset: mem::size_of::<[f32; 12]>() as wgpu::BufferAddress,
shader_location: 8,
2021-05-01 21:55:26 +00:00
format: wgpu::VertexFormat::Float32x4,
2020-11-18 17:48:28 +00:00
},
],
}
}
}
2020-04-24 03:17:41 +00:00
2019-12-31 00:04:38 +00:00
struct State {
surface: wgpu::Surface,
device: wgpu::Device,
queue: wgpu::Queue,
2021-08-28 22:11:33 +00:00
config: wgpu::SurfaceConfiguration,
2019-12-31 00:04:38 +00:00
render_pipeline: wgpu::RenderPipeline,
vertex_buffer: wgpu::Buffer,
index_buffer: wgpu::Buffer,
num_indices: u32,
2020-09-05 22:45:52 +00:00
#[allow(dead_code)]
2020-02-24 23:23:23 +00:00
diffuse_texture: texture::Texture,
2019-12-31 00:04:38 +00:00
diffuse_bind_group: wgpu::BindGroup,
2020-01-09 20:08:01 +00:00
camera: Camera,
2019-12-31 00:04:38 +00:00
camera_controller: CameraController,
2021-08-26 18:33:10 +00:00
camera_uniform: CameraUniform,
camera_buffer: wgpu::Buffer,
camera_bind_group: wgpu::BindGroup,
2020-01-11 22:55:08 +00:00
size: winit::dpi::PhysicalSize<u32>,
2020-01-09 20:08:01 +00:00
instances: Vec<Instance>,
instance_buffer: wgpu::Buffer,
}
2019-12-31 00:04:38 +00:00
impl State {
2020-04-24 03:17:41 +00:00
async fn new(window: &Window) -> Self {
2019-12-31 00:04:38 +00:00
let size = window.inner_size();
2020-09-05 22:45:52 +00:00
// The instance is a handle to our GPU
// BackendBit::PRIMARY => Vulkan + Metal + DX12 + Browser WebGPU
2021-08-28 22:11:33 +00:00
let instance = wgpu::Instance::new(wgpu::Backends::all());
2020-09-05 22:45:52 +00:00
let surface = unsafe { instance.create_surface(window) };
2020-09-28 05:24:43 +00:00
let adapter = instance
.request_adapter(&wgpu::RequestAdapterOptions {
2021-02-07 19:17:22 +00:00
power_preference: wgpu::PowerPreference::default(),
2020-04-24 03:17:41 +00:00
compatible_surface: Some(&surface),
2021-10-09 00:40:29 +00:00
force_fallback_adapter: false,
2020-09-28 05:24:43 +00:00
})
.await
.unwrap();
let (device, queue) = adapter
.request_device(
&wgpu::DeviceDescriptor {
2021-02-07 19:17:22 +00:00
label: None,
2020-09-28 05:24:43 +00:00
features: wgpu::Features::empty(),
// WebGL doesn't support all of wgpu's features, so if
// we're building for the web we'll have to disable some.
limits: if cfg!(target_arch = "wasm32") {
wgpu::Limits::downlevel_webgl2_defaults()
} else {
wgpu::Limits::default()
},
2020-09-28 05:24:43 +00:00
},
None, // Trace path
)
.await
.unwrap();
2019-12-31 00:04:38 +00:00
2021-08-28 22:11:33 +00:00
let config = wgpu::SurfaceConfiguration {
usage: wgpu::TextureUsages::RENDER_ATTACHMENT,
2022-07-01 23:00:19 +00:00
format: surface.get_supported_formats(&adapter)[0],
2020-01-11 22:55:08 +00:00
width: size.width,
height: size.height,
2020-04-24 03:17:41 +00:00
present_mode: wgpu::PresentMode::Fifo,
2022-10-20 16:07:03 +00:00
alpha_mode: wgpu::CompositeAlphaMode::Auto,
2019-12-31 00:04:38 +00:00
};
2021-08-28 22:11:33 +00:00
surface.configure(&device, &config);
2019-12-31 00:04:38 +00:00
let diffuse_bytes = include_bytes!("happy-tree.png");
2020-09-28 05:24:43 +00:00
let diffuse_texture =
texture::Texture::from_bytes(&device, &queue, diffuse_bytes, "happy-tree.png").unwrap();
let texture_bind_group_layout =
device.create_bind_group_layout(&wgpu::BindGroupLayoutDescriptor {
2020-09-05 22:45:52 +00:00
entries: &[
wgpu::BindGroupLayoutEntry {
binding: 0,
2021-09-11 16:37:05 +00:00
visibility: wgpu::ShaderStages::FRAGMENT,
2021-02-12 06:29:40 +00:00
ty: wgpu::BindingType::Texture {
2020-09-05 22:45:52 +00:00
multisampled: false,
2021-02-12 06:29:40 +00:00
view_dimension: wgpu::TextureViewDimension::D2,
2021-05-18 03:15:25 +00:00
sample_type: wgpu::TextureSampleType::Float { filterable: true },
2020-09-05 22:45:52 +00:00
},
count: None,
2019-12-31 00:04:38 +00:00
},
2020-09-05 22:45:52 +00:00
wgpu::BindGroupLayoutEntry {
binding: 1,
2021-09-11 16:37:05 +00:00
visibility: wgpu::ShaderStages::FRAGMENT,
2021-12-27 19:09:25 +00:00
ty: wgpu::BindingType::Sampler(wgpu::SamplerBindingType::Filtering),
2020-09-05 22:45:52 +00:00
count: None,
2020-04-24 03:17:41 +00:00
},
2020-09-05 22:45:52 +00:00
],
label: Some("texture_bind_group_layout"),
2020-09-28 05:24:43 +00:00
});
2019-12-31 00:04:38 +00:00
2020-09-28 05:24:43 +00:00
let diffuse_bind_group = device.create_bind_group(&wgpu::BindGroupDescriptor {
layout: &texture_bind_group_layout,
entries: &[
wgpu::BindGroupEntry {
binding: 0,
resource: wgpu::BindingResource::TextureView(&diffuse_texture.view),
},
wgpu::BindGroupEntry {
binding: 1,
resource: wgpu::BindingResource::Sampler(&diffuse_texture.sampler),
},
],
label: Some("diffuse_bind_group"),
});
2019-12-31 00:04:38 +00:00
let camera = Camera {
2020-01-09 20:08:01 +00:00
eye: (0.0, 5.0, -10.0).into(),
2019-12-31 00:04:38 +00:00
target: (0.0, 0.0, 0.0).into(),
up: cgmath::Vector3::unit_y(),
2021-08-28 22:11:33 +00:00
aspect: config.width as f32 / config.height as f32,
2019-12-31 00:04:38 +00:00
fovy: 45.0,
znear: 0.1,
zfar: 100.0,
};
let camera_controller = CameraController::new(0.2);
2021-08-26 18:33:10 +00:00
let mut camera_uniform = CameraUniform::new();
camera_uniform.update_view_proj(&camera);
2019-12-31 00:04:38 +00:00
2021-08-26 18:33:10 +00:00
let camera_buffer = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
label: Some("Camera Buffer"),
2021-08-26 18:33:10 +00:00
contents: bytemuck::cast_slice(&[camera_uniform]),
2021-09-11 16:19:15 +00:00
usage: wgpu::BufferUsages::UNIFORM | wgpu::BufferUsages::COPY_DST,
2020-09-28 05:24:43 +00:00
});
2020-01-16 21:13:50 +00:00
2020-09-28 05:24:43 +00:00
let instances = (0..NUM_INSTANCES_PER_ROW)
.flat_map(|z| {
(0..NUM_INSTANCES_PER_ROW).map(move |x| {
let position = cgmath::Vector3 {
x: x as f32,
y: 0.0,
z: z as f32,
} - INSTANCE_DISPLACEMENT;
let rotation = if position.is_zero() {
// this is needed so an object at (0, 0, 0) won't get scaled to zero
// as Quaternions can effect scale if they're not create correctly
cgmath::Quaternion::from_axis_angle(
cgmath::Vector3::unit_y(),
cgmath::Deg(0.0),
)
} else {
2021-08-04 13:13:08 +00:00
cgmath::Quaternion::from_axis_angle(position.normalize(), cgmath::Deg(45.0))
2020-09-28 05:24:43 +00:00
};
Instance { position, rotation }
})
2020-01-09 20:08:01 +00:00
})
2020-09-28 05:24:43 +00:00
.collect::<Vec<_>>();
2020-01-09 20:08:01 +00:00
2020-09-05 22:45:52 +00:00
let instance_data = instances.iter().map(Instance::to_raw).collect::<Vec<_>>();
2020-09-28 05:24:43 +00:00
let instance_buffer = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
label: Some("Instance Buffer"),
contents: bytemuck::cast_slice(&instance_data),
2021-09-11 16:19:15 +00:00
usage: wgpu::BufferUsages::VERTEX | wgpu::BufferUsages::COPY_DST,
2020-09-28 05:24:43 +00:00
});
2020-01-09 20:08:01 +00:00
2021-08-26 18:33:10 +00:00
let camera_bind_group_layout =
2020-09-28 05:24:43 +00:00
device.create_bind_group_layout(&wgpu::BindGroupLayoutDescriptor {
2020-11-18 18:48:37 +00:00
entries: &[wgpu::BindGroupLayoutEntry {
binding: 0,
2021-09-11 16:37:05 +00:00
visibility: wgpu::ShaderStages::VERTEX,
2021-02-12 06:29:40 +00:00
ty: wgpu::BindingType::Buffer {
ty: wgpu::BufferBindingType::Uniform,
has_dynamic_offset: false,
2020-11-18 18:48:37 +00:00
min_binding_size: None,
2019-12-31 00:04:38 +00:00
},
2020-11-18 18:48:37 +00:00
count: None,
}],
2021-08-26 18:33:10 +00:00
label: Some("camera_bind_group_layout"),
2020-09-28 05:24:43 +00:00
});
2019-12-31 00:04:38 +00:00
2021-08-26 18:33:10 +00:00
let camera_bind_group = device.create_bind_group(&wgpu::BindGroupDescriptor {
layout: &camera_bind_group_layout,
2020-11-18 18:48:37 +00:00
entries: &[wgpu::BindGroupEntry {
binding: 0,
2021-08-26 18:33:10 +00:00
resource: camera_buffer.as_entire_binding(),
2020-11-18 18:48:37 +00:00
}],
2021-08-26 18:33:10 +00:00
label: Some("camera_bind_group"),
2019-12-31 00:04:38 +00:00
});
2022-07-01 23:00:19 +00:00
let shader = device.create_shader_module(wgpu::ShaderModuleDescriptor {
label: Some("Shader"),
source: wgpu::ShaderSource::Wgsl(include_str!("shader.wgsl").into()),
});
2019-12-31 00:04:38 +00:00
2020-09-28 05:24:43 +00:00
let render_pipeline_layout =
device.create_pipeline_layout(&wgpu::PipelineLayoutDescriptor {
2020-09-05 22:45:52 +00:00
label: Some("Render Pipeline Layout"),
2021-08-26 18:33:10 +00:00
bind_group_layouts: &[&texture_bind_group_layout, &camera_bind_group_layout],
2020-09-05 22:45:52 +00:00
push_constant_ranges: &[],
2020-09-28 05:24:43 +00:00
});
2020-09-05 22:45:52 +00:00
2020-09-28 05:24:43 +00:00
let render_pipeline = device.create_render_pipeline(&wgpu::RenderPipelineDescriptor {
label: Some("Render Pipeline"),
layout: Some(&render_pipeline_layout),
2021-02-12 06:29:40 +00:00
vertex: wgpu::VertexState {
module: &shader,
2021-10-27 10:58:05 +00:00
entry_point: "vs_main",
2021-02-12 06:29:40 +00:00
buffers: &[Vertex::desc(), InstanceRaw::desc()],
2020-09-28 05:24:43 +00:00
},
2021-02-12 06:29:40 +00:00
fragment: Some(wgpu::FragmentState {
module: &shader,
2021-10-27 10:58:05 +00:00
entry_point: "fs_main",
2022-07-01 23:00:19 +00:00
targets: &[Some(wgpu::ColorTargetState {
2021-08-28 22:11:33 +00:00
format: config.format,
2021-05-01 21:55:26 +00:00
blend: Some(wgpu::BlendState {
color: wgpu::BlendComponent::REPLACE,
alpha: wgpu::BlendComponent::REPLACE,
}),
2021-09-11 16:10:18 +00:00
write_mask: wgpu::ColorWrites::ALL,
2022-07-01 23:00:19 +00:00
})],
2020-09-28 05:24:43 +00:00
}),
2021-02-12 06:29:40 +00:00
primitive: wgpu::PrimitiveState {
topology: wgpu::PrimitiveTopology::TriangleList,
strip_index_format: None,
2020-09-28 05:24:43 +00:00
front_face: wgpu::FrontFace::Ccw,
2021-05-01 21:55:26 +00:00
cull_mode: Some(wgpu::Face::Back),
2022-04-14 22:08:22 +00:00
// Setting this to anything other than Fill requires Features::POLYGON_MODE_LINE
// or Features::POLYGON_MODE_POINT
2021-02-12 06:29:40 +00:00
polygon_mode: wgpu::PolygonMode::Fill,
2021-12-27 19:09:25 +00:00
// Requires Features::DEPTH_CLIP_CONTROL
unclipped_depth: false,
2021-05-01 21:55:26 +00:00
// Requires Features::CONSERVATIVE_RASTERIZATION
conservative: false,
2021-02-12 06:29:40 +00:00
},
depth_stencil: None,
multisample: wgpu::MultisampleState {
count: 1,
mask: !0,
alpha_to_coverage_enabled: false,
2020-09-28 05:24:43 +00:00
},
2021-12-27 19:09:25 +00:00
// If the pipeline will be used with a multiview render pass, this
// indicates how many array layers the attachments will have.
multiview: None,
2020-09-28 05:24:43 +00:00
});
2019-12-31 00:04:38 +00:00
2020-09-28 05:24:43 +00:00
let vertex_buffer = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
label: Some("Vertex Buffer"),
contents: bytemuck::cast_slice(VERTICES),
2021-09-11 16:19:15 +00:00
usage: wgpu::BufferUsages::VERTEX,
2020-09-28 05:24:43 +00:00
});
let index_buffer = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
label: Some("Index Buffer"),
contents: bytemuck::cast_slice(INDICES),
2021-09-11 16:19:15 +00:00
usage: wgpu::BufferUsages::INDEX,
2020-09-28 05:24:43 +00:00
});
2019-12-31 00:04:38 +00:00
let num_indices = INDICES.len() as u32;
Self {
surface,
device,
queue,
2021-08-28 22:11:33 +00:00
config,
2019-12-31 00:04:38 +00:00
render_pipeline,
vertex_buffer,
index_buffer,
num_indices,
diffuse_texture,
diffuse_bind_group,
2020-01-09 20:08:01 +00:00
camera,
2019-12-31 00:04:38 +00:00
camera_controller,
2021-08-26 18:33:10 +00:00
camera_buffer,
camera_bind_group,
camera_uniform,
2019-12-31 00:04:38 +00:00
size,
2020-01-09 20:08:01 +00:00
instances,
instance_buffer,
2019-12-31 00:04:38 +00:00
}
}
2020-04-26 00:36:50 +00:00
fn resize(&mut self, new_size: winit::dpi::PhysicalSize<u32>) {
2021-08-08 22:46:47 +00:00
if new_size.width > 0 && new_size.height > 0 {
self.size = new_size;
2021-08-28 22:11:33 +00:00
self.config.width = new_size.width;
self.config.height = new_size.height;
self.surface.configure(&self.device, &self.config);
2019-12-31 00:04:38 +00:00
2021-08-28 22:11:33 +00:00
self.camera.aspect = self.config.width as f32 / self.config.height as f32;
2021-08-08 22:46:47 +00:00
}
2019-12-31 00:04:38 +00:00
}
fn input(&mut self, event: &WindowEvent) -> bool {
self.camera_controller.process_events(event)
}
2020-04-26 00:36:50 +00:00
fn update(&mut self) {
2020-01-09 20:08:01 +00:00
self.camera_controller.update_camera(&mut self.camera);
2021-08-26 18:33:10 +00:00
self.camera_uniform.update_view_proj(&self.camera);
2020-09-28 05:24:43 +00:00
self.queue.write_buffer(
2021-08-26 18:33:10 +00:00
&self.camera_buffer,
2020-09-28 05:24:43 +00:00
0,
2021-08-26 18:33:10 +00:00
bytemuck::cast_slice(&[self.camera_uniform]),
2020-09-28 05:24:43 +00:00
);
2019-12-31 00:04:38 +00:00
2020-01-09 20:08:01 +00:00
for instance in &mut self.instances {
let amount = cgmath::Quaternion::from_angle_y(cgmath::Rad(ROTATION_SPEED));
let current = instance.rotation;
instance.rotation = amount * current;
2020-01-09 20:08:01 +00:00
}
2020-09-28 05:24:43 +00:00
let instance_data = self
.instances
.iter()
.map(Instance::to_raw)
.collect::<Vec<_>>();
self.queue.write_buffer(
&self.instance_buffer,
0,
bytemuck::cast_slice(&instance_data),
);
2019-12-31 00:04:38 +00:00
}
2021-08-28 22:11:33 +00:00
fn render(&mut self) -> Result<(), wgpu::SurfaceError> {
2021-10-09 00:40:29 +00:00
let output = self.surface.get_current_texture()?;
2021-09-11 21:14:31 +00:00
let view = output
.texture
.create_view(&wgpu::TextureViewDescriptor::default());
2019-12-31 00:04:38 +00:00
2020-09-28 05:24:43 +00:00
let mut encoder = self
.device
.create_command_encoder(&wgpu::CommandEncoderDescriptor {
label: Some("Render Encoder"),
});
2019-12-31 00:04:38 +00:00
{
let mut render_pass = encoder.begin_render_pass(&wgpu::RenderPassDescriptor {
2021-02-07 19:17:22 +00:00
label: Some("Render Pass"),
2022-07-01 23:00:19 +00:00
color_attachments: &[Some(wgpu::RenderPassColorAttachment {
2021-09-11 16:10:18 +00:00
view: &view,
2020-09-28 05:24:43 +00:00
resolve_target: None,
ops: wgpu::Operations {
load: wgpu::LoadOp::Clear(wgpu::Color {
r: 0.1,
g: 0.2,
b: 0.3,
a: 1.0,
}),
store: true,
},
2022-07-01 23:00:19 +00:00
})],
2019-12-31 00:04:38 +00:00
depth_stencil_attachment: None,
});
2020-11-18 17:48:28 +00:00
render_pass.set_vertex_buffer(1, self.instance_buffer.slice(..));
2019-12-31 00:04:38 +00:00
render_pass.set_pipeline(&self.render_pipeline);
render_pass.set_bind_group(0, &self.diffuse_bind_group, &[]);
2021-08-26 18:33:10 +00:00
render_pass.set_bind_group(1, &self.camera_bind_group, &[]);
2020-09-05 22:45:52 +00:00
render_pass.set_vertex_buffer(0, self.vertex_buffer.slice(..));
2021-02-12 06:29:40 +00:00
render_pass.set_index_buffer(self.index_buffer.slice(..), wgpu::IndexFormat::Uint16);
2020-01-09 20:08:01 +00:00
render_pass.draw_indexed(0..self.num_indices, 0, 0..self.instances.len() as u32);
2019-12-31 00:04:38 +00:00
}
self.queue.submit(iter::once(encoder.finish()));
2021-10-09 00:40:29 +00:00
output.present();
2020-11-10 23:52:55 +00:00
Ok(())
2019-12-31 00:04:38 +00:00
}
}
fn main() {
2022-02-18 20:36:21 +00:00
pollster::block_on(run());
}
async fn run() {
2020-09-10 02:48:08 +00:00
env_logger::init();
2019-12-31 00:04:38 +00:00
let event_loop = EventLoop::new();
2020-09-28 05:24:43 +00:00
let window = WindowBuilder::new().build(&event_loop).unwrap();
2019-12-31 00:04:38 +00:00
// State::new uses async code, so we're going to wait for it to finish
2022-02-18 20:36:21 +00:00
let mut state = State::new(&window).await;
2020-01-16 21:13:50 +00:00
2019-12-31 00:04:38 +00:00
event_loop.run(move |event, _, control_flow| {
match event {
Event::WindowEvent {
ref event,
window_id,
2020-09-28 05:24:43 +00:00
} if window_id == window.id() => {
if !state.input(event) {
match event {
2021-08-04 12:17:21 +00:00
WindowEvent::CloseRequested
| WindowEvent::KeyboardInput {
input:
KeyboardInput {
state: ElementState::Pressed,
virtual_keycode: Some(VirtualKeyCode::Escape),
..
},
..
} => *control_flow = ControlFlow::Exit,
2020-09-28 05:24:43 +00:00
WindowEvent::Resized(physical_size) => {
state.resize(*physical_size);
2019-12-31 00:04:38 +00:00
}
2020-09-28 05:24:43 +00:00
WindowEvent::ScaleFactorChanged { new_inner_size, .. } => {
// new_inner_size is &mut so w have to dereference it twice
state.resize(**new_inner_size);
}
_ => {}
2019-12-31 00:04:38 +00:00
}
}
}
2021-12-29 18:57:29 +00:00
Event::RedrawRequested(window_id) if window_id == window.id() => {
2020-04-26 00:36:50 +00:00
state.update();
2020-11-10 23:52:55 +00:00
match state.render() {
Ok(_) => {}
2022-04-14 21:58:09 +00:00
// Reconfigure the surface if it's lost or outdated
Err(wgpu::SurfaceError::Lost | wgpu::SurfaceError::Outdated) => state.resize(state.size),
2020-11-11 22:41:06 +00:00
// The system is out of memory, we should probably quit
2021-08-28 22:11:33 +00:00
Err(wgpu::SurfaceError::OutOfMemory) => *control_flow = ControlFlow::Exit,
2022-04-14 21:58:09 +00:00
// We're ignoring timeouts
Err(wgpu::SurfaceError::Timeout) => log::warn!("Surface timeout"),
2020-11-10 23:52:55 +00:00
}
2020-04-24 03:17:41 +00:00
}
2020-01-11 22:55:08 +00:00
Event::MainEventsCleared => {
2020-04-24 03:17:41 +00:00
// RedrawRequested will only trigger once, unless we manually
// request it.
window.request_redraw();
2019-12-31 00:04:38 +00:00
}
2020-04-24 03:17:41 +00:00
_ => {}
2019-12-31 00:04:38 +00:00
}
});
2020-01-16 21:13:50 +00:00
}