Search in sources :

Example 1 with DragonetPlayer

use of org.dragonet.entity.DragonetPlayer in project Dragonet-Legacy by DragonetMC.

the class PlayerAPI method addPotionEffect.

@JSFunction
public static void addPotionEffect(Object player, int effectID, int duration, int amp, boolean areParticles) {
    if (player instanceof DragonetPlayer) {
    //TODO for MC:PE
    } else {
        PotionEffect effectPC = new PotionEffect(PotionEffectType.getById(effectID), duration, amp, !areParticles);
        Player plr = (Player) player;
        plr.addPotionEffect(effectPC);
    }
}
Also used : DragonetPlayer(org.dragonet.entity.DragonetPlayer) DragonetPlayer(org.dragonet.entity.DragonetPlayer) Player(org.bukkit.entity.Player) PotionEffect(org.bukkit.potion.PotionEffect) JSFunction(org.mozilla.javascript.annotations.JSFunction)

Example 2 with DragonetPlayer

use of org.dragonet.entity.DragonetPlayer in project Dragonet-Legacy by DragonetMC.

the class DragonetSession method setPlayer.

/**
     * Sets the player associated with this session.
     *
     * @param profile The player's profile with name and UUID information.
     * @throws IllegalStateException if there is already a player associated
     * with this session.
     */
@Override
public void setPlayer(PlayerProfile profile) {
    if (this.getPlayer() != null) {
        throw new IllegalStateException("Cannot set player twice");
    }
    // initialize the player
    PlayerDataService.PlayerReader reader = this.getServer().getPlayerDataService().beginReadingData(profile.getUniqueId());
    //this.player = new GlowPlayer(this, profile, reader);
    this.player = new DragonetPlayer(this, profile, reader);
    // login event
    PlayerLoginEvent event = EventFactory.onPlayerLogin(player, this.getHostname());
    if (event.getResult() != PlayerLoginEvent.Result.ALLOWED) {
        disconnect(event.getKickMessage(), true);
        return;
    }
    // Dragonet-Add: or same username
    for (GlowPlayer other : getServer().getOnlinePlayers()) {
        if ((other != player && other.getUniqueId().equals(player.getUniqueId())) || other.getName().equalsIgnoreCase(player.getName())) {
            other.getSession().disconnect("You logged in from another location.", true);
            break;
        }
    }
    player.join(this, reader);
    WindowItemsPacket creativeInv = null;
    //Send the StartGamePacket
    StartGamePacket pkStartGame = new StartGamePacket();
    pkStartGame.seed = 0;
    pkStartGame.generator = 1;
    if (this.player.getGameMode().equals(GameMode.CREATIVE)) {
        pkStartGame.gamemode = 1;
        creativeInv = WindowItemsPacket.CREATIVE_INVENTORY;
    } else if (this.player.getGameMode().equals(GameMode.SURVIVAL) && this.player.getGameMode().equals(GameMode.ADVENTURE)) {
        pkStartGame.gamemode = 0;
    } else {
        creativeInv = new WindowItemsPacket();
        creativeInv.windowID = PEWindowConstantID.PLAYER_CREATIVE;
    }
    pkStartGame.eid = (long) this.player.getEntityId();
    pkStartGame.spawnX = this.player.getWorld().getSpawnLocation().getBlockX();
    pkStartGame.spawnY = this.player.getWorld().getSpawnLocation().getBlockY();
    pkStartGame.spawnZ = this.player.getWorld().getSpawnLocation().getBlockZ();
    pkStartGame.x = (float) this.player.getLocation().getX();
    pkStartGame.y = (float) this.player.getLocation().getY();
    pkStartGame.z = (float) this.player.getLocation().getZ();
    this.send(pkStartGame);
    if (creativeInv != null) {
        this.send(creativeInv);
    }
    //Send crafting recipie list
    sendRecipies();
    //Send Time
    SetTimePacket pkTime = new SetTimePacket((int) (this.getPlayer().getWorld().getTime() & 0xFFFFFFFF), false);
    this.send(pkTime);
    //Send Spawn Position
    SetSpawnPositionPacket pkSpawnPos = new SetSpawnPositionPacket();
    pkSpawnPos.x = this.player.getLocation().getBlockX();
    pkSpawnPos.y = this.player.getLocation().getBlockY();
    pkSpawnPos.z = this.player.getLocation().getBlockZ();
    this.send(pkSpawnPos);
    //Send Health
    SetHealthPacket pkHealth = new SetHealthPacket((int) Math.floor(this.getPlayer().getHealth()));
    this.send(pkHealth);
    //Send Difficulty Packet
    SetDifficultyPacket pkDifficulty = new SetDifficultyPacket();
    pkDifficulty.difficulty = this.getServer().getDifficulty().getValue();
    this.send(pkDifficulty);
    player.getWorld().getRawPlayers().add(player);
    GlowServer.logger.log(Level.INFO, "{0} [{1}] connected from Minecraft PE, UUID: {2}", new Object[] { player.getName(), this.getAddress(), player.getUniqueId() });
    //Preprare chunks
    this.chunkManager.prepareLoginChunks();
    // message and user list
    String message = EventFactory.onPlayerJoin(player).getJoinMessage();
    if (message != null && !message.isEmpty()) {
        this.getServer().broadcastMessage(message);
    }
    // todo: display names are included in the outgoing messages here, but
    // don't show up on the client. A workaround or proper fix is needed.
    Message addMessage = new UserListItemMessage(UserListItemMessage.Action.ADD_PLAYER, player.getUserListEntry());
    List<UserListItemMessage.Entry> entries = new ArrayList<>();
    for (GlowPlayer other : this.getServer().getOnlinePlayers()) {
        if (other != player && other.canSee(player)) {
            other.getSession().send(addMessage);
        }
        if (player.canSee(other)) {
            entries.add(other.getUserListEntry());
        }
    }
    send(new UserListItemMessage(UserListItemMessage.Action.ADD_PLAYER, entries));
    RakNetInterface.sendName();
}
Also used : DragonetPlayer(org.dragonet.entity.DragonetPlayer) Message(com.flowpowered.networking.Message) UserListItemMessage(net.glowstone.net.message.play.game.UserListItemMessage) GlowPlayer(net.glowstone.entity.GlowPlayer) SetHealthPacket(org.dragonet.net.packet.minecraft.SetHealthPacket) UserListItemMessage(net.glowstone.net.message.play.game.UserListItemMessage) WindowItemsPacket(org.dragonet.net.packet.minecraft.WindowItemsPacket) ArrayList(java.util.ArrayList) StartGamePacket(org.dragonet.net.packet.minecraft.StartGamePacket) SetTimePacket(org.dragonet.net.packet.minecraft.SetTimePacket) PlayerDataService(net.glowstone.io.PlayerDataService) SetDifficultyPacket(org.dragonet.net.packet.minecraft.SetDifficultyPacket) SetSpawnPositionPacket(org.dragonet.net.packet.minecraft.SetSpawnPositionPacket) PlayerLoginEvent(org.bukkit.event.player.PlayerLoginEvent)

Example 3 with DragonetPlayer

use of org.dragonet.entity.DragonetPlayer in project Dragonet-Legacy by DragonetMC.

the class MovePlayerPacketTranslator method handleSpecific.

@Override
public Message[] handleSpecific(MovePlayerPacket packet) {
    Location loc = new Location(this.getSession().getPlayer().getWorld(), packet.x, packet.y, packet.z);
    if (!this.getSession().validateMovement(loc)) {
        //Revert
        this.getSession().sendPosition();
        System.out.println("Reverted movement! ");
        return null;
    }
    //Hack ;P
    ((DragonetPlayer) this.getSession().getPlayer()).setLocation(new Location(((DragonetPlayer) this.getSession().getPlayer()).getWorld(), packet.x, packet.y, packet.z, packet.yaw, packet.pitch));
    return new Message[] { new PlayerPositionLookMessage(false, (double) packet.x, (double) packet.y, (double) packet.z, packet.yaw, packet.pitch) };
}
Also used : DragonetPlayer(org.dragonet.entity.DragonetPlayer) PlayerPositionLookMessage(net.glowstone.net.message.play.player.PlayerPositionLookMessage) Message(com.flowpowered.networking.Message) PlayerPositionLookMessage(net.glowstone.net.message.play.player.PlayerPositionLookMessage) Location(org.bukkit.Location)

Aggregations

DragonetPlayer (org.dragonet.entity.DragonetPlayer)3 Message (com.flowpowered.networking.Message)2 ArrayList (java.util.ArrayList)1 GlowPlayer (net.glowstone.entity.GlowPlayer)1 PlayerDataService (net.glowstone.io.PlayerDataService)1 UserListItemMessage (net.glowstone.net.message.play.game.UserListItemMessage)1 PlayerPositionLookMessage (net.glowstone.net.message.play.player.PlayerPositionLookMessage)1 Location (org.bukkit.Location)1 Player (org.bukkit.entity.Player)1 PlayerLoginEvent (org.bukkit.event.player.PlayerLoginEvent)1 PotionEffect (org.bukkit.potion.PotionEffect)1 SetDifficultyPacket (org.dragonet.net.packet.minecraft.SetDifficultyPacket)1 SetHealthPacket (org.dragonet.net.packet.minecraft.SetHealthPacket)1 SetSpawnPositionPacket (org.dragonet.net.packet.minecraft.SetSpawnPositionPacket)1 SetTimePacket (org.dragonet.net.packet.minecraft.SetTimePacket)1 StartGamePacket (org.dragonet.net.packet.minecraft.StartGamePacket)1 WindowItemsPacket (org.dragonet.net.packet.minecraft.WindowItemsPacket)1 JSFunction (org.mozilla.javascript.annotations.JSFunction)1