aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/protocol.rs69
-rw-r--r--src/v1_15_2.rs2
2 files changed, 69 insertions, 2 deletions
diff --git a/src/protocol.rs b/src/protocol.rs
index 30938ff..9068f34 100644
--- a/src/protocol.rs
+++ b/src/protocol.rs
@@ -158,7 +158,7 @@ macro_rules! __protocol_body_def_helper {
#[macro_export]
macro_rules! define_protocol {
- ($packett: ident, $directiont: ident, $statet: ident, $idt: ident, $idi: ident => { $($nam: ident, $id: literal, $state: ident, $direction: ident => $body: ident { $($fnam: ident: $ftyp: ty),* }),*}) => {
+ ($packett: ident, $rawpackett: ident, $directiont: ident, $statet: ident, $idt: ident, $idi: ident => { $($nam: ident, $id: literal, $state: ident, $direction: ident => $body: ident { $($fnam: ident: $ftyp: ty),* }),*}) => {
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub struct $idi {
pub id: $idt,
@@ -186,6 +186,13 @@ macro_rules! define_protocol {
}
}
+ $crate::as_item! {
+ #[derive(Debug, PartialEq)]
+ pub enum $rawpackett<'a> {
+ $($nam(&'a [u8])),*,
+ }
+ }
+
impl crate::protocol::Packet<$idi> for $packett {
fn id(&self) -> $idi {
use self::$packett::*;
@@ -255,6 +262,66 @@ macro_rules! define_protocol {
}
}
+ impl<'a> std::convert::TryFrom<crate::protocol::RawPacket<'a, $idi>> for $rawpackett<'a> {
+ type Error = crate::protocol::PacketErr;
+
+ fn try_from(value: crate::protocol::RawPacket<'a, $idi>) -> Result<Self, Self::Error> {
+ use self::$rawpackett::*;
+ use self::$statet::*;
+ use self::$directiont::*;
+ use crate::protocol::PacketErr::*;
+
+ match (value.id.id, value.id.state, value.id.direction) {
+ $(($id, $state, $direction) => Ok($nam(value.data))),*,
+ other => Err(UnknownId(other.0))
+ }
+ }
+ }
+
+ impl<'a> std::convert::Into<crate::protocol::RawPacket<'a, $idi>> for $rawpackett<'a> {
+ fn into(self) -> crate::protocol::RawPacket<'a, $idi> {
+ crate::protocol::RawPacket {
+ id: self.id(),
+ data: self.bytes(),
+ }
+ }
+ }
+
+ impl<'a> std::convert::Into<&'a [u8]> for $rawpackett<'a> {
+ fn into(self) -> &'a [u8] {
+ use self::$rawpackett::*;
+
+ match self {
+ $($nam(data) => data),*
+ }
+ }
+ }
+
+ impl<'a> $rawpackett<'a> {
+ pub fn id(&self) -> $idi {
+ use self::$rawpackett::*;
+ use self::$statet::*;
+ use self::$directiont::*;
+
+ match self {
+ $($nam(_) => ($id, $state, $direction)),*
+ }.into()
+ }
+
+ pub fn deserialize(self) -> Result<$packett, crate::protocol::PacketErr> {
+ use crate::protocol::Packet;
+ $packett::mc_deserialize(self.into())
+ }
+
+ pub fn bytes(&self) -> &'a [u8] {
+ use self::$rawpackett::*;
+
+ match self {
+ $($nam(data) => data),*
+ }
+ }
+ }
+
$($crate::__protocol_body_def_helper!($body { $($fnam: $ftyp),* });)*
};
}
diff --git a/src/v1_15_2.rs b/src/v1_15_2.rs
index bef9730..83cd516 100644
--- a/src/v1_15_2.rs
+++ b/src/v1_15_2.rs
@@ -42,7 +42,7 @@ impl State {
}
}
-define_protocol!(Packet578, PacketDirection, State, i32, Id => {
+define_protocol!(Packet578, RawPacket578, PacketDirection, State, i32, Id => {
// handshaking
Handshake, 0x00, Handshaking, ServerBound => HandshakeSpec {
version: VarInt,