mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-25 08:18:43 -06:00
move handshake into separate module
This commit is contained in:
parent
282fd7bdcb
commit
18d71d2edd
|
@ -1,7 +1,6 @@
|
||||||
use shipyard::Component;
|
use shipyard::Component;
|
||||||
|
|
||||||
pub type ClientId = u16;
|
pub type ClientId = u16;
|
||||||
pub type ClientKey = u16;
|
|
||||||
|
|
||||||
#[derive(Component, Clone, Copy, Debug)]
|
#[derive(Component, Clone, Copy, Debug)]
|
||||||
pub struct Client(pub ClientId);
|
pub struct Client(pub ClientId);
|
||||||
|
|
|
@ -1,23 +1,27 @@
|
||||||
use glam::Vec3;
|
|
||||||
use shipyard::{Unique, AllStoragesView, UniqueView, UniqueViewMut, Workload, IntoWorkload, EntitiesViewMut, Component, ViewMut, SystemModificator, View, IntoIter, WorkloadModificator};
|
use shipyard::{Unique, AllStoragesView, UniqueView, UniqueViewMut, Workload, IntoWorkload, EntitiesViewMut, Component, ViewMut, SystemModificator, View, IntoIter, WorkloadModificator};
|
||||||
use glium::glutin::event_loop::ControlFlow;
|
use glium::glutin::event_loop::ControlFlow;
|
||||||
use std::net::SocketAddr;
|
use std::net::SocketAddr;
|
||||||
use uflow::{client::{Client, Config as ClientConfig, Event as ClientEvent}, EndpointConfig, SendMode};
|
use uflow::{client::{Client, Config as ClientConfig, Event as ClientEvent}, EndpointConfig};
|
||||||
use kubi_shared::networking::{
|
use kubi_shared::networking::{
|
||||||
messages::{ClientToServerMessage, ServerToClientMessage, S_SERVER_HELLO},
|
messages::ServerToClientMessage,
|
||||||
state::ClientJoinState,
|
state::ClientJoinState,
|
||||||
channels::{CHANNEL_AUTH, CHANNEL_MOVE},
|
|
||||||
};
|
};
|
||||||
use crate::{
|
use crate::{
|
||||||
events::{EventComponent, player_actions::PlayerActionEvent},
|
events::EventComponent,
|
||||||
control_flow::SetControlFlow,
|
control_flow::SetControlFlow,
|
||||||
world::tasks::ChunkTaskManager,
|
world::tasks::ChunkTaskManager,
|
||||||
state::is_ingame_or_loading
|
state::is_ingame_or_loading
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mod handshake;
|
||||||
mod world;
|
mod world;
|
||||||
mod player;
|
mod player;
|
||||||
|
|
||||||
|
use handshake::{
|
||||||
|
set_client_join_state_to_connected,
|
||||||
|
say_hello,
|
||||||
|
check_server_hello_response
|
||||||
|
};
|
||||||
use world::{
|
use world::{
|
||||||
inject_network_responses_into_manager_queue,
|
inject_network_responses_into_manager_queue,
|
||||||
send_block_place_events,
|
send_block_place_events,
|
||||||
|
@ -89,53 +93,6 @@ fn flush_client(
|
||||||
client.0.flush();
|
client.0.flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
fn set_client_join_state_to_connected(
|
|
||||||
mut join_state: UniqueViewMut<ClientJoinState>
|
|
||||||
) {
|
|
||||||
log::info!("Setting ClientJoinState");
|
|
||||||
*join_state = ClientJoinState::Connected;
|
|
||||||
}
|
|
||||||
|
|
||||||
fn say_hello(
|
|
||||||
mut client: UniqueViewMut<UdpClient>,
|
|
||||||
) {
|
|
||||||
log::info!("Authenticating");
|
|
||||||
client.0.send(
|
|
||||||
postcard::to_allocvec(
|
|
||||||
&ClientToServerMessage::ClientHello {
|
|
||||||
username: "Sbeve".into(),
|
|
||||||
password: None
|
|
||||||
}
|
|
||||||
).unwrap().into_boxed_slice(),
|
|
||||||
CHANNEL_AUTH,
|
|
||||||
uflow::SendMode::Reliable
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
fn check_server_hello_response(
|
|
||||||
network_events: View<NetworkEvent>,
|
|
||||||
mut join_state: UniqueViewMut<ClientJoinState>
|
|
||||||
) {
|
|
||||||
for event in network_events.iter() {
|
|
||||||
let ClientEvent::Receive(data) = &event.0 else {
|
|
||||||
continue
|
|
||||||
};
|
|
||||||
if !event.is_message_of_type::<S_SERVER_HELLO>() {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
let Ok(parsed_message) = postcard::from_bytes(data) else {
|
|
||||||
log::error!("Malformed message");
|
|
||||||
continue
|
|
||||||
};
|
|
||||||
let ServerToClientMessage::ServerHello { init: _ } = parsed_message else {
|
|
||||||
unreachable!()
|
|
||||||
};
|
|
||||||
//TODO handle init data
|
|
||||||
*join_state = ClientJoinState::Joined;
|
|
||||||
log::info!("Joined the server!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn handle_disconnect(
|
fn handle_disconnect(
|
||||||
network_events: View<NetworkEvent>,
|
network_events: View<NetworkEvent>,
|
||||||
|
|
56
kubi/src/networking/handshake.rs
Normal file
56
kubi/src/networking/handshake.rs
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
use shipyard::{UniqueViewMut, View, IntoIter};
|
||||||
|
use uflow::{client::Event as ClientEvent, SendMode};
|
||||||
|
use kubi_shared::networking::{
|
||||||
|
messages::{ClientToServerMessage, ServerToClientMessage, S_SERVER_HELLO},
|
||||||
|
state::ClientJoinState,
|
||||||
|
channels::CHANNEL_AUTH,
|
||||||
|
};
|
||||||
|
use super::{UdpClient, NetworkEvent};
|
||||||
|
|
||||||
|
pub fn set_client_join_state_to_connected(
|
||||||
|
mut join_state: UniqueViewMut<ClientJoinState>
|
||||||
|
) {
|
||||||
|
log::info!("Setting ClientJoinState");
|
||||||
|
*join_state = ClientJoinState::Connected;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn say_hello(
|
||||||
|
mut client: UniqueViewMut<UdpClient>,
|
||||||
|
) {
|
||||||
|
log::info!("Authenticating");
|
||||||
|
client.0.send(
|
||||||
|
postcard::to_allocvec(
|
||||||
|
&ClientToServerMessage::ClientHello {
|
||||||
|
username: "Sbeve".into(),
|
||||||
|
password: None
|
||||||
|
}
|
||||||
|
).unwrap().into_boxed_slice(),
|
||||||
|
CHANNEL_AUTH,
|
||||||
|
SendMode::Reliable
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn check_server_hello_response(
|
||||||
|
network_events: View<NetworkEvent>,
|
||||||
|
mut join_state: UniqueViewMut<ClientJoinState>
|
||||||
|
) {
|
||||||
|
for event in network_events.iter() {
|
||||||
|
let ClientEvent::Receive(data) = &event.0 else {
|
||||||
|
continue
|
||||||
|
};
|
||||||
|
if !event.is_message_of_type::<S_SERVER_HELLO>() {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
let Ok(parsed_message) = postcard::from_bytes(data) else {
|
||||||
|
log::error!("Malformed message");
|
||||||
|
continue
|
||||||
|
};
|
||||||
|
let ServerToClientMessage::ServerHello { init: _ } = parsed_message else {
|
||||||
|
unreachable!()
|
||||||
|
};
|
||||||
|
//TODO handle init data
|
||||||
|
*join_state = ClientJoinState::Joined;
|
||||||
|
log::info!("Joined the server!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
|
@ -8,6 +8,10 @@ use kubi_shared::networking::{
|
||||||
use crate::events::player_actions::PlayerActionEvent;
|
use crate::events::player_actions::PlayerActionEvent;
|
||||||
use super::{UdpClient, NetworkEvent};
|
use super::{UdpClient, NetworkEvent};
|
||||||
|
|
||||||
|
pub fn add_net_player() {
|
||||||
|
//TODO
|
||||||
|
}
|
||||||
|
|
||||||
pub fn send_player_movement_events(
|
pub fn send_player_movement_events(
|
||||||
actions: View<PlayerActionEvent>,
|
actions: View<PlayerActionEvent>,
|
||||||
mut client: UniqueViewMut<UdpClient>,
|
mut client: UniqueViewMut<UdpClient>,
|
||||||
|
@ -48,3 +52,10 @@ pub fn receive_player_movement_events(
|
||||||
//TODO apply position to local player
|
//TODO apply position to local player
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
pub fn receive_connected_players(
|
||||||
|
network_events: View<NetworkEvent>,
|
||||||
|
) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue