veloren/plugin/api/src/lib.rs

94 lines
2.1 KiB
Rust
Raw Normal View History

2021-02-17 13:03:20 +00:00
pub extern crate common;
pub use common::comp::Health;
use serde::{de::DeserializeOwned, Deserialize, Serialize};
pub use common::{resources::GameMode, uid::Uid};
2021-02-17 13:03:20 +00:00
mod errors;
pub use errors::*;
#[derive(Deserialize, Serialize, Debug)]
pub enum Action {
ServerClose,
Print(String),
PlayerSendMessage(Uid, String),
KillEntity(Uid),
}
2021-02-15 16:38:55 +00:00
#[derive(Deserialize, Serialize, Debug)]
2021-02-17 13:03:20 +00:00
pub enum Retrieve {
GetPlayerName(Uid),
GetEntityHealth(Uid),
}
#[derive(Serialize, Deserialize, Debug)]
pub enum RetrieveResult {
GetPlayerName(String),
GetEntityHealth(Health),
2021-02-15 16:38:55 +00:00
}
pub trait Event: Serialize + DeserializeOwned + Send + Sync {
type Response: Serialize + DeserializeOwned + Send + Sync;
}
2020-12-12 19:26:42 +00:00
pub mod event {
use super::*;
use serde::{Deserialize, Serialize};
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,
2020-12-12 15:02:58 +00:00
}
#[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
pub struct PlayerJoinEvent {
pub player_name: String,
pub player_id: Uid,
}
impl Event for PlayerJoinEvent {
type Response = PlayerJoinResult;
}
2020-12-12 15:02:58 +00:00
#[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
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-12 19:26:42 +00:00
pub struct PluginLoadEvent {
pub game_mode: GameMode,
2020-12-12 19:26:42 +00:00
}
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
}