792 lines
29 KiB
C#
792 lines
29 KiB
C#
using Assets.Scripts;
|
||
using Assets.Scripts.Apis;
|
||
using Assets.Scripts.Apis.Models;
|
||
using Assets.Scripts.UI.Prefab.Login;
|
||
using DG.Tweening;
|
||
using Newtonsoft.Json;
|
||
using Newtonsoft.Json.Linq;
|
||
using System;
|
||
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using System.Reflection;
|
||
using System.Text;
|
||
using System.Text.RegularExpressions;
|
||
using System.Timers;
|
||
using UnityEngine;
|
||
using UnityEngine.Events;
|
||
using UnityEngine.EventSystems;
|
||
using UnityEngine.SceneManagement;
|
||
using UnityEngine.UI;
|
||
using ZenFulcrum.EmbeddedBrowser;
|
||
//记录:小f 是-457和-681
|
||
|
||
public class QUserInfo
|
||
{
|
||
public long Id { get; set; }
|
||
public string NickName { get; set; }
|
||
public string Avatar { get; set; }
|
||
public string Cookie { get; set; }
|
||
}
|
||
public class SignForm
|
||
{
|
||
//页面1
|
||
public InputField email { get; set; }
|
||
public InputField captcha { get; set; }
|
||
public InputField password { get; set; }
|
||
public InputField cpassword { get; set; }
|
||
//页面2
|
||
public Dropdown years { get; set; }
|
||
public Dropdown months { get; set; }
|
||
public Dropdown days { get; set; }
|
||
public Dropdown genders { get; set; }
|
||
public InputField weight { get; set; }
|
||
public InputField height { get; set; }
|
||
public Dropdown countrys { get; set; }
|
||
public Dropdown units { get; set; }
|
||
}
|
||
public class LoginController : MonoBehaviour
|
||
{
|
||
[SerializeField] InputField[] loginForm;
|
||
[SerializeField] Button login;
|
||
[SerializeField] Button loginNewAccount;
|
||
[SerializeField] Button loginReturn2;
|
||
[SerializeField] Button returnQuick;
|
||
[SerializeField] Button sign;
|
||
[SerializeField] Button remember;
|
||
[SerializeField] Button wechatLogin;
|
||
[SerializeField] GameObject loginScrollView;
|
||
[SerializeField] GameObject signScrollView;
|
||
private Transform signPage1;
|
||
private Transform signPage2;
|
||
private Transform signScrollBar;
|
||
private SignForm signForm;
|
||
private LoginRegOptions regOptions;
|
||
[SerializeField] GameObject avatarScrollView;
|
||
[SerializeField] RawImage loading;
|
||
[SerializeField] Button exit;
|
||
private ScrollRect scrollPanel;
|
||
private ScrollRect scrollSign;
|
||
private ScrollRect scrollAvatar;
|
||
private Transform imagexf;
|
||
private Transform mainContent;
|
||
//注册主页面
|
||
private Transform signContainer;
|
||
private UserResultModel userResult;
|
||
/*微信相关*/
|
||
private Browser wxBrowser;
|
||
private string wxState;
|
||
private Transform wxLogin1;
|
||
private Transform wxLogin2;
|
||
private Transform wxLogin3;
|
||
private JObject wxInfoJson;
|
||
private bool wxLock;
|
||
/*微信相关*/
|
||
|
||
private List<QUserInfo> userInfos;
|
||
// Start is called before the first frame update
|
||
void Start()
|
||
{
|
||
var userInfosJson = PlayerPrefs.GetString("UserInfos");
|
||
userInfos = JsonConvert.DeserializeObject<List<QUserInfo>>(userInfosJson);
|
||
if (userInfos == null) userInfos = new List<QUserInfo>();
|
||
//userInfos.RemoveAt(0);
|
||
//PlayerPrefs.SetString("UserInfos", "");
|
||
//transform.Find("RawImage").DOMove(new Vector3(0.5f,0.5f,0),1);
|
||
if (loginForm.Length == 2 && loginForm[0] != null && loginForm[1] != null)
|
||
{
|
||
foreach (var ipt in loginForm)
|
||
{
|
||
UIManager.AddEvent(ipt.gameObject, EventTriggerType.PointerClick, new UnityAction<BaseEventData>
|
||
((BaseEventData arg0) => { OnLoginInputSelect(arg0, ipt.gameObject); }));
|
||
UIManager.AddEvent(ipt.gameObject, EventTriggerType.Select, new UnityAction<BaseEventData>
|
||
((BaseEventData arg0) => { OnLoginInputSelect(arg0, ipt.gameObject); }));
|
||
UIManager.AddEvent(ipt.gameObject, EventTriggerType.Deselect, new UnityAction<BaseEventData>
|
||
((BaseEventData arg0) => { OnLoginInputDeSelect(arg0, ipt.gameObject); }));
|
||
}
|
||
//loginForm[0].
|
||
}
|
||
if (login != null)
|
||
{
|
||
login.onClick.AddListener(Submit);
|
||
//login.onClick.AddListener(Submit);
|
||
}
|
||
if (loading != null)
|
||
{
|
||
loading.texture.wrapMode = TextureWrapMode.Repeat;
|
||
}
|
||
if (loginScrollView != null)
|
||
{
|
||
scrollPanel = loginScrollView.GetComponent<ScrollRect>();
|
||
mainContent = loginScrollView.transform.Find("Viewport").Find("Content");
|
||
}
|
||
if (signScrollView != null)
|
||
{
|
||
scrollSign = signScrollView.GetComponent<ScrollRect>();
|
||
var content = signScrollView.transform.Find("Viewport").Find("Content");
|
||
signPage1 = content.Find("FirstPage");
|
||
signPage1.Find("next").GetComponent<Button>().onClick.AddListener(()=> { goRegNext(); });
|
||
signPage1.Find("Captcha").Find("BtnGet").GetComponent<Button>().onClick.AddListener(GetCaptcha);
|
||
var email = signPage1.Find("Email").GetComponent<InputField>();
|
||
var captcha = signPage1.Find("Captcha").GetComponent<InputField>();
|
||
var password = signPage1.Find("Password").GetComponent<InputField>();
|
||
var cpassword = signPage1.Find("CPassword").GetComponent<InputField>();
|
||
//第三方登录要用的按钮
|
||
signPage1.Find("previousThird").GetComponent<Button>().onClick.AddListener(goThirdPrev);
|
||
signPage1.Find("signThird").GetComponent<Button>().onClick.AddListener(() => { goRegNext(1); });
|
||
signPage2 = content.Find("NextPage");
|
||
signPage2.Find("previous").GetComponent<Button>().onClick.AddListener(goRegPrev);
|
||
signPage2.Find("sign").GetComponent<Button>().onClick.AddListener(goRegEnd);
|
||
//注册2 字段
|
||
regOptions = new LoginRegOptions();
|
||
var years = signPage2.Find("Year").GetComponent<Dropdown>();
|
||
var months = signPage2.Find("Month").GetComponent<Dropdown>();
|
||
var days = signPage2.Find("Day").GetComponent<Dropdown>();
|
||
var genders = signPage2.Find("Gender").GetComponent<Dropdown>();
|
||
var countrys = signPage2.Find("Country").GetComponent<Dropdown>();
|
||
var units = signPage2.Find("Unit").GetComponent<Dropdown>();
|
||
years.options = regOptions.years;
|
||
months.options = regOptions.months;
|
||
days.options = regOptions.days;
|
||
years.captionText.text = "Year";
|
||
months.captionText.text = "Month";
|
||
days.captionText.text = "Day";
|
||
years.onValueChanged.AddListener((int index) =>
|
||
{
|
||
if (index != -1 && months.value!=-1)
|
||
{
|
||
days.options = regOptions.GetDayOptions(int.Parse(years.captionText.text), int.Parse(months.captionText.text));
|
||
days.value = 0;
|
||
}
|
||
});
|
||
months.onValueChanged.AddListener((int index) =>
|
||
{
|
||
if (index != -1 && years.value != -1)
|
||
{
|
||
days.options = regOptions.GetDayOptions(int.Parse(years.captionText.text), int.Parse(months.captionText.text));
|
||
days.value = 0;
|
||
}
|
||
});
|
||
genders.options = regOptions.genders;
|
||
genders.captionText.text = "Gender";
|
||
countrys.options = regOptions.countrys;
|
||
countrys.value = regOptions.countryDefaultValue;
|
||
countrys.onValueChanged.AddListener((int index) =>
|
||
{
|
||
countrys.transform.Find("RawImage").GetComponent<RawImage>().texture = regOptions.GetCountryImage(index);
|
||
});
|
||
units.options = regOptions.units;
|
||
units.captionText.text = "Display Units";
|
||
signForm = new SignForm()
|
||
{
|
||
email = email,
|
||
captcha = captcha,
|
||
password = password,
|
||
cpassword = cpassword,
|
||
weight = signPage2.Find("Weight").GetComponent<InputField>(),
|
||
height = signPage2.Find("Height").GetComponent<InputField>(),
|
||
years = years,
|
||
months = months,
|
||
days = days,
|
||
genders = genders,
|
||
countrys = countrys,
|
||
units = units,
|
||
};
|
||
signScrollBar = signScrollView.transform.Find("Image").Find("Image");
|
||
}
|
||
if (avatarScrollView != null)
|
||
{
|
||
scrollAvatar = avatarScrollView.GetComponent<ScrollRect>();
|
||
var content = scrollAvatar.transform.Find("Viewport").Find("Content");
|
||
foreach (var user in userInfos)
|
||
{
|
||
var info = Instantiate(Resources.Load<GameObject>("UI/Prefab/Login/QuickUserInfo")).transform;
|
||
info.GetComponent<QuickLoginUser>().Initial(user);
|
||
info.parent = content;
|
||
info.localScale = new Vector3(1, 1, 1);
|
||
}
|
||
content.Find("empty1").transform.SetSiblingIndex(0);
|
||
content.Find("empty2").transform.SetSiblingIndex(content.childCount-1);
|
||
scrollAvatar.GetComponent<QuickLoginScroll>().Initial();
|
||
}
|
||
if (loginNewAccount != null)
|
||
{
|
||
loginNewAccount.onClick.AddListener(goLogin);
|
||
}
|
||
if (returnQuick != null)
|
||
{
|
||
returnQuick.onClick.AddListener(ReturnQuick);
|
||
}
|
||
if (sign != null)
|
||
{
|
||
sign.onClick.AddListener(()=>goSign());
|
||
}
|
||
if (loginReturn2 != null)
|
||
{
|
||
loginReturn2.onClick.AddListener(goLoginReturn2);
|
||
}
|
||
if (exit != null)
|
||
{
|
||
exit.onClick.AddListener(() => Application.Quit());
|
||
}
|
||
signContainer = mainContent.Find("FormContainer-Sign");
|
||
if (remember != null)
|
||
{
|
||
remember.onClick.AddListener(() =>
|
||
{
|
||
var gou = remember.transform.Find("Gou");
|
||
if (gou.gameObject.activeSelf)
|
||
{
|
||
gou.gameObject.SetActive(false);
|
||
}
|
||
else
|
||
{
|
||
gou.gameObject.SetActive(true);
|
||
}
|
||
});
|
||
}
|
||
if (wechatLogin != null)
|
||
{
|
||
wechatLogin.onClick.AddListener(() =>
|
||
{
|
||
if (wxLock) return;
|
||
wxLock = true;
|
||
|
||
wxState = (DateTime.Now.ToUniversalTime().Ticks / 10000 * new System.Random().Next(1,5)).ToString();
|
||
wxBrowser.Url = $"https://open.weixin.qq.com/connect/qrconnect?appid={App.WxAppId}&redirect_uri=https%3A%2F%2Fwx.powerfun.com.cn%2FNoAuth%2Fv1%2FWxWebLogin&response_type=code&scope=snsapi_login&state={wxState}#wechat_redirect";
|
||
AdjustWxQrCode();
|
||
var wx1 = mainContent.Find("FormContainer-Login").Find("FormContainer-wx1");
|
||
wx1.gameObject.SetActive(true);
|
||
Debug.Log(178+ "已经开启"+ wx1.gameObject.activeSelf);
|
||
wx1.DOLocalMoveY(0, 0.3f).onComplete = ()=> { wxLock = false; };
|
||
});
|
||
}
|
||
wxLogin1 = mainContent.Find("FormContainer-Login").Find("FormContainer-wx1");
|
||
if (wxLogin1 != null)
|
||
{
|
||
wxLogin1.Find("Image").GetComponent<Button>().onClick.AddListener(() =>
|
||
{
|
||
wxLock = true;
|
||
wxLogin1.DOMoveY(-573, 0.8f).onComplete = () =>
|
||
{
|
||
wxLock = false;
|
||
wxLogin1.gameObject.SetActive(false);
|
||
};
|
||
});
|
||
wxBrowser = wxLogin1.Find("Browser (GUI)").GetComponent<Browser>();
|
||
if (wxBrowser != null)
|
||
{
|
||
// wxBrowser.EvalJS(@"Object.defineProperties(Navigator.prototype, {
|
||
// language: {
|
||
// value: 'zh-CN',
|
||
// configurable: false,
|
||
// enumerable: true,
|
||
// writable: false
|
||
// },
|
||
// languages: {
|
||
// value: ['zh-CN','en','zh'],
|
||
// configurable: false,
|
||
// enumerable: true,
|
||
// writable: false
|
||
// }
|
||
//});");
|
||
wxBrowser.onTextureUpdated += OnUserScan;
|
||
//browser.Zoom = 0.5f;
|
||
//browser.
|
||
}
|
||
}
|
||
|
||
wxLogin2 = mainContent.Find("FormContainer-wx2");
|
||
if (wxLogin2!=null)
|
||
{
|
||
wxLogin2.Find("return").GetComponent<Button>().onClick.AddListener(() => {
|
||
wxLogin2.gameObject.SetActive(false);
|
||
wxLogin3.gameObject.SetActive(false);
|
||
pageNums = 3;
|
||
Canvas.ForceUpdateCanvases();
|
||
StartScrollPanel(1);
|
||
});
|
||
|
||
wxLogin2.Find("Next").GetComponent<Button>().onClick.AddListener(()=>
|
||
{
|
||
this.goSign(false);
|
||
});
|
||
}
|
||
wxLogin3 = mainContent.Find("FormContainer-wx3");
|
||
if (wxLogin3 != null)
|
||
{
|
||
wxLogin3.Find("return").GetComponent<Button>().onClick.AddListener(() => {
|
||
if (signContainer.gameObject.activeSelf)
|
||
{
|
||
StartScrollPanel(3);
|
||
}
|
||
else
|
||
{
|
||
signContainer.gameObject.SetActive(true);
|
||
wxLogin3.gameObject.SetActive(false);
|
||
StartScrollPanel(1);
|
||
}
|
||
});
|
||
wxLogin3.Find("rememberButton").GetComponent<Button>().onClick.AddListener(()=>
|
||
{
|
||
var gou = wxLogin3.Find("rememberButton").Find("Gou").gameObject;
|
||
gou.SetActive(!gou.activeSelf);
|
||
});
|
||
wxLogin3.Find("Next").GetComponent<Button>().onClick.AddListener(() =>
|
||
{
|
||
goMain(wxLogin3.Find("rememberButton").Find("Gou"));
|
||
//goMain
|
||
});
|
||
}
|
||
imagexf = transform.Find("Panel").Find("LoginContainer").Find("Imagexf");
|
||
|
||
|
||
}
|
||
private void AdjustWxQrCode()
|
||
{
|
||
wxBrowser.EvalJS(@"
|
||
document.getElementsByClassName('qrcode')[0].style.marginTop = 0;
|
||
document.getElementsByClassName('title')[0].style.display = 'none';
|
||
document.body.style.background = '#272732';
|
||
document.body.style.overflow = 'hidden';
|
||
document.body.style.transformOrigin = 'top left';
|
||
document.body.style.transform = 'scale(0.85106382978)';
|
||
document.body.style.padding = '0';
|
||
");
|
||
}
|
||
//浏览器加载回调
|
||
private async void OnUserScan()
|
||
{
|
||
if (wxBrowser.Url.Contains("qrconnect"))
|
||
{
|
||
AdjustWxQrCode();
|
||
}
|
||
Debug.Log(wxBrowser.Url);
|
||
var rgx = Regex.Match(wxBrowser.Url, @"https\:\/\/wx.powerfun.com.cn/NoAuth/v1/WxWebLogin\?code=(.*?)&state=(.*?)$");
|
||
var groups = rgx.Groups;
|
||
if (groups.Count == 3)
|
||
{
|
||
wxLogin1.gameObject.SetActive(false);
|
||
var state = groups[2].Value;
|
||
if (state == wxState)
|
||
{
|
||
var acjson = await ConfigHelper.thirdPartApi.GetWxAccessToken(groups[1].Value);
|
||
var infojson = await ConfigHelper.thirdPartApi.GetWxUserInfo(
|
||
acjson.Value<string>("access_token"), acjson.Value<string>("openid"));
|
||
wxInfoJson = infojson;
|
||
string unionId = wxInfoJson.Value<string>("unionid"),
|
||
openId = wxInfoJson.Value<string>("openid");
|
||
var r = await ConfigHelper.userApi.OnWebWxLoginCheckUnionId(unionId, openId);
|
||
if (r.result)
|
||
{
|
||
JObject data = JObject.FromObject(r.data);
|
||
if (data.Value<string>("success")!=null && data.Value<string>("success") == "False")
|
||
{
|
||
wxLogin2.gameObject.SetActive(true);
|
||
Utils.DisplayImage(StartCoroutine,
|
||
wxLogin2.Find("Avatar").GetComponent<RawImage>(),
|
||
wxInfoJson.Value<string>("headimgurl"));
|
||
wxLogin2.Find("NickName").GetComponent<Text>().text = wxInfoJson.Value<string>("nickname");
|
||
wxLogin3.gameObject.SetActive(true);
|
||
Utils.DisplayImage(StartCoroutine,
|
||
wxLogin3.Find("Avatar").GetComponent<RawImage>(),
|
||
wxInfoJson.Value<string>("headimgurl"));
|
||
wxLogin3.Find("NickName").GetComponent<Text>().text = wxInfoJson.Value<string>("nickname");
|
||
pageNums = 5;
|
||
//this.goSign();
|
||
StartScrollPanel(2);
|
||
}
|
||
else
|
||
{
|
||
userResult = data.ToObject<UserResultModel>();
|
||
wxLogin3.gameObject.SetActive(true);
|
||
Utils.DisplayImage(StartCoroutine,
|
||
wxLogin3.Find("Avatar").GetComponent<RawImage>(),
|
||
wxInfoJson.Value<string>("headimgurl"));
|
||
wxLogin3.Find("NickName").GetComponent<Text>().text = wxInfoJson.Value<string>("nickname");
|
||
signContainer.gameObject.SetActive(false);
|
||
pageNums = 3;
|
||
//this.goSign();
|
||
StartScrollPanel(2);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
Utils.showToast(gameObject, r.errMsg);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
private void goThirdNext()
|
||
{
|
||
this.StartScrollPanel(4);
|
||
}
|
||
|
||
private void goThirdPrev()
|
||
{
|
||
this.StartScrollPanel(2);
|
||
}
|
||
|
||
private void OnDestroy()
|
||
{
|
||
|
||
}
|
||
|
||
//用于倒计时获取验证码
|
||
int time = 0;
|
||
float timer = 0f;
|
||
bool startCaptcha = false;
|
||
async void GetCaptcha()
|
||
{
|
||
var btn = signPage1.Find("Captcha").Find("BtnGet");
|
||
var btnText = signPage1.Find("Captcha").Find("BtnGet").Find("Text").GetComponent<Text>();
|
||
var Email = signForm.email;
|
||
var r = await ConfigHelper.userApi.GetCaptcha(Email.text);
|
||
//Timer t = new Ti
|
||
if (r.result)
|
||
{
|
||
time = 60;
|
||
btnText.text = $"Again({time})";
|
||
System.Timers.Timer timer = new System.Timers.Timer();
|
||
btn.GetComponent<Button>().enabled = false;
|
||
startCaptcha = true;
|
||
//timer.Interval = 1000;
|
||
//timer.AutoReset = true;
|
||
//timer.Elapsed += new ElapsedEventHandler(CaptchaTimerTick);
|
||
//timer.Enabled = true;
|
||
//btnGet.
|
||
}
|
||
else
|
||
{
|
||
Utils.showToast(gameObject, r.errMsg);
|
||
}
|
||
}
|
||
|
||
void CaptchaTimerTick()
|
||
{
|
||
timer -= Time.deltaTime;
|
||
if (timer <= 0)
|
||
{
|
||
var btn = signPage1.Find("Captcha").Find("BtnGet");
|
||
var btnText = signPage1.Find("Captcha").Find("BtnGet").Find("Text").GetComponent<Text>();
|
||
btnText.text = $"Again({time--})";
|
||
if (time < 0)
|
||
{
|
||
btnText.text = "Get";
|
||
btn.GetComponent<Button>().enabled = true;
|
||
startCaptcha = false;
|
||
//timer.Stop();
|
||
}
|
||
timer = 1.0f;
|
||
}
|
||
}
|
||
|
||
private void OnLoginInputDeSelect(BaseEventData arg0, GameObject game)
|
||
{
|
||
var image = game.transform.GetComponent<Image>();
|
||
image.sprite = Resources.Load<Sprite>("Images/gl-no");
|
||
//var rect = game.transform.GetComponent<RectTransform>();
|
||
//rect.SetSiblingIndex(rect.childCount-1);
|
||
}
|
||
|
||
private void OnLoginInputSelect(BaseEventData arg0,GameObject game)
|
||
{
|
||
var image = game.transform.GetComponent<Image>();
|
||
image.sprite = Resources.Load<Sprite>("Images/gl");
|
||
//var rect = game.transform.GetComponent<RectTransform>();
|
||
//rect.SetSiblingIndex(0);
|
||
}
|
||
|
||
private void goRegPrev()
|
||
{
|
||
StartScrollSign(0);
|
||
}
|
||
//0-普通 1-微信
|
||
private async void goRegNext(int signType = 0)
|
||
{
|
||
var Email = signForm.email;
|
||
var Captcha = signForm.captcha;
|
||
var Password = signForm.password;
|
||
var CPassword = signForm.cpassword;
|
||
//JsonConvert
|
||
JsonResult<UserResultModel> r = null;
|
||
if (signType == 0)
|
||
{
|
||
r = await ConfigHelper.userApi.Register(Email.text, Password.text, Captcha.text);
|
||
}
|
||
else if (signType == 1)
|
||
{
|
||
r = await ConfigHelper.userApi.OnWebWxLogin(Email.text,
|
||
Captcha.text,
|
||
wxInfoJson.Value<string>("unionid"),
|
||
wxInfoJson.Value<string>("openid"),
|
||
wxInfoJson.Value<string>("headimgurl"),
|
||
wxInfoJson.Value<string>("nickname"),
|
||
wxInfoJson.Value<int>("sex"),
|
||
Password.text);
|
||
}
|
||
if (r!=null && r.result)
|
||
{
|
||
StartScrollSign(1);
|
||
}
|
||
else
|
||
{
|
||
StartScrollSign(1);
|
||
//Utils.showToast(gameObject, r.errMsg, 1);
|
||
}
|
||
}
|
||
private void goRegEnd()
|
||
{
|
||
if (pageNums == 5)
|
||
{
|
||
this.StartScrollPanel(4);
|
||
}
|
||
//throw new NotImplementedException();
|
||
}
|
||
|
||
private void goLoginReturn2()
|
||
{
|
||
if (wxLogin2.gameObject.activeSelf) wxLogin2.gameObject.SetActive(false);
|
||
if (wxLogin3.gameObject.activeSelf) wxLogin3.gameObject.SetActive(false);
|
||
pageNums = 3;
|
||
Canvas.ForceUpdateCanvases();
|
||
this.StartScrollPanel(1);
|
||
}
|
||
|
||
void ReturnQuick()
|
||
{
|
||
if (imagexf != null)
|
||
{
|
||
imagexf.DOLocalMove(new Vector3(0, -447, 0), 0.3f);
|
||
}
|
||
this.StartScrollPanel(0);
|
||
}
|
||
void goLogin()
|
||
{
|
||
if (imagexf != null)
|
||
{
|
||
imagexf.DOLocalMove(new Vector3(0, -635, 0), 0.3f);
|
||
}
|
||
this.StartScrollPanel(1);
|
||
}
|
||
void goSign(bool isAccount = true)
|
||
{
|
||
if (!isAccount)
|
||
{
|
||
pageNums = 5;
|
||
//wxLogin2.gameObject.SetActive(false);
|
||
signPage1.Find("next").gameObject.SetActive(false);
|
||
signPage1.Find("previousThird").gameObject.SetActive(true);
|
||
signPage1.Find("signThird").gameObject.SetActive(true);
|
||
this.StartScrollPanel(3);
|
||
this.StartScrollSign(0);
|
||
}
|
||
else
|
||
{
|
||
pageNums = 3;
|
||
wxLogin2.gameObject.SetActive(false);
|
||
|
||
signPage1.Find("next").gameObject.SetActive(true);
|
||
signPage1.Find("previousThird").gameObject.SetActive(false);
|
||
signPage1.Find("signThird").gameObject.SetActive(false);
|
||
this.StartScrollPanel(2);
|
||
this.StartScrollSign(0);
|
||
}
|
||
|
||
}
|
||
void goMain(Transform gou)
|
||
{
|
||
var data = userResult;
|
||
if (data == null) return;
|
||
//ConfigHelper.CurrentUser = res.data;
|
||
if (gou != null && gou.gameObject.activeSelf && !userInfos.Exists(x => x.Id == data.Id))
|
||
{
|
||
userInfos.Add(new QUserInfo
|
||
{
|
||
Id = data.Id,
|
||
NickName = data.Nickname,
|
||
Avatar = data.WxHeadImg,
|
||
Cookie = data.cookie
|
||
});
|
||
PlayerPrefs.SetString("UserInfos", JsonConvert.SerializeObject(userInfos));
|
||
}
|
||
App.CurrentUser = new UserModel
|
||
{
|
||
NickName = data.Nickname,
|
||
Ftp = data.FTP,
|
||
Weight = data.Weight,
|
||
BicycleWeight = data.BicycleWeight,
|
||
Carlories = "",
|
||
Avatar = data.WxHeadImg,
|
||
Distance = 0,
|
||
Climb = "",
|
||
};
|
||
SceneManager.LoadScene("MainScene");
|
||
}
|
||
async void Submit()
|
||
{
|
||
if (loginForm[0] == null || loginForm[1] == null)
|
||
{
|
||
Utils.showToast(gameObject, "未绑定", 1);
|
||
return;
|
||
}
|
||
if (string.IsNullOrEmpty(loginForm[0].text) || string.IsNullOrEmpty(loginForm[1].text))
|
||
{
|
||
Utils.showToast(gameObject, "请输入信息", 1);
|
||
return;
|
||
}
|
||
//var res = await Global.userApi.Login(phone.text, pwd.text, "");
|
||
//测试用
|
||
var res = await ConfigHelper.userApi.Login(loginForm[0].text, loginForm[1].text, "");
|
||
//var res = await NoAuthApi.Login(phone.text, pwd.text);
|
||
if (res.result)
|
||
{
|
||
userResult = res.data;
|
||
goMain(remember.transform.Find("Gou"));
|
||
}
|
||
else
|
||
{
|
||
|
||
}
|
||
}
|
||
// Update is called once per frame
|
||
void Update()
|
||
{
|
||
//Debug.Log($"{phone.isFocused}, ${pwd != null}, ${Input.GetKeyDown(KeyCode.Tab)}");
|
||
if (loginForm[0].isFocused && loginForm[1] != null && Input.GetKeyDown(KeyCode.Tab))
|
||
{
|
||
loginForm[1].ActivateInputField();
|
||
}
|
||
if (startCaptcha)
|
||
{
|
||
CaptchaTimerTick();
|
||
}
|
||
goScrollPanel();
|
||
goScrollSign();
|
||
//if (Input.GetKeyDown(KeyCode.Return) && )
|
||
//{
|
||
//}
|
||
//if (Input.GetKeyDown(KeyCode.Return)) {
|
||
// Debug.Log("回车键");
|
||
// if (pwd.isFocused)
|
||
// {
|
||
// this.Submit();
|
||
// }
|
||
//}
|
||
}
|
||
|
||
#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 int pageNums = 3;
|
||
private void goScrollPanel()
|
||
{
|
||
var index = scrollPanelIndex;
|
||
var scrollValue = 1f/(pageNums - 1);
|
||
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 StartScrollSign(int index)
|
||
{
|
||
if (startScrollSign) return;
|
||
scrollSignIndex = index;
|
||
startScrollSign = true;
|
||
Debug.Log($"{index},{index * 160}");
|
||
if (index == 1)
|
||
{
|
||
if (signForm.years.value!=-1) signForm.years.value = 0;
|
||
if (signForm.months.value != -1) signForm.months.value = 0;
|
||
if (signForm.days.value != -1) signForm.days.value = 0;
|
||
if (signForm.countrys.value != -1) signForm.countrys.value = regOptions.countryDefaultValue;
|
||
if (signForm.genders.value != -1) signForm.genders.value = 0;
|
||
if (signForm.units.value != -1) signForm.units.value = 0;
|
||
if (pageNums == 5 && wxInfoJson != null)
|
||
{
|
||
var sex = wxInfoJson.Value<int>("sex");
|
||
if (sex > 0)
|
||
{
|
||
signForm.genders.value = sex - 1;
|
||
}
|
||
var country = wxInfoJson.Value<string>("country");
|
||
signForm.countrys.value = regOptions.GetCountryIndexByCode(country);
|
||
}
|
||
signForm.weight.text = "";
|
||
signForm.height.text = "";
|
||
}
|
||
signScrollBar.DOLocalMoveX((index-1) *160, 0.2f);
|
||
}
|
||
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
|
||
}
|