Java Code Examples for com.nukkitx.protocol.bedrock.packet.AdventureSettingsPacket#setCommandPermission()

The following examples show how to use com.nukkitx.protocol.bedrock.packet.AdventureSettingsPacket#setCommandPermission() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AdventureSettingsSerializer_v354.java    From Protocol with Apache License 2.0 6 votes vote down vote up
@Override
public void deserialize(ByteBuf buffer, AdventureSettingsPacket packet) {
    int flags1 = VarInts.readUnsignedInt(buffer);
    packet.setCommandPermission(COMMAND_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    int flags2 = VarInts.readUnsignedInt(buffer);
    packet.setPlayerPermission(PLAYER_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    VarInts.readUnsignedInt(buffer); // useless
    packet.setUniqueEntityId(buffer.readLongLE());

    Set<AdventureSettingsPacket.Flag> flags = packet.getFlags();
    for (int i = 0; i < FLAGS_1.length; i++) {
        if ((flags1 & (1 << i)) != 0) {
            flags.add(FLAGS_1[i]);
        }
    }

    for (int i = 0; i < FLAGS_2.length; i++) {
        if ((flags2 & (1 << i)) != 0) {
            flags.add(FLAGS_2[i]);
        }
    }
}
 
Example 2
Source File: AdventureSettingsSerializer_v388.java    From Protocol with Apache License 2.0 6 votes vote down vote up
@Override
public void deserialize(ByteBuf buffer, AdventureSettingsPacket packet) {
    int flags1 = VarInts.readUnsignedInt(buffer);
    packet.setCommandPermission(COMMAND_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    int flags2 = VarInts.readUnsignedInt(buffer);
    packet.setPlayerPermission(PLAYER_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    VarInts.readUnsignedInt(buffer); // useless
    packet.setUniqueEntityId(buffer.readLongLE());

    Set<AdventureSettingsPacket.Flag> flags = packet.getFlags();
    for (int i = 0; i < FLAGS_1.length; i++) {
        if ((flags1 & (1 << i)) != 0) {
            flags.add(FLAGS_1[i]);
        }
    }

    for (int i = 0; i < FLAGS_2.length; i++) {
        if ((flags2 & (1 << i)) != 0) {
            flags.add(FLAGS_2[i]);
        }
    }
}
 
Example 3
Source File: AdventureSettingsSerializer_v340.java    From Protocol with Apache License 2.0 6 votes vote down vote up
@Override
public void deserialize(ByteBuf buffer, AdventureSettingsPacket packet) {
    int flags1 = VarInts.readUnsignedInt(buffer);
    packet.setCommandPermission(COMMAND_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    int flags2 = VarInts.readUnsignedInt(buffer);
    packet.setPlayerPermission(PLAYER_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    VarInts.readUnsignedInt(buffer); // useless
    packet.setUniqueEntityId(buffer.readLongLE());

    Set<AdventureSettingsPacket.Flag> flags = packet.getFlags();
    for (int i = 0; i < FLAGS_1.length; i++) {
        if ((flags1 & (1 << i)) != 0) {
            flags.add(FLAGS_1[i]);
        }
    }

    for (int i = 0; i < FLAGS_2.length; i++) {
        if ((flags2 & (1 << i)) != 0) {
            flags.add(FLAGS_2[i]);
        }
    }
}
 
Example 4
Source File: AdventureSettingsSerializer_v313.java    From Protocol with Apache License 2.0 6 votes vote down vote up
@Override
public void deserialize(ByteBuf buffer, AdventureSettingsPacket packet) {
    int flags1 = VarInts.readUnsignedInt(buffer);
    packet.setCommandPermission(COMMAND_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    int flags2 = VarInts.readUnsignedInt(buffer);
    packet.setPlayerPermission(PLAYER_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    VarInts.readUnsignedInt(buffer); // useless
    packet.setUniqueEntityId(buffer.readLongLE());

    Set<AdventureSettingsPacket.Flag> flags = packet.getFlags();
    for (int i = 0; i < FLAGS_1.length; i++) {
        if ((flags1 & (1 << i)) != 0) {
            flags.add(FLAGS_1[i]);
        }
    }

    for (int i = 0; i < FLAGS_2.length; i++) {
        if ((flags2 & (1 << i)) != 0) {
            flags.add(FLAGS_2[i]);
        }
    }
}
 
Example 5
Source File: AdventureSettingsSerializer_v361.java    From Protocol with Apache License 2.0 6 votes vote down vote up
@Override
public void deserialize(ByteBuf buffer, AdventureSettingsPacket packet) {
    int flags1 = VarInts.readUnsignedInt(buffer);
    packet.setCommandPermission(COMMAND_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    int flags2 = VarInts.readUnsignedInt(buffer);
    packet.setPlayerPermission(PLAYER_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    VarInts.readUnsignedInt(buffer); // useless
    packet.setUniqueEntityId(buffer.readLongLE());

    Set<AdventureSettingsPacket.Flag> flags = packet.getFlags();
    for (int i = 0; i < FLAGS_1.length; i++) {
        if ((flags1 & (1 << i)) != 0) {
            flags.add(FLAGS_1[i]);
        }
    }

    for (int i = 0; i < FLAGS_2.length; i++) {
        if ((flags2 & (1 << i)) != 0) {
            flags.add(FLAGS_2[i]);
        }
    }
}
 
Example 6
Source File: AdventureSettingsSerializer_v332.java    From Protocol with Apache License 2.0 6 votes vote down vote up
@Override
public void deserialize(ByteBuf buffer, AdventureSettingsPacket packet) {
    int flags1 = VarInts.readUnsignedInt(buffer);
    packet.setCommandPermission(COMMAND_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    int flags2 = VarInts.readUnsignedInt(buffer);
    packet.setPlayerPermission(PLAYER_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    VarInts.readUnsignedInt(buffer); // useless
    packet.setUniqueEntityId(buffer.readLongLE());

    Set<AdventureSettingsPacket.Flag> flags = packet.getFlags();
    for (int i = 0; i < FLAGS_1.length; i++) {
        if ((flags1 & (1 << i)) != 0) {
            flags.add(FLAGS_1[i]);
        }
    }

    for (int i = 0; i < FLAGS_2.length; i++) {
        if ((flags2 & (1 << i)) != 0) {
            flags.add(FLAGS_2[i]);
        }
    }
}
 
Example 7
Source File: AdventureSettingsSerializer_v291.java    From Protocol with Apache License 2.0 6 votes vote down vote up
@Override
public void deserialize(ByteBuf buffer, AdventureSettingsPacket packet) {
    int flags1 = VarInts.readUnsignedInt(buffer);
    packet.setCommandPermission(COMMAND_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    int flags2 = VarInts.readUnsignedInt(buffer);
    packet.setPlayerPermission(PLAYER_PERMISSIONS[VarInts.readUnsignedInt(buffer)]);
    VarInts.readUnsignedInt(buffer); // useless
    packet.setUniqueEntityId(buffer.readLongLE());

    Set<AdventureSettingsPacket.Flag> flags = packet.getFlags();
    for (int i = 0; i < FLAGS_1.length; i++) {
        if ((flags1 & (1 << i)) != 0) {
            flags.add(FLAGS_1[i]);
        }
    }

    for (int i = 0; i < FLAGS_2.length; i++) {
        if ((flags2 & (1 << i)) != 0) {
            flags.add(FLAGS_2[i]);
        }
    }
}
 
Example 8
Source File: JavaPlayerAbilitiesTranslator.java    From Geyser with MIT License 5 votes vote down vote up
@Override
public void translate(ServerPlayerAbilitiesPacket packet, GeyserSession session) {
    Entity entity = session.getPlayerEntity();
    if (entity == null)
        return;

    EntityDataMap metadata = entity.getMetadata();
    metadata.getFlags().setFlag(EntityFlag.CAN_FLY, packet.isCanFly());

    SetEntityDataPacket entityDataPacket = new SetEntityDataPacket();
    entityDataPacket.setRuntimeEntityId(entity.getGeyserId());
    entityDataPacket.getMetadata().putAll(metadata);
    session.sendUpstreamPacket(entityDataPacket);

    Set<AdventureSettingsPacket.Flag> playerFlags = new ObjectOpenHashSet<>();
    playerFlags.add(AdventureSettingsPacket.Flag.AUTO_JUMP);
    if (packet.isCanFly())
        playerFlags.add(AdventureSettingsPacket.Flag.MAY_FLY);

    if (packet.isFlying())
        playerFlags.add(AdventureSettingsPacket.Flag.FLYING);

    AdventureSettingsPacket adventureSettingsPacket = new AdventureSettingsPacket();
    adventureSettingsPacket.setPlayerPermission(PlayerPermission.MEMBER);
    // Required or the packet simply is not sent
    adventureSettingsPacket.setCommandPermission(CommandPermission.NORMAL);
    adventureSettingsPacket.setUniqueEntityId(entity.getGeyserId());
    adventureSettingsPacket.getFlags().addAll(playerFlags);
    session.sendUpstreamPacket(adventureSettingsPacket);
}