basin2-protocol 578.1.0

Basin2 subpackage for MC protocol.
use crate::network::*;
use crate::packet::*;
use basin2_lib::result::*;
use bytes::BytesMut;

#[derive(PartialEq, Clone, Debug)]
pub struct TeleportEntityPacket {
    pub id: i32,
    pub x: f64,
    pub y: f64,
    pub z: f64,
    pub yRot: u8,
    pub xRot: u8,
    pub onGround: bool,
}

impl CodablePacket for TeleportEntityPacket {
    fn encode(self, buf: &mut BytesMut) {
        buf.set_mc_var_int(self.id);
        buf.set_mc_f64(self.x);
        buf.set_mc_f64(self.y);
        buf.set_mc_f64(self.z);
        buf.set_mc_u8(self.yRot);
        buf.set_mc_u8(self.xRot);
        buf.set_mc_bool(self.onGround);
    }

    fn decode(buf: &mut BytesMut) -> Result<Self>
    where
        Self: Sized,
    {
        let id = buf.get_mc_var_int()?;
        let x = buf.get_mc_f64()?;
        let y = buf.get_mc_f64()?;
        let z = buf.get_mc_f64()?;
        let yRot = buf.get_mc_u8()?;
        let xRot = buf.get_mc_u8()?;
        let onGround = buf.get_mc_bool()?;
        return Ok(TeleportEntityPacket {
            id,
            x,
            y,
            z,
            yRot,
            xRot,
            onGround,
        });
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::packet::test::*;

    #[test]
    fn test_cycle() -> Result<()> {
        cycle(TeleportEntityPacket {
            id: 4567,
            x: 194.345,
            y: 67.435,
            z: -234.34,
            yRot: 120,
            xRot: 12,
            onGround: true,
        })
    }
}