Better Multiplayer Gui

This commit is contained in:
kirillsaint 2023-10-28 17:57:27 +06:00
parent 5ba46b437e
commit 44fb06f929
4 changed files with 8 additions and 3 deletions

View File

@ -512,7 +512,6 @@ public class Client {
this.updateUserInformation();
Client.logger.info("Update Connection Server: " + event.getServerData().serverIP);
silentSocket.getSocket().emit("update_information", event.getServerData().serverIP);
lastServerData = event.getServerData();
}
@EventTarget

View File

@ -57,6 +57,7 @@ public class GuiConnecting extends SilentScreen
private void connectServerData(final ServerData serverData)
{
logger.info("Connecting to " + serverData.serverIP);
Client.getInstance().lastServerData = serverData;
(new Thread("Server Connector #" + CONNECTION_ID.incrementAndGet())
{
public void run()
@ -126,6 +127,7 @@ public class GuiConnecting extends SilentScreen
private void connect(final String ip, final int port)
{
logger.info("Connecting to " + ip + ", " + port);
Client.getInstance().lastServerData = new ServerData("Minecraft Server", ip, false);
(new Thread("Server Connector #" + CONNECTION_ID.incrementAndGet())
{
public void run()

View File

@ -18,6 +18,7 @@ import org.lwjgl.input.Keyboard;
import java.awt.*;
import java.io.IOException;
import java.util.regex.Pattern;
public class AddServerGui extends SilentScreen {
private final SilentMultiplayerGui parentScreen;
@ -56,7 +57,8 @@ public class AddServerGui extends SilentScreen {
this.buttonList.add(this.serverResourcePacks = new Button(2, x + 3, y + 23 + 25 + 25, this.modalWidth - 6, 20, "Server Resource Packs: " + this.serverData.getResourceMode().getMotd().getFormattedText()));
this.buttonList.add(new Button(3, x + 3, y + this.modalHeight - 23, this.modalWidth - 6, 20, "Done"));
this.silentInputs.add(new Input("Server Name", this.serverData.serverName));
this.silentInputs.add(new Input("Server IP", this.serverData.serverIP));
this.silentInputs.add(new Input("Server IP", this.serverData.serverIP, -1, Pattern
.compile("^[~`!@#$%^&*()_+=[\\\\]\\\\\\\\\\\\{\\\\}|;':\\\",.\\\\/<>?a-zA-Z0-9-\\s]+$"), 60, false));
}
@Override

View File

@ -18,6 +18,7 @@ import org.lwjgl.input.Keyboard;
import java.awt.*;
import java.io.IOException;
import java.util.regex.Pattern;
public class DirectConnectGui extends SilentScreen {
private final SilentMultiplayerGui parentScreen;
@ -44,7 +45,8 @@ public class DirectConnectGui extends SilentScreen {
int y = height / 2 - (this.modalHeight / 2);
this.buttonList.add(new IconButton(1, x + this.modalWidth - 14 - 3, y + 3, 14, 14, 8, 8, new ResourceLocation("silentclient/icons/exit.png")));
this.buttonList.add(new Button(3, x + 3, y + this.modalHeight - 23, this.modalWidth - 6, 20, "Done"));
this.silentInputs.add(new Input("Server IP", this.mc.gameSettings.lastServer != null ? this.mc.gameSettings.lastServer : ""));
this.silentInputs.add(new Input("Server IP", this.mc.gameSettings.lastServer != null ? this.mc.gameSettings.lastServer : "", -1, Pattern
.compile("^[~`!@#$%^&*()_+=[\\\\]\\\\\\\\\\\\{\\\\}|;':\\\",.\\\\/<>?a-zA-Z0-9-\\s]+$"), 60, false));
}
@Override