diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/UI/ForgeAttrPreViewHandler.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/UI/ForgeAttrPreViewHandler.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/UI/ForgeAttrPreViewHandler.cs | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/UI/ForgeAttrPreViewHandler.cs b/Client/Assets/Scripts/XMainClient/UI/ForgeAttrPreViewHandler.cs new file mode 100644 index 00000000..255de326 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/UI/ForgeAttrPreViewHandler.cs @@ -0,0 +1,141 @@ +using System;
+using System.Collections.Generic;
+using UILib;
+using UnityEngine;
+using XUtliPoolLib;
+
+namespace XMainClient.UI
+{
+ internal class ForgeAttrPreViewHandler : DlgHandlerBase
+ {
+ private XForgeDocument m_doc;
+
+ private IXUISprite m_closeBtn;
+
+ private IXUIScrollView m_scrollView;
+
+ private GameObject m_detailGo;
+
+ private GameObject m_WithoutAttrGo;
+
+ private GameObject m_WithAttrGo;
+
+ private XUIPool m_itemPool = new XUIPool(XSingleton<XGameUI>.singleton.m_uiTool);
+
+ protected override void Init()
+ {
+ base.Init();
+ this.m_doc = XForgeDocument.Doc;
+ this.m_closeBtn = (base.PanelObject.transform.Find("Close").GetComponent("XUISprite") as IXUISprite);
+ this.m_scrollView = (base.PanelObject.transform.Find("Detail").GetComponent("XUIScrollView") as IXUIScrollView);
+ this.m_detailGo = base.PanelObject.transform.Find("Detail").gameObject;
+ this.m_itemPool.SetupPool(base.PanelObject, base.PanelObject.transform.Find("Tpl").gameObject, 3u, true);
+ this.m_WithoutAttrGo = base.PanelObject.transform.Find("Withoutattr").gameObject;
+ this.m_WithAttrGo = base.PanelObject.transform.Find("Withattr").gameObject;
+ }
+
+ public override void RegisterEvent()
+ {
+ base.RegisterEvent();
+ this.m_closeBtn.RegisterSpriteClickEventHandler(new SpriteClickEventHandler(this.OnCloseClicked));
+ }
+
+ protected override void OnShow()
+ {
+ base.OnShow();
+ this.FillContent();
+ }
+
+ protected override void OnHide()
+ {
+ this.m_itemPool.ReturnAll(false);
+ base.OnHide();
+ }
+
+ public override void OnUnload()
+ {
+ this.m_doc.View = null;
+ base.OnUnload();
+ }
+
+ private void FillContent()
+ {
+ this.m_itemPool.ReturnAll(true);
+ XItem itemByUID = XBagDocument.BagDoc.GetItemByUID(this.m_doc.CurUid);
+ bool flag = itemByUID == null;
+ if (!flag)
+ {
+ XEquipItem xequipItem = itemByUID as XEquipItem;
+ bool flag2 = xequipItem.forgeAttrInfo.ForgeAttr.Count == 0;
+ if (flag2)
+ {
+ this.m_WithoutAttrGo.SetActive(true);
+ this.m_WithAttrGo.SetActive(false);
+ }
+ else
+ {
+ this.m_WithoutAttrGo.SetActive(false);
+ this.m_WithAttrGo.SetActive(true);
+ }
+ EquipSlotAttrDatas attrData = XForgeDocument.ForgeAttrMgr.GetAttrData((uint)itemByUID.itemID);
+ bool flag3 = attrData == null;
+ if (!flag3)
+ {
+ EquipSlotAttrData attrData2 = attrData.GetAttrData(1);
+ bool flag4 = attrData2 == null;
+ if (!flag4)
+ {
+ int num = 0;
+ for (int i = 0; i < attrData2.AttrDataList.Count; i++)
+ {
+ EquipAttrData equipAttrData = attrData2.AttrDataList[i];
+ bool flag5 = equipAttrData.Prob == 0u;
+ if (!flag5)
+ {
+ string text = XAttributeCommon.GetAttrStr((int)equipAttrData.AttrId);
+ bool flag6 = XSingleton<XAttributeMgr>.singleton.XPlayerData != null;
+ if (flag6)
+ {
+ ProfessionTable.RowData byProfID = XSingleton<XEntityMgr>.singleton.RoleInfo.GetByProfID(XSingleton<XAttributeMgr>.singleton.XPlayerData.BasicTypeID);
+ bool flag7 = byProfID != null;
+ if (flag7)
+ {
+ List<int> list;
+ bool flag8 = this.m_doc.AttackTypeDic.TryGetValue((int)byProfID.AttackType, out list);
+ if (flag8)
+ {
+ for (int j = 0; j < list.Count; j++)
+ {
+ bool flag9 = (long)list[j] == (long)((ulong)equipAttrData.AttrId);
+ if (flag9)
+ {
+ text = string.Empty;
+ break;
+ }
+ }
+ }
+ }
+ }
+ bool flag10 = text == string.Empty;
+ if (!flag10)
+ {
+ GameObject gameObject = this.m_itemPool.FetchGameObject(false);
+ gameObject.transform.parent = this.m_detailGo.transform;
+ gameObject.transform.localPosition = this.m_itemPool.TplPos + new Vector3((float)(this.m_itemPool.TplWidth * (num % 2)), (float)(-(float)this.m_itemPool.TplHeight * (num / 2)), 0f);
+ IXUILabel ixuilabel = gameObject.transform.Find("AttrName").GetComponent("XUILabel") as IXUILabel;
+ ixuilabel.SetText(text);
+ num++;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ private void OnCloseClicked(IXUISprite spr)
+ {
+ base.SetVisible(false);
+ }
+ }
+}
|