2022-03-02 05:42:16 +00:00
|
|
|
use bevy::{
|
2022-05-08 17:58:48 +00:00
|
|
|
prelude::{
|
|
|
|
info, Commands, Component, Entity, Input, KeyCode, ParamSet, PerspectiveCameraBundle,
|
|
|
|
PerspectiveProjection, Plugin, Quat, Query, Res, ResMut, State, Transform, With,
|
|
|
|
},
|
|
|
|
render::camera::{ActiveCamera, Camera3d},
|
2022-01-27 00:53:37 +00:00
|
|
|
};
|
2022-01-12 08:18:13 +00:00
|
|
|
|
2022-03-13 00:06:36 +00:00
|
|
|
use crate::{bike::CyberBikeModel, input::InputState};
|
2022-01-12 08:18:13 +00:00
|
|
|
|
2022-01-27 00:53:37 +00:00
|
|
|
// 85 degrees in radians
|
|
|
|
const MAX_PITCH: f32 = 1.48353;
|
|
|
|
|
2022-03-02 05:42:16 +00:00
|
|
|
#[derive(Clone, Copy, Eq, PartialEq, Debug, Hash, Component)]
|
|
|
|
enum CyberCameras {
|
|
|
|
Hero,
|
|
|
|
Debug,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CyberCameras {
|
|
|
|
fn next(self) -> Self {
|
|
|
|
match self {
|
|
|
|
CyberCameras::Debug => CyberCameras::Hero,
|
|
|
|
CyberCameras::Hero => CyberCameras::Debug,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-12 08:18:13 +00:00
|
|
|
|
2022-03-02 05:42:16 +00:00
|
|
|
fn setup_cybercams(mut commands: Commands) {
|
|
|
|
let hero_projection = PerspectiveProjection {
|
2022-02-24 01:38:24 +00:00
|
|
|
fov: std::f32::consts::FRAC_PI_3,
|
|
|
|
..Default::default()
|
|
|
|
};
|
2022-01-12 08:18:13 +00:00
|
|
|
commands
|
|
|
|
.spawn_bundle(PerspectiveCameraBundle {
|
2022-03-02 05:42:16 +00:00
|
|
|
perspective_projection: hero_projection,
|
2022-01-12 08:18:13 +00:00
|
|
|
..Default::default()
|
|
|
|
})
|
2022-03-02 05:42:16 +00:00
|
|
|
.insert(CyberCameras::Hero);
|
|
|
|
|
|
|
|
commands
|
2022-05-08 17:58:48 +00:00
|
|
|
.spawn_bundle(PerspectiveCameraBundle::default())
|
2022-03-02 05:42:16 +00:00
|
|
|
.insert(CyberCameras::Debug);
|
2022-01-12 08:18:13 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 01:32:39 +00:00
|
|
|
fn follow_cyberbike(
|
2022-05-08 17:58:48 +00:00
|
|
|
mut query: ParamSet<(
|
2022-03-02 05:42:16 +00:00
|
|
|
// 0: the bike
|
2022-05-08 17:58:48 +00:00
|
|
|
Query<&Transform, With<CyberBikeModel>>,
|
2022-03-02 05:42:16 +00:00
|
|
|
// 1: the cameras
|
2022-05-08 17:58:48 +00:00
|
|
|
Query<(&mut Transform, &CyberCameras)>,
|
2022-03-02 05:42:16 +00:00
|
|
|
)>,
|
2022-01-27 00:53:37 +00:00
|
|
|
input: Res<InputState>,
|
2022-01-12 08:18:13 +00:00
|
|
|
) {
|
2022-05-08 17:58:48 +00:00
|
|
|
let bike_xform = *query.p0().single();
|
2022-01-12 08:18:13 +00:00
|
|
|
let up = bike_xform.translation.normalize();
|
|
|
|
|
2022-05-08 17:58:48 +00:00
|
|
|
for (mut cam_xform, cam_type) in query.p1().iter_mut() {
|
2022-03-02 05:42:16 +00:00
|
|
|
match *cam_type {
|
|
|
|
CyberCameras::Hero => {
|
|
|
|
let look_at = bike_xform.translation + (bike_xform.forward() * 200.0);
|
|
|
|
let cam_pos = bike_xform.translation + (bike_xform.back() * 2.7) + (up * 2.4);
|
|
|
|
|
|
|
|
cam_xform.translation = cam_pos;
|
|
|
|
cam_xform.look_at(look_at, up);
|
2022-01-12 08:18:13 +00:00
|
|
|
|
2022-03-02 05:42:16 +00:00
|
|
|
// handle input pitch
|
|
|
|
let angle = input.pitch.powi(3) * MAX_PITCH;
|
|
|
|
let axis = cam_xform.right();
|
|
|
|
cam_xform.rotate(Quat::from_axis_angle(axis, angle));
|
|
|
|
}
|
|
|
|
CyberCameras::Debug => {
|
|
|
|
let pos = bike_xform.translation
|
|
|
|
+ (bike_xform.forward() * 10.0)
|
|
|
|
+ (bike_xform.left() * 30.0)
|
|
|
|
+ (bike_xform.up() * 7.0);
|
|
|
|
cam_xform.translation = pos;
|
|
|
|
cam_xform.look_at(bike_xform.translation, up);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-27 00:53:37 +00:00
|
|
|
|
2022-03-02 05:42:16 +00:00
|
|
|
fn update_active_camera(
|
2022-05-08 17:58:48 +00:00
|
|
|
mut active_cams: ResMut<ActiveCamera<Camera3d>>,
|
2022-03-02 05:42:16 +00:00
|
|
|
state: Res<State<CyberCameras>>,
|
2022-05-08 17:58:48 +00:00
|
|
|
mut query: Query<(&CyberCameras, Entity)>,
|
2022-03-02 05:42:16 +00:00
|
|
|
) {
|
2022-05-08 17:58:48 +00:00
|
|
|
// find the camera with the current state, set it as the ActiveCamera
|
|
|
|
query
|
2022-03-02 05:42:16 +00:00
|
|
|
.iter_mut()
|
2022-05-08 17:58:48 +00:00
|
|
|
.filter(|(cybercam, _)| state.current().eq(cybercam))
|
|
|
|
.for_each(|(_, entity)| {
|
|
|
|
active_cams.set(entity);
|
|
|
|
});
|
2022-03-02 05:42:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn cycle_cam_state(mut state: ResMut<State<CyberCameras>>, mut keys: ResMut<Input<KeyCode>>) {
|
|
|
|
if keys.just_pressed(KeyCode::D) {
|
|
|
|
let new_state = state.current().next();
|
|
|
|
info!("{:?}", new_state);
|
|
|
|
state.set(new_state).unwrap();
|
|
|
|
keys.reset(KeyCode::D);
|
|
|
|
}
|
2022-01-12 08:18:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct CyberCamPlugin;
|
|
|
|
impl Plugin for CyberCamPlugin {
|
|
|
|
fn build(&self, app: &mut bevy::prelude::App) {
|
2022-03-02 05:42:16 +00:00
|
|
|
app.add_startup_system(setup_cybercams)
|
2022-03-14 06:37:11 +00:00
|
|
|
.add_state(CyberCameras::Hero)
|
2022-03-02 05:42:16 +00:00
|
|
|
.add_system(cycle_cam_state)
|
|
|
|
.add_system(update_active_camera)
|
2022-01-14 01:32:39 +00:00
|
|
|
.add_system(follow_cyberbike);
|
2022-01-12 08:18:13 +00:00
|
|
|
}
|
|
|
|
}
|