2021-03-26 16:36:31 +08:00
|
|
|
|
using Assets.Scripts;
|
|
|
|
|
|
using DG.Tweening;
|
2021-03-25 16:55:36 +08:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
using UnityEngine.SceneManagement;
|
|
|
|
|
|
using UnityEngine.UI;
|
2021-03-30 14:14:24 +08:00
|
|
|
|
//记录:小f 是-457和-681
|
2021-03-25 17:53:48 +08:00
|
|
|
|
public class LoginController : MonoBehaviour
|
2021-03-25 16:55:36 +08:00
|
|
|
|
{
|
|
|
|
|
|
[SerializeField] InputField phone;
|
|
|
|
|
|
[SerializeField] InputField pwd;
|
|
|
|
|
|
[SerializeField] Button login;
|
2021-03-30 14:14:24 +08:00
|
|
|
|
[SerializeField] Button loginNewAccount;
|
|
|
|
|
|
[SerializeField] Button returnQuick;
|
|
|
|
|
|
[SerializeField] Button sign;
|
|
|
|
|
|
[SerializeField] GameObject loginScrollView;
|
|
|
|
|
|
[SerializeField] GameObject signScrollView;
|
2021-03-25 16:55:36 +08:00
|
|
|
|
[SerializeField] RawImage loading;
|
2021-03-30 14:14:24 +08:00
|
|
|
|
private ScrollRect scrollPanel;
|
|
|
|
|
|
private ScrollRect scrollSign;
|
|
|
|
|
|
private Transform imagexf;
|
2021-03-25 16:55:36 +08:00
|
|
|
|
// Start is called before the first frame update
|
|
|
|
|
|
void Start()
|
|
|
|
|
|
{
|
2021-03-30 14:14:24 +08:00
|
|
|
|
//transform.Find("RawImage").DOMove(new Vector3(0.5f,0.5f,0),1);
|
|
|
|
|
|
if (login != null)
|
2021-03-25 16:55:36 +08:00
|
|
|
|
{
|
|
|
|
|
|
login.onClick.AddListener(Submit);
|
2021-03-30 14:14:24 +08:00
|
|
|
|
//login.onClick.AddListener(Submit);
|
2021-03-25 16:55:36 +08:00
|
|
|
|
}
|
2021-03-30 14:14:24 +08:00
|
|
|
|
if (loading != null)
|
2021-03-25 16:55:36 +08:00
|
|
|
|
{
|
|
|
|
|
|
loading.texture.wrapMode = TextureWrapMode.Repeat;
|
|
|
|
|
|
}
|
2021-03-30 14:14:24 +08:00
|
|
|
|
if (loginScrollView != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
scrollPanel = loginScrollView.GetComponent<ScrollRect>();
|
|
|
|
|
|
}
|
|
|
|
|
|
if (signScrollView != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
scrollSign = signScrollView.GetComponent<ScrollRect>();
|
|
|
|
|
|
}
|
|
|
|
|
|
if (loginNewAccount != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
loginNewAccount.onClick.AddListener(goLogin);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (returnQuick != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
returnQuick.onClick.AddListener(ReturnQuick);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (sign != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
sign.onClick.AddListener(goSign);
|
|
|
|
|
|
}
|
|
|
|
|
|
imagexf = transform.Find("Panel").Find("LoginContainer").Find("Imagexf");
|
|
|
|
|
|
}
|
|
|
|
|
|
void ReturnQuick()
|
|
|
|
|
|
{
|
|
|
|
|
|
if (imagexf != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
imagexf.DOLocalMove(new Vector3(0, -457, 0), 0.3f);
|
|
|
|
|
|
}
|
|
|
|
|
|
this.StartScrollPanel(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
void goLogin()
|
|
|
|
|
|
{
|
|
|
|
|
|
if (imagexf != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
imagexf.DOLocalMove(new Vector3(0, -681, 0), 0.3f);
|
|
|
|
|
|
}
|
|
|
|
|
|
this.StartScrollPanel(1);
|
|
|
|
|
|
}
|
|
|
|
|
|
void goSign()
|
|
|
|
|
|
{
|
|
|
|
|
|
this.StartScrollPanel(2);
|
2021-03-25 16:55:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
async void Submit()
|
|
|
|
|
|
{
|
|
|
|
|
|
if (phone == null || pwd == null)
|
|
|
|
|
|
{
|
|
|
|
|
|
Utils.showToast(gameObject, "未绑定", 1);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
//if (string.IsNullOrEmpty(phone.text) || string.IsNullOrEmpty(pwd.text))
|
|
|
|
|
|
//{
|
|
|
|
|
|
// Utils.showToast(gameObject, "请输入信息", 1);
|
|
|
|
|
|
// return;
|
|
|
|
|
|
//}
|
|
|
|
|
|
//var res = await Global.userApi.Login(phone.text, pwd.text, "");
|
|
|
|
|
|
//测试用
|
2021-03-25 17:53:48 +08:00
|
|
|
|
var res = await ConfigHelper.userApi.Login("15651831367", "123456", "");
|
2021-03-25 16:55:36 +08:00
|
|
|
|
//var res = await NoAuthApi.Login(phone.text, pwd.text);
|
|
|
|
|
|
if (res.result)
|
|
|
|
|
|
{
|
2021-03-25 17:53:48 +08:00
|
|
|
|
ConfigHelper.CurrentUser = res.data;
|
2021-03-29 09:10:59 +08:00
|
|
|
|
SceneManager.LoadScene("MainScene");
|
2021-03-25 16:55:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
|
|
void Update()
|
|
|
|
|
|
{
|
2021-03-26 16:36:31 +08:00
|
|
|
|
Debug.Log($"{phone.isFocused}, ${pwd != null}, ${Input.GetKeyDown(KeyCode.Tab)}");
|
2021-03-25 16:55:36 +08:00
|
|
|
|
if (phone.isFocused && pwd != null && Input.GetKeyDown(KeyCode.Tab))
|
|
|
|
|
|
{
|
|
|
|
|
|
pwd.ActivateInputField();
|
|
|
|
|
|
}
|
2021-03-30 14:14:24 +08:00
|
|
|
|
goScrollPanel();
|
|
|
|
|
|
goScrollSign();
|
2021-03-25 16:55:36 +08:00
|
|
|
|
//if (Input.GetKeyDown(KeyCode.Return) && )
|
|
|
|
|
|
//{
|
|
|
|
|
|
//}
|
|
|
|
|
|
//if (Input.GetKeyDown(KeyCode.Return)) {
|
|
|
|
|
|
// Debug.Log("回车键");
|
|
|
|
|
|
// if (pwd.isFocused)
|
|
|
|
|
|
// {
|
|
|
|
|
|
// this.Submit();
|
|
|
|
|
|
// }
|
|
|
|
|
|
//}
|
|
|
|
|
|
}
|
2021-03-30 14:14:24 +08:00
|
|
|
|
|
|
|
|
|
|
#region 主页面滑动逻辑
|
|
|
|
|
|
private int tmpImdex = 0;
|
|
|
|
|
|
private int scrollPanelIndex = 2;
|
|
|
|
|
|
private float scrollValue = 0.5f;
|
|
|
|
|
|
private bool startScrollPanel = false;
|
|
|
|
|
|
private void StartScrollPanel(int index)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (startScrollPanel) return;
|
|
|
|
|
|
scrollPanelIndex = index;
|
|
|
|
|
|
startScrollPanel = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
private void goScrollPanel()
|
|
|
|
|
|
{
|
|
|
|
|
|
var index = scrollPanelIndex;
|
|
|
|
|
|
var value = index * scrollValue;
|
|
|
|
|
|
if (scrollPanel != null && startScrollPanel)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (scrollPanel.horizontalNormalizedPosition >= value)
|
|
|
|
|
|
{
|
|
|
|
|
|
scrollPanel.horizontalNormalizedPosition -= (scrollValue / 20);
|
|
|
|
|
|
if (scrollPanel.horizontalNormalizedPosition <= value)
|
|
|
|
|
|
{
|
|
|
|
|
|
scrollPanel.horizontalNormalizedPosition = value;
|
|
|
|
|
|
startScrollPanel = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
scrollPanel.horizontalNormalizedPosition += (scrollValue / 20);
|
|
|
|
|
|
if (scrollPanel.horizontalNormalizedPosition >= value)
|
|
|
|
|
|
{
|
|
|
|
|
|
scrollPanel.horizontalNormalizedPosition = value;
|
|
|
|
|
|
startScrollPanel = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
private void Test()
|
|
|
|
|
|
{
|
|
|
|
|
|
//if (startScrollPanel) return;
|
|
|
|
|
|
//scrollPanelIndex = ((int)System.Math.Pow(tmpImdex, 3)
|
|
|
|
|
|
// + 2*(int)System.Math.Pow(tmpImdex, 2)
|
|
|
|
|
|
// + 1) % 4;
|
|
|
|
|
|
//tmpImdex++;
|
|
|
|
|
|
//Debug.Log(scrollPanelIndex);
|
|
|
|
|
|
//startScrollPanel = true;
|
|
|
|
|
|
if (startScrollSign) return;
|
|
|
|
|
|
scrollSignIndex = (scrollSignIndex + 1) % 2;
|
|
|
|
|
|
Debug.Log(scrollSignIndex);
|
|
|
|
|
|
startScrollSign = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
#region 注册页面滑动逻辑
|
|
|
|
|
|
private bool startScrollSign = false;
|
|
|
|
|
|
private int scrollSignIndex = 0;
|
|
|
|
|
|
private void goScrollSign()
|
|
|
|
|
|
{
|
|
|
|
|
|
float value = scrollSignIndex;
|
|
|
|
|
|
if (scrollSign != null && startScrollSign)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (scrollSignIndex == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
scrollSign.horizontalNormalizedPosition -= (1f / 20);
|
|
|
|
|
|
if (scrollSign.horizontalNormalizedPosition <= 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
scrollSign.horizontalNormalizedPosition = 0;
|
|
|
|
|
|
startScrollSign = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (scrollSignIndex == 1)
|
|
|
|
|
|
{
|
|
|
|
|
|
scrollSign.horizontalNormalizedPosition += (1f / 20);
|
|
|
|
|
|
if (scrollSign.horizontalNormalizedPosition >= 1)
|
|
|
|
|
|
{
|
|
|
|
|
|
scrollSign.horizontalNormalizedPosition = 1;
|
|
|
|
|
|
startScrollSign = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
2021-03-25 16:55:36 +08:00
|
|
|
|
}
|