1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2024-09-28 21:19:24 +00:00
doukutsu-rs/src/input/touch_controls.rs

138 lines
4.5 KiB
Rust
Raw Normal View History

2021-01-27 18:20:47 +00:00
use crate::framework::context::Context;
use crate::framework::error::GameResult;
2020-11-28 19:25:51 +00:00
use crate::common::Rect;
2020-10-20 20:45:56 +00:00
use crate::engine_constants::EngineConstants;
2020-11-28 19:25:51 +00:00
use crate::texture_set::TextureSet;
2020-10-20 20:45:56 +00:00
2020-12-20 20:57:17 +00:00
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum TouchControlType {
None,
Dialog,
Controls,
}
#[derive(Copy, Clone)]
pub struct TouchPoint {
2020-10-20 20:45:56 +00:00
id: u64,
2020-12-20 20:57:17 +00:00
touch_id: u64,
2020-10-20 20:45:56 +00:00
position: (f64, f64),
last_position: (f64, f64),
}
pub struct TouchControls {
2020-12-20 20:57:17 +00:00
pub control_type: TouchControlType,
pub points: Vec<TouchPoint>,
pub interact_icon: bool,
touch_id_counter: u64,
clicks: Vec<TouchPoint>,
2020-10-20 20:45:56 +00:00
}
impl TouchControls {
pub fn new() -> TouchControls {
TouchControls {
2020-12-20 20:57:17 +00:00
control_type: TouchControlType::None,
touch_id_counter: 0,
interact_icon: false,
2020-10-20 20:45:56 +00:00
points: Vec::with_capacity(8),
2020-12-20 20:57:17 +00:00
clicks: Vec::with_capacity(8),
2020-10-20 20:45:56 +00:00
}
}
2020-11-28 19:25:51 +00:00
2021-01-27 18:20:47 +00:00
/*
2020-11-28 19:25:51 +00:00
pub fn process_winit_event(&mut self, scale: f32, touch: winit::event::Touch) {
2020-10-20 20:45:56 +00:00
match touch.phase {
TouchPhase::Started | TouchPhase::Moved => {
if let Some(point) = self.points.iter_mut().find(|p| p.id == touch.id) {
point.last_position = point.position;
2020-12-20 20:57:17 +00:00
point.position = (touch.location.x / scale as f64, touch.location.y / scale as f64);
2020-10-20 20:45:56 +00:00
} else {
2020-12-20 20:57:17 +00:00
self.touch_id_counter = self.touch_id_counter.wrapping_add(1);
let point = TouchPoint {
2020-10-20 20:45:56 +00:00
id: touch.id,
2020-12-20 20:57:17 +00:00
touch_id: self.touch_id_counter,
position: (touch.location.x / scale as f64, touch.location.y / scale as f64),
2020-11-28 19:25:51 +00:00
last_position: (0.0, 0.0),
2020-12-20 20:57:17 +00:00
};
self.points.push(point);
if touch.phase == TouchPhase::Started {
self.clicks.push(point);
}
2020-10-20 20:45:56 +00:00
}
}
TouchPhase::Ended | TouchPhase::Cancelled => {
self.points.retain(|p| p.id != touch.id);
2020-12-20 20:57:17 +00:00
self.clicks.retain(|p| p.id != touch.id);
}
}
2021-01-27 18:20:47 +00:00
}*/
2020-12-20 20:57:17 +00:00
pub fn point_in(&self, bounds: Rect) -> Option<u64> {
for point in self.points.iter() {
if (point.position.0 as isize) > bounds.left
&& (point.position.0 as isize) < bounds.right
&& (point.position.1 as isize) > bounds.top
&& (point.position.1 as isize) < bounds.bottom {
return Some(point.touch_id);
}
}
None
}
pub fn consume_click_in(&mut self, bounds: Rect) -> bool {
self.clicks.retain(|p| p.touch_id != 0);
for point in self.clicks.iter_mut() {
if (point.position.0 as isize) > bounds.left
&& (point.position.0 as isize) < bounds.right
&& (point.position.1 as isize) > bounds.top
&& (point.position.1 as isize) < bounds.bottom {
point.touch_id = 0;
return true;
2020-10-20 20:45:56 +00:00
}
}
2020-12-20 20:57:17 +00:00
false
2020-10-20 20:45:56 +00:00
}
2020-12-20 20:57:17 +00:00
pub fn draw(&self, canvas_size: (f32, f32), constants: &EngineConstants, texture_set: &mut TextureSet, ctx: &mut Context) -> GameResult {
if self.control_type == TouchControlType::Controls {
let batch = texture_set.get_or_load_batch(ctx, constants, "builtin/touch")?;
let color = (255, 255, 255, 160);
for x in 0..3 {
for y in 0..3 {
let mut icon_x = x;
let icon_y = y;
if self.interact_icon && x == 1 && y == 2 {
icon_x = 3;
}
batch.add_rect_tinted(4.0 + 48.0 * x as f32 + 8.0,
(canvas_size.1 - 4.0 - 48.0 * 3.0) + 48.0 * y as f32 + 8.0,
color,
&Rect::new_size(icon_x * 32, icon_y * 32, 32, 32));
}
}
batch.add_rect_tinted(canvas_size.0 - (4.0 + 48.0) + 8.0, canvas_size.1 - (4.0 + 48.0) + 8.0,
color,
&Rect::new_size(3 * 32, 32, 32, 32));
batch.add_rect_tinted(canvas_size.0 - (4.0 + 48.0) + 8.0, canvas_size.1 - (4.0 + 48.0) * 2.0 + 8.0,
color,
&Rect::new_size(3 * 32, 0, 32, 32));
batch.draw(ctx)?;
}
2020-10-20 20:45:56 +00:00
Ok(())
}
}