1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use basin2_lib::Nbt;
use crate::network::*;
use crate::packet::*;
use basin2_lib::result::*;
use bytes::BytesMut;

#[derive(PartialEq, Clone, Debug)]
pub struct TagQueryPacket {
    pub transactionId: i32,
    pub tag: Nbt,
}

impl CodablePacket for TagQueryPacket {
    fn encode(self, buf: &mut BytesMut) {
        buf.set_mc_var_int(self.transactionId);
        buf.set_mc_nbt(self.tag);
    }

    fn decode(buf: &mut BytesMut) -> Result<Self>
    where
        Self: Sized,
    {
        let transactionId = buf.get_mc_var_int()?;
        let tag = buf.get_mc_nbt()?;
        return Ok(TagQueryPacket { transactionId, tag });
    }
}

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

    #[test]
    fn test_cycle() -> Result<()> {
        cycle(TagQueryPacket {
            transactionId: 234456,
            tag: Nbt::make_singleton_compound("test nbt".to_string(), Nbt::Float(47.0)),
        })
    }
}