veloren/client/src/lib.rs

206 lines
6.2 KiB
Rust
Raw Normal View History

pub mod error;
pub mod input;
// Reexports
pub use specs::Entity as EcsEntity;
pub use crate::{
error::Error,
input::Input,
};
use std::{
time::Duration,
net::SocketAddr,
};
2019-01-15 15:13:11 +00:00
use vek::*;
2019-01-23 20:01:58 +00:00
use threadpool;
use specs::Builder;
use common::{
comp,
state::State,
terrain::TerrainChunk,
net::PostBox,
msg::{ClientMsg, ServerMsg},
};
2019-01-15 15:13:11 +00:00
use world::World;
2019-01-02 17:23:31 +00:00
pub enum Event {
Chat(String),
2019-01-02 17:23:31 +00:00
}
pub struct Client {
2019-01-23 20:01:58 +00:00
thread_pool: threadpool::ThreadPool,
2019-01-02 17:23:31 +00:00
last_ping: f64,
postbox: PostBox<ClientMsg, ServerMsg>,
2019-01-23 20:01:58 +00:00
tick: u64,
state: State,
2019-01-15 15:13:11 +00:00
player: Option<EcsEntity>,
// Testing
world: World,
pub chunk: Option<TerrainChunk>,
2019-01-02 17:23:31 +00:00
}
impl Client {
/// Create a new `Client`.
#[allow(dead_code)]
pub fn new<A: Into<SocketAddr>>(addr: A) -> Result<Self, Error> {
let state = State::new();
let mut postbox = PostBox::to_server(addr)?;
postbox.send(ClientMsg::Chat(String::from("Hello, world!")));
Ok(Self {
2019-01-23 20:01:58 +00:00
thread_pool: threadpool::Builder::new()
.thread_name("veloren-worker".into())
.build(),
2019-01-15 15:13:11 +00:00
last_ping: state.get_time(),
postbox,
2019-01-23 20:01:58 +00:00
tick: 0,
state,
2019-01-15 15:13:11 +00:00
player: None,
// Testing
world: World::new(),
chunk: None,
})
2019-01-02 17:23:31 +00:00
}
2019-01-23 20:01:58 +00:00
/// Get a reference to the client's worker thread pool. This pool should be used for any
/// computationally expensive operations that run outside of the main thread (i.e: threads that
/// block on I/O operations are exempt).
#[allow(dead_code)]
2019-01-23 20:01:58 +00:00
pub fn thread_pool(&self) -> &threadpool::ThreadPool { &self.thread_pool }
// TODO: Get rid of this
2019-01-15 15:13:11 +00:00
pub fn with_test_state(mut self) -> Self {
self.chunk = Some(self.world.generate_chunk(Vec3::zero()));
self.player = Some(self.state.new_test_player());
2019-01-15 15:13:11 +00:00
self
}
2019-01-23 20:01:58 +00:00
// TODO: Get rid of this
pub fn load_chunk(&mut self, pos: Vec3<i32>) {
self.state.terrain_mut().insert(pos, self.world.generate_chunk(pos));
self.state.changes_mut().new_chunks.push(pos);
}
/// Get a reference to the client's game state.
#[allow(dead_code)]
pub fn state(&self) -> &State { &self.state }
/// Get a mutable reference to the client's game state.
#[allow(dead_code)]
pub fn state_mut(&mut self) -> &mut State { &mut self.state }
/// Get an entity from its UID, creating it if it does not exists
pub fn get_or_create_entity(&mut self, uid: u64) -> EcsEntity {
self.state.ecs_world_mut().create_entity()
.with(comp::Uid(uid))
.build()
}
/// Get the player entity
#[allow(dead_code)]
pub fn player(&self) -> Option<EcsEntity> {
self.player
}
2019-01-23 20:01:58 +00:00
/// Get the current tick number.
#[allow(dead_code)]
2019-01-23 20:01:58 +00:00
pub fn get_tick(&self) -> u64 {
self.tick
}
/// Send a chat message to the server
#[allow(dead_code)]
pub fn send_chat(&mut self, msg: String) -> Result<(), Error> {
Ok(self.postbox.send(ClientMsg::Chat(msg))?)
}
2019-01-02 17:23:31 +00:00
/// Execute a single client tick, handle input and update the game state by the given duration
#[allow(dead_code)]
pub fn tick(&mut self, input: Input, dt: Duration) -> Result<Vec<Event>, Error> {
2019-01-02 17:23:31 +00:00
// This tick function is the centre of the Veloren universe. Most client-side things are
// managed from here, and as such it's important that it stays organised. Please consult
// the core developers before making significant changes to this code. Here is the
// approximate order of things. Please update it as this code changes.
//
// 1) Collect input from the frontend, apply input effects to the state of the game
// 2) Go through any events (timer-driven or otherwise) that need handling and apply them
// to the state of the game
// 3) Perform a single LocalState tick (i.e: update the world and entities in the world)
// 4) Go through the terrain update queue and apply all changes to the terrain
// 5) Finish the tick, passing control of the main thread back to the frontend
// Build up a list of events for this frame, to be passed to the frontend
let mut frontend_events = Vec::new();
// Handle new messages from the server
frontend_events.append(&mut self.handle_new_messages()?);
// Step 3
if let Some(p) = self.player {
// TODO: remove this
const PLAYER_VELOCITY: f32 = 100.0;
// TODO: Set acceleration instead
self.state.write_component(p, comp::phys::Vel(Vec3::from(input.move_dir * PLAYER_VELOCITY)));
}
2019-01-02 17:23:31 +00:00
// Tick the client's LocalState (step 3)
self.state.tick(dt);
// Finish the tick, pass control back to the frontend (step 6)
2019-01-23 20:01:58 +00:00
self.tick += 1;
Ok(frontend_events)
2019-01-02 17:23:31 +00:00
}
2019-01-23 20:01:58 +00:00
/// Clean up the client after a tick
#[allow(dead_code)]
2019-01-23 20:01:58 +00:00
pub fn cleanup(&mut self) {
// Cleanup the local state
self.state.cleanup();
}
/// Handle new server messages
fn handle_new_messages(&mut self) -> Result<Vec<Event>, Error> {
let mut frontend_events = Vec::new();
// Step 1
let new_msgs = self.postbox.new_messages();
if new_msgs.len() > 0 {
self.last_ping = self.state.get_time();
for msg in new_msgs {
println!("Received message");
match msg {
ServerMsg::Shutdown => return Err(Error::ServerShutdown),
ServerMsg::Chat(msg) => frontend_events.push(Event::Chat(msg)),
ServerMsg::EntityPhysics { uid, pos, vel, dir } => {
let ecs_entity = self.get_or_create_entity(uid);
self.state.write_component(ecs_entity, pos);
self.state.write_component(ecs_entity, vel);
self.state.write_component(ecs_entity, dir);
},
}
}
} else if let Some(err) = self.postbox.status() {
return Err(err.into());
}
Ok(frontend_events)
}
}
impl Drop for Client {
fn drop(&mut self) {
self.postbox.send(ClientMsg::Disconnect).unwrap();
}
2019-01-02 17:23:31 +00:00
}