forked from PaperMC/Waterfall
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d12ec74
commit d1b9127
Showing
1 changed file
with
31 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From c99bbab386d19267a2b6b23d9d380006845b9745 Mon Sep 17 00:00:00 2001 | ||
From 21ac4d87d54a63506f190bc9f7e49b6d6595534a Mon Sep 17 00:00:00 2001 | ||
From: Shane Freeder <[email protected]> | ||
Date: Sat, 21 Jul 2018 17:14:39 +0100 | ||
Subject: [PATCH] 1.13 protocol support | ||
|
@@ -73,7 +73,7 @@ index bba6cb2d..b2dc9423 100644 | |
"1.8.x", | ||
"1.9.x", | ||
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/packet/ScoreboardObjective.java b/protocol/src/main/java/net/md_5/bungee/protocol/packet/ScoreboardObjective.java | ||
index 6279d9f3..b0dcf0ac 100644 | ||
index 6279d9f3..f1ad722d 100644 | ||
--- a/protocol/src/main/java/net/md_5/bungee/protocol/packet/ScoreboardObjective.java | ||
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/packet/ScoreboardObjective.java | ||
@@ -1,5 +1,8 @@ | ||
|
@@ -85,54 +85,51 @@ index 6279d9f3..b0dcf0ac 100644 | |
import net.md_5.bungee.protocol.DefinedPacket; | ||
import io.netty.buffer.ByteBuf; | ||
import java.util.Locale; | ||
@@ -28,8 +31,16 @@ public class ScoreboardObjective extends DefinedPacket | ||
@Override | ||
public void read(ByteBuf buf, ProtocolConstants.Direction direction, int protocolVersion) | ||
{ | ||
- name = readString( buf ); | ||
+ | ||
+ if (protocolVersion <= ProtocolConstants.MINECRAFT_1_13) { | ||
+ String jsonName = readString(buf); | ||
+ name = TextComponent.toLegacyText(ComponentSerializer.parse(jsonName)); | ||
+ }else { | ||
+ name = readString( buf ); | ||
+ } | ||
+ | ||
@@ -32,12 +35,16 @@ public class ScoreboardObjective extends DefinedPacket | ||
action = buf.readByte(); | ||
+ | ||
if ( action == 0 || action == 2 ) | ||
{ | ||
value = readString( buf ); | ||
@@ -46,11 +57,18 @@ public class ScoreboardObjective extends DefinedPacket | ||
@Override | ||
public void write(ByteBuf buf, ProtocolConstants.Direction direction, int protocolVersion) | ||
{ | ||
- writeString( name, buf ); | ||
+ // Waterfall start - 1.13 | ||
+ if ( protocolVersion >= ProtocolConstants.MINECRAFT_1_13 ) | ||
+ { | ||
+ String nameJson = ComponentSerializer.toString(TextComponent.fromLegacyText(name)); // Waterfall - 1.13 | ||
+ writeString( nameJson, buf ); | ||
+ } else | ||
+ { | ||
+ writeString( name, buf ); | ||
+ } | ||
- value = readString( buf ); | ||
if ( protocolVersion >= ProtocolConstants.MINECRAFT_1_13 ) | ||
{ | ||
+ // Waterfall start - 1.13 | ||
+ String jsonName = readString(buf); | ||
+ name = TextComponent.toLegacyText(ComponentSerializer.parse(jsonName)); | ||
type = HealthDisplay.values()[readVarInt( buf )]; | ||
} else | ||
{ | ||
+ value = readString(buf); | ||
+ // Waterfall end | ||
type = HealthDisplay.fromString( readString( buf ) ); | ||
} | ||
} | ||
@@ -50,12 +57,16 @@ public class ScoreboardObjective extends DefinedPacket | ||
buf.writeByte( action ); | ||
if ( action == 0 || action == 2 ) | ||
{ | ||
- writeString( value, buf ); | ||
if ( protocolVersion >= ProtocolConstants.MINECRAFT_1_13 ) | ||
{ | ||
+ // Waterfall start - 1.13 | ||
+ String valueJson = ComponentSerializer.toString(TextComponent.fromLegacyText(value)); | ||
+ writeString(valueJson, buf); | ||
writeVarInt( type.ordinal(), buf ); | ||
} else | ||
{ | ||
+ writeString(value, buf); | ||
+ // Waterfall end | ||
writeString( type.toString(), buf ); | ||
} | ||
} | ||
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/packet/Team.java b/protocol/src/main/java/net/md_5/bungee/protocol/packet/Team.java | ||
index f93508d9..bb4f699b 100644 | ||
index f93508d9..19d0d2d9 100644 | ||
--- a/protocol/src/main/java/net/md_5/bungee/protocol/packet/Team.java | ||
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/packet/Team.java | ||
@@ -1,5 +1,7 @@ | ||
package net.md_5.bungee.protocol.packet; | ||
|
||
+import net.md_5.bungee.api.chat.TextComponent; | ||
+import net.md_5.bungee.chat.ComponentSerializer; | ||
+import net.md_5.bungee.api.chat.TextComponent; // Waterfall | ||
+import net.md_5.bungee.chat.ComponentSerializer; // Waterfall | ||
import net.md_5.bungee.protocol.DefinedPacket; | ||
import io.netty.buffer.ByteBuf; | ||
import lombok.AllArgsConstructor; | ||
|