Replaces partial EffectMgr.EffectType with all 226 decomp values; copies the IsNotNullOrEmpty/EquelsID/FindFromCardId/GetAllFuncVfxResults extension files + UI extensions; adds Renderer/MeshFilter shared-material/mesh/sortingOrder. Compile loop then closed the revealed deps (3242 files). 9.1k -> 18 errors.
446 lines
15 KiB
C#
446 lines
15 KiB
C#
using System;
|
|
using Cute;
|
|
using UnityEngine;
|
|
using Wizard.Dialog.DataLink;
|
|
using Wizard.Dialog.Setting;
|
|
|
|
namespace Wizard;
|
|
|
|
public class AccountBase : MonoBehaviour
|
|
{
|
|
public enum DisplayType
|
|
{
|
|
NONE,
|
|
TITLE,
|
|
OTHER,
|
|
ACCOUNT_LINK,
|
|
ID_PASSWORD_INPUT,
|
|
PASSWORD_SETTING
|
|
}
|
|
|
|
public enum TransitionOriginalScreen
|
|
{
|
|
TITLE,
|
|
OTHER
|
|
}
|
|
|
|
[SerializeField]
|
|
private GameObject TransferContainer;
|
|
|
|
[SerializeField]
|
|
private GameObject InputContainer;
|
|
|
|
[SerializeField]
|
|
public IdPasswordInput _idPasswordInput;
|
|
|
|
[SerializeField]
|
|
public PasswordSetting _passwordSetting;
|
|
|
|
[SerializeField]
|
|
private GameObject TopContainer;
|
|
|
|
[SerializeField]
|
|
private Transform _topContainerLine;
|
|
|
|
[SerializeField]
|
|
private GameObject TitleContainer;
|
|
|
|
[SerializeField]
|
|
private GameObject OtherContainer;
|
|
|
|
[SerializeField]
|
|
private UIButton _appleButton;
|
|
|
|
private const int INDEX_TOP_LABEL = 0;
|
|
|
|
private const int INDEX_MID_LABEL = 1;
|
|
|
|
private const int INDEX_INPUT_LABEL = 2;
|
|
|
|
private const int INDEX_BOTTOM_LABEL = 3;
|
|
|
|
private const int INDEX_BUTTON_LABEL = 4;
|
|
|
|
private Vector3 AccountPos = new Vector3(0f, 70f, 0f);
|
|
|
|
[SerializeField]
|
|
private UIGrid ButtonGrid;
|
|
|
|
[SerializeField]
|
|
public NguiObjs BtnTransferCode;
|
|
|
|
[SerializeField]
|
|
public NguiObjs BtnGoogle;
|
|
|
|
[SerializeField]
|
|
public NguiObjs BtnFaceBook;
|
|
|
|
[SerializeField]
|
|
public NguiObjs ButtonGetCode;
|
|
|
|
[SerializeField]
|
|
public UILabel CommonLabelTop;
|
|
|
|
[SerializeField]
|
|
public UILabel CommonLabelBtm;
|
|
|
|
private readonly Vector3 TopContainerPosition = new Vector3(0f, -90f, 0f);
|
|
|
|
private const int MIN_PASSWORD_LENGTH = 8;
|
|
|
|
private const int MAX_PASSWORD_LENGTH = 16;
|
|
|
|
private void Awake()
|
|
{
|
|
SetLabels();
|
|
BtnGoogle.gameObject.SetActive(value: false);
|
|
_appleButton.gameObject.SetActive(value: false);
|
|
ButtonGrid.repositionNow = true;
|
|
}
|
|
|
|
private void SetLabels()
|
|
{
|
|
SystemText systemText = Data.SystemText;
|
|
BtnTransferCode.labels[0].text = systemText.Get("Account_0094");
|
|
ButtonGetCode.labels[0].text = (GameStartCheckTask.IsSetTransitionPassword ? systemText.Get("Account_0100") : systemText.Get("Account_0099"));
|
|
CommonLabelTop.text = systemText.Get("Account_0095");
|
|
CommonLabelBtm.text = systemText.Get("Account_0073");
|
|
}
|
|
|
|
public void SetDisplayType(DisplayType type)
|
|
{
|
|
switch (type)
|
|
{
|
|
case DisplayType.TITLE:
|
|
TransferContainer.SetActive(value: true);
|
|
InputContainer.SetActive(value: false);
|
|
_idPasswordInput.gameObject.SetActive(value: false);
|
|
_passwordSetting.gameObject.SetActive(value: false);
|
|
OtherContainer.SetActive(value: false);
|
|
TitleContainer.SetActive(value: false);
|
|
UIUtil.SetPositionY(TopContainer.transform, -90f);
|
|
_topContainerLine.gameObject.SetActive(value: false);
|
|
break;
|
|
case DisplayType.OTHER:
|
|
TransferContainer.SetActive(value: true);
|
|
InputContainer.SetActive(value: false);
|
|
_idPasswordInput.gameObject.SetActive(value: false);
|
|
_passwordSetting.gameObject.SetActive(value: false);
|
|
TitleContainer.SetActive(value: false);
|
|
break;
|
|
case DisplayType.ACCOUNT_LINK:
|
|
TransferContainer.SetActive(value: true);
|
|
TransferContainer.transform.localPosition = AccountPos;
|
|
InputContainer.SetActive(value: false);
|
|
_idPasswordInput.gameObject.SetActive(value: false);
|
|
_passwordSetting.gameObject.SetActive(value: false);
|
|
TopContainer.SetActive(value: false);
|
|
OtherContainer.SetActive(value: false);
|
|
if (GetActiveChildCount(ButtonGrid.transform) <= 2)
|
|
{
|
|
UIUtil.SetPositionY(TitleContainer.transform, 50f);
|
|
UIUtil.SetPositionY(ButtonGrid.transform, -96f);
|
|
}
|
|
else
|
|
{
|
|
UIUtil.SetPositionY(TitleContainer.transform, 0f);
|
|
UIUtil.SetPositionY(ButtonGrid.transform, -60f);
|
|
}
|
|
break;
|
|
case DisplayType.ID_PASSWORD_INPUT:
|
|
TransferContainer.SetActive(value: false);
|
|
InputContainer.SetActive(value: false);
|
|
_idPasswordInput.gameObject.SetActive(value: true);
|
|
_passwordSetting.gameObject.SetActive(value: false);
|
|
break;
|
|
case DisplayType.PASSWORD_SETTING:
|
|
TransferContainer.SetActive(value: false);
|
|
InputContainer.SetActive(value: false);
|
|
_idPasswordInput.gameObject.SetActive(value: false);
|
|
_passwordSetting.gameObject.SetActive(value: true);
|
|
break;
|
|
}
|
|
}
|
|
|
|
public DialogBase Init(DisplayType type, TransitionOriginalScreen from, Action close_callback = null)
|
|
{
|
|
SystemText text = Data.SystemText;
|
|
SetDisplayType(type);
|
|
DialogBase dialog = UIManager.GetInstance().CreateDialogClose();
|
|
dialog.SetSize(DialogBase.Size.M);
|
|
dialog.SetObj(base.gameObject);
|
|
if (type != DisplayType.PASSWORD_SETTING)
|
|
{
|
|
if (type == DisplayType.OTHER)
|
|
{
|
|
dialog.SetTitleLabel(text.Get("Account_0001"));
|
|
}
|
|
else
|
|
{
|
|
dialog.SetTitleLabel(text.Get("Account_0004"));
|
|
}
|
|
dialog.SetButtonLayout(DialogBase.ButtonLayout.CloseBtn);
|
|
}
|
|
BtnTransferCode.buttons[0].onClick.Add(new EventDelegate(delegate
|
|
{
|
|
OnClickIdPasswordInputButton(dialog, from);
|
|
}));
|
|
BtnGoogle.buttons[0].onClick.Add(new EventDelegate(delegate
|
|
{
|
|
dialog.CloseWithoutSelect();
|
|
UIManager.GetInstance().AccountTransferHelper.PressedTransitongButton = CuteNetworkDefine.ACCOUNT_TYPE.GOOGLE_PLAY;
|
|
GameMgr.GetIns().GetSoundMgr().PlaySe(Se.TYPE.SYS_COMMON_BUTTON);
|
|
DialogBase dialogBase = UIManager.GetInstance().CreateDialogClose();
|
|
dialogBase.SetSize(DialogBase.Size.M);
|
|
dialogBase.SetTitleLabel(text.Get("Account_0015"));
|
|
dialogBase.SetText(text.Get("Account_0077"));
|
|
dialogBase.SetButtonLayout(DialogBase.ButtonLayout.BlueBtn_GrayBtn);
|
|
dialogBase.SetButtonText(text.Get("Account_0084"), text.Get("Account_0080"));
|
|
EventDelegate method_btn = new EventDelegate(delegate
|
|
{
|
|
UIManager.GetInstance().AccountTransferHelper.DataTransfer(close_callback);
|
|
});
|
|
dialogBase.SetButtonDelegate(method_btn);
|
|
}));
|
|
BtnFaceBook.buttons[0].onClick.Add(new EventDelegate(delegate
|
|
{
|
|
dialog.CloseWithoutSelect();
|
|
UIManager.GetInstance().AccountTransferHelper.PressedTransitongButton = CuteNetworkDefine.ACCOUNT_TYPE.FACEBOOK;
|
|
GameMgr.GetIns().GetSoundMgr().PlaySe(Se.TYPE.SYS_COMMON_BUTTON);
|
|
DialogBase dialogBase = UIManager.GetInstance().CreateDialogClose();
|
|
dialogBase.SetSize(DialogBase.Size.M);
|
|
dialogBase.SetTitleLabel(text.Get("Account_0058"));
|
|
dialogBase.SetText(text.Get("Account_0079"));
|
|
dialogBase.SetButtonLayout(DialogBase.ButtonLayout.BlueBtn_GrayBtn);
|
|
dialogBase.SetButtonText(text.Get("Account_0084"), text.Get("Account_0080"));
|
|
EventDelegate method_btn = new EventDelegate(delegate
|
|
{
|
|
UIManager.GetInstance().WebViewHelper.CreateOpenURLWindow(WebViewHelper.UrlType.FACEBOOK);
|
|
});
|
|
dialogBase.SetButtonDelegate(method_btn);
|
|
}));
|
|
ButtonGetCode.buttons[0].onClick.Add(new EventDelegate(delegate
|
|
{
|
|
OnClickPasswordSettingButton(dialog, from);
|
|
}));
|
|
return dialog;
|
|
}
|
|
|
|
private void OnClickIdPasswordInputButton(DialogBase previousDialog, TransitionOriginalScreen from)
|
|
{
|
|
GameMgr.GetIns().GetSoundMgr().PlaySe(Se.TYPE.SYS_BTN_DECIDE);
|
|
previousDialog.CloseWithoutSelect();
|
|
DialogBase idPasswordInputDialog = UIManager.GetInstance().AccountTransferHelper.CreateAccountTransferDialog(DisplayType.ID_PASSWORD_INPUT, from);
|
|
IdPasswordInput idPasswordInputObject = idPasswordInputDialog.InsideObject.GetComponent<AccountBase>()._idPasswordInput;
|
|
UIInputWizard idInput = idPasswordInputObject._idInput;
|
|
UIInputWizard passwordInput = idPasswordInputObject._passwordInput;
|
|
EventDelegate item = new EventDelegate(delegate
|
|
{
|
|
idPasswordInputDialog.SetButtonDisable(string.IsNullOrEmpty(idInput.value) || string.IsNullOrEmpty(passwordInput.value));
|
|
});
|
|
UIInputWizard[] array = new UIInputWizard[2] { idInput, passwordInput };
|
|
foreach (UIInputWizard input in array)
|
|
{
|
|
EventDelegate item2 = new EventDelegate(delegate
|
|
{
|
|
InputDialog.TextInputLimitCheck(input.characterLimit);
|
|
});
|
|
input.onChange.Add(item);
|
|
input.onSubmit.Add(item2);
|
|
input.onDeselect.Add(item2);
|
|
}
|
|
SystemText systemText = Data.SystemText;
|
|
idPasswordInputDialog.SetSize(DialogBase.Size.S);
|
|
idPasswordInputDialog.SetTitleLabel(systemText.Get("Account_0001"));
|
|
idPasswordInputDialog.SetButtonLayout(DialogBase.ButtonLayout.DecisionBtn);
|
|
idPasswordInputDialog.SetButtonDisable(isEnableOK: true);
|
|
idPasswordInputDialog.isNotCloseWindowButton1 = true;
|
|
idPasswordInputDialog.onPushButton1 = delegate
|
|
{
|
|
string userId = idInput.value;
|
|
string passwordHash = Cryptographer.MakeMd5(passwordInput.value);
|
|
CheckTimeSlipRotationPeriod(delegate
|
|
{
|
|
GetGameDataByTransitionCode getGameDataByTransitionCode = new GetGameDataByTransitionCode();
|
|
getGameDataByTransitionCode.SetParameter(userId, passwordHash);
|
|
UIManager.GetInstance().StartCoroutine(Toolbox.NetworkManager.Connect(getGameDataByTransitionCode, delegate(NetworkTask.ResultCode code)
|
|
{
|
|
idPasswordInputDialog.Close();
|
|
UIManager.GetInstance().AccountTransferHelper.ShowAccountMagritionConfirmByTransferCode(code);
|
|
}, null, delegate
|
|
{
|
|
idPasswordInputObject.ResetInputValue();
|
|
}));
|
|
});
|
|
};
|
|
}
|
|
|
|
private static void CheckTimeSlipRotationPeriod(Action onFinish)
|
|
{
|
|
if (UIManager.GetInstance().GetCurrentScene() == UIManager.ViewScene.Title)
|
|
{
|
|
onFinish.Call();
|
|
return;
|
|
}
|
|
CheckTimeSlipRotationPeriodTask task = new CheckTimeSlipRotationPeriodTask();
|
|
UIManager.GetInstance().StartCoroutine(Toolbox.NetworkManager.Connect(task, delegate
|
|
{
|
|
onFinish.Call();
|
|
}));
|
|
}
|
|
|
|
private void OnClickPasswordSettingButton(DialogBase previousDialog, TransitionOriginalScreen from)
|
|
{
|
|
GameMgr.GetIns().GetSoundMgr().PlaySe(Se.TYPE.SYS_BTN_DECIDE);
|
|
previousDialog.CloseWithoutSelect();
|
|
SystemText text = Data.SystemText;
|
|
DialogBase dialogBase = UIManager.GetInstance().CreateDialogClose();
|
|
dialogBase.SetSize(DialogBase.Size.M);
|
|
dialogBase.SetTitleLabel(text.Get("Account_0101"));
|
|
dialogBase.SetText(text.Get("Account_0102"));
|
|
dialogBase.SetButtonLayout(DialogBase.ButtonLayout.BlueBtn_CancelBtn);
|
|
dialogBase.SetButtonText(text.Get("Account_0103"));
|
|
dialogBase.onPushButton1 = delegate
|
|
{
|
|
DialogBase passwordSettingDialog = UIManager.GetInstance().AccountTransferHelper.CreateAccountTransferDialog(DisplayType.PASSWORD_SETTING, from);
|
|
AccountBase passwordSettingAccountBase = passwordSettingDialog.InsideObject.GetComponent<AccountBase>();
|
|
PasswordSetting passwordSettingObject = passwordSettingAccountBase._passwordSetting;
|
|
UIInputWizard firstInput = passwordSettingObject._firstInput;
|
|
UIInputWizard secondInput = passwordSettingObject._secondInput;
|
|
EventDelegate eventDelegate = new EventDelegate(delegate
|
|
{
|
|
passwordSettingDialog.SetButtonDisable(string.IsNullOrEmpty(firstInput.value) || string.IsNullOrEmpty(secondInput.value) || !passwordSettingObject._acceptToggle.GetValue());
|
|
});
|
|
UIInputWizard[] array = new UIInputWizard[2] { firstInput, secondInput };
|
|
foreach (UIInputWizard input in array)
|
|
{
|
|
EventDelegate item = new EventDelegate(delegate
|
|
{
|
|
InputDialog.TextInputLimitCheck(input.characterLimit);
|
|
});
|
|
input.onChange.Add(eventDelegate);
|
|
input.onSubmit.Add(item);
|
|
input.onDeselect.Add(item);
|
|
}
|
|
passwordSettingObject._privacyPolicyButton.onClick.Add(new EventDelegate(delegate
|
|
{
|
|
GameMgr.GetIns().GetSoundMgr().PlaySe(Se.TYPE.SYS_BTN_DECIDE);
|
|
UIManager.GetInstance().WebViewHelper.OpenWebView(WebViewHelper.WebViewType.PRIVACY_POLICY);
|
|
}));
|
|
ItemToggle acceptToggle = passwordSettingObject._acceptToggle;
|
|
acceptToggle.SetValue(value: false);
|
|
acceptToggle.AddChangeCallback(eventDelegate);
|
|
passwordSettingDialog.SetSize(DialogBase.Size.M);
|
|
passwordSettingDialog.SetTitleLabel(text.Get("Account_0101"));
|
|
passwordSettingDialog.SetButtonLayout(DialogBase.ButtonLayout.BlueBtn_CancelBtn);
|
|
passwordSettingDialog.SetButtonText(text.Get("Account_0103"));
|
|
passwordSettingDialog.SetButtonDisable(isEnableOK: true);
|
|
passwordSettingDialog.isNotCloseWindowButton1 = true;
|
|
passwordSettingDialog.onPushButton1 = delegate
|
|
{
|
|
if (!CheckDataLinkPassword(firstInput.value, secondInput.value))
|
|
{
|
|
passwordSettingObject.ResetInputValue();
|
|
DialogBase dialogBase2 = UIManager.GetInstance().CreateDialogClose();
|
|
dialogBase2.SetPanelDepth(passwordSettingAccountBase.GetComponent<UIPanel>().depth + 5);
|
|
dialogBase2.SetTitleLabel(text.Get("Account_0101"));
|
|
dialogBase2.SetText(text.Get("Account_0107"));
|
|
dialogBase2.SetButtonLayout(DialogBase.ButtonLayout.OkBtn);
|
|
}
|
|
else
|
|
{
|
|
passwordSettingDialog.Close();
|
|
UpdatePassword(firstInput.value);
|
|
}
|
|
};
|
|
};
|
|
}
|
|
|
|
private static void UpdatePassword(string password)
|
|
{
|
|
SystemText text = Data.SystemText;
|
|
CheckTimeSlipRotationPeriodTask task = new CheckTimeSlipRotationPeriodTask();
|
|
UIManager.GetInstance().StartCoroutine(Toolbox.NetworkManager.Connect(task, delegate
|
|
{
|
|
string parameter = Cryptographer.MakeMd5(password);
|
|
PublistTransitionCode publistTransitionCode = new PublistTransitionCode();
|
|
publistTransitionCode.SetParameter(parameter);
|
|
UIManager.GetInstance().StartCoroutine(Toolbox.NetworkManager.Connect(publistTransitionCode, delegate
|
|
{
|
|
GameStartCheckTask.IsSetTransitionPassword = true;
|
|
GameMgr.GetIns().GetPrefabMgr().Load("UI/layoutParts/Dialog/PasswordConfirm");
|
|
DialogBase dialogBase = UIManager.GetInstance().CreateDialogClose();
|
|
dialogBase.SetSize(DialogBase.Size.M);
|
|
dialogBase.SetButtonLayout(DialogBase.ButtonLayout.OkBtn);
|
|
NguiObjs component = NGUITools.AddChild(dialogBase.gameObject, GameMgr.GetIns().GetPrefabMgr().Get("UI/layoutParts/Dialog/PasswordConfirm")).GetComponent<NguiObjs>();
|
|
component.labels[0].text = text.Get("Account_0108");
|
|
component.labels[1].text = text.Get("Account_0109");
|
|
component.labels[2].text = text.Get("Profile_0008") + ": " + VideoHostingUtil.GetUserIDHidden($"{PlayerStaticData.UserViewerID:#,0}".Replace(",", " "));
|
|
component.labels[3].text = text.Get("Account_0110");
|
|
component.labels[4].text = text.Get("Profile_0009");
|
|
component.buttons[0].onClick.Add(new EventDelegate(delegate
|
|
{
|
|
NativePluginWrapper.SetStringToClipboard(PlayerStaticData.UserViewerID.ToString());
|
|
DialogBase dialogBase2 = UIManager.GetInstance().CreateDialogClose();
|
|
dialogBase2.SetPanelDepth(100);
|
|
dialogBase2.SetSize(DialogBase.Size.S);
|
|
dialogBase2.SetText(text.Get("Profile_0015"));
|
|
dialogBase2.SetButtonLayout(DialogBase.ButtonLayout.OkBtn);
|
|
}));
|
|
}));
|
|
}));
|
|
}
|
|
|
|
private bool CheckDataLinkPassword(string firstPass, string secondPass)
|
|
{
|
|
if (firstPass != secondPass)
|
|
{
|
|
return false;
|
|
}
|
|
if (firstPass.Length < 8 || 16 < firstPass.Length)
|
|
{
|
|
return false;
|
|
}
|
|
int num = 0;
|
|
int num2 = 0;
|
|
int num3 = 0;
|
|
foreach (char c in firstPass)
|
|
{
|
|
if ('0' <= c && c <= '9')
|
|
{
|
|
num++;
|
|
continue;
|
|
}
|
|
if ('a' <= c && c <= 'z')
|
|
{
|
|
num2++;
|
|
continue;
|
|
}
|
|
if ('A' <= c && c <= 'Z')
|
|
{
|
|
num3++;
|
|
continue;
|
|
}
|
|
return false;
|
|
}
|
|
if (num <= 0 || num2 <= 0 || num3 <= 0)
|
|
{
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private int GetActiveChildCount(Transform parent)
|
|
{
|
|
int num = 0;
|
|
for (int i = 0; i < parent.childCount; i++)
|
|
{
|
|
if (parent.GetChild(i).gameObject.activeSelf)
|
|
{
|
|
num++;
|
|
}
|
|
}
|
|
return num;
|
|
}
|
|
}
|