Exemplo n.º 1
0
 def decode(cls, buf: Buffer) -> PlayClientSettings:
     return cls(
         buf.unpack_string(),
         buf.unpack("b"),
         buf.unpack_varint(),
         buf.unpack("?"),
         buf.unpack("B"),
         buf.unpack_varint(),
     )
Exemplo n.º 2
0
def test_varint():
    buf = Buffer()

    buf.write(Buffer.pack_varint(0))
    buf.write(Buffer.pack_varint(1))
    buf.write(Buffer.pack_varint(3749146))

    assert buf.unpack_varint() == 0
    assert buf.unpack_varint() == 1
    assert buf.unpack_varint() == 3749146
Exemplo n.º 3
0
 def decode(cls, buf: Buffer) -> PlayBlockPlacement:
     return cls(
         buf.unpack_varint(),
         *buf.unpack_pos(),
         buf.unpack_varint(),
         buf.unpack("f"),
         buf.unpack("f"),
         buf.unpack("f"),
         buf.unpack("?"),
     )
Exemplo n.º 4
0
 def decode(cls, buf: Buffer) -> PlayClickWindow:
     return cls(
         buf.unpack("B"),
         buf.unpack("h"),
         buf.unpack("b"),
         buf.unpack("h"),
         buf.unpack_varint(),
         buf.unpack_slot(),
     )
Exemplo n.º 5
0
def test_varint(var_int, error_msg):
    buf = Buffer()
    if error_msg:
        with pytest.raises(ValueError) as err:

            buf.write(Buffer.pack_varint(var_int))
            assert error_msg in str(err)
    else:
        buf.write(Buffer.pack_varint(var_int))
        assert buf.unpack_varint() == var_int
Exemplo n.º 6
0
 def decode(cls, buf: Buffer) -> PlayUpdateStructureBlock:
     return cls(
         *buf.unpack_pos(),
         buf.unpack_varint(),
         buf.unpack_varint(),
         buf.unpack_string(),
         buf.unpack("b"),
         buf.unpack("b"),
         buf.unpack("b"),
         buf.unpack("b"),
         buf.unpack("b"),
         buf.unpack("b"),
         buf.unpack_varint(),
         buf.unpack_varint(),
         buf.unpack_string(),
         buf.unpack("f"),
         buf.unpack_varint(),
         buf.unpack("b"),
     )
Exemplo n.º 7
0
 def decode(cls, buf: Buffer) -> PlayInteractEntity:
     return cls(
         buf.unpack_varint(),
         buf.unpack_varint(),
         buf.unpack_optional(buf.unpack_varint),
         buf.unpack_optional(buf.unpack_varint),
         buf.unpack_optional(buf.unpack_varint),
         buf.unpack_optional(buf.unpack_varint),
         buf.unpack("?"),
     )
Exemplo n.º 8
0
 def decode(cls, buf: Buffer) -> LoginStart:
     return cls(buf.read(buf.unpack_varint()).decode("UTF-8"))
Exemplo n.º 9
0
 def decode(cls, buf: Buffer) -> LoginEncryptionResponse:
     return cls(buf.read(buf.unpack_varint()),
                buf.read(buf.unpack_varint()))
Exemplo n.º 10
0
 def decode(cls, buf: Buffer) -> PlayQueryEntityNBT:
     return cls(buf.unpack_varint(), buf.unpack_varint())
Exemplo n.º 11
0
 def decode(cls, buf: Buffer) -> PlayEntityAction:
     return cls(buf.unpack_varint(), buf.unpack_varint(), buf.unpack_varint())
Exemplo n.º 12
0
 def decode(cls, buf: Buffer) -> PlayUpdateCommandBlock:
     return cls(
         *buf.unpack_position(), buf.unpack_string(), buf.unpack_varint(), buf.unpack("b")
     )
Exemplo n.º 13
0
 def decode(cls, buf: Buffer) -> PlayTabCompleteServerBound:
     return cls(buf.unpack_varint(), buf.unpack_string())
Exemplo n.º 14
0
 def decode(cls, buf: Buffer) -> PlayQueryBlockNBT:
     return cls(buf.unpack_varint(), *buf.unpack_pos())
Exemplo n.º 15
0
 def decode(cls, buf: Buffer) -> PlayResourcePackStatus:
     return cls(buf.unpack_varint())
Exemplo n.º 16
0
 def decode(cls, buf: Buffer) -> PlayTeleportConfirm:
     return cls(buf.unpack_varint())
Exemplo n.º 17
0
 def decode(cls, buf: Buffer) -> PlayPickItem:
     return cls(buf.unpack_varint())
Exemplo n.º 18
0
 def decode(cls, buf: Buffer) -> PlayEditBook:
     return cls(buf.unpack_slot(), buf.unpack("?"), buf.unpack_varint())
Exemplo n.º 19
0
 def decode(cls, buf: Buffer) -> PlaySetRecipeBookState:
     return cls(buf.unpack_varint(), buf.unpack("?"), buf.unpack("?"))
Exemplo n.º 20
0
 def decode(cls, buf: Buffer) -> PlaySelectTrade:
     return cls(buf.unpack_varint())
Exemplo n.º 21
0
 def decode(cls, buf: Buffer) -> PlaySetBeaconEffect:
     return cls(buf.unpack_varint(), buf.unpack_varint())
Exemplo n.º 22
0
 def decode(cls, buf: Buffer) -> HandshakeHandshake:
     return cls(buf.unpack_varint(), buf.unpack_string(), buf.unpack("H"),
                buf.unpack_varint())
Exemplo n.º 23
0
 def decode(cls, buf: Buffer) -> PlayUpdateCommandBlockMinecart:
     return cls(buf.unpack_varint(), buf.unpack_string(), buf.unpack("?"))
Exemplo n.º 24
0
 def decode(cls, buf: Buffer) -> PlayGenerateStructure:
     return cls(*buf.unpack_pos(), buf.unpack_varint(), buf.unpack("?"))
Exemplo n.º 25
0
 def decode(cls, buf: Buffer) -> PlayPlayerDigging:
     return cls(buf.unpack_varint(), *buf.unpack_position(), buf.unpack("b"))
Exemplo n.º 26
0
 def decode(cls, buf: Buffer) -> PlayClientStatus:
     return cls(buf.unpack_varint())
Exemplo n.º 27
0
 def decode(cls, buf: Buffer) -> PlayAdvancementTab:
     return cls(buf.unpack_varint(),
                (buf.unpack_varint() if buf.unpack("?") else None))
Exemplo n.º 28
0
 def decode(cls, buf: Buffer) -> PlayAnimationServerBound:
     return cls(buf.unpack_varint())
Exemplo n.º 29
0
 def decode(cls, buf: Buffer) -> PlayAdvancementTab:
     return cls(buf.unpack_varint(), buf.unpack_optional(buf.unpack_varint))