Search in sources :

Example 16 with BlockPosition

use of org.dragonet.common.maths.BlockPosition in project DragonProxy by DragonetMC.

the class ChunkCache method translateBlock.

public final ItemEntry translateBlock(Position position) {
    ChunkPos columnPos = new ChunkPos(position.getX() >> 4, position.getZ() >> 4);
    if (chunkCache.containsKey(columnPos))
        try {
            Column column = chunkCache.get(columnPos);
            BlockPosition blockPos = columnPos.getBlockInChunk(position.getX(), position.getY(), position.getZ());
            Chunk chunk = column.getChunks()[position.getY() >> 4];
            if (chunk != null) {
                BlockState block = chunk.getBlocks().get(blockPos.x, blockPos.y, blockPos.z);
                return ItemBlockTranslator.translateToPE(block.getId(), block.getData());
            }
        } catch (java.lang.ArrayIndexOutOfBoundsException ex) {
            this.session.getProxy().getLogger().info("getBlock(" + position.toString() + ")) fail to get chunk " + (position.getX() >> 4) + "/" + (position.getY() >> 4) + "/" + (position.getZ() >> 4));
            ex.printStackTrace();
        }
    return null;
}
Also used : BlockState(com.github.steveice10.mc.protocol.data.game.world.block.BlockState) Column(com.github.steveice10.mc.protocol.data.game.chunk.Column) BlockPosition(org.dragonet.common.maths.BlockPosition) ChunkPos(org.dragonet.common.maths.ChunkPos) Chunk(com.github.steveice10.mc.protocol.data.game.chunk.Chunk)

Example 17 with BlockPosition

use of org.dragonet.common.maths.BlockPosition in project DragonProxy by DragonetMC.

the class PCExplosionTranslator method translate.

@Override
public PEPacket[] translate(UpstreamSession session, ServerExplosionPacket packet) {
    ExplodePacket pk = new ExplodePacket();
    pk.position = new Vector3F(packet.getX(), packet.getY(), packet.getZ());
    pk.radius = packet.getRadius();
    pk.destroyedBlocks = new ArrayList<>(packet.getExploded().size());
    for (ExplodedBlockRecord record : packet.getExploded()) pk.destroyedBlocks.add(new BlockPosition(record.getX(), record.getY(), record.getZ()));
    return new PEPacket[] { pk };
}
Also used : ExplodedBlockRecord(com.github.steveice10.mc.protocol.data.game.world.block.ExplodedBlockRecord) Vector3F(org.dragonet.common.maths.Vector3F) BlockPosition(org.dragonet.common.maths.BlockPosition) PEPacket(org.dragonet.protocol.PEPacket) ExplodePacket(org.dragonet.protocol.packets.ExplodePacket)

Example 18 with BlockPosition

use of org.dragonet.common.maths.BlockPosition in project DragonProxy by DragonetMC.

the class UpstreamSession method sendFakeBlock.

public void sendFakeBlock(int x, int y, int z, int id, int meta) {
    UpdateBlockPacket pkBlock = new UpdateBlockPacket();
    pkBlock.id = id;
    pkBlock.data = meta;
    pkBlock.flags = UpdateBlockPacket.FLAG_NEIGHBORS;
    pkBlock.blockPosition = new BlockPosition(x, y, z);
    sendPacket(pkBlock);
}
Also used : BlockPosition(org.dragonet.common.maths.BlockPosition) UpdateBlockPacket(org.dragonet.protocol.packets.UpdateBlockPacket)

Example 19 with BlockPosition

use of org.dragonet.common.maths.BlockPosition in project DragonProxy by DragonetMC.

the class UpstreamSession method postLogin.

public void postLogin() {
    sendPacket(new ResourcePackStackPacket(), true);
    loggedIn = true;
    proxy.getLogger().info(proxy.getLang().get(Lang.MESSAGE_CLIENT_CONNECTED, username, remoteAddress));
    PlayerAuthenticationEvent authEvent = new PlayerAuthenticationEvent(this);
    proxy.getEventManager().callEvent(authEvent);
    if (authEvent.isCancelled​())
        return;
    if (proxy.getAuthMode().equals("online")) {
        proxy.getLogger().debug("Login online mode, sending placeholder datas");
        StartGamePacket pkStartGame = new StartGamePacket();
        // well we use 1 now
        pkStartGame.eid = getEntityCache().getClientEntity().proxyEid;
        pkStartGame.rtid = getEntityCache().getClientEntity().proxyEid;
        pkStartGame.dimension = 0;
        pkStartGame.seed = 0;
        pkStartGame.generator = 1;
        pkStartGame.difficulty = Difficulty.PEACEFUL;
        pkStartGame.spawnPosition = new BlockPosition(0, 72, 0);
        pkStartGame.position = new Vector3F(0f, 72f + EntityType.PLAYER.getOffset(), 0f);
        pkStartGame.levelId = "";
        pkStartGame.worldName = "World";
        pkStartGame.defaultPlayerPermission = 2;
        pkStartGame.commandsEnabled = true;
        pkStartGame.premiumWorldTemplateId = "";
        sendPacket(pkStartGame, true);
        SetSpawnPositionPacket pkSpawn = new SetSpawnPositionPacket();
        pkSpawn.position = new BlockPosition(0, 72, 0);
        sendPacket(pkSpawn, true);
        ChunkData data = new ChunkData();
        data.sections = new Section[16];
        for (int cy = 0; cy < 16; cy++) {
            data.sections[cy] = new Section();
            if (cy < 6)
                Arrays.fill(data.sections[cy].blockIds, (byte) 1);
        }
        data.encode();
        sendPacket(new FullChunkDataPacket(0, 0, data.getBuffer()), true);
        sendPacket(new FullChunkDataPacket(0, -1, data.getBuffer()), true);
        sendPacket(new FullChunkDataPacket(-1, 0, data.getBuffer()), true);
        sendPacket(new FullChunkDataPacket(-1, -1, data.getBuffer()), true);
        dataCache.put(CacheKey.AUTHENTICATION_STATE, "online_login_wait");
        PlayStatusPacket pkStat = new PlayStatusPacket();
        pkStat.status = PlayStatusPacket.PLAYER_SPAWN;
        sendPacket(pkStat, true);
        sendChat(proxy.getLang().get(Lang.MESSAGE_LOGIN_PROMPT));
    } else if (proxy.getAuthMode().equals("cls")) {
        // CLS LOGIN!
        if (!CLSAuthenticationService.getInstance().authenticate(this)) {
            if (getDataCache().containsKey("cls_link_server") && getDataCache().containsKey("cls_link_pin")) {
                disconnect("You must link your Mojang account, please visit :\n" + (String) getDataCache().get("cls_link_server") + "\n" + "Your pin code is: " + (String) getDataCache().get("cls_link_pin"));
                return;
            }
            disconnect(proxy.getLang().get(Lang.MESSAGE_SERVER_ERROR, proxy.getLang().get(Lang.ERROR_CLS_UNREACHABLE)));
            proxy.getLogger().severe(proxy.getLang().get(Lang.MESSAGE_SERVER_ERROR, proxy.getLang().get(Lang.ERROR_CLS_UNREACHABLE)).replace("§c", "").replace("§0", ""));
            return;
        }
        AuthenticationService authSvc = new AuthenticationService((String) dataCache.get("mojang_clientToken"));
        authSvc.setUsername((String) dataCache.get("mojang_displayName"));
        authSvc.setAccessToken((String) dataCache.get("mojang_accessToken"));
        try {
            authSvc.login();
            getDataCache().put("mojang_accessToken", authSvc.getAccessToken());
        } catch (RequestException ex) {
            ex.printStackTrace();
            disconnect(proxy.getLang().get(Lang.MESSAGE_SERVER_ERROR, proxy.getLang().get(Lang.ERROR_CLS_ERROR)));
            return;
        }
        username = authSvc.getSelectedProfile().getName();
        CLSAuthenticationService.getInstance().refresh(this, authSvc.getAccessToken());
        protocol = new MinecraftProtocol(authSvc.getSelectedProfile(), authSvc.getAccessToken());
        proxy.getLogger().debug("Initially joining [" + proxy.getConfig().remote_server_addr + "]... ");
        connectToServer(proxy.getConfig().remote_server_addr, proxy.getConfig().remote_server_port);
    } else {
        protocol = new MinecraftProtocol(username);
        proxy.getLogger().debug("Initially joining [" + proxy.getConfig().remote_server_addr + "]... ");
        connectToServer(proxy.getConfig().remote_server_addr, proxy.getConfig().remote_server_port);
    }
}
Also used : ChunkData(org.dragonet.protocol.type.chunk.ChunkData) PlayStatusPacket(org.dragonet.protocol.packets.PlayStatusPacket) BlockPosition(org.dragonet.common.maths.BlockPosition) MinecraftProtocol(com.github.steveice10.mc.protocol.MinecraftProtocol) StartGamePacket(org.dragonet.protocol.packets.StartGamePacket) Section(org.dragonet.protocol.type.chunk.Section) RequestException(com.github.steveice10.mc.auth.exception.request.RequestException) SetSpawnPositionPacket(org.dragonet.protocol.packets.SetSpawnPositionPacket) Vector3F(org.dragonet.common.maths.Vector3F) FullChunkDataPacket(org.dragonet.protocol.packets.FullChunkDataPacket) PlayerAuthenticationEvent(org.dragonet.proxy.events.defaults.player.PlayerAuthenticationEvent) ResourcePackStackPacket(org.dragonet.protocol.packets.ResourcePackStackPacket) AuthenticationService(com.github.steveice10.mc.auth.service.AuthenticationService) CLSAuthenticationService(org.dragonet.proxy.utilities.CLSAuthenticationService)

Example 20 with BlockPosition

use of org.dragonet.common.maths.BlockPosition in project DragonProxy by DragonetMC.

the class TestCommand method execute.

public void execute(DragonProxy proxy, String[] args) {
    if (args.length == 0) {
        System.out.println("This is a developer's command! ");
        return;
    }
    UpstreamSession player = proxy.getSessionRegister().getAll().values().toArray(new UpstreamSession[1])[0];
    if (args[0].equalsIgnoreCase("status")) {
        PlayStatusPacket s = new PlayStatusPacket();
        s.status = PlayStatusPacket.PLAYER_SPAWN;
        player.sendPacket(s);
    } else if (args[0].equalsIgnoreCase("res")) {
        player.sendPacket(new ResourcePacksInfoPacket());
    } else if (args[0].equalsIgnoreCase("pos")) {
        player.sendChat("pos at: " + player.getEntityCache().getClientEntity().x + ", " + player.getEntityCache().getClientEntity().y + ", " + player.getEntityCache().getClientEntity().z);
    } else if (args[0].equalsIgnoreCase("respawn")) {
        RespawnPacket resp = new RespawnPacket();
        resp.position = new Vector3F(Float.parseFloat(args[1]), Float.parseFloat(args[2]), Float.parseFloat(args[3]));
        player.sendPacket(resp);
    } else if (args[0].equalsIgnoreCase("chunkradius")) {
        player.sendPacket(new ChunkRadiusUpdatedPacket(8));
    } else if (args[0].equalsIgnoreCase("setspawnpos")) {
        SetSpawnPositionPacket packetSetSpawnPosition = new SetSpawnPositionPacket();
        packetSetSpawnPosition.position = new BlockPosition(Integer.parseInt(args[1]), Integer.parseInt(args[2]), Integer.parseInt(args[3]));
        player.sendPacket(packetSetSpawnPosition);
    } else if (args[0].equalsIgnoreCase("motion")) {
        SetEntityMotionPacket mot = new SetEntityMotionPacket();
        mot.rtid = 1L;
        mot.motion = new Vector3F(0f, 0f, 0f);
        player.sendPacket(mot);
    } else if (args[0].equalsIgnoreCase("die")) {
        player.sendPacket(new SetHealthPacket(0));
    } else if (args[0].equalsIgnoreCase("tp")) {
        Vector3F dest = new Vector3F(Float.parseFloat(args[1]), Float.parseFloat(args[2]), Float.parseFloat(args[3]));
        MovePlayerPacket m = new MovePlayerPacket();
        m.rtid = 1L;
        m.mode = (byte) (Integer.parseInt(args[4]) & 0xFF);
        m.position = dest;
        player.sendPacket(m);
        player.sendChat("\u00a7bTeleported to: " + dest.toString());
    } else if (args[0].equalsIgnoreCase("moveentity")) {
        Vector3F dest = new Vector3F(Float.parseFloat(args[1]), Float.parseFloat(args[2]), Float.parseFloat(args[3]));
        MoveEntityPacket m = new MoveEntityPacket();
        m.rtid = 1L;
        m.teleported = args[4].equalsIgnoreCase("true");
        m.position = dest;
        player.sendPacket(m);
        player.sendChat("\u00a7bTeleported to: " + dest.toString());
    } else if (args[0].equalsIgnoreCase("chunk")) {
        /*
             * FullChunkData chunk = new FullChunkData(Integer.parseInt(args[1]),
			 * Integer.parseInt(args[2])); Arrays.fill(chunk.ids, (byte)1);
             */
        ChunkData data = new ChunkData();
        data.sections = new Section[16];
        for (int cy = 0; cy < 16; cy++) {
            data.sections[cy] = new Section();
            Arrays.fill(data.sections[cy].blockIds, (byte) 1);
        }
        FullChunkDataPacket chunk = new FullChunkDataPacket();
        chunk.x = Integer.parseInt(args[1]);
        chunk.z = Integer.parseInt(args[2]);
        data.encode();
        chunk.payload = data.getBuffer();
        player.sendPacket(chunk);
    } else if (args[0].equalsIgnoreCase("form")) {
        testForm(player);
    } else if (args[0].equalsIgnoreCase("sound")) {
        int id = Integer.parseInt(args[1]);
        LevelSoundEventPacket pk = new LevelSoundEventPacket();
        CachedEntity self = player.getEntityCache().getClientEntity();
        pk.position = new Vector3F((float) self.x, (float) self.y, (float) self.z);
        pk.sound = LevelSoundEventPacket.Sound.fromID(id);
        player.sendPacket(pk);
        player.sendChat("\u00a7bSound ID " + pk.sound.soundID + " (" + pk.sound.name() + ") sent");
    } else if (args[0].equalsIgnoreCase("painting")) {
        AddPaintingPacket pk = new AddPaintingPacket();
        pk.rtid = player.getEntityCache().getNextAtomicLong().incrementAndGet();
        pk.eid = pk.rtid;
        pk.pos = new BlockPosition(Integer.parseInt(args[1]), Integer.parseInt(args[2]), Integer.parseInt(args[3]));
        pk.direction = Integer.parseInt(args[4]);
        pk.title = args[5];
        player.sendPacket(pk);
        player.sendChat("\u00a7bPainting " + pk.title + " spawned at " + pk.pos.toString());
    }
}
Also used : ChunkData(org.dragonet.protocol.type.chunk.ChunkData) BlockPosition(org.dragonet.common.maths.BlockPosition) CachedEntity(org.dragonet.proxy.network.cache.CachedEntity) Section(org.dragonet.protocol.type.chunk.Section) Vector3F(org.dragonet.common.maths.Vector3F) UpstreamSession(org.dragonet.proxy.network.UpstreamSession)

Aggregations

BlockPosition (org.dragonet.common.maths.BlockPosition)22 Vector3F (org.dragonet.common.maths.Vector3F)5 CachedEntity (org.dragonet.proxy.network.cache.CachedEntity)5 ChunkPos (org.dragonet.common.maths.ChunkPos)4 PEPacket (org.dragonet.protocol.PEPacket)4 Chunk (com.github.steveice10.mc.protocol.data.game.chunk.Chunk)3 Column (com.github.steveice10.mc.protocol.data.game.chunk.Column)3 ItemEntry (org.dragonet.common.data.itemsblocks.ItemEntry)3 PlayerListEntry (com.github.steveice10.mc.protocol.data.game.PlayerListEntry)2 BlockState (com.github.steveice10.mc.protocol.data.game.world.block.BlockState)2 ArrayList (java.util.ArrayList)2 ByteArrayMeta (org.dragonet.common.data.entity.meta.type.ByteArrayMeta)2 SlotMeta (org.dragonet.common.data.entity.meta.type.SlotMeta)2 UpdateBlockPacket (org.dragonet.protocol.packets.UpdateBlockPacket)2 ChunkData (org.dragonet.protocol.type.chunk.ChunkData)2 Section (org.dragonet.protocol.type.chunk.Section)2 RequestException (com.github.steveice10.mc.auth.exception.request.RequestException)1 AuthenticationService (com.github.steveice10.mc.auth.service.AuthenticationService)1 MinecraftProtocol (com.github.steveice10.mc.protocol.MinecraftProtocol)1 EntityMetadata (com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadata)1