geforkt von Mirrors/Velocity
Checkstyle-auto
Dieser Commit ist enthalten in:
Ursprung
18e5953976
Commit
6734ef3a08
@ -352,17 +352,18 @@ public class ClientPlaySessionHandler implements MinecraftSessionHandler {
|
||||
boolean doubleSwitch;
|
||||
// This is not ONE if because this will all be null in < 1.16
|
||||
if (player.getProtocolVersion().compareTo(ProtocolVersion.MINECRAFT_1_16) < 0) {
|
||||
if(dimensionRegistry.getWorldNames().size() > 1 && dimensionRegistry.getDimensionRegistry().size() > 1){
|
||||
if (dimensionRegistry.getWorldNames().size() > 1
|
||||
&& dimensionRegistry.getDimensionRegistry().size() > 1) {
|
||||
String tmpDimLevelName = null;
|
||||
for(String s : dimensionRegistry.getWorldNames()){
|
||||
if(!s.equals(dimensionInfo.getDimensionLevelName())){
|
||||
for (String s : dimensionRegistry.getWorldNames()) {
|
||||
if (!s.equals(dimensionInfo.getDimensionLevelName())) {
|
||||
tmpDimLevelName = s;
|
||||
break;
|
||||
}
|
||||
}
|
||||
String tmpDimIdentifier = null;
|
||||
for(String s : dimensionRegistry.getDimensionRegistry().keySet()){
|
||||
if(!s.equals(dimensionInfo.getDimensionIdentifier())){
|
||||
for (String s : dimensionRegistry.getDimensionRegistry().keySet()) {
|
||||
if (!s.equals(dimensionInfo.getDimensionIdentifier())) {
|
||||
tmpDimIdentifier = s;
|
||||
break;
|
||||
}
|
||||
@ -376,7 +377,7 @@ public class ClientPlaySessionHandler implements MinecraftSessionHandler {
|
||||
} else {
|
||||
doubleSwitch = true;
|
||||
}
|
||||
if(doubleSwitch) {
|
||||
if (doubleSwitch) {
|
||||
player.getMinecraftConnection().delayedWrite(
|
||||
new Respawn(tempDim, joinGame.getPartialHashedSeed(), joinGame.getDifficulty(),
|
||||
joinGame.getGamemode(), joinGame.getLevelType(),
|
||||
|
@ -4,37 +4,40 @@ import javax.annotation.Nonnull;
|
||||
|
||||
public class DimensionInfo {
|
||||
|
||||
private final @Nonnull String dimensionIdentifier;
|
||||
private final @Nonnull String dimensionLevelName;
|
||||
private final boolean isFlat;
|
||||
private final boolean isDebugType;
|
||||
private final @Nonnull String dimensionIdentifier;
|
||||
private final @Nonnull String dimensionLevelName;
|
||||
private final boolean isFlat;
|
||||
private final boolean isDebugType;
|
||||
|
||||
public DimensionInfo(@Nonnull String dimensionIdentifier, @Nonnull String dimensionLevelName, boolean isFlat, boolean isDebugType) {
|
||||
if(dimensionIdentifier == null || dimensionIdentifier.isEmpty() || dimensionIdentifier.isBlank()) {
|
||||
throw new IllegalArgumentException("DimensionRegistryName may not be empty or null");
|
||||
}
|
||||
this.dimensionIdentifier = dimensionIdentifier;
|
||||
if(dimensionLevelName == null || dimensionLevelName.isEmpty() || dimensionLevelName.isBlank()) {
|
||||
throw new IllegalArgumentException("DimensionLevelName may not be empty or null");
|
||||
}
|
||||
this.dimensionLevelName = dimensionLevelName;
|
||||
this.isFlat = isFlat;
|
||||
this.isDebugType = isDebugType;
|
||||
public DimensionInfo(@Nonnull String dimensionIdentifier, @Nonnull String dimensionLevelName,
|
||||
boolean isFlat, boolean isDebugType) {
|
||||
if (dimensionIdentifier == null || dimensionIdentifier.isEmpty()
|
||||
|| dimensionIdentifier.isBlank()) {
|
||||
throw new IllegalArgumentException("DimensionRegistryName may not be empty or null");
|
||||
}
|
||||
this.dimensionIdentifier = dimensionIdentifier;
|
||||
if (dimensionLevelName == null || dimensionLevelName.isEmpty()
|
||||
|| dimensionLevelName.isBlank()) {
|
||||
throw new IllegalArgumentException("DimensionLevelName may not be empty or null");
|
||||
}
|
||||
this.dimensionLevelName = dimensionLevelName;
|
||||
this.isFlat = isFlat;
|
||||
this.isDebugType = isDebugType;
|
||||
}
|
||||
|
||||
public boolean isDebugType() {
|
||||
return isDebugType;
|
||||
}
|
||||
public boolean isDebugType() {
|
||||
return isDebugType;
|
||||
}
|
||||
|
||||
public boolean isFlat() {
|
||||
return isFlat;
|
||||
}
|
||||
public boolean isFlat() {
|
||||
return isFlat;
|
||||
}
|
||||
|
||||
public @Nonnull String getDimensionLevelName() {
|
||||
return dimensionLevelName;
|
||||
}
|
||||
public @Nonnull String getDimensionLevelName() {
|
||||
return dimensionLevelName;
|
||||
}
|
||||
|
||||
public @Nonnull String getDimensionIdentifier() {
|
||||
return dimensionIdentifier;
|
||||
}
|
||||
public @Nonnull String getDimensionIdentifier() {
|
||||
return dimensionIdentifier;
|
||||
}
|
||||
}
|
||||
|
@ -1,113 +1,119 @@
|
||||
package com.velocitypowered.proxy.protocol;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.NoSuchElementException;
|
||||
import java.util.Set;
|
||||
import javax.annotation.Nonnull;
|
||||
import net.kyori.nbt.CompoundTag;
|
||||
import net.kyori.nbt.ListTag;
|
||||
import net.kyori.nbt.Tag;
|
||||
import net.kyori.nbt.TagType;
|
||||
|
||||
import javax.annotation.Nonnull;
|
||||
import java.util.*;
|
||||
|
||||
public class DimensionRegistry {
|
||||
|
||||
private final @Nonnull Map<String, String> dimensionRegistry;
|
||||
private final @Nonnull Set<String> worldNames;
|
||||
private final @Nonnull Map<String, String> dimensionRegistry;
|
||||
private final @Nonnull Set<String> worldNames;
|
||||
|
||||
public DimensionRegistry(Map<String, String> dimensionRegistry, Set<String> worldNames) {
|
||||
if(dimensionRegistry == null || dimensionRegistry.isEmpty() || worldNames == null || worldNames.isEmpty()) {
|
||||
throw new IllegalArgumentException("DimensionRegistry requires valid arguments, not null and not empty");
|
||||
}
|
||||
this.dimensionRegistry = dimensionRegistry;
|
||||
this.worldNames = worldNames;
|
||||
public DimensionRegistry(Map<String, String> dimensionRegistry,
|
||||
Set<String> worldNames) {
|
||||
if (dimensionRegistry == null || dimensionRegistry.isEmpty()
|
||||
|| worldNames == null || worldNames.isEmpty()) {
|
||||
throw new IllegalArgumentException(
|
||||
"DimensionRegistry requires valid arguments, not null and not empty");
|
||||
}
|
||||
this.dimensionRegistry = dimensionRegistry;
|
||||
this.worldNames = worldNames;
|
||||
}
|
||||
|
||||
public @Nonnull Map<String, String> getDimensionRegistry() {
|
||||
return dimensionRegistry;
|
||||
public @Nonnull Map<String, String> getDimensionRegistry() {
|
||||
return dimensionRegistry;
|
||||
}
|
||||
|
||||
public @Nonnull Set<String> getWorldNames() {
|
||||
return worldNames;
|
||||
}
|
||||
|
||||
public @Nonnull String getDimensionIdentifier(@Nonnull String dimensionName) {
|
||||
if (dimensionName == null) {
|
||||
throw new IllegalArgumentException("DimensionName cannot be null!");
|
||||
}
|
||||
|
||||
public @Nonnull Set<String> getWorldNames() {
|
||||
return worldNames;
|
||||
if (dimensionName == null || !dimensionRegistry.containsKey(dimensionName)) {
|
||||
throw new NoSuchElementException("DimensionName " + dimensionName
|
||||
+ " doesn't exist in this Registry!");
|
||||
}
|
||||
return dimensionRegistry.get(dimensionName);
|
||||
}
|
||||
|
||||
public @Nonnull String getDimensionIdentifier(@Nonnull String dimensionName) {
|
||||
if (dimensionName == null) {
|
||||
throw new IllegalArgumentException("DimensionName cannot be null!");
|
||||
}
|
||||
if (dimensionName == null || !dimensionRegistry.containsKey(dimensionName)) {
|
||||
throw new NoSuchElementException("DimensionName " + dimensionName + " doesn't exist in this Registry!");
|
||||
}
|
||||
return dimensionRegistry.get(dimensionName);
|
||||
public @Nonnull String getDimensionName(@Nonnull String dimensionIdentifier) {
|
||||
if (dimensionIdentifier == null) {
|
||||
throw new IllegalArgumentException("DimensionIdentifier cannot be null!");
|
||||
}
|
||||
|
||||
public @Nonnull String getDimensionName(@Nonnull String dimensionIdentifier) {
|
||||
if (dimensionIdentifier == null) {
|
||||
throw new IllegalArgumentException("DimensionIdentifier cannot be null!");
|
||||
}
|
||||
for (Map.Entry<String, String> entry : dimensionRegistry.entrySet()){
|
||||
if(entry.getValue().equals(dimensionIdentifier)){
|
||||
return entry.getKey();
|
||||
}
|
||||
}
|
||||
throw new NoSuchElementException("DimensionIdentifier " + dimensionIdentifier + " doesn't exist in this Registry!");
|
||||
for (Map.Entry<String, String> entry : dimensionRegistry.entrySet()) {
|
||||
if (entry.getValue().equals(dimensionIdentifier)) {
|
||||
return entry.getKey();
|
||||
}
|
||||
}
|
||||
throw new NoSuchElementException("DimensionIdentifier " + dimensionIdentifier
|
||||
+ " doesn't exist in this Registry!");
|
||||
}
|
||||
|
||||
public boolean isValidFor(@Nonnull DimensionInfo toValidate) {
|
||||
if(toValidate == null) {
|
||||
throw new IllegalArgumentException("DimensionInfo cannot be null");
|
||||
}
|
||||
try{
|
||||
if (!worldNames.contains(toValidate.getDimensionLevelName())){
|
||||
return false;
|
||||
}
|
||||
getDimensionName(toValidate.getDimensionIdentifier());
|
||||
return true;
|
||||
|
||||
} catch(NoSuchElementException thrown){
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean isValidFor(@Nonnull DimensionInfo toValidate) {
|
||||
if (toValidate == null) {
|
||||
throw new IllegalArgumentException("DimensionInfo cannot be null");
|
||||
}
|
||||
|
||||
public CompoundTag encodeToCompoundTag(){
|
||||
CompoundTag ret = new CompoundTag();
|
||||
ListTag list = new ListTag(TagType.COMPOUND);
|
||||
for(Map.Entry<String, String> entry : dimensionRegistry.entrySet()){
|
||||
CompoundTag item = new CompoundTag();
|
||||
item.putString("key", entry.getKey());
|
||||
item.putString("element", entry.getValue());
|
||||
list.add(item);
|
||||
}
|
||||
ret.put("dimension", list);
|
||||
return ret;
|
||||
try {
|
||||
if (!worldNames.contains(toValidate.getDimensionLevelName())) {
|
||||
return false;
|
||||
}
|
||||
getDimensionName(toValidate.getDimensionIdentifier());
|
||||
return true;
|
||||
} catch (NoSuchElementException thrown) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static Map<String, String> parseToMapping(@Nonnull CompoundTag toParse){
|
||||
if(toParse == null) {
|
||||
throw new IllegalArgumentException("CompoundTag cannot be null");
|
||||
}
|
||||
if(!toParse.contains("dimension", TagType.LIST)){
|
||||
throw new IllegalStateException("CompoundTag does not contain a dimension List");
|
||||
}
|
||||
ListTag dimensions = toParse.getList("dimension");
|
||||
Map<String, String> mappings = new HashMap<String, String>();
|
||||
for(Tag iter : dimensions){
|
||||
if(iter instanceof CompoundTag){
|
||||
throw new IllegalStateException("DimensionList in CompoundTag contains an invalid entry");
|
||||
}
|
||||
CompoundTag mapping = (CompoundTag) iter;
|
||||
String key = mapping.getString("key", null);
|
||||
String element = mapping.getString("element", null);
|
||||
if(element == null || key == null){
|
||||
throw new IllegalStateException("DimensionList in CompoundTag contains an mapping");
|
||||
}
|
||||
if(mappings.containsKey(key) || mappings.containsValue(element)) {
|
||||
throw new IllegalStateException("Dimension mappings may not have identifier/name duplicates");
|
||||
}
|
||||
mappings.put(key, element);
|
||||
}
|
||||
if(mappings.isEmpty()){
|
||||
throw new IllegalStateException("Dimension mapping cannot be empty");
|
||||
}
|
||||
return mappings;
|
||||
public CompoundTag encodeToCompoundTag() {
|
||||
CompoundTag ret = new CompoundTag();
|
||||
ListTag list = new ListTag(TagType.COMPOUND);
|
||||
for (Map.Entry<String, String> entry : dimensionRegistry.entrySet()) {
|
||||
CompoundTag item = new CompoundTag();
|
||||
item.putString("key", entry.getKey());
|
||||
item.putString("element", entry.getValue());
|
||||
list.add(item);
|
||||
}
|
||||
ret.put("dimension", list);
|
||||
return ret;
|
||||
}
|
||||
|
||||
public static Map<String, String> parseToMapping(@Nonnull CompoundTag toParse) {
|
||||
if (toParse == null) {
|
||||
throw new IllegalArgumentException("CompoundTag cannot be null");
|
||||
}
|
||||
if (!toParse.contains("dimension", TagType.LIST)) {
|
||||
throw new IllegalStateException("CompoundTag does not contain a dimension List");
|
||||
}
|
||||
ListTag dimensions = toParse.getList("dimension");
|
||||
Map<String, String> mappings = new HashMap<String, String>();
|
||||
for (Tag iter : dimensions) {
|
||||
if (iter instanceof CompoundTag) {
|
||||
throw new IllegalStateException("DimensionList in CompoundTag contains an invalid entry");
|
||||
}
|
||||
CompoundTag mapping = (CompoundTag) iter;
|
||||
String key = mapping.getString("key", null);
|
||||
String element = mapping.getString("element", null);
|
||||
if (element == null || key == null) {
|
||||
throw new IllegalStateException("DimensionList in CompoundTag contains an mapping");
|
||||
}
|
||||
if (mappings.containsKey(key) || mappings.containsValue(element)) {
|
||||
throw new IllegalStateException(
|
||||
"Dimension mappings may not have identifier/name duplicates");
|
||||
}
|
||||
mappings.put(key, element);
|
||||
}
|
||||
if (mappings.isEmpty()) {
|
||||
throw new IllegalStateException("Dimension mapping cannot be empty");
|
||||
}
|
||||
return mappings;
|
||||
}
|
||||
}
|
||||
|
@ -245,7 +245,7 @@ public enum ProtocolUtils {
|
||||
public static String[] readStringArray(ByteBuf buf) {
|
||||
int length = readVarInt(buf);
|
||||
String[] ret = new String[length];
|
||||
for(int i = 0; i < length; i++) {
|
||||
for (int i = 0; i < length; i++) {
|
||||
ret[i] = readString(buf);
|
||||
}
|
||||
return ret;
|
||||
@ -262,7 +262,7 @@ public enum ProtocolUtils {
|
||||
return;
|
||||
}
|
||||
writeVarInt(buf, stringArray.length);
|
||||
for(int i = 0; i < stringArray.length; i++) {
|
||||
for (int i = 0; i < stringArray.length; i++) {
|
||||
writeString(buf, stringArray[i]);
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren