すべてを統合する - デバイス ID でログインする - (Unity モジュール)
Connect the UI to let player log in with device ID
In this tutorial, you will learn how to connect the login menu user interface (UI) with the login methods you implemented previously. You are going to get the AuthEssentialsWrapper_Starter
class reference, set up the callback function OnLoginCompleted()
in LoginHandler_Starter
, and start the login process from the existing LoginHandler.Login()
method you created.
Open Byte Wars in Unity. From Project window, open
/Assets/Resources/Modules/AuthEssentials/Scripts/UI/LoginHandler_Starter.cs
.Create a new callback function named
OnLoginCompleted()
by adding the code below. Based on the login status, this function shows the Main Menu if the login is successful. Otherwise, it switches to the failed state to display the retry button.public void OnLoginCompleted(Result<TokenData, OAuthError> result)
{
if (!result.IsError)
{
OnLoginComplete.Invoke(result.Value);
MenuManager.Instance.ChangeToMenu(AssetEnum.MainMenuCanvas);
BytewarsLogger.Log($"[LoginHandler.OnLoginCompleted] success: {result.Value.ToJsonString()}");
}
else
{
failedMessageText.text = $"Login Failed: {result.Error.error}";
CurrentView = LoginView.LoginFailed;
StartCoroutine(SetSelectedGameObject(retryLoginButton.gameObject));
}
}Next, declare the variable below and assign it in the pre-defined
Start()
function. This variable helps reference theAuthEssentialsWrapper_Starter
class you created previously.private AuthEssentialsWrapper_Starter authWrapper;
private void Start()
{
authWrapper = TutorialModuleManager.Instance.GetModuleClass<AuthEssentialsWrapper_Starter>();
...
}Then, declare this helper variable to track the last login type to be used for retrying the login.
private LoginType lastLoginMethod;
Modify the
Login()
function by replacing its content with the code below. This updated function now accepts a login method parameter to perform the login and stores it as the last login method for retry purposes.private void Login(LoginType loginMethod)
{
CurrentView = LoginView.LoginLoading;
lastLoginMethod = loginMethod;
OnRetryLoginClicked = OnRetryLoginButtonClicked;
switch (loginMethod)
{
case LoginType.DeviceId:
authWrapper.LoginWithDeviceId(OnLoginCompleted);
break;
}
}Lastly, update the
OnLoginWithDeviceIdButtonClicked()
andOnRetryLoginButtonClicked()
methods as shown below. TheOnLoginWithDeviceIdButtonClicked()
method triggers a login with the device ID, while theOnRetryLoginButtonClicked()
method retries the login using the previously used login method.private void OnLoginWithDeviceIdButtonClicked()
{
Login(LoginType.DeviceId);
}private void OnRetryLoginButtonClicked()
{
Login(lastLoginMethod);
}