2019-01-11 23:18:34 +00:00
|
|
|
pub mod camera;
|
2019-01-13 20:53:55 +00:00
|
|
|
pub mod figure;
|
2019-09-01 01:32:39 +00:00
|
|
|
pub mod sound;
|
2019-09-06 10:38:02 +00:00
|
|
|
pub mod terrain;
|
2019-01-11 23:18:34 +00:00
|
|
|
|
2019-07-24 14:27:13 +00:00
|
|
|
use self::{
|
|
|
|
camera::{Camera, CameraMode},
|
|
|
|
figure::FigureMgr,
|
2019-09-01 01:32:39 +00:00
|
|
|
sound::SoundMgr,
|
2019-09-06 10:38:02 +00:00
|
|
|
terrain::Terrain,
|
2019-07-24 14:27:13 +00:00
|
|
|
};
|
2019-01-12 13:56:34 +00:00
|
|
|
use crate::{
|
2019-09-06 10:38:02 +00:00
|
|
|
audio::AudioFrontend,
|
2019-01-12 13:56:34 +00:00
|
|
|
render::{
|
2019-07-21 15:04:36 +00:00
|
|
|
create_pp_mesh, create_skybox_mesh, Consts, Globals, Light, Model, PostProcessLocals,
|
2019-06-06 14:48:41 +00:00
|
|
|
PostProcessPipeline, Renderer, SkyboxLocals, SkyboxPipeline,
|
2019-01-12 13:56:34 +00:00
|
|
|
},
|
|
|
|
window::Event,
|
2019-01-13 20:53:55 +00:00
|
|
|
};
|
2019-05-12 19:57:39 +00:00
|
|
|
use client::Client;
|
2019-08-16 14:58:14 +00:00
|
|
|
use common::{comp, terrain::BlockKind, vol::ReadVol};
|
2019-08-01 23:32:33 +00:00
|
|
|
use specs::Join;
|
2019-05-12 19:57:39 +00:00
|
|
|
use vek::*;
|
2019-01-13 20:53:55 +00:00
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
// TODO: Don't hard-code this.
|
2019-01-13 20:53:55 +00:00
|
|
|
const CURSOR_PAN_SCALE: f32 = 0.005;
|
2019-01-11 23:18:34 +00:00
|
|
|
|
2019-07-21 15:37:41 +00:00
|
|
|
const MAX_LIGHT_COUNT: usize = 32;
|
2019-07-21 15:04:36 +00:00
|
|
|
const LIGHT_DIST_RADIUS: f32 = 64.0; // The distance beyond which lights may not be visible
|
|
|
|
|
2019-01-11 23:18:34 +00:00
|
|
|
struct Skybox {
|
|
|
|
model: Model<SkyboxPipeline>,
|
|
|
|
locals: Consts<SkyboxLocals>,
|
|
|
|
}
|
|
|
|
|
2019-05-06 08:22:47 +00:00
|
|
|
struct PostProcess {
|
|
|
|
model: Model<PostProcessPipeline>,
|
|
|
|
locals: Consts<PostProcessLocals>,
|
|
|
|
}
|
|
|
|
|
2019-01-11 23:18:34 +00:00
|
|
|
pub struct Scene {
|
|
|
|
globals: Consts<Globals>,
|
2019-07-21 15:04:36 +00:00
|
|
|
lights: Consts<Light>,
|
2019-01-15 15:13:11 +00:00
|
|
|
camera: Camera,
|
|
|
|
|
2019-01-11 23:18:34 +00:00
|
|
|
skybox: Skybox,
|
2019-05-06 08:22:47 +00:00
|
|
|
postprocess: PostProcess,
|
2019-01-15 15:13:11 +00:00
|
|
|
terrain: Terrain,
|
2019-06-05 16:32:33 +00:00
|
|
|
loaded_distance: f32,
|
2019-04-19 07:35:23 +00:00
|
|
|
|
2019-05-12 13:02:47 +00:00
|
|
|
figure_mgr: FigureMgr,
|
2019-09-01 01:32:39 +00:00
|
|
|
sound_mgr: SoundMgr,
|
2019-01-13 20:53:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-11 23:18:34 +00:00
|
|
|
impl Scene {
|
|
|
|
/// Create a new `Scene` with default parameters.
|
2019-07-04 12:02:26 +00:00
|
|
|
pub fn new(renderer: &mut Renderer) -> Self {
|
2019-04-14 15:05:51 +00:00
|
|
|
let resolution = renderer.get_resolution().map(|e| e as f32);
|
|
|
|
|
2019-01-11 23:18:34 +00:00
|
|
|
Self {
|
2019-04-29 20:37:19 +00:00
|
|
|
globals: renderer.create_consts(&[Globals::default()]).unwrap(),
|
2019-07-21 15:04:36 +00:00
|
|
|
lights: renderer.create_consts(&[Light::default(); 32]).unwrap(),
|
2019-07-22 19:11:00 +00:00
|
|
|
camera: Camera::new(resolution.x / resolution.y, CameraMode::ThirdPerson),
|
2019-01-15 15:13:11 +00:00
|
|
|
|
2019-01-11 23:18:34 +00:00
|
|
|
skybox: Skybox {
|
2019-04-29 20:37:19 +00:00
|
|
|
model: renderer.create_model(&create_skybox_mesh()).unwrap(),
|
|
|
|
locals: renderer.create_consts(&[SkyboxLocals::default()]).unwrap(),
|
2019-01-11 23:18:34 +00:00
|
|
|
},
|
2019-05-06 08:22:47 +00:00
|
|
|
postprocess: PostProcess {
|
|
|
|
model: renderer.create_model(&create_pp_mesh()).unwrap(),
|
|
|
|
locals: renderer
|
|
|
|
.create_consts(&[PostProcessLocals::default()])
|
|
|
|
.unwrap(),
|
|
|
|
},
|
2019-08-19 20:09:35 +00:00
|
|
|
terrain: Terrain::new(renderer),
|
2019-06-05 16:32:33 +00:00
|
|
|
loaded_distance: 0.0,
|
2019-05-12 13:02:47 +00:00
|
|
|
figure_mgr: FigureMgr::new(),
|
2019-09-06 10:38:02 +00:00
|
|
|
sound_mgr: SoundMgr::new(),
|
2019-01-11 23:18:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-14 06:43:07 +00:00
|
|
|
/// Get a reference to the scene's globals
|
|
|
|
pub fn globals(&self) -> &Consts<Globals> {
|
|
|
|
&self.globals
|
|
|
|
}
|
|
|
|
|
2019-01-23 22:39:31 +00:00
|
|
|
/// Get a reference to the scene's camera.
|
2019-04-29 20:37:19 +00:00
|
|
|
pub fn camera(&self) -> &Camera {
|
|
|
|
&self.camera
|
|
|
|
}
|
2019-01-23 22:39:31 +00:00
|
|
|
|
|
|
|
/// Get a mutable reference to the scene's camera.
|
2019-04-29 20:37:19 +00:00
|
|
|
pub fn camera_mut(&mut self) -> &mut Camera {
|
|
|
|
&mut self.camera
|
|
|
|
}
|
2019-01-23 22:39:31 +00:00
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
/// Handle an incoming user input event (e.g.: cursor moved, key pressed, window closed).
|
2019-01-30 12:11:34 +00:00
|
|
|
///
|
2019-05-17 09:22:32 +00:00
|
|
|
/// If the event is handled, return true.
|
2019-01-12 13:56:34 +00:00
|
|
|
pub fn handle_input_event(&mut self, event: Event) -> bool {
|
|
|
|
match event {
|
2019-01-30 12:11:34 +00:00
|
|
|
// When the window is resized, change the camera's aspect ratio
|
|
|
|
Event::Resize(dims) => {
|
|
|
|
self.camera.set_aspect_ratio(dims.x as f32 / dims.y as f32);
|
|
|
|
true
|
2019-04-29 20:37:19 +00:00
|
|
|
}
|
2019-01-12 13:56:34 +00:00
|
|
|
// Panning the cursor makes the camera rotate
|
|
|
|
Event::CursorPan(delta) => {
|
|
|
|
self.camera.rotate_by(Vec3::from(delta) * CURSOR_PAN_SCALE);
|
|
|
|
true
|
2019-04-29 20:37:19 +00:00
|
|
|
}
|
2019-01-30 12:11:34 +00:00
|
|
|
// Zoom the camera when a zoom event occurs
|
|
|
|
Event::Zoom(delta) => {
|
2019-08-13 17:54:13 +00:00
|
|
|
self.camera.zoom_switch(delta * 0.3);
|
2019-01-30 12:11:34 +00:00
|
|
|
true
|
2019-04-29 20:37:19 +00:00
|
|
|
}
|
2019-01-12 13:56:34 +00:00
|
|
|
// All other events are unhandled
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-23 20:01:58 +00:00
|
|
|
/// Maintain data such as GPU constant buffers, models, etc. To be called once per tick.
|
2019-09-06 10:38:02 +00:00
|
|
|
pub fn maintain(
|
|
|
|
&mut self,
|
|
|
|
renderer: &mut Renderer,
|
|
|
|
audio: &mut AudioFrontend,
|
|
|
|
client: &Client,
|
|
|
|
) {
|
2019-05-17 09:22:32 +00:00
|
|
|
// Get player position.
|
2019-03-05 18:39:18 +00:00
|
|
|
let player_pos = client
|
2019-04-14 20:30:27 +00:00
|
|
|
.state()
|
|
|
|
.ecs()
|
2019-06-14 15:27:05 +00:00
|
|
|
.read_storage::<comp::Pos>()
|
2019-04-19 19:32:47 +00:00
|
|
|
.get(client.entity())
|
2019-05-27 17:01:00 +00:00
|
|
|
.map_or(Vec3::zero(), |pos| pos.0);
|
2019-03-05 18:39:18 +00:00
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
// Alter camera position to match player.
|
2019-06-10 10:50:48 +00:00
|
|
|
let tilt = self.camera.get_orientation().y;
|
|
|
|
let dist = self.camera.get_distance();
|
2019-08-13 17:54:13 +00:00
|
|
|
let up = if self.camera.get_mode() == CameraMode::FirstPerson {
|
2019-08-06 15:00:14 +00:00
|
|
|
1.5
|
|
|
|
} else {
|
|
|
|
1.2
|
|
|
|
};
|
2019-07-21 12:42:45 +00:00
|
|
|
self.camera.set_focus_pos(
|
2019-08-06 15:00:14 +00:00
|
|
|
player_pos + Vec3::unit_z() * (up + dist * 0.15 - tilt.min(0.0) * dist * 0.75),
|
2019-07-21 12:42:45 +00:00
|
|
|
);
|
2019-05-05 15:17:57 +00:00
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
// Tick camera for interpolation.
|
2019-05-05 15:17:57 +00:00
|
|
|
self.camera.update(client.state().get_time());
|
2019-03-05 00:00:11 +00:00
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
// Compute camera matrices.
|
2019-05-05 15:17:57 +00:00
|
|
|
let (view_mat, proj_mat, cam_pos) = self.camera.compute_dependents(client);
|
2019-01-12 01:14:58 +00:00
|
|
|
|
2019-06-05 16:32:33 +00:00
|
|
|
// Update chunk loaded distance smoothly for nice shader fog
|
2019-07-21 15:04:36 +00:00
|
|
|
let loaded_distance = client.loaded_distance().unwrap_or(0) as f32 * 32.0; // TODO: No magic!
|
2019-06-06 10:09:25 +00:00
|
|
|
self.loaded_distance = (0.98 * self.loaded_distance + 0.02 * loaded_distance).max(0.01);
|
2019-06-05 16:32:33 +00:00
|
|
|
|
2019-07-21 15:04:36 +00:00
|
|
|
// Update light constants
|
2019-07-21 16:50:13 +00:00
|
|
|
let mut lights = (
|
|
|
|
&client.state().ecs().read_storage::<comp::Pos>(),
|
2019-07-25 20:51:20 +00:00
|
|
|
client.state().ecs().read_storage::<comp::Ori>().maybe(),
|
2019-07-21 16:50:13 +00:00
|
|
|
&client.state().ecs().read_storage::<comp::LightEmitter>(),
|
|
|
|
)
|
2019-07-21 15:04:36 +00:00
|
|
|
.join()
|
2019-07-25 20:51:20 +00:00
|
|
|
.filter(|(pos, _, _)| {
|
2019-07-21 15:04:36 +00:00
|
|
|
(pos.0.distance_squared(player_pos) as f32)
|
|
|
|
< self.loaded_distance.powf(2.0) + LIGHT_DIST_RADIUS
|
|
|
|
})
|
2019-07-25 20:51:20 +00:00
|
|
|
.map(|(pos, ori, light_emitter)| {
|
|
|
|
let rot = {
|
|
|
|
if let Some(o) = ori {
|
|
|
|
Mat3::rotation_z(-o.0.x.atan2(o.0.y))
|
|
|
|
} else {
|
|
|
|
Mat3::identity()
|
|
|
|
}
|
|
|
|
};
|
2019-07-21 16:50:13 +00:00
|
|
|
Light::new(
|
2019-07-25 20:51:20 +00:00
|
|
|
pos.0 + (rot * light_emitter.offset),
|
2019-07-21 16:50:13 +00:00
|
|
|
light_emitter.col,
|
|
|
|
light_emitter.strength,
|
|
|
|
)
|
2019-07-25 20:51:20 +00:00
|
|
|
})
|
2019-07-21 15:04:36 +00:00
|
|
|
.collect::<Vec<_>>();
|
|
|
|
lights.sort_by_key(|light| {
|
|
|
|
Vec3::from(Vec4::from(light.pos)).distance_squared(player_pos) as i32
|
|
|
|
});
|
2019-07-21 15:37:41 +00:00
|
|
|
lights.truncate(MAX_LIGHT_COUNT);
|
2019-07-21 15:04:36 +00:00
|
|
|
renderer
|
|
|
|
.update_consts(&mut self.lights, &lights)
|
|
|
|
.expect("Failed to update light constants");
|
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
// Update global constants.
|
2019-04-29 20:37:19 +00:00
|
|
|
renderer
|
|
|
|
.update_consts(
|
|
|
|
&mut self.globals,
|
|
|
|
&[Globals::new(
|
|
|
|
view_mat,
|
|
|
|
proj_mat,
|
|
|
|
cam_pos,
|
|
|
|
self.camera.get_focus_pos(),
|
2019-06-05 16:32:33 +00:00
|
|
|
self.loaded_distance,
|
2019-04-29 20:37:19 +00:00
|
|
|
client.state().get_time_of_day(),
|
|
|
|
client.state().get_time(),
|
2019-05-07 10:27:52 +00:00
|
|
|
renderer.get_resolution(),
|
2019-07-21 15:04:36 +00:00
|
|
|
lights.len(),
|
2019-08-16 14:58:14 +00:00
|
|
|
client
|
|
|
|
.state()
|
|
|
|
.terrain()
|
|
|
|
.get(cam_pos.map(|e| e.floor() as i32))
|
|
|
|
.map(|b| b.kind())
|
|
|
|
.unwrap_or(BlockKind::Air),
|
2019-04-29 20:37:19 +00:00
|
|
|
)],
|
|
|
|
)
|
2019-01-12 01:14:58 +00:00
|
|
|
.expect("Failed to update global constants");
|
2019-01-13 20:53:55 +00:00
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
// Maintain the terrain.
|
2019-06-06 09:04:37 +00:00
|
|
|
self.terrain.maintain(
|
|
|
|
renderer,
|
|
|
|
client,
|
|
|
|
self.camera.get_focus_pos(),
|
|
|
|
self.loaded_distance,
|
|
|
|
view_mat,
|
|
|
|
proj_mat,
|
|
|
|
);
|
2019-04-19 07:35:23 +00:00
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
// Maintain the figures.
|
2019-07-24 14:27:13 +00:00
|
|
|
self.figure_mgr.maintain(renderer, client);
|
2019-04-23 11:55:48 +00:00
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
// Remove unused figures.
|
2019-05-12 13:02:47 +00:00
|
|
|
self.figure_mgr.clean(client.get_tick());
|
2019-09-01 01:32:39 +00:00
|
|
|
|
|
|
|
// Maintain audio
|
|
|
|
self.sound_mgr.maintain(audio, client);
|
2019-01-12 01:14:58 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
/// Render the scene using the provided `Renderer`.
|
2019-04-23 11:55:48 +00:00
|
|
|
pub fn render(&mut self, renderer: &mut Renderer, client: &mut Client) {
|
2019-05-17 09:22:32 +00:00
|
|
|
// Render the skybox first (it appears over everything else so must be rendered first).
|
2019-04-29 20:37:19 +00:00
|
|
|
renderer.render_skybox(&self.skybox.model, &self.globals, &self.skybox.locals);
|
2019-01-13 20:53:55 +00:00
|
|
|
|
2019-05-17 09:22:32 +00:00
|
|
|
// Render terrain and figures.
|
2019-07-21 15:04:36 +00:00
|
|
|
self.figure_mgr
|
2019-07-24 14:27:13 +00:00
|
|
|
.render(renderer, client, &self.globals, &self.lights, &self.camera);
|
2019-08-19 21:54:16 +00:00
|
|
|
self.terrain.render(
|
|
|
|
renderer,
|
|
|
|
&self.globals,
|
|
|
|
&self.lights,
|
|
|
|
self.camera.get_focus_pos(),
|
|
|
|
);
|
2019-05-06 08:22:47 +00:00
|
|
|
|
|
|
|
renderer.render_post_process(
|
|
|
|
&self.postprocess.model,
|
|
|
|
&self.globals,
|
|
|
|
&self.postprocess.locals,
|
|
|
|
);
|
2019-01-11 23:18:34 +00:00
|
|
|
}
|
|
|
|
}
|