using UI.ClothingShop; using UI.CommonGame; using FairyGUI; using UnityEngine; using System.Collections.Generic; using System; namespace GFGGame { public class ClothingShopView : BaseView { private const int SHOES_Y = 105; private const int HEAD_Y = 609; private const int BODY_Y = 412; private const float SCALE_MAX = 1.5f; private const float DURATION = 0.6f; private readonly int[] HEAD_Y_ARR = new int[] { ConstDressUpItemType.FA_XING, ConstDressUpItemType.NEI_DA, ConstDressUpItemType.SHANG_YI, ConstDressUpItemType.TOU_SHI, ConstDressUpItemType.ER_SHI, ConstDressUpItemType.JING_SHI }; private readonly int[] SHOES_Y_ARR = new int[] { ConstDressUpItemType.XIA_ZHUANG, ConstDressUpItemType.WA_ZI, ConstDressUpItemType.XIE_ZI, ConstDressUpItemType.SHOU_SHI, ConstDressUpItemType.YAO_SHI }; private UI_ClothingShopUI _ui; private GameObject _scenePrefab; private GameObject _sceneObject; private GoWrapper _wrapper; private DressUpObjDataCache _dressUpObjDataCache; private ValueBarController _valueBarController; private List _dataList; private GLoader _imgSelected; private ClothingShopCfg _cfgSelected; private const int MAX_COUNT = 99; private const int INIT_COUNT = 1; private int _scoreType; private int _storeId = 1; private GObject _selectedListItem; private int _selectedItemId;//打开界面时选中的物品id private int _selectedType = 0;//打开界面时选中的物品类型 private int _selectedItemCount; private int _selectedItemClothingId; public override void Dispose() { _valueBarController.Dispose(); _valueBarController = null; if (_scenePrefab != null) { GameObject.Destroy(_scenePrefab); _scenePrefab = null; } if (_imgSelected != null) { _imgSelected.RemoveFromParent(); _imgSelected.Dispose(); } if (_dressUpObjDataCache != null) { _dressUpObjDataCache.Dispose(); _dressUpObjDataCache = null; } _cfgSelected = null; EventAgent.RemoveEventListener(ConstMessage.ITEM_CHANGED, UpdateItemChange); base.Dispose(); } protected override void OnInit() { base.OnInit(); packageName = UI_ClothingShopUI.PACKAGE_NAME; _ui = UI_ClothingShopUI.Create(); this.viewCom = _ui.target; isfullScreen = true; _valueBarController = new ValueBarController(_ui.m_valueBar); _scenePrefab = GFGAsset.Load(ResPathUtil.GetPrefabPath("SceneDressUp")); _dressUpObjDataCache = new DressUpObjDataCache(); _imgSelected = new GLoader(); _imgSelected.x = -5; _imgSelected.y = -3; _imgSelected.url = "ui://ClothingShop/fzd_fzxzhong"; _ui.m_listShop.itemRenderer = ListShopItemRender; _ui.m_btnBack.onClick.Add(OnClickBtnBack); _ui.m_compItemInfo.m_btnBuy.onClick.Add(OnclickBtnBuy); _ui.m_listType.onClickItem.Add(OnClickListTypeItem); _ui.m_listShop.onClickItem.Add(OnClickListShopItem); _ui.m_compItemInfo.m_listTag.itemRenderer = RenderListTagItem; EventAgent.AddEventListener(ConstMessage.ITEM_CHANGED, UpdateItemChange); EventAgent.AddEventListener(ConstMessage.NUMERIC_CHANGE, UpdateItemChange); // EventAgent.DispatchEvent(ConstMessage.MONEY_CHANGE, RoleDataManager.gold); } protected override void OnShown() { base.OnShown(); _storeId = ConstStoreId.CLOTHING_STORE_ID; _scoreType = 0; _selectedItemId = 0; _selectedType = 0; if (this.viewData != null) { //this.viewData[0]=storeId(商店Id) //this.viewData[1]=_scoreType(服装属性:风花雪月) //this.viewData[2]=_selectedItemId //this.viewData[2]=_selectedItemCount object[] objs = this.viewData as object[]; if (objs.Length > 0 && objs[0] != null) { _storeId = (int)objs[0];//从抽奖跳转到商店会区分商店Id } if (objs.Length > 1 && objs[1] != null) { _scoreType = (int)objs[1];//从战斗跳转到商店需要服装突出属性用来服装排序 } if (objs.Length > 2 && objs[2] != null) { _selectedItemId = (int)objs[2];//从物品来源面板跳转到商店,需要物品id方便打开界面时做选中处理 _selectedItemCount = (int)objs[3]; ClothingShopCfg[] dataArray = ClothingShopCfgArray.Instance.dataArray; for (int i = 0; i < dataArray.Length; i++) { if (dataArray[i].itemID == _selectedItemId) { _selectedType = dataArray[i].typeIndex; _selectedItemClothingId = dataArray[i].id; break; } } } } _ui.m_c1.selectedIndex = _storeId; _ui.m_compItemInfo.m_c1.selectedIndex = _storeId; _ui.m_listType.selectedIndex = _selectedType; _ui.m_listType.ScrollToView(_selectedType); UpdateList(false); _ui.m_listShop.height = _ui.target.height - _ui.m_listShop.y; _ui.m_bgList.height = _ui.target.height - _ui.m_bgList.y; EventAgent.AddEventListener(ConstMessage.ITEM_CHANGED, UpdateSelectedItemInfo); UpdateCJGoodsCount(); _valueBarController.OnShown(); _valueBarController.Controller(1); if (_storeId == ConstStoreId.CLOTHING_STORE_ID) { _valueBarController.Controller(1); } else if (_storeId == ConstStoreId.LUCKY_BOX_STORE_ID) { _valueBarController.Controller(2); } else if (_storeId == ConstStoreId.LUCKY_BOX_ACTIVITY_STORE_ID) { _valueBarController.Controller(3); } if (_selectedItemId > 0) { BuyItemConteoller.Show(_cfgSelected.itemID, _cfgSelected.costID, INIT_COUNT, _cfgSelected.costNum, _selectedItemCount, null, true, false, MAX_COUNT); } // GuideController.TryGuideClothingShopViewBtnBug(_ui.m_compItemInfo.m_btnBuy); } protected override void OnHide() { base.OnHide(); _valueBarController.OnHide(); if (_sceneObject != null) { GameObject.Destroy(_sceneObject); _sceneObject = null; } if (_wrapper != null) { _wrapper.wrapTarget = null; } _selectedItemId = 0; EventAgent.RemoveEventListener(ConstMessage.ITEM_CHANGED, UpdateSelectedItemInfo); } private void OnClickBtnBack() { ViewManager.GoBackFrom(ViewName.CLOTHING_SHOP_VIEW); this.Hide(); } private void OnclickBtnBuy() { int count = _selectedItemId > 0 && _cfgSelected.itemID == _selectedItemId ? _selectedItemCount : INIT_COUNT; BuyItemConteoller.Show(_cfgSelected.itemID, _cfgSelected.costID, INIT_COUNT, _cfgSelected.costNum, count, null, true, false, MAX_COUNT); } private void UpdateItemChange() { UpdateCJGoodsCount(); UpdateList(false); } private void UpdateCJGoodsCount() { int luckyBoxId1 = LuckyBoxDataManager.BOX_ID_3; LuckyBoxCfg luckyBoxCfg1 = LuckyBoxCfgArray.Instance.GetCfg(luckyBoxId1); _ui.m_txtCount0.text = "" + ItemDataManager.GetItemNum(luckyBoxCfg1.drop); _ui.m_loaIcon0.icon = ResPathUtil.GetCommonGameResPath(ItemCfgArray.Instance.GetCfg(luckyBoxCfg1.drop).res); int luckyBoxId2 = LuckyBoxDataManager.BOX_ID_2; LuckyBoxCfg luckyBoxCfg2 = LuckyBoxCfgArray.Instance.GetCfg(luckyBoxId2); _ui.m_txtCount1.text = "" + ItemDataManager.GetItemNum(luckyBoxCfg2.drop); _ui.m_loaIcon1.icon = ResPathUtil.GetCommonGameResPath(ItemCfgArray.Instance.GetCfg(luckyBoxCfg2.drop).res); } private void UpdateRole(bool tween) { if (_sceneObject != null) { GameObject.Destroy(_sceneObject); _sceneObject = null; } _sceneObject = GameObject.Instantiate(_scenePrefab); int scale = 70; _sceneObject.transform.localScale = new Vector3(scale, scale, scale); _dressUpObjDataCache.setSceneObj(_sceneObject); _dressUpObjDataCache.PutOnDefaultSuitSaved(false); _dressUpObjDataCache.AddOrRemove(_cfgSelected.itemID, true); if (_wrapper == null) { _wrapper = new GoWrapper(_sceneObject); _ui.m_compHolder.m_compMover.m_holder.SetNativeObject(_wrapper); } else { _wrapper.wrapTarget = _sceneObject; } int type = ItemUtilCS.GetItemSubType(_cfgSelected.itemID); float duration = DURATION; if (!tween) { duration = 0; } if (Array.IndexOf(HEAD_Y_ARR, type) >= 0) { _ui.m_compHolder.m_compMover.target.TweenMoveY(HEAD_Y, duration); _ui.m_compHolder.m_compMover.target.TweenScale(new Vector2(SCALE_MAX, SCALE_MAX), duration); } else if (Array.IndexOf(SHOES_Y_ARR, type) >= 0) { _ui.m_compHolder.m_compMover.target.TweenMoveY(SHOES_Y, duration); _ui.m_compHolder.m_compMover.target.TweenScale(new Vector2(SCALE_MAX, SCALE_MAX), duration); } else { _ui.m_compHolder.m_compMover.target.TweenMoveY(BODY_Y, duration); _ui.m_compHolder.m_compMover.target.TweenScale(new Vector2(1, 1), duration); } } private void UpdateList(bool tween) { _ui.m_listShop.RemoveChildrenToPool(); int typeIndex = _ui.m_listType.selectedIndex; _dataList = ClothingShopCfgManager.Instance.GetList(_storeId, typeIndex, _scoreType); _ui.m_listShop.numItems = _dataList.Count; if (_ui.m_listShop.numItems > 0) { ClothingShopCfg clothingShopCfg = ClothingShopCfgArray.Instance.GetCfg(_selectedItemClothingId); int itemIndex = 0; if (_selectedItemId > 0 && clothingShopCfg != null) { itemIndex = _dataList.IndexOf(clothingShopCfg); _ui.m_listShop.ScrollToView(itemIndex < 0 ? 0 : itemIndex); // _selectedItemId = 0; } UpdateSelectedItemInfo(_ui.m_listShop.GetChildAt(itemIndex) as GComponent, tween); } } private void OnClickListTypeItem(EventContext context) { UpdateList(true); } private void OnClickListShopItem(EventContext context) { _selectedItemId = 0; UpdateSelectedItemInfo(context.data as GComponent, true); } private void ListShopItemRender(int index, GObject item) { UI_ShopListItemRender listItem = UI_ShopListItemRender.Proxy(item); ClothingShopCfg cfg = _dataList[index]; listItem.target.data = cfg; ItemCfg itemCfg = ItemCfgArray.Instance.GetCfg(cfg.itemID); listItem.m_icon.url = ResPathUtil.GetIconPath(itemCfg); string itemName = itemCfg.name; listItem.m_txtName.text = itemName; RarityIconController.UpdateRarityIcon(listItem.m_rarity, cfg.itemID, false); ItemCfg costItemCfg = ItemCfgArray.Instance.GetCfg(cfg.costID); listItem.m_iconPrice.url = "ui://CommonGame/" + costItemCfg.res; listItem.m_imgOwned.visible = ItemDataManager.GetItemNum(cfg.itemID) > 0; listItem.m_txtPrice.text = ItemDataManager.GetItemNum(cfg.costID) >= cfg.costNum ? StringUtil.GetColorText(cfg.costNum.ToString(), "#DD994A") : StringUtil.GetColorText(cfg.costNum.ToString(), "#F2989B"); } private void UpdateSelectedItemInfo(GComponent listItem, bool tween) { _selectedListItem = listItem; listItem.AddChild(_imgSelected); ClothingShopCfg cfg = listItem.data as ClothingShopCfg; _cfgSelected = cfg; UpdateRole(tween); UpdateSelectedItemInfo(); } private void UpdateSelectedItemInfo() { ItemCfg itemCfg = ItemCfgArray.Instance.GetCfg(_cfgSelected.itemID); string itemName = itemCfg.name; _ui.m_compItemInfo.m_txtName.text = itemName; _ui.m_compItemInfo.m_txtDesc.text = itemCfg.desc; RarityIconController.UpdateRarityIcon(_ui.m_compItemInfo.m_rarity, _cfgSelected.itemID, false); ItemCfg costItemCfg = ItemCfgArray.Instance.GetCfg(_cfgSelected.costID); _ui.m_compItemInfo.m_iconPrice.url = "ui://CommonGame/" + costItemCfg.res; _ui.m_compItemInfo.m_txtPrice.text = "" + _cfgSelected.costNum; _ui.m_compItemInfo.m_txtGong.text = "" + itemCfg.score1; _ui.m_compItemInfo.m_txtShang.text = "" + itemCfg.score2; _ui.m_compItemInfo.m_txtJue.text = "" + itemCfg.score3; _ui.m_compItemInfo.m_txtZhi.text = "" + itemCfg.score4; _ui.m_compItemInfo.m_txtOwned.SetVar("v1", "" + ItemDataManager.GetItemNum(_cfgSelected.itemID)).FlushVars(); UI_ShopListItemRender listItem = UI_ShopListItemRender.Proxy(_selectedListItem); listItem.m_imgOwned.visible = ItemDataManager.GetItemNum(_cfgSelected.itemID) > 0; _ui.m_compItemInfo.m_listTag.numItems = itemCfg.tagsArr.Length; } private void RenderListTagItem(int index, GObject obj) { UI_ListTagItem item = UI_ListTagItem.Proxy(obj); ItemCfg itemCfg = ItemCfgArray.Instance.GetCfg(_cfgSelected.itemID); string[] tag = itemCfg.tagsArr[index].Split('_'); item.m_loaTag.url = ResPathUtil.GetCommonGameResPath("fzd_bqbq_" + tag[0]); item.m_txtTag.text = tag[1]; } protected override void UpdateToCheckGuide(object param) { if (!ViewManager.CheckIsTopView(this.viewCom)) return; GuideController.TryGuide(_ui.m_btnBack, ConstGuideId.BUY_CLOTHING, 4, "点击返回,回到换装"); } } }