mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
150 lines
5.4 KiB
Rust
150 lines
5.4 KiB
Rust
use crate::{state_ext::StateExt, Server};
|
|
use common::{
|
|
event::{EventBus, ServerEvent},
|
|
span,
|
|
};
|
|
use entity_creation::{
|
|
handle_create_npc, handle_create_waypoint, handle_initialize_character,
|
|
handle_loaded_character_data, handle_shockwave, handle_shoot,
|
|
};
|
|
use entity_manipulation::{
|
|
handle_damage, handle_destroy, handle_explosion, handle_knockback, handle_land_on_ground,
|
|
handle_level_up, handle_respawn,
|
|
};
|
|
use group_manip::handle_group;
|
|
use interaction::{handle_lantern, handle_mount, handle_possess, handle_unmount};
|
|
use inventory_manip::handle_inventory;
|
|
use player::{handle_client_disconnect, handle_exit_ingame};
|
|
use specs::{Entity as EcsEntity, WorldExt};
|
|
|
|
mod entity_creation;
|
|
mod entity_manipulation;
|
|
mod group_manip;
|
|
mod interaction;
|
|
mod inventory_manip;
|
|
mod player;
|
|
|
|
pub enum Event {
|
|
ClientConnected {
|
|
entity: EcsEntity,
|
|
},
|
|
ClientDisconnected {
|
|
entity: EcsEntity,
|
|
},
|
|
Chat {
|
|
entity: Option<EcsEntity>,
|
|
msg: String,
|
|
},
|
|
}
|
|
|
|
impl Server {
|
|
pub fn handle_events(&mut self) -> Vec<Event> {
|
|
span!(_guard, "handle_events", "Server::handle_events");
|
|
let mut frontend_events = Vec::new();
|
|
|
|
let mut requested_chunks = Vec::new();
|
|
let mut chat_commands = Vec::new();
|
|
let mut chat_messages = Vec::new();
|
|
|
|
let events = self
|
|
.state
|
|
.ecs()
|
|
.read_resource::<EventBus<ServerEvent>>()
|
|
.recv_all();
|
|
|
|
for event in events {
|
|
match event {
|
|
ServerEvent::Explosion {
|
|
pos,
|
|
power,
|
|
owner,
|
|
friendly_damage,
|
|
reagent,
|
|
percent_damage,
|
|
} => handle_explosion(&self, pos, power, owner, friendly_damage, reagent, percent_damage),
|
|
ServerEvent::Shoot {
|
|
entity,
|
|
dir,
|
|
body,
|
|
light,
|
|
projectile,
|
|
gravity,
|
|
speed,
|
|
} => handle_shoot(self, entity, dir, body, light, projectile, gravity, speed),
|
|
ServerEvent::Shockwave {
|
|
properties,
|
|
pos,
|
|
ori,
|
|
} => handle_shockwave(self, properties, pos, ori),
|
|
ServerEvent::Knockback { entity, impulse } => {
|
|
handle_knockback(&self, entity, impulse)
|
|
},
|
|
ServerEvent::Damage { uid, change } => handle_damage(&self, uid, change),
|
|
ServerEvent::Destroy { entity, cause } => handle_destroy(self, entity, cause),
|
|
ServerEvent::InventoryManip(entity, manip) => handle_inventory(self, entity, manip),
|
|
ServerEvent::GroupManip(entity, manip) => handle_group(self, entity, manip),
|
|
ServerEvent::Respawn(entity) => handle_respawn(&self, entity),
|
|
ServerEvent::LandOnGround { entity, vel } => {
|
|
handle_land_on_ground(&self, entity, vel)
|
|
},
|
|
ServerEvent::ToggleLantern(entity) => handle_lantern(self, entity),
|
|
ServerEvent::Mount(mounter, mountee) => handle_mount(self, mounter, mountee),
|
|
ServerEvent::Unmount(mounter) => handle_unmount(self, mounter),
|
|
ServerEvent::Possess(possessor_uid, possesse_uid) => {
|
|
handle_possess(&self, possessor_uid, possesse_uid)
|
|
},
|
|
ServerEvent::InitCharacterData {
|
|
entity,
|
|
character_id,
|
|
} => handle_initialize_character(self, entity, character_id),
|
|
ServerEvent::UpdateCharacterData { entity, components } => {
|
|
handle_loaded_character_data(self, entity, components);
|
|
},
|
|
ServerEvent::LevelUp(entity, new_level) => handle_level_up(self, entity, new_level),
|
|
ServerEvent::ExitIngame { entity } => handle_exit_ingame(self, entity),
|
|
ServerEvent::CreateNpc {
|
|
pos,
|
|
stats,
|
|
loadout,
|
|
body,
|
|
agent,
|
|
alignment,
|
|
scale,
|
|
drop_item,
|
|
} => handle_create_npc(
|
|
self, pos, stats, loadout, body, agent, alignment, scale, drop_item,
|
|
),
|
|
ServerEvent::CreateWaypoint(pos) => handle_create_waypoint(self, pos),
|
|
ServerEvent::ClientDisconnect(entity) => {
|
|
frontend_events.push(handle_client_disconnect(self, entity))
|
|
},
|
|
|
|
ServerEvent::ChunkRequest(entity, key) => {
|
|
requested_chunks.push((entity, key));
|
|
},
|
|
ServerEvent::ChatCmd(entity, cmd) => {
|
|
chat_commands.push((entity, cmd));
|
|
},
|
|
ServerEvent::Chat(msg) => {
|
|
chat_messages.push(msg);
|
|
},
|
|
}
|
|
}
|
|
|
|
// Generate requested chunks.
|
|
for (entity, key) in requested_chunks {
|
|
self.generate_chunk(entity, key);
|
|
}
|
|
|
|
for (entity, cmd) in chat_commands {
|
|
self.process_chat_cmd(entity, cmd);
|
|
}
|
|
|
|
for msg in chat_messages {
|
|
self.state.send_chat(msg);
|
|
}
|
|
|
|
frontend_events
|
|
}
|
|
}
|