com.nukkitx.protocol.bedrock.data.PlayerPermission Java Examples
The following examples show how to use
com.nukkitx.protocol.bedrock.data.PlayerPermission.
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: JavaPlayerAbilitiesTranslator.java From Geyser with MIT License | 5 votes |
@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); }
Example #2
Source File: JavaJoinGameTranslator.java From Geyser with MIT License | 5 votes |
@Override public void translate(ServerJoinGamePacket packet, GeyserSession session) { PlayerEntity entity = session.getPlayerEntity(); entity.setEntityId(packet.getEntityId()); AdventureSettingsPacket bedrockPacket = new AdventureSettingsPacket(); bedrockPacket.setUniqueEntityId(session.getPlayerEntity().getGeyserId()); bedrockPacket.setPlayerPermission(PlayerPermission.MEMBER); session.sendUpstreamPacket(bedrockPacket); PlayStatusPacket playStatus = new PlayStatusPacket(); playStatus.setStatus(PlayStatusPacket.Status.LOGIN_SUCCESS); // session.sendPacket(playStatus); SetPlayerGameTypePacket playerGameTypePacket = new SetPlayerGameTypePacket(); playerGameTypePacket.setGamemode(packet.getGameMode().ordinal()); session.sendUpstreamPacket(playerGameTypePacket); session.setGameMode(packet.getGameMode()); SetEntityDataPacket entityDataPacket = new SetEntityDataPacket(); entityDataPacket.setRuntimeEntityId(entity.getGeyserId()); entityDataPacket.getMetadata().putAll(entity.getMetadata()); session.sendUpstreamPacket(entityDataPacket); session.setRenderDistance(packet.getViewDistance()); // We need to send our skin parts to the server otherwise java sees us with no hat, jacket etc String locale = session.getClientData().getLanguageCode(); List<SkinPart> skinParts = Arrays.asList(SkinPart.values()); ClientSettingsPacket clientSettingsPacket = new ClientSettingsPacket(locale, (byte) session.getRenderDistance(), ChatVisibility.FULL, true, skinParts, Hand.MAIN_HAND); session.sendDownstreamPacket(clientSettingsPacket); if (DimensionUtils.javaToBedrock(packet.getDimension()) != entity.getDimension()) { DimensionUtils.switchDimension(session, packet.getDimension()); } }
Example #3
Source File: PipePlayer.java From BedrockConnect with GNU General Public License v3.0 | 4 votes |
public void joinGame() { MovePlayerPacket mp = new MovePlayerPacket(); mp.setRuntimeEntityId(1); mp.setOnGround(false); mp.setMode(MovePlayerPacket.Mode.NORMAL); mp.setRotation(Vector3f.from(0,0,0)); mp.setPosition(Vector3f.from(0,0,0)); session.sendPacket(mp); StartGamePacket startGamePacket = new StartGamePacket(); startGamePacket.setUniqueEntityId(1); startGamePacket.setRuntimeEntityId(1); startGamePacket.setPlayerGamemode(1); startGamePacket.setPlayerPosition(Vector3f.from(0, 0, 0)); startGamePacket.setRotation(Vector2f.from(1, 1)); startGamePacket.setSeed(-1); startGamePacket.setDimensionId(0); startGamePacket.setGeneratorId(1); startGamePacket.setLevelGamemode(1); startGamePacket.setDifficulty(1); startGamePacket.setDefaultSpawn(Vector3i.from(0, 0, 0)); startGamePacket.setAchievementsDisabled(false); startGamePacket.setTime(-1); startGamePacket.setEduFeaturesEnabled(false); startGamePacket.setEduFeaturesEnabled(false); startGamePacket.setRainLevel(0); startGamePacket.setLightningLevel(0); startGamePacket.setPlatformLockedContentConfirmed(false); startGamePacket.setMultiplayerGame(true); startGamePacket.setBroadcastingToLan(true); startGamePacket.getGamerules().add((new GameRuleData<>("showcoordinates", true))); startGamePacket.setPlatformBroadcastMode(GamePublishSetting.PUBLIC); startGamePacket.setXblBroadcastMode(GamePublishSetting.PUBLIC); startGamePacket.setCommandsEnabled(true); startGamePacket.setTexturePacksRequired(false); startGamePacket.setBonusChestEnabled(false); startGamePacket.setStartingWithMap(false); startGamePacket.setTrustingPlayers(false); startGamePacket.setDefaultPlayerPermission(PlayerPermission.MEMBER); startGamePacket.setServerChunkTickRange(4); startGamePacket.setBehaviorPackLocked(false); startGamePacket.setResourcePackLocked(false); startGamePacket.setFromLockedWorldTemplate(false); startGamePacket.setUsingMsaGamertagsOnly(false); startGamePacket.setFromWorldTemplate(false); startGamePacket.setWorldTemplateOptionLocked(false); startGamePacket.setOnlySpawningV1Villagers(false); startGamePacket.setMovementServerAuthoritative(false); startGamePacket.setTrial(false); startGamePacket.setVanillaVersion(Server.codec.getMinecraftVersion()); startGamePacket.setLevelId(""); startGamePacket.setWorldName("world"); startGamePacket.setPremiumWorldTemplateId(""); startGamePacket.setCurrentTick(0); startGamePacket.setEnchantmentSeed(0); startGamePacket.setMultiplayerCorrelationId(""); startGamePacket.setBlockPalette(BedrockConnect.paletteManager.CACHED_PALLETE); session.sendPacket(startGamePacket); spawn(); }