veloren/server/src/events/entity_creation.rs

105 lines
2.5 KiB
Rust
Raw Normal View History

2020-06-25 18:50:04 +00:00
use crate::{sys, Server, StateExt};
use common::{
comp::{
self, Agent, Alignment, Body, Gravity, Item, ItemDrop, LightEmitter, Loadout, Pos,
Projectile, Scale, Stats, Vel, WaypointArea,
},
util::Dir,
2020-02-16 20:04:06 +00:00
};
use specs::{Builder, Entity as EcsEntity, WorldExt};
use vek::{Rgb, Vec3};
pub fn handle_initialize_character(server: &mut Server, entity: EcsEntity, character_id: i32) {
server.state.initialize_character_data(entity, character_id);
}
pub fn handle_loaded_character_data(
2020-02-16 20:04:06 +00:00
server: &mut Server,
entity: EcsEntity,
loaded_components: (comp::Body, comp::Stats, comp::Inventory, comp::Loadout),
2020-02-16 20:04:06 +00:00
) {
2020-06-25 18:50:04 +00:00
server
.state
.update_character_data(entity, loaded_components);
sys::subscription::initialize_region_subscription(server.state.ecs(), entity);
2020-02-16 20:04:06 +00:00
}
#[allow(clippy::too_many_arguments)] // TODO: Pending review in #587
2020-02-16 20:04:06 +00:00
pub fn handle_create_npc(
server: &mut Server,
pos: Pos,
stats: Stats,
loadout: Loadout,
2020-02-16 20:04:06 +00:00
body: Body,
2020-07-05 12:39:28 +00:00
agent: impl Into<Option<Agent>>,
2020-02-16 20:04:06 +00:00
alignment: Alignment,
scale: Scale,
drop_item: Option<Item>,
2020-02-16 20:04:06 +00:00
) {
let entity = server
2020-02-16 20:04:06 +00:00
.state
.create_npc(pos, stats, loadout, body)
2020-02-16 20:04:06 +00:00
.with(scale)
.with(alignment);
2020-07-05 12:39:28 +00:00
let entity = if let Some(agent) = agent.into() {
entity.with(agent)
} else {
entity
};
let entity = if let Some(drop_item) = drop_item {
entity.with(ItemDrop(drop_item))
} else {
entity
};
entity.build();
2020-02-16 20:04:06 +00:00
}
pub fn handle_shoot(
server: &mut Server,
entity: EcsEntity,
dir: Dir,
2020-02-16 20:04:06 +00:00
body: Body,
light: Option<LightEmitter>,
projectile: Projectile,
gravity: Option<Gravity>,
) {
let state = server.state_mut();
let mut pos = state
.ecs()
.read_storage::<Pos>()
.get(entity)
.expect("Failed to fetch entity")
.0;
// TODO: Player height
pos.z += 1.2;
let mut builder = state.create_projectile(Pos(pos), Vel(*dir * 100.0), body, projectile);
2020-02-16 20:04:06 +00:00
if let Some(light) = light {
builder = builder.with(light)
}
if let Some(gravity) = gravity {
builder = builder.with(gravity)
}
builder.build();
}
pub fn handle_create_waypoint(server: &mut Server, pos: Vec3<f32>) {
server
.state
2020-02-16 20:04:06 +00:00
.create_object(Pos(pos), comp::object::Body::CampfireLit)
.with(LightEmitter {
col: Rgb::new(1.0, 0.65, 0.2),
strength: 2.0,
flicker: 1.0,
animated: true,
2020-02-16 20:04:06 +00:00
})
.with(WaypointArea::default())
.build();
}