Esempio n. 1
0
        public void OpenAwakeAwardForm()
        {
            CUIFormScript script = Singleton <CUIManager> .GetInstance().OpenForm(s_heroAwakeFinishFormPath, false, true);

            if (script != null)
            {
                Text             component = script.transform.Find("Panel/panelRewards/award1/lblDesc").GetComponent <Text>();
                Text             text2     = script.transform.Find("Panel/panelRewards/award2/lblDesc").GetComponent <Text>();
                CUI3DImageScript script2   = script.transform.Find("3DImage").GetComponent <CUI3DImageScript>();
                ResTalentLib     dataByKey = GameDataMgr.talentLib.GetDataByKey(this.m_heroInfo.cfgInfo.dwWakeTalentID);
                if (dataByKey != null)
                {
                    component.text = StringHelper.UTF8BytesToString(ref dataByKey.szDesc);
                }
                ResHeroSkin heroSkin = CSkinInfo.GetHeroSkin(this.m_heroInfo.cfgInfo.dwWakeSkinID);
                if (heroSkin != null)
                {
                    string[] args = new string[] { StringHelper.UTF8BytesToString(ref heroSkin.szSkinName) };
                    text2.text = Singleton <CTextManager> .instance.GetText("HeroAwake_Tips3", args);
                }
                ObjNameData data  = CUICommonSystem.GetHeroPrefabPath(this.m_heroInfo.cfgInfo.dwCfgID, (int)heroSkin.dwSkinID, true);
                GameObject  model = (script2 == null) ? null : script2.AddGameObject(data.ObjectName, false, false);
                if (model != null)
                {
                    CHeroAnimaSystem instance = Singleton <CHeroAnimaSystem> .GetInstance();

                    instance.Set3DModel(model);
                    instance.InitAnimatList();
                    instance.InitAnimatSoundList(this.m_heroInfo.cfgInfo.dwCfgID, heroSkin.dwSkinID);
                    instance.OnModePlayAnima("Come");
                }
            }
        }
Esempio n. 2
0
 private void EndDialogue()
 {
     if (this.m_actorLines != null)
     {
         this.m_actorLines = null;
     }
     if (this.m_curUiFormPortrait != null)
     {
         Transform transform = this.m_curUiFormPortrait.gameObject.transform.FindChild("PanelCenter");
         if (transform != null)
         {
             Transform transform2 = transform.FindChild("3DImage");
             if (transform2 != null)
             {
                 CUI3DImageScript component = transform2.gameObject.GetComponent <CUI3DImageScript>();
                 component.RemoveGameObject(this.m_3dPortraitName);
             }
         }
     }
     this.OnDestroyPortrait(this.m_3dPortraitName);
     this.m_3dPortraitName = null;
     this.Portrait3dAnimCoMap.Clear();
     this.m_actorLinesRaw = null;
     this.m_curIndex      = -1;
     Singleton <CBattleGuideManager> .GetInstance().ResumeGame(this);
 }
Esempio n. 3
0
        private void OnShowGiveFriendSkin(uint heroId, uint skinId, uint price)
        {
            ResHeroSkin heroSkin = CSkinInfo.GetHeroSkin(heroId, skinId);

            if (heroSkin == null)
            {
                return;
            }
            CUIFormScript cUIFormScript = Singleton <CUIManager> .GetInstance().OpenForm(string.Format("{0}{1}", "UGUI/Form/System/", "Mall/Form_GiveHeroSkin_3D.prefab"), false, true);

            Text component = cUIFormScript.transform.Find("Panel/skinNameText").GetComponent <Text>();

            component.set_text(heroSkin.szSkinName);
            GameObject gameObject = cUIFormScript.transform.Find("Panel/Panel_Prop/List_Prop").gameObject;

            CSkinInfo.GetHeroSkinProp(heroId, skinId, ref CHeroInfoSystem2.s_propArr, ref CHeroInfoSystem2.s_propPctArr, ref CHeroInfoSystem2.s_propImgArr);
            CUICommonSystem.SetListProp(gameObject, ref CHeroInfoSystem2.s_propArr, ref CHeroInfoSystem2.s_propPctArr);
            Text component2 = cUIFormScript.transform.Find("Panel/pricePanel/priceText").GetComponent <Text>();

            component2.set_text(price.ToString());
            CUIEventScript  component3  = cUIFormScript.transform.Find("Panel/BtnGroup/buyButton").gameObject.GetComponent <CUIEventScript>();
            stUIEventParams eventParams = default(stUIEventParams);

            eventParams.heroSkinParam.heroId      = heroId;
            eventParams.heroSkinParam.skinId      = skinId;
            eventParams.heroSkinParam.isCanCharge = true;
            eventParams.commonUInt64Param1        = this._curFriendUid;
            eventParams.commonBool         = this._curFriendIsSns;
            eventParams.commonUInt32Param1 = this._curWorldId;
            component3.SetUIEvent(enUIEventType.Click, enUIEventID.HeroSkin_OpenBuyHeroSkinForFriend, eventParams);
            CUI3DImageScript component4     = cUIFormScript.transform.Find("Panel/3DImage").gameObject.GetComponent <CUI3DImageScript>();
            ObjNameData      heroPrefabPath = CUICommonSystem.GetHeroPrefabPath(heroId, (int)skinId, true);
            GameObject       gameObject2    = component4.AddGameObject(heroPrefabPath.ObjectName, false, false);

            if (gameObject2 != null)
            {
                if (heroPrefabPath.ActorInfo != null)
                {
                    gameObject2.transform.localScale = new Vector3(heroPrefabPath.ActorInfo.LobbyScale, heroPrefabPath.ActorInfo.LobbyScale, heroPrefabPath.ActorInfo.LobbyScale);
                }
                DynamicShadow.EnableDynamicShow(component4.gameObject, true);
                CHeroAnimaSystem instance = Singleton <CHeroAnimaSystem> .GetInstance();

                instance.Set3DModel(gameObject2);
                instance.InitAnimatList();
                instance.InitAnimatSoundList(heroId, skinId);
                instance.OnModePlayAnima("Come");
            }
        }
Esempio n. 4
0
        private static void Show3DModel(CUIFormScript belongForm)
        {
            CUI3DImageScript cUI3DImageScript = null;
            Transform        transform        = belongForm.transform.Find("Root/Panel_Award/3DImage");

            if (transform != null)
            {
                cUI3DImageScript = transform.GetComponent <CUI3DImageScript>();
            }
            if (cUI3DImageScript == null)
            {
                return;
            }
            CPlayerKDAStat playerKDAStat = Singleton <BattleLogic> .GetInstance().battleStat.m_playerKDAStat;

            PlayerKDA hostKDA = playerKDAStat.GetHostKDA();

            if (hostKDA == null)
            {
                return;
            }
            ListView <HeroKDA> .Enumerator enumerator = hostKDA.GetEnumerator();
            uint num = 0u;

            while (enumerator.MoveNext())
            {
                HeroKDA current = enumerator.get_Current();
                if (current != null)
                {
                    num = (uint)current.HeroId;
                    break;
                }
            }
            int heroWearSkinId = (int)Singleton <CRoleInfoManager> .GetInstance().GetMasterRoleInfo().GetHeroWearSkinId(num);

            GameObject       gameObject = cUI3DImageScript.AddGameObject(CUICommonSystem.GetHeroPrefabPath(num, heroWearSkinId, true).ObjectName, false, false);
            CHeroAnimaSystem instance   = Singleton <CHeroAnimaSystem> .GetInstance();

            instance.Set3DModel(gameObject);
            if (gameObject == null)
            {
                return;
            }
            instance.InitAnimatList();
            instance.InitAnimatSoundList(num, (uint)heroWearSkinId);
        }
Esempio n. 5
0
        public static void SetExpFormData(CUIFormScript form, COMDT_SETTLE_RESULT_DETAIL settleData)
        {
            CRoleInfo masterRoleInfo = Singleton <CRoleInfoManager> .GetInstance().GetMasterRoleInfo();

            if (masterRoleInfo == null)
            {
                return;
            }
            GameObject    gameObject    = form.transform.Find("Root/Panel_Exp/Exp_Player").gameObject;
            PVEPlayerItem pVEPlayerItem = new PVEPlayerItem(gameObject);

            pVEPlayerItem.addExp(settleData.stAcntInfo.dwSettleExp);
            CUI3DImageScript component = form.transform.Find("Root/3DImage").gameObject.GetComponent <CUI3DImageScript>();

            DebugHelper.Assert(component != null);
            int num = 1;

            for (int i = 0; i < (int)settleData.stHeroList.bNum; i++)
            {
                uint dwHeroConfID = settleData.stHeroList.astHeroList[i].dwHeroConfID;
                gameObject = form.transform.Find(string.Format("Root/Panel_Exp/Exp_Hero{0}", num)).gameObject;
                CHeroInfo cHeroInfo;
                if (masterRoleInfo.GetHeroInfoDic().TryGetValue(dwHeroConfID, ref cHeroInfo))
                {
                    ResHeroCfgInfo cfgInfo     = cHeroInfo.cfgInfo;
                    PVEHeroItem    pVEHeroItem = new PVEHeroItem(gameObject, cfgInfo.dwCfgID);
                    if (num <= (int)settleData.stHeroList.bNum)
                    {
                        gameObject.CustomSetActive(true);
                        pVEHeroItem.addExp(settleData.stHeroList.astHeroList[num - 1].dwSettleExp);
                        int              heroWearSkinId = (int)masterRoleInfo.GetHeroWearSkinId(cfgInfo.dwCfgID);
                        string           objectName     = CUICommonSystem.GetHeroPrefabPath(cfgInfo.dwCfgID, heroWearSkinId, true).ObjectName;
                        GameObject       model          = component.AddGameObjectToPath(objectName, false, string.Format("_root/Hero{0}", num));
                        CHeroAnimaSystem instance       = Singleton <CHeroAnimaSystem> .GetInstance();

                        instance.Set3DModel(model);
                        instance.InitAnimatList();
                        instance.InitAnimatSoundList(cfgInfo.dwCfgID, (uint)heroWearSkinId);
                        instance.OnModePlayAnima("idleshow2");
                    }
                }
                num++;
            }
        }
Esempio n. 6
0
        public void Open()
        {
            if (Singleton <CUIManager> .GetInstance().GetForm(s_qualifyingFormPath) == null)
            {
                this.m_particleList            = new ListView <UIParticleInfo>();
                this.m_particleContainerScript = null;
                CUIFormScript script = Singleton <CUIManager> .GetInstance().OpenForm(s_qualifyingFormPath, false, false);

                if (script != null)
                {
                    Transform transform = script.transform.Find("3DImage");
                    if (transform != null)
                    {
                        this.m_particleContainerScript = transform.GetComponent <CUI3DImageScript>();
                    }
                    Transform transform2 = script.transform.Find("txtInfo");
                    if (transform2 != null)
                    {
                        transform2.gameObject.CustomSetActive(false);
                    }
                }
            }
        }