aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/de
diff options
context:
space:
mode:
authorÄkwav <16632490+Ekwav@users.noreply.github.com>2021-12-28 18:12:04 +0100
committerGitHub <noreply@github.com>2021-12-28 18:12:04 +0100
commit4d2b8de15b223b2c9dfe389db36a593b1fabff0b (patch)
tree30d9d8caf53cb1cdac5b1ae1a0fcc0aab2d24e3b /src/main/java/de
parent4725394c6e80e857f17c512c49d9181cb7a6c553 (diff)
parent33d340a59b18361fcd18e73e34f5eced5641655f (diff)
downloadCOFL-4d2b8de15b223b2c9dfe389db36a593b1fabff0b.tar.gz
COFL-4d2b8de15b223b2c9dfe389db36a593b1fabff0b.tar.bz2
COFL-4d2b8de15b223b2c9dfe389db36a593b1fabff0b.zip
Merge pull request #46 from Coflnet/fix/servercommands
initial fix, needs testing!
Diffstat (limited to 'src/main/java/de')
-rw-r--r--src/main/java/de/torui/coflsky/CoflSkyCommand.java7
-rw-r--r--src/main/java/de/torui/coflsky/commands/RawCommand.java33
-rw-r--r--src/main/java/de/torui/coflsky/network/WSClient.java11
-rw-r--r--src/main/java/de/torui/coflsky/network/WSClientWrapper.java8
4 files changed, 55 insertions, 4 deletions
diff --git a/src/main/java/de/torui/coflsky/CoflSkyCommand.java b/src/main/java/de/torui/coflsky/CoflSkyCommand.java
index e7ba17c..dae91a6 100644
--- a/src/main/java/de/torui/coflsky/CoflSkyCommand.java
+++ b/src/main/java/de/torui/coflsky/CoflSkyCommand.java
@@ -8,6 +8,7 @@ import java.util.List;
import de.torui.coflsky.commands.Command;
import de.torui.coflsky.commands.CommandType;
import de.torui.coflsky.commands.JsonStringCommand;
+import de.torui.coflsky.commands.RawCommand;
import de.torui.coflsky.minecraft_integration.CoflSessionManager;
import de.torui.coflsky.minecraft_integration.CoflSessionManager.CoflSession;
import de.torui.coflsky.network.QueryServerCommands;
@@ -156,10 +157,10 @@ public class CoflSkyCommand extends CommandBase {
public void CommandNotRecognized(String[] args, ICommandSender sender) {
String command = String.join(" ", Arrays.copyOfRange(args, 1, args.length));
- JsonStringCommand sc = new JsonStringCommand(args[0], WSClient.gson.toJson(command));
-
+ //JsonStringCommand sc = new JsonStringCommand(args[0], WSClient.gson.toJson(command));
+ RawCommand rc = new RawCommand(args[0], WSClient.gson.toJson(command));
if(CoflSky.Wrapper.isRunning) {
- CoflSky.Wrapper.SendMessage(sc);
+ CoflSky.Wrapper.SendMessage(rc);
} else {
sender.addChatMessage(new ChatComponentText("CoflSky not active. Server Commands are currently not available.").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.RED)));
}
diff --git a/src/main/java/de/torui/coflsky/commands/RawCommand.java b/src/main/java/de/torui/coflsky/commands/RawCommand.java
new file mode 100644
index 0000000..f2054e8
--- /dev/null
+++ b/src/main/java/de/torui/coflsky/commands/RawCommand.java
@@ -0,0 +1,33 @@
+package de.torui.coflsky.commands;
+
+import com.google.gson.annotations.SerializedName;
+
+public class RawCommand {
+ @SerializedName("type")
+ private String Type;
+
+ @SerializedName("data")
+ private String Data;
+
+ public RawCommand(String type, String data) {
+ this.Type = type;
+ this.Data=data;
+ }
+
+ public String getType() {
+ return Type;
+ }
+
+ public void setType(String type) {
+ Type = type;
+ }
+
+ public String getData() {
+ return Data;
+ }
+
+ public void setData(String data) {
+ Data = data;
+ }
+
+}
diff --git a/src/main/java/de/torui/coflsky/network/WSClient.java b/src/main/java/de/torui/coflsky/network/WSClient.java
index b5a94a5..353fab0 100644
--- a/src/main/java/de/torui/coflsky/network/WSClient.java
+++ b/src/main/java/de/torui/coflsky/network/WSClient.java
@@ -18,6 +18,7 @@ import de.torui.coflsky.CoflSky;
import de.torui.coflsky.WSCommandHandler;
import de.torui.coflsky.commands.Command;
import de.torui.coflsky.commands.JsonStringCommand;
+import de.torui.coflsky.commands.RawCommand;
public class WSClient extends WebSocketAdapter {
@@ -121,7 +122,15 @@ public class WSClient extends WebSocketAdapter {
}
public void SendCommand(Command cmd) {
- String json = gson.toJson(cmd);
+ Send(cmd);
+ }
+
+ public void SendCommand(RawCommand cmd) {
+ Send(cmd);
+ }
+
+ public void Send(Object obj) {
+ String json = gson.toJson(obj);
this.socket.sendText(json);
}
diff --git a/src/main/java/de/torui/coflsky/network/WSClientWrapper.java b/src/main/java/de/torui/coflsky/network/WSClientWrapper.java
index 640d151..e6592bb 100644
--- a/src/main/java/de/torui/coflsky/network/WSClientWrapper.java
+++ b/src/main/java/de/torui/coflsky/network/WSClientWrapper.java
@@ -11,6 +11,7 @@ import com.neovisionaries.ws.client.WebSocketException;
import de.torui.coflsky.CoflSky;
import de.torui.coflsky.commands.Command;
import de.torui.coflsky.commands.JsonStringCommand;
+import de.torui.coflsky.commands.RawCommand;
import de.torui.coflsky.minecraft_integration.PlayerDataProvider;
import net.minecraft.client.Minecraft;
import net.minecraft.event.ClickEvent;
@@ -148,6 +149,13 @@ public class WSClientWrapper {
}
}
+ public synchronized void SendMessage(RawCommand cmd){
+ if(this.isRunning) {
+ this.socket.SendCommand(cmd);
+ } else {
+ Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("tried sending a callback to coflnet but failed. the connection must be closed."));
+ }
+ }
public synchronized void SendMessage(Command cmd){
if(this.isRunning) {
this.socket.SendCommand(cmd);