From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/UI/FashionStorageAttributeFrame.cs | 171 +++++++++++++++++++++ 1 file changed, 171 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/UI/FashionStorageAttributeFrame.cs (limited to 'Client/Assets/Scripts/XMainClient/UI/FashionStorageAttributeFrame.cs') diff --git a/Client/Assets/Scripts/XMainClient/UI/FashionStorageAttributeFrame.cs b/Client/Assets/Scripts/XMainClient/UI/FashionStorageAttributeFrame.cs new file mode 100644 index 00000000..9b979ec4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/UI/FashionStorageAttributeFrame.cs @@ -0,0 +1,171 @@ +using System; +using System.Collections.Generic; +using UILib; +using UnityEngine; +using XUtliPoolLib; + +namespace XMainClient.UI +{ + public class FashionStorageAttributeFrame : DlgHandlerBase + { + private IXUIScrollView m_scrollView; + + private IXUIWrapContent m_wrapContent; + + private IXUILabel m_titleLabel; + + private IXUIButton m_editPortrait; + + private IXUISprite m_redPoint; + + private IFashionStorageSelect m_select; + + private XFashionStorageDocument m_doc; + + private Color m_normaColor = new Color(225f, 145f, 65f); + + private IXUILabel m_descLabel; + + private Transform m_getAll; + + private IXUILabel m_fightLabel; + + protected override void Init() + { + base.Init(); + this.m_doc = XDocuments.GetSpecificDocument(XFashionStorageDocument.uuID); + this.m_titleLabel = (base.transform.Find("Title").GetComponent("XUILabel") as IXUILabel); + this.m_editPortrait = (base.transform.Find("EditPortrait").GetComponent("XUIButton") as IXUIButton); + this.m_scrollView = (base.transform.Find("ScrollView").GetComponent("XUIScrollView") as IXUIScrollView); + this.m_wrapContent = (base.transform.Find("ScrollView/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent); + this.m_redPoint = (base.transform.Find("EditPortrait/RedPoint").GetComponent("XUISprite") as IXUISprite); + this.m_descLabel = (base.transform.Find("T").GetComponent("XUILabel") as IXUILabel); + this.m_getAll = base.transform.Find("T22"); + this.m_wrapContent.RegisterItemUpdateEventHandler(new WrapItemUpdateEventHandler(this.OnWrapContentUpdate)); + this.m_editPortrait.RegisterClickEventHandler(new ButtonClickEventHandler(this.ClickEditPortrait)); + this.m_fightLabel = (base.transform.Find("T2").GetComponent("XUILabel") as IXUILabel); + } + + private bool ClickEditPortrait(IXUIButton btn) + { + bool flag = btn.ID == 0UL || this.m_select == null; + bool result; + if (flag) + { + result = false; + } + else + { + bool redPoint = this.m_select.RedPoint; + if (redPoint) + { + this.m_doc.SendActivateFashion((uint)btn.ID); + } + else + { + XSingleton.singleton.ShowSystemTip(XStringDefineProxy.GetString("FASHION_STORAGE_ACTIVATE_TIPS"), "fece00"); + } + result = true; + } + return result; + } + + private void OnWrapContentUpdate(Transform t, int index) + { + bool flag = this.m_select == null; + if (!flag) + { + bool flag2 = index < this.m_select.GetAttributeCharm().Count && index >= 0; + if (flag2) + { + IXUILabel ixuilabel = t.GetComponent("XUILabel") as IXUILabel; + AttributeCharm attributeCharm = this.m_select.GetAttributeCharm()[index]; + string @string = XStringDefineProxy.GetString((XAttributeDefine)attributeCharm.key); + ixuilabel.SetText(XStringDefineProxy.GetString("FASHION_STORAGE_ATT", new object[] + { + attributeCharm.index, + @string, + attributeCharm.value + })); + ixuilabel.SetColor(attributeCharm.active ? this.m_normaColor : Color.gray); + } + } + } + + private int GetPPT(List charms) + { + double num = 0.0; + int i = 0; + int count = charms.Count; + while (i < count) + { + num += XSingleton.singleton.GetPPT(charms[i].key, charms[i].value, null, -1); + i++; + } + return (int)num; + } + + internal void SetFashionCharm(IFashionStorageSelect select = null) + { + this.m_select = select; + bool flag = select == null; + if (flag) + { + this.m_wrapContent.SetContentCount(0, false); + this.m_scrollView.ResetPosition(); + this.m_titleLabel.SetText(""); + this.m_editPortrait.SetVisible(false); + this.m_editPortrait.ID = 0UL; + this.m_redPoint.SetVisible(false); + this.m_descLabel.SetText(""); + this.m_fightLabel.SetText(""); + bool flag2 = this.m_getAll != null; + if (flag2) + { + this.m_getAll.gameObject.SetActive(false); + } + } + else + { + this.m_wrapContent.SetContentCount(this.m_select.GetAttributeCharm().Count, false); + this.m_scrollView.ResetPosition(); + this.m_editPortrait.ID = (ulong)((long)this.m_select.GetID()); + this.m_titleLabel.SetText(XStringDefineProxy.GetString("FASHIONSTORAGE_ATT_TITLE", new object[] + { + this.m_select.GetCount(), + this.m_select.GetFashionList().Length + })); + this.m_editPortrait.SetVisible(!this.m_select.ActivateAll); + this.m_fightLabel.SetText(XStringDefineProxy.GetString("FASHION_FIGHT_DESC", new object[] + { + this.m_select.GetFashionList().Length, + this.GetPPT(this.m_select.GetAttributeCharm()) + })); + this.m_redPoint.SetVisible(this.m_select.RedPoint); + bool flag3 = this.m_getAll != null; + if (flag3) + { + this.m_getAll.gameObject.SetActive(this.m_select.ActivateAll); + } + this.m_editPortrait.SetGrey(this.m_select.RedPoint); + bool flag4 = this.m_select is FashionStorageFashionCollection; + if (flag4) + { + this.m_descLabel.SetText(XStringDefineProxy.GetString("FASHION_STORAGE_FASHION_DESC")); + } + else + { + bool flag5 = this.m_select is FashionStorageEquipCollection; + if (flag5) + { + this.m_descLabel.SetText(XStringDefineProxy.GetString("FASHION_STORAGE_EQUIP_DESC")); + } + else + { + this.m_descLabel.SetText(""); + } + } + } + } + } +} -- cgit v1.1-26-g67d0