// Token: 0x060142FC RID: 82684 RVA: 0x005237AC File Offset: 0x005219AC
        private void InitDataFromUIIntent(UIIntent intent)
        {
            if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_InitDataFromUIIntentUIIntent_hotfix != null)
            {
                this.m_InitDataFromUIIntentUIIntent_hotfix.call(new object[]
                {
                    this,
                    intent
                });
                return;
            }
            BJLuaObjHelper.IsSkipLuaHotfix = false;
            ProjectLPlayerContext projectLPlayerContext = GameManager.Instance.PlayerContext as ProjectLPlayerContext;
            IConfigDataLoader     configDataLoader      = GameManager.Instance.ConfigDataLoader as IConfigDataLoader;

            this.m_thearchyTrialInfo = null;
            UIIntentCustom uiintentCustom = intent as UIIntentCustom;

            if (uiintentCustom != null)
            {
                this.m_thearchyTrialInfo = uiintentCustom.GetClassParam <ConfigDataThearchyTrialInfo>("ThearchyTrialInfo");
            }
            if (this.m_thearchyTrialInfo != null && !projectLPlayerContext.IsThearchyOpened(this.m_thearchyTrialInfo.ID))
            {
                this.m_thearchyTrialInfo = null;
            }
            if (this.m_thearchyTrialInfo == null)
            {
                foreach (KeyValuePair <int, ConfigDataThearchyTrialInfo> keyValuePair in configDataLoader.GetAllConfigDataThearchyTrialInfo())
                {
                    if (projectLPlayerContext.IsThearchyOpened(keyValuePair.Key))
                    {
                        this.m_thearchyTrialInfo = keyValuePair.Value;
                        break;
                    }
                }
            }
        }