2020-12-11 23:37:22 +00:00
|
|
|
use serde::{Serialize, de::DeserializeOwned, Deserialize};
|
|
|
|
|
|
|
|
#[derive(Deserialize,Serialize,Debug)]
|
|
|
|
pub enum Action {
|
|
|
|
ServerClose,
|
|
|
|
Print(String),
|
|
|
|
PlayerSendMessage(usize,String),
|
|
|
|
KillEntity(usize)
|
|
|
|
}
|
|
|
|
|
2020-12-12 15:56:09 +00:00
|
|
|
pub trait Event: Serialize + DeserializeOwned + Send + Sync{
|
|
|
|
type Response: Serialize + DeserializeOwned + Send + Sync;
|
2020-12-11 23:37:22 +00:00
|
|
|
}
|
|
|
|
|
2020-12-12 15:02:58 +00:00
|
|
|
// TODO: Unify this with common/src/comp/uid.rs:Uid
|
|
|
|
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
|
|
|
|
pub struct Uid(pub u64);
|
|
|
|
|
2020-12-11 23:37:22 +00:00
|
|
|
pub mod events {
|
2020-12-12 15:02:58 +00:00
|
|
|
|
|
|
|
use crate::Uid;
|
|
|
|
|
2020-12-11 23:37:22 +00:00
|
|
|
use super::Event;
|
|
|
|
use serde::{Serialize,Deserialize};
|
2020-12-12 13:01:54 +00:00
|
|
|
|
2020-12-12 15:02:58 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub struct ChatCommandEvent {
|
|
|
|
pub command: String,
|
|
|
|
pub command_args: Vec<String>,
|
|
|
|
pub player: Player,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Event for ChatCommandEvent {
|
|
|
|
type Response = Result<Vec<String>, String>;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub struct Player {
|
|
|
|
pub id: Uid,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
|
2020-12-11 23:37:22 +00:00
|
|
|
pub struct PlayerJoinEvent {
|
|
|
|
pub player_name: String,
|
|
|
|
pub player_id: usize
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Event for PlayerJoinEvent {
|
|
|
|
type Response = PlayerJoinResult;
|
|
|
|
}
|
|
|
|
|
2020-12-12 15:02:58 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
|
2020-12-11 23:37:22 +00:00
|
|
|
pub enum PlayerJoinResult {
|
|
|
|
CloseConnection,
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for PlayerJoinResult {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-12 15:02:58 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
|
2020-12-11 23:37:22 +00:00
|
|
|
pub struct PluginLoadEvent;
|
|
|
|
|
|
|
|
impl Event for PluginLoadEvent {
|
|
|
|
type Response = ();
|
|
|
|
}
|
|
|
|
|
|
|
|
// #[derive(Serialize, Deserialize, Debug)]
|
|
|
|
// pub struct EmptyResult;
|
|
|
|
|
|
|
|
// impl Default for PlayerJoinResult {
|
|
|
|
// fn default() -> Self {
|
|
|
|
// Self::None
|
|
|
|
// }
|
|
|
|
// }
|
2020-12-12 13:01:54 +00:00
|
|
|
}
|