/* * Copyright (c) 2019-2020 GeyserMC. http://geysermc.org * * 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: * * 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.auth; import com.fasterxml.jackson.annotation.JsonEnumDefaultValue; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Getter; import org.geysermc.floodgate.util.DeviceOS; import java.util.UUID; @JsonIgnoreProperties(ignoreUnknown = true) @Getter public class BedrockClientData { @JsonProperty(value = "GameVersion") private String gameVersion; @JsonProperty(value = "ServerAddress") private String serverAddress; @JsonProperty(value = "ThirdPartyName") private String username; @JsonProperty(value = "LanguageCode") private String languageCode; @JsonProperty(value = "SkinId") private String skinId; @JsonProperty(value = "SkinData") private String skinData; @JsonProperty(value = "SkinImageHeight") private int skinImageHeight; @JsonProperty(value = "SkinImageWidth") private int skinImageWidth; @JsonProperty(value = "CapeId") private String capeId; @JsonProperty(value = "CapeData") private byte[] capeData; @JsonProperty(value = "CapeImageHeight") private int capeImageHeight; @JsonProperty(value = "CapeImageWidth") private int capeImageWidth; @JsonProperty(value = "CapeOnClassicSkin") private boolean capeOnClassicSkin; @JsonProperty(value = "SkinResourcePatch") private String geometryName; @JsonProperty(value = "SkinGeometryData") private String geometryData; @JsonProperty(value = "PersonaSkin") private boolean personaSkin; @JsonProperty(value = "PremiumSkin") private boolean premiumSkin; @JsonProperty(value = "DeviceId") private String deviceId; @JsonProperty(value = "DeviceModel") private String deviceModel; @JsonProperty(value = "DeviceOS") private DeviceOS deviceOS; @JsonProperty(value = "UIProfile") private UIProfile uiProfile; @JsonProperty(value = "GuiScale") private int guiScale; @JsonProperty(value = "CurrentInputMode") private InputMode currentInputMode; @JsonProperty(value = "DefaultInputMode") private InputMode defaultInputMode; @JsonProperty("PlatformOnlineId") private String platformOnlineId; @JsonProperty(value = "PlatformOfflineId") private String platformOfflineId; @JsonProperty(value = "SelfSignedId") private UUID selfSignedId; @JsonProperty(value = "ClientRandomId") private long clientRandomId; @JsonProperty(value = "ArmSize") private String armSize; @JsonProperty(value = "SkinAnimationData") private String skinAnimationData; @JsonProperty(value = "SkinColor") private String skinColor; @JsonProperty(value = "ThirdPartyNameOnly") private boolean thirdPartyNameOnly; public enum UIProfile { @JsonEnumDefaultValue CLASSIC, POCKET } public enum InputMode { @JsonEnumDefaultValue UNKNOWN, KEYBOARD_MOUSE, TOUCH, // I guess Touch? CONTROLLER, VR } }