-
Notifications
You must be signed in to change notification settings - Fork 397
/
Copy pathcursor.rs
477 lines (423 loc) · 15.8 KB
/
cursor.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
use std::collections::HashMap;
use bytemuck::{Pod, Zeroable};
use cap_project::*;
use wgpu::{include_wgsl, util::DeviceExt, FilterMode};
use crate::{
frame_pipeline::{FramePipeline, FramePipelineState},
spring_mass_damper::SpringMassDamperSimulation,
zoom::InterpolatedZoom,
Coord, DecodedSegmentFrames, ProjectUniforms, RawDisplayUVSpace, STANDARD_CURSOR_HEIGHT,
};
pub struct CursorLayer {
uniform_buffer: wgpu::Buffer,
texture_sampler: wgpu::Sampler,
bind_group_layout: wgpu::BindGroupLayout,
render_pipeline: wgpu::RenderPipeline,
}
impl CursorLayer {
pub fn new(device: &wgpu::Device) -> Self {
let bind_group_layout = device.create_bind_group_layout(&wgpu::BindGroupLayoutDescriptor {
label: Some("Cursor Pipeline Layout"),
entries: &[
wgpu::BindGroupLayoutEntry {
binding: 0,
visibility: wgpu::ShaderStages::VERTEX_FRAGMENT,
ty: wgpu::BindingType::Buffer {
ty: wgpu::BufferBindingType::Uniform,
has_dynamic_offset: false,
min_binding_size: Some(std::num::NonZeroU64::new(112).unwrap()),
},
count: None,
},
wgpu::BindGroupLayoutEntry {
binding: 1,
visibility: wgpu::ShaderStages::FRAGMENT,
ty: wgpu::BindingType::Texture {
sample_type: wgpu::TextureSampleType::Float { filterable: true },
view_dimension: wgpu::TextureViewDimension::D2,
multisampled: false,
},
count: None,
},
wgpu::BindGroupLayoutEntry {
binding: 2,
visibility: wgpu::ShaderStages::FRAGMENT,
ty: wgpu::BindingType::Sampler(wgpu::SamplerBindingType::Filtering),
count: None,
},
],
});
let shader = device.create_shader_module(include_wgsl!("../shaders/cursor.wgsl"));
let empty_constants: HashMap<String, f64> = HashMap::new();
let render_pipeline = device.create_render_pipeline(&wgpu::RenderPipelineDescriptor {
label: Some("Cursor Pipeline"),
layout: Some(
&device.create_pipeline_layout(&wgpu::PipelineLayoutDescriptor {
label: Some("Cursor Pipeline Layout"),
bind_group_layouts: &[&bind_group_layout],
push_constant_ranges: &[],
}),
),
vertex: wgpu::VertexState {
module: &shader,
entry_point: "vs_main",
buffers: &[],
compilation_options: wgpu::PipelineCompilationOptions {
constants: &empty_constants,
zero_initialize_workgroup_memory: false,
vertex_pulling_transform: false,
},
},
fragment: Some(wgpu::FragmentState {
module: &shader,
entry_point: "fs_main",
targets: &[Some(wgpu::ColorTargetState {
format: wgpu::TextureFormat::Rgba8UnormSrgb,
blend: Some(wgpu::BlendState {
color: wgpu::BlendComponent {
src_factor: wgpu::BlendFactor::One,
dst_factor: wgpu::BlendFactor::OneMinusSrcAlpha,
operation: wgpu::BlendOperation::Add,
},
alpha: wgpu::BlendComponent {
src_factor: wgpu::BlendFactor::One,
dst_factor: wgpu::BlendFactor::OneMinusSrcAlpha,
operation: wgpu::BlendOperation::Add,
},
}),
write_mask: wgpu::ColorWrites::ALL,
})],
compilation_options: wgpu::PipelineCompilationOptions {
constants: &empty_constants,
zero_initialize_workgroup_memory: false,
vertex_pulling_transform: false,
},
}),
primitive: wgpu::PrimitiveState {
topology: wgpu::PrimitiveTopology::TriangleStrip,
strip_index_format: None,
front_face: wgpu::FrontFace::Ccw,
cull_mode: None,
unclipped_depth: false,
polygon_mode: wgpu::PolygonMode::Fill,
conservative: false,
},
depth_stencil: None,
multisample: wgpu::MultisampleState::default(),
multiview: None,
cache: None,
});
Self {
bind_group_layout,
render_pipeline,
uniform_buffer: device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
label: Some("Cursor Uniform Buffer"),
contents: bytemuck::cast_slice(&[CursorUniforms::default()]),
usage: wgpu::BufferUsages::UNIFORM | wgpu::BufferUsages::COPY_DST,
}),
texture_sampler: device.create_sampler(&wgpu::SamplerDescriptor {
mag_filter: FilterMode::Linear,
min_filter: FilterMode::Linear,
mipmap_filter: FilterMode::Linear,
anisotropy_clamp: 4,
..Default::default()
}),
}
}
pub fn render(
&self,
pipeline: &mut FramePipeline,
segment_frames: &DecodedSegmentFrames,
resolution_base: XY<u32>,
cursor: &CursorEvents,
zoom: &InterpolatedZoom,
) {
let FramePipelineState {
uniforms,
constants,
..
} = &pipeline.state;
let segment_time = segment_frames.segment_time;
let Some(interpolated_cursor) = interpolate_cursor(
cursor,
segment_time,
uniforms.project.cursor.tension,
uniforms.project.cursor.mass,
uniforms.project.cursor.friction,
uniforms.project.cursor.raw,
) else {
return;
};
let velocity: [f32; 2] = [0.0, 0.0];
// let velocity: [f32; 2] = [
// interpolated_cursor.velocity.x * 75.0,
// interpolated_cursor.velocity.y * 75.0,
// ];
let speed = (velocity[0] * velocity[0] + velocity[1] * velocity[1]).sqrt();
let motion_blur_amount = (speed * 0.3).min(1.0) * 0.0; // uniforms.project.cursor.motion_blur;
let cursor_event = find_cursor_event(&cursor, segment_time);
let last_click_time = cursor
.clicks
.iter()
.filter(|click| click.down && click.process_time_ms <= (segment_time as f64) * 1000.0)
.max_by_key(|click| click.process_time_ms as i64)
.map(|click| ((segment_time as f64) * 1000.0 - click.process_time_ms) as f32 / 1000.0)
.unwrap_or(1.0);
let Some(cursor_texture) = constants.cursor_textures.get(&cursor_event.cursor_id) else {
return;
};
let cursor_size = cursor_texture.inner.size();
let aspect_ratio = cursor_size.width as f32 / cursor_size.height as f32;
let cursor_size_percentage = if uniforms.cursor_size <= 0.0 {
100.0
} else {
uniforms.cursor_size / 100.0
};
let normalized_size = [
STANDARD_CURSOR_HEIGHT * aspect_ratio * cursor_size_percentage,
STANDARD_CURSOR_HEIGHT * cursor_size_percentage,
];
let position = interpolated_cursor
.position
.to_frame_space(&constants.options, &uniforms.project, resolution_base)
.to_zoomed_frame_space(&constants.options, &uniforms.project, resolution_base, zoom);
let relative_position = [position.x as f32, position.y as f32];
fn smoothstep(low: f32, high: f32, v: f32) -> f32 {
let t = f32::clamp((v - low) / (high - low), 0.0, 1.0);
t * t * (3.0 - 2.0 * t)
}
let click_scale = 1.0
- (0.2
* smoothstep(0.0, 0.25, last_click_time)
* (1.0 - smoothstep(0.25, 0.5, last_click_time)));
let output_size = ProjectUniforms::get_output_size(
&constants.options,
&uniforms.project,
resolution_base,
);
let display_size =
ProjectUniforms::display_size(&constants.options, &uniforms.project, resolution_base);
let uniforms = CursorUniforms {
position: [relative_position[0], relative_position[1], 0.0, 0.0],
size: [normalized_size[0], normalized_size[1], 0.0, 0.0],
output_size: [
uniforms.output_size.0 as f32,
uniforms.output_size.1 as f32,
0.0,
0.0,
],
screen_bounds: uniforms.display.target_bounds,
cursor_size: cursor_size_percentage
* click_scale
* zoom.display_amount() as f32
* (display_size.coord.x as f32 / output_size.0 as f32),
last_click_time,
velocity,
motion_blur_amount,
hotspot: [
cursor_texture.hotspot.x as f32,
cursor_texture.hotspot.y as f32,
],
_alignment: [0.0; 5],
};
constants
.queue
.write_buffer(&self.uniform_buffer, 0, bytemuck::cast_slice(&[uniforms]));
let cursor_bind_group = constants
.device
.create_bind_group(&wgpu::BindGroupDescriptor {
layout: &self.bind_group_layout,
entries: &[
wgpu::BindGroupEntry {
binding: 0,
resource: self.uniform_buffer.as_entire_binding(),
},
wgpu::BindGroupEntry {
binding: 1,
resource: wgpu::BindingResource::TextureView(
&cursor_texture
.inner
.create_view(&wgpu::TextureViewDescriptor::default()),
),
},
wgpu::BindGroupEntry {
binding: 2,
resource: wgpu::BindingResource::Sampler(&self.texture_sampler),
},
],
label: Some("Cursor Bind Group"),
});
pipeline.encoder.do_render_pass(
pipeline.state.get_current_texture_view(),
&self.render_pipeline,
cursor_bind_group,
wgpu::LoadOp::Load,
);
}
}
#[repr(C, align(16))]
#[derive(Debug, Clone, Copy, Pod, Zeroable, Default)]
pub struct CursorUniforms {
position: [f32; 4],
size: [f32; 4],
output_size: [f32; 4],
screen_bounds: [f32; 4],
cursor_size: f32,
last_click_time: f32,
velocity: [f32; 2],
motion_blur_amount: f32,
hotspot: [f32; 2],
_alignment: [f32; 5],
}
pub fn find_cursor_event(cursor: &CursorEvents, time: f32) -> &CursorMoveEvent {
let time_ms = time * 1000.0;
if cursor.moves[0].process_time_ms > time_ms.into() {
return &cursor.moves[0];
}
let event = cursor
.moves
.iter()
.rev()
.find(|event| {
// println!("Checking event at time: {}ms", event.process_time_ms);
event.process_time_ms <= time_ms.into()
})
.unwrap_or(&cursor.moves[0]);
event
}
struct InterpolatedCursorPosition {
position: Coord<RawDisplayUVSpace>,
velocity: XY<f32>,
}
fn interpolate_cursor(
cursor: &CursorEvents,
time_secs: f32,
tension: f32,
mass: f32,
friction: f32,
raw: bool,
) -> Option<InterpolatedCursorPosition> {
let time_ms = (time_secs * 1000.0) as f64;
if cursor.moves.is_empty() {
return None;
}
if cursor.moves[0].process_time_ms > time_ms.into() {
let event = &cursor.moves[0];
return Some(InterpolatedCursorPosition {
position: Coord::new(XY {
x: event.x,
y: event.y,
}),
velocity: XY::new(0.0, 0.0),
});
}
if let Some(event) = cursor.moves.last() {
if event.process_time_ms < time_ms.into() {
return Some(InterpolatedCursorPosition {
position: Coord::new(XY {
x: event.x,
y: event.y,
}),
velocity: XY::new(0.0, 0.0),
});
}
}
if raw {
let pos = cursor.moves.windows(2).enumerate().find_map(|(i, chunk)| {
if time_ms >= chunk[0].process_time_ms && time_ms < chunk[1].process_time_ms {
let c = &chunk[0];
Some(XY::new(c.x as f32, c.y as f32))
} else {
None
}
})?;
Some(InterpolatedCursorPosition {
position: Coord::new(XY {
x: pos.x as f64,
y: pos.y as f64,
}),
velocity: XY::new(0.0, 0.0),
})
} else {
let events = get_smoothed_cursor_events(&cursor.moves, tension, mass, friction);
interpolate_smoothed_position(&events, time_secs as f64, tension, mass, friction)
}
}
fn interpolate_smoothed_position(
smoothed_events: &[SmoothedCursorEvent],
query_time: f64,
tension: f32,
mass: f32,
friction: f32,
) -> Option<InterpolatedCursorPosition> {
if smoothed_events.is_empty() {
return None;
}
let mut sim = SpringMassDamperSimulation::new(tension, mass, friction);
let query_time_ms = (query_time * 1000.0) as f32;
match smoothed_events
.windows(2)
.find(|chunk| chunk[0].time <= query_time_ms && query_time_ms < chunk[1].time)
{
Some(c) => {
sim.set_position(c[0].position);
sim.set_velocity(c[0].velocity);
sim.set_target_position(c[0].target_position);
sim.run(query_time_ms - c[0].time);
}
None => {
let e = smoothed_events.last().unwrap();
sim.set_position(e.position);
sim.set_velocity(e.velocity);
sim.set_target_position(e.target_position);
sim.run(query_time_ms - e.time);
}
};
Some(InterpolatedCursorPosition {
position: Coord::new(sim.position.map(|v| v as f64)),
velocity: sim.velocity,
})
}
#[derive(Debug)]
struct SmoothedCursorEvent {
time: f32,
target_position: XY<f32>,
position: XY<f32>,
velocity: XY<f32>,
}
fn get_smoothed_cursor_events(
moves: &[CursorMoveEvent],
tension: f32,
mass: f32,
friction: f32,
) -> Vec<SmoothedCursorEvent> {
let mut last_time = 0.0;
let mut events = vec![];
let mut sim = SpringMassDamperSimulation::new(tension, mass, friction);
sim.set_position(XY::new(moves[0].x, moves[0].y).map(|v| v as f32));
sim.set_velocity(XY::new(0.0, 0.0));
if moves[0].process_time_ms > 0.0 {
events.push(SmoothedCursorEvent {
time: 0.0,
target_position: sim.position,
position: sim.position,
velocity: sim.velocity,
})
}
for (i, m) in moves.iter().enumerate() {
let target_position = moves
.get(i + 1)
.map(|e| XY::new(e.x, e.y).map(|v| v as f32))
.unwrap_or(sim.target_position);
sim.set_target_position(target_position);
sim.run(m.process_time_ms as f32 - last_time);
last_time = m.process_time_ms as f32;
events.push(SmoothedCursorEvent {
time: m.process_time_ms as f32,
target_position,
position: sim.position,
velocity: sim.velocity,
});
}
events
}