mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Show form window immediately after spawn (#606)
This commit is contained in:
parent
3ab5c697c1
commit
5fe38fa83f
2 changed files with 13 additions and 5 deletions
|
@ -110,7 +110,7 @@ public class UpstreamPacketHandler extends LoggingPacketHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean handle(MovePlayerPacket packet) {
|
public boolean handle(SetLocalPlayerAsInitializedPacket packet) {
|
||||||
if (!session.isLoggedIn() && !session.isLoggingIn() && session.getConnector().getAuthType() == AuthType.ONLINE) {
|
if (!session.isLoggedIn() && !session.isLoggingIn() && session.getConnector().getAuthType() == AuthType.ONLINE) {
|
||||||
// TODO it is safer to key authentication on something that won't change (UUID, not username)
|
// TODO it is safer to key authentication on something that won't change (UUID, not username)
|
||||||
if (!couldLoginUserByName(session.getAuthData().getName())) {
|
if (!couldLoginUserByName(session.getAuthData().getName())) {
|
||||||
|
@ -119,6 +119,11 @@ public class UpstreamPacketHandler extends LoggingPacketHandler {
|
||||||
// else we were able to log the user in
|
// else we were able to log the user in
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
return translateAndDefault(packet);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean handle(MovePlayerPacket packet) {
|
||||||
if (session.isLoggingIn()) {
|
if (session.isLoggingIn()) {
|
||||||
session.sendMessage("Please wait until you are logged in...");
|
session.sendMessage("Please wait until you are logged in...");
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,6 @@ import com.nukkitx.network.util.Preconditions;
|
||||||
import com.nukkitx.protocol.bedrock.packet.LoginPacket;
|
import com.nukkitx.protocol.bedrock.packet.LoginPacket;
|
||||||
import com.nukkitx.protocol.bedrock.packet.ServerToClientHandshakePacket;
|
import com.nukkitx.protocol.bedrock.packet.ServerToClientHandshakePacket;
|
||||||
import com.nukkitx.protocol.bedrock.util.EncryptionUtils;
|
import com.nukkitx.protocol.bedrock.util.EncryptionUtils;
|
||||||
|
|
||||||
import org.geysermc.common.window.CustomFormBuilder;
|
import org.geysermc.common.window.CustomFormBuilder;
|
||||||
import org.geysermc.common.window.CustomFormWindow;
|
import org.geysermc.common.window.CustomFormWindow;
|
||||||
import org.geysermc.common.window.FormWindow;
|
import org.geysermc.common.window.FormWindow;
|
||||||
|
@ -193,6 +192,8 @@ public class LoginEncryptionUtils {
|
||||||
String password = response.getInputResponses().get(2);
|
String password = response.getInputResponses().get(2);
|
||||||
|
|
||||||
session.authenticate(email, password);
|
session.authenticate(email, password);
|
||||||
|
} else {
|
||||||
|
showLoginDetailsWindow(session);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear windows so authentication data isn't accidentally cached
|
// Clear windows so authentication data isn't accidentally cached
|
||||||
|
@ -205,6 +206,8 @@ public class LoginEncryptionUtils {
|
||||||
} else if (response.getClickedButtonId() == 1) {
|
} else if (response.getClickedButtonId() == 1) {
|
||||||
session.disconnect("Login is required");
|
session.disconnect("Login is required");
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
showLoginWindow(session);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue