Geyser/connector/src/main/java/org/geysermc/connector/network/session/GeyserSession.java

351 lines
14 KiB
Java
Raw Normal View History

/*
2019-07-11 21:30:35 +00:00
* Copyright (c) 2019 GeyserMC. http://geysermc.org
*
2019-07-11 21:30:35 +00:00
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
2019-07-11 21:30:35 +00:00
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @author GeyserMC
* @link https://github.com/GeyserMC/Geyser
*/
package org.geysermc.connector.network.session;
import com.github.steveice10.mc.auth.data.GameProfile;
2019-07-24 06:29:54 +00:00
import com.github.steveice10.mc.auth.exception.request.RequestException;
import com.github.steveice10.mc.protocol.MinecraftProtocol;
2019-10-27 09:56:47 +00:00
import com.github.steveice10.mc.protocol.data.game.entity.player.GameMode;
import com.github.steveice10.packetlib.Client;
import com.github.steveice10.packetlib.event.session.ConnectedEvent;
import com.github.steveice10.packetlib.event.session.DisconnectedEvent;
import com.github.steveice10.packetlib.event.session.PacketReceivedEvent;
import com.github.steveice10.packetlib.event.session.SessionAdapter;
2019-08-06 02:09:45 +00:00
import com.github.steveice10.packetlib.packet.Packet;
import com.github.steveice10.packetlib.tcp.TcpSessionFactory;
import com.nukkitx.math.vector.Vector2f;
import com.nukkitx.math.vector.Vector2i;
import com.nukkitx.math.vector.Vector3f;
import com.nukkitx.math.vector.Vector3i;
2019-11-14 02:26:45 +00:00
import com.nukkitx.nbt.tag.CompoundTag;
import com.nukkitx.protocol.bedrock.BedrockServerSession;
import com.nukkitx.protocol.bedrock.data.ContainerId;
2019-07-24 06:29:54 +00:00
import com.nukkitx.protocol.bedrock.data.GamePublishSetting;
import com.nukkitx.protocol.bedrock.data.GameRule;
2019-11-10 22:53:01 +00:00
import com.nukkitx.protocol.bedrock.packet.AvailableEntityIdentifiersPacket;
import com.nukkitx.protocol.bedrock.packet.BiomeDefinitionListPacket;
2019-11-06 00:55:59 +00:00
import com.nukkitx.protocol.bedrock.packet.LevelChunkPacket;
2019-11-10 22:53:01 +00:00
import com.nukkitx.protocol.bedrock.packet.NetworkChunkPublisherUpdatePacket;
import com.nukkitx.protocol.bedrock.packet.InventoryContentPacket;
2019-07-24 06:29:54 +00:00
import com.nukkitx.protocol.bedrock.packet.PlayStatusPacket;
import com.nukkitx.protocol.bedrock.packet.StartGamePacket;
import com.nukkitx.protocol.bedrock.packet.TextPacket;
import lombok.Getter;
2019-08-06 02:09:45 +00:00
import lombok.Setter;
2019-07-23 23:16:25 +00:00
import org.geysermc.api.Player;
import org.geysermc.api.RemoteServer;
import org.geysermc.api.session.AuthData;
import org.geysermc.api.window.FormWindow;
import org.geysermc.connector.GeyserConnector;
2019-08-06 02:09:45 +00:00
import org.geysermc.connector.entity.PlayerEntity;
import org.geysermc.connector.inventory.PlayerInventory;
2019-09-13 10:49:18 +00:00
import org.geysermc.connector.network.session.cache.*;
2019-07-11 22:39:28 +00:00
import org.geysermc.connector.network.translators.Registry;
2019-11-06 00:55:59 +00:00
import org.geysermc.connector.network.translators.TranslatorsInit;
2019-07-24 06:29:54 +00:00
import org.geysermc.connector.utils.Toolbox;
import java.net.InetSocketAddress;
2019-08-06 02:09:45 +00:00
import java.util.UUID;
@Getter
public class GeyserSession implements Player {
private final GeyserConnector connector;
private final UpstreamSession upstream;
2019-07-23 23:16:25 +00:00
private RemoteServer remoteServer;
private Client downstream;
2019-07-23 23:16:25 +00:00
private AuthData authenticationData;
2019-08-06 02:09:45 +00:00
private PlayerEntity playerEntity;
private PlayerInventory inventory;
private ChunkCache chunkCache;
2019-08-06 02:09:45 +00:00
private EntityCache entityCache;
private InventoryCache inventoryCache;
2019-07-30 02:57:43 +00:00
private ScoreboardCache scoreboardCache;
private WindowCache windowCache;
2019-07-30 02:57:43 +00:00
2019-08-06 02:09:45 +00:00
private DataCache<Packet> javaPacketCache;
2019-09-13 10:49:18 +00:00
@Setter
private Vector2i lastChunkPosition = null;
@Setter
private int renderDistance;
2019-09-13 10:49:18 +00:00
2019-07-24 06:29:54 +00:00
private boolean loggedIn;
private boolean loggingIn;
2019-07-24 06:29:54 +00:00
2019-08-06 02:09:45 +00:00
@Setter
private boolean spawned;
private boolean closed;
@Setter
2019-10-27 09:56:47 +00:00
private GameMode gameMode = GameMode.SURVIVAL;
@Getter
@Setter
private int lastClickedSlot;
@Getter
@Setter
private int reopeningWindow = -1;
public GeyserSession(GeyserConnector connector, BedrockServerSession bedrockServerSession) {
this.connector = connector;
this.upstream = new UpstreamSession(bedrockServerSession);
2019-07-23 23:16:25 +00:00
this.chunkCache = new ChunkCache(this);
2019-08-06 02:09:45 +00:00
this.entityCache = new EntityCache(this);
this.inventoryCache = new InventoryCache(this);
2019-07-30 02:57:43 +00:00
this.scoreboardCache = new ScoreboardCache(this);
this.windowCache = new WindowCache(this);
2019-07-30 02:57:43 +00:00
this.playerEntity = new PlayerEntity(new GameProfile(UUID.randomUUID(), "unknown"), 1, 1, Vector3f.ZERO, Vector3f.ZERO, Vector3f.ZERO);
2019-08-06 02:09:45 +00:00
this.inventory = new PlayerInventory();
this.javaPacketCache = new DataCache<>();
2019-08-06 02:09:45 +00:00
this.spawned = false;
2019-07-24 06:29:54 +00:00
this.loggedIn = false;
2019-08-06 02:09:45 +00:00
this.inventoryCache.getInventories().put(0, inventory);
}
2019-07-23 23:16:25 +00:00
public void connect(RemoteServer remoteServer) {
2019-07-24 06:29:54 +00:00
startGame();
this.remoteServer = remoteServer;
if (!(connector.getConfig().getRemote().getAuthType().hashCode() == "online".hashCode())) {
2019-07-24 06:29:54 +00:00
connector.getLogger().info("Attempting to login using offline mode... authentication is disabled.");
authenticate(authenticationData.getName());
}
2019-11-06 00:55:59 +00:00
Vector3f pos = Vector3f.ZERO;
int chunkX = pos.getFloorX() >> 4;
int chunkZ = pos.getFloorZ() >> 4;
2019-11-16 04:21:26 +00:00
NetworkChunkPublisherUpdatePacket chunkPublisherUpdatePacket = new NetworkChunkPublisherUpdatePacket();
chunkPublisherUpdatePacket.setPosition(pos.toInt());
chunkPublisherUpdatePacket.setRadius(renderDistance << 4);
upstream.sendPacket(chunkPublisherUpdatePacket);
LevelChunkPacket data = new LevelChunkPacket();
data.setChunkX(chunkX);
data.setChunkZ(chunkZ);
data.setSubChunksLength(0);
data.setData(TranslatorsInit.EMPTY_LEVEL_CHUNK_DATA);
upstream.sendPacket(data);
2019-11-06 00:55:59 +00:00
2019-11-14 02:26:45 +00:00
BiomeDefinitionListPacket biomePacket = new BiomeDefinitionListPacket();
biomePacket.setTag(CompoundTag.EMPTY);
upstream.sendPacket(biomePacket);
2019-11-16 04:21:26 +00:00
2019-11-14 02:26:45 +00:00
AvailableEntityIdentifiersPacket entityPacket = new AvailableEntityIdentifiersPacket();
entityPacket.setTag(CompoundTag.EMPTY);
upstream.sendPacket(entityPacket);
2019-11-10 22:53:01 +00:00
InventoryContentPacket creativePacket = new InventoryContentPacket();
creativePacket.setContainerId(ContainerId.CREATIVE);
creativePacket.setContents(Toolbox.CREATIVE_ITEMS);
upstream.sendPacket(creativePacket);
2019-11-06 00:55:59 +00:00
PlayStatusPacket playStatusPacket = new PlayStatusPacket();
playStatusPacket.setStatus(PlayStatusPacket.Status.PLAYER_SPAWN);
upstream.sendPacket(playStatusPacket);
2019-07-24 06:29:54 +00:00
}
2019-07-24 06:29:54 +00:00
public void authenticate(String username) {
authenticate(username, "");
}
public void authenticate(String username, String password) {
if (loggedIn) {
connector.getLogger().severe(username + " is already logged in!");
return;
}
loggedIn = true;
// new thread so clients don't timeout
new Thread(() -> {
try {
MinecraftProtocol protocol;
if (password != null && !password.isEmpty()) {
protocol = new MinecraftProtocol(username, password);
} else {
protocol = new MinecraftProtocol(username);
2019-07-24 06:29:54 +00:00
}
downstream = new Client(remoteServer.getAddress(), remoteServer.getPort(), protocol, new TcpSessionFactory());
downstream.getSession().addListener(new SessionAdapter() {
@Override
public void connected(ConnectedEvent event) {
loggingIn = false;
loggedIn = true;
connector.getLogger().info(authenticationData.getName() + " (logged in as: " + protocol.getProfile().getName() + ")" + " has connected to remote java server on address " + remoteServer.getAddress());
playerEntity.setUuid(protocol.getProfile().getId());
playerEntity.setUsername(protocol.getProfile().getName());
}
@Override
public void disconnected(DisconnectedEvent event) {
loggingIn = false;
loggedIn = false;
connector.getLogger().info(authenticationData.getName() + " has disconnected from remote java server on address " + remoteServer.getAddress() + " because of " + event.getReason());
upstream.disconnect(event.getReason());
}
@Override
public void packetReceived(PacketReceivedEvent event) {
if (!closed) {
Registry.JAVA.translate(event.getPacket().getClass(), event.getPacket(), GeyserSession.this);
}
}
});
downstream.getSession().connect();
connector.addPlayer(this);
} catch (RequestException ex) {
ex.printStackTrace();
}
}).start();
}
public void disconnect(String reason) {
if (!closed) {
2019-07-24 06:29:54 +00:00
loggedIn = false;
2019-08-02 20:54:40 +00:00
if (downstream != null && downstream.getSession() != null) {
downstream.getSession().disconnect(reason);
}
if (upstream != null && !upstream.isClosed()) {
2019-08-02 20:54:40 +00:00
upstream.disconnect(reason);
}
}
2019-08-06 02:09:45 +00:00
closed = true;
}
public boolean isClosed() {
return closed;
}
public void close() {
disconnect("Server closed.");
}
2019-07-23 23:16:25 +00:00
public void setAuthenticationData(AuthData authData) {
authenticationData = authData;
}
@Override
public String getName() {
return authenticationData.getName();
}
@Override
public void sendMessage(String message) {
TextPacket textPacket = new TextPacket();
textPacket.setPlatformChatId("");
textPacket.setSourceName("");
textPacket.setXuid("");
textPacket.setType(TextPacket.Type.CHAT);
textPacket.setNeedsTranslation(false);
textPacket.setMessage(message);
upstream.sendPacket(textPacket);
}
@Override
public void sendMessage(String[] messages) {
for (String message : messages) {
sendMessage(message);
}
}
2019-07-23 23:16:25 +00:00
public void sendForm(FormWindow window, int id) {
windowCache.showWindow(window, id);
}
@Override
public InetSocketAddress getSocketAddress() {
return this.upstream.getAddress();
}
2019-07-23 23:16:25 +00:00
public void sendForm(FormWindow window) {
windowCache.showWindow(window);
}
2019-07-24 06:29:54 +00:00
private void startGame() {
StartGamePacket startGamePacket = new StartGamePacket();
2019-08-06 02:09:45 +00:00
startGamePacket.setUniqueEntityId(playerEntity.getGeyserId());
startGamePacket.setRuntimeEntityId(playerEntity.getGeyserId());
2019-07-24 06:29:54 +00:00
startGamePacket.setPlayerGamemode(0);
startGamePacket.setPlayerPosition(Vector3f.from(0, 69, 0));
startGamePacket.setRotation(Vector2f.from(1, 1));
2019-07-24 06:29:54 +00:00
2019-11-10 22:53:01 +00:00
startGamePacket.setSeed(-1);
2019-08-06 02:09:45 +00:00
startGamePacket.setDimensionId(playerEntity.getDimension());
startGamePacket.setGeneratorId(1);
2019-07-24 06:29:54 +00:00
startGamePacket.setLevelGamemode(0);
startGamePacket.setDifficulty(1);
startGamePacket.setDefaultSpawn(Vector3i.ZERO);
2019-07-24 06:29:54 +00:00
startGamePacket.setAcheivementsDisabled(true);
2019-11-10 22:53:01 +00:00
startGamePacket.setTime(-1);
startGamePacket.setEduEditionOffers(0);
2019-07-24 06:29:54 +00:00
startGamePacket.setEduFeaturesEnabled(false);
startGamePacket.setRainLevel(0);
startGamePacket.setLightningLevel(0);
startGamePacket.setMultiplayerGame(true);
startGamePacket.setBroadcastingToLan(true);
startGamePacket.getGamerules().add(new GameRule<>("showcoordinates", true));
startGamePacket.setPlatformBroadcastMode(GamePublishSetting.PUBLIC);
startGamePacket.setXblBroadcastMode(GamePublishSetting.PUBLIC);
startGamePacket.setCommandsEnabled(true);
startGamePacket.setTexturePacksRequired(false);
startGamePacket.setBonusChestEnabled(false);
startGamePacket.setStartingWithMap(false);
startGamePacket.setTrustingPlayers(true);
startGamePacket.setDefaultPlayerPermission(1);
startGamePacket.setServerChunkTickRange(4);
startGamePacket.setBehaviorPackLocked(false);
startGamePacket.setResourcePackLocked(false);
startGamePacket.setFromLockedWorldTemplate(false);
startGamePacket.setUsingMsaGamertagsOnly(false);
startGamePacket.setFromWorldTemplate(false);
startGamePacket.setWorldTemplateOptionLocked(false);
2019-08-06 02:09:45 +00:00
startGamePacket.setLevelId("world");
2019-07-24 06:29:54 +00:00
startGamePacket.setWorldName("world");
startGamePacket.setPremiumWorldTemplateId("00000000-0000-0000-0000-000000000000");
2019-11-10 22:53:01 +00:00
// startGamePacket.setCurrentTick(0);
2019-07-24 06:29:54 +00:00
startGamePacket.setEnchantmentSeed(0);
startGamePacket.setMultiplayerCorrelationId("");
2019-11-02 20:50:04 +00:00
startGamePacket.setBlockPalette(Toolbox.BLOCKS);
2019-07-24 06:29:54 +00:00
startGamePacket.setItemEntries(Toolbox.ITEMS);
startGamePacket.setVanillaVersion(GeyserConnector.BEDROCK_PACKET_CODEC.getMinecraftVersion());
2019-11-10 22:53:01 +00:00
// startGamePacket.setMovementServerAuthoritative(true);
2019-07-24 06:29:54 +00:00
upstream.sendPacket(startGamePacket);
}
}