public void SetTalent(int garrTalentID, TalentTreeItemAbilityButton sameTierButton)
        {
            this.m_garrTalentID   = garrTalentID;
            this.m_sameTierButton = sameTierButton;
            if (PersistentTalentData.talentDictionary.ContainsKey(garrTalentID))
            {
                this.m_talent = PersistentTalentData.talentDictionary[garrTalentID];
            }
            this.m_garrTalentRec = StaticDB.garrTalentDB.GetRecord(garrTalentID);
            Sprite sprite = GeneralHelpers.LoadIconAsset(AssetBundleType.Icons, this.m_garrTalentRec.IconFileDataID);

            if (sprite == null)
            {
                this.m_missingIconText.gameObject.SetActive(true);
                this.m_missingIconText.text = string.Concat(string.Empty, this.m_garrTalentRec.IconFileDataID);
            }
            else
            {
                this.m_missingIconText.gameObject.SetActive(false);
                this.m_abilityIcon.sprite = sprite;
            }
            Material material = new Material(this.m_grayscaleShader);

            this.m_abilityIcon.material = material;
            this.m_abilityIcon.material.SetFloat("_GrayscaleAmount", 1f);
        }
        public void SetTalent(GarrTalentRec garrTalentRec)
        {
            TalentTreeItemAbilityButton mTalentButtonRight = null;
            TalentTreeItemAbilityButton mTalentButtonLeft  = null;

            if (garrTalentRec.UiOrder != 0)
            {
                mTalentButtonRight = this.m_talentButtonRight;
                mTalentButtonLeft  = this.m_talentButtonLeft;
            }
            else
            {
                mTalentButtonRight = this.m_talentButtonLeft;
                mTalentButtonLeft  = this.m_talentButtonRight;
            }
            mTalentButtonRight.SetTalent(garrTalentRec.ID, mTalentButtonLeft);
            this.m_talentButtonSolo.SetTalent(garrTalentRec.ID, null);
        }
示例#3
0
 public void ShowTalentTooltip(TalentTreeItemAbilityButton abilityButton)
 {
     this.m_talentTooltip.gameObject.SetActive(true);
     this.m_talentTooltip.SetTalent(abilityButton);
 }
        public void SetTalent(TalentTreeItemAbilityButton abilityButton)
        {
            this.m_abilityButton          = abilityButton;
            this.m_garrTalentRec          = StaticDB.garrTalentDB.GetRecord(abilityButton.GetTalentID());
            this.m_talentName.text        = this.m_garrTalentRec.Name;
            this.m_talentDescription.text = WowTextParser.parser.Parse(this.m_garrTalentRec.Description, 0);
            if (MobileDeviceLocale.GetLanguageCode().StartsWith("ru", StringComparison.OrdinalIgnoreCase) && (this.m_garrTalentRec.ID == 548 || this.m_garrTalentRec.ID == 552))
            {
                try
                {
                    Regex regex = new Regex("(?<quantity>\\d+)\\s+4(?<singular>[\\p{L}\\d\\s]+):(?<plural1>[\\p{L}\\d\\s]+):(?<plural2>[\\p{L}\\d\\s]+);");
                    if (regex.Match(this.m_talentDescription.text).Success)
                    {
                        try
                        {
                            this.m_talentDescription.text = regex.Replace(this.m_talentDescription.text, (Match m) => {
                                int num = int.Parse(m.Groups["quantity"].Value);
                                int russianPluralIndex = GeneralHelpers.GetRussianPluralIndex(num);
                                if (russianPluralIndex == 0)
                                {
                                    return(string.Concat(num, " ", m.Groups["singular"].Value));
                                }
                                if (russianPluralIndex == 1)
                                {
                                    return(string.Concat(num, " ", m.Groups["plural1"].Value));
                                }
                                return(string.Concat(num, " ", m.Groups["plural2"].Value));
                            });
                        }
                        catch (Exception exception)
                        {
                            Debug.LogException(exception);
                        }
                    }
                }
                catch (Exception exception1)
                {
                    Debug.LogException(exception1);
                }
            }
            this.m_talentDescription.supportRichText = WowTextParser.parser.IsRichText();
            Sprite sprite = GeneralHelpers.LoadIconAsset(AssetBundleType.Icons, this.m_garrTalentRec.IconFileDataID);

            if (sprite != null)
            {
                this.m_abilityIcon.sprite = sprite;
            }
            this.m_researchTimeAndCostSection.SetActive(true);
            int num1 = (!abilityButton.CanRespec() ? this.m_garrTalentRec.ResearchCost : this.m_garrTalentRec.RespecCost);

            this.m_resourceCostText.text = string.Concat((GarrisonStatus.WarResources() >= num1 ? "<color=#ffffffff>" : "<color=#FF0000FF>"), (!abilityButton.CanRespec() ? this.m_garrTalentRec.ResearchCost : this.m_garrTalentRec.RespecCost), "</color>");
            Sprite sprite1 = GeneralHelpers.LoadCurrencyIcon((int)this.m_garrTalentRec.ResearchCostCurrencyTypesID);

            if (sprite1 != null)
            {
                this.m_resourceIcon.sprite = sprite1;
            }
            bool flag  = (!abilityButton.IsResearching() ? false : abilityButton.IsRespec());
            bool flag1 = false;
            TalentTreeItemAbilityButton sameTierButton = abilityButton.GetSameTierButton();

            if (sameTierButton != null && (sameTierButton.IsOwned() || sameTierButton.IsResearching() && sameTierButton.IsRespec()))
            {
                flag1 = true;
            }
            TimeSpan timeSpan = TimeSpan.FromSeconds((double)((abilityButton.CanRespec() || flag || flag1 ? this.m_garrTalentRec.RespecDurationSecs : this.m_garrTalentRec.ResearchDurationSecs)));

            this.m_researchDurationText.text = timeSpan.GetDurationString(false);
            this.m_yourResourcesDisplayObj.SetActive(false);
            if (abilityButton.CanResearch() || abilityButton.CanRespec())
            {
                this.m_availableForResearchSection.SetActive(true);
                this.m_unavailableForResearchSection.SetActive(false);
                this.m_researchOrRespecText.text = (!abilityButton.CanRespec() ? StaticDB.GetString("RESEARCH", null) : StaticDB.GetString("RESPEC", null));
                this.m_yourResourcesDisplayObj.SetActive(true);
            }
            else
            {
                this.m_availableForResearchSection.SetActive(false);
                this.m_unavailableForResearchSection.SetActive(true);
                if (this.m_abilityButton.IsOwned())
                {
                    this.m_yourResourcesDisplayObj.SetActive(false);
                    this.m_statusText.text = string.Concat("<color=#ffffffff>", StaticDB.GetString("TALENT_OWNED", null), "</color>");
                    this.m_researchTimeAndCostSection.SetActive(false);
                }
                else if (this.m_abilityButton.IsResearching())
                {
                    TimeSpan timeSpan1 = (!abilityButton.IsRespec() ? this.m_abilityButton.GetRemainingResearchTime() : this.m_abilityButton.GetRemainingRespecTime());
                    this.m_statusText.text = string.Concat(new string[] { "<color=#FFC600FF>", StaticDB.GetString("TIME_LEFT", null), "</color> <color=#ffffffff>", timeSpan1.GetDurationString(false), "</color>" });
                }
                else if (GarrisonStatus.WarResources() < num1)
                {
                    this.m_yourResourcesDisplayObj.SetActive(true);
                    this.m_statusText.text = string.Concat("<color=#FF0000FF>", StaticDB.GetString("NEED_MORE_RESOURCES", null), "</color>");
                }
                else if (!this.m_talentTreePanel.AnyTalentIsResearching())
                {
                    string whyCantResearch = this.m_abilityButton.GetWhyCantResearch();
                    if (whyCantResearch == null || !(whyCantResearch != string.Empty))
                    {
                        this.m_statusText.text = string.Concat("<color=#FF0000FF>", StaticDB.GetString("MUST_RESEARCH_PREVIOUS_TIER", null), "</color>");
                    }
                    else
                    {
                        this.m_statusText.text = string.Concat("<color=#FF0000FF>", whyCantResearch, "</color>");
                    }
                }
                else
                {
                    this.m_statusText.text = string.Concat("<color=#FF0000FF>", StaticDB.GetString("ALREADY_RESEARCHING", null), "</color>");
                }
            }
        }
示例#5
0
        public void SetTalent(TalentTreeItemAbilityButton abilityButton)
        {
            this.m_abilityButton                     = abilityButton;
            this.m_garrTalentRec                     = StaticDB.garrTalentDB.GetRecord(abilityButton.GetTalentID());
            this.m_talentName.text                   = this.m_garrTalentRec.Name;
            this.m_talentDescription.text            = WowTextParser.parser.Parse(this.m_garrTalentRec.Description, 0);
            this.m_talentDescription.supportRichText = WowTextParser.parser.IsRichText();
            Sprite sprite = GeneralHelpers.LoadIconAsset(AssetBundleType.Icons, this.m_garrTalentRec.IconFileDataID);

            if (sprite != null)
            {
                this.m_abilityIcon.sprite = sprite;
            }
            this.m_researchTimeAndCostSection.SetActive(true);
            int num = (!abilityButton.CanRespec()) ? this.m_garrTalentRec.ResearchCost : this.m_garrTalentRec.RespecCost;

            this.m_resourceCostText.text = ((GarrisonStatus.Resources() >= num) ? "<color=#ffffffff>" : "<color=#FF0000FF>") + ((!abilityButton.CanRespec()) ? this.m_garrTalentRec.ResearchCost : this.m_garrTalentRec.RespecCost) + "</color>";
            Sprite sprite2 = GeneralHelpers.LoadCurrencyIcon((int)this.m_garrTalentRec.ResearchCostCurrencyTypesID);

            if (sprite2 != null)
            {
                this.m_resourceIcon.sprite = sprite2;
            }
            bool flag  = abilityButton.IsResearching() && abilityButton.IsRespec();
            bool flag2 = false;
            TalentTreeItemAbilityButton sameTierButton = abilityButton.GetSameTierButton();

            if (sameTierButton != null && (sameTierButton.IsOwned() || (sameTierButton.IsResearching() && sameTierButton.IsRespec())))
            {
                flag2 = true;
            }
            TimeSpan timeSpan = TimeSpan.FromSeconds((double)((!abilityButton.CanRespec() && !flag && !flag2) ? this.m_garrTalentRec.ResearchDurationSecs : this.m_garrTalentRec.RespecDurationSecs));

            this.m_researchDurationText.text = timeSpan.GetDurationString(false);
            this.m_yourResourcesDisplayObj.SetActive(false);
            if (abilityButton.CanResearch() || abilityButton.CanRespec())
            {
                this.m_availableForResearchSection.SetActive(true);
                this.m_unavailableForResearchSection.SetActive(false);
                this.m_researchOrRespecText.text = ((!abilityButton.CanRespec()) ? StaticDB.GetString("RESEARCH", null) : StaticDB.GetString("RESPEC", null));
                this.m_yourResourcesDisplayObj.SetActive(true);
            }
            else
            {
                this.m_availableForResearchSection.SetActive(false);
                this.m_unavailableForResearchSection.SetActive(true);
                if (this.m_abilityButton.IsOwned())
                {
                    this.m_yourResourcesDisplayObj.SetActive(false);
                    this.m_statusText.text = "<color=#ffffffff>" + StaticDB.GetString("TALENT_OWNED", null) + "</color>";
                    this.m_researchTimeAndCostSection.SetActive(false);
                }
                else if (this.m_abilityButton.IsResearching())
                {
                    TimeSpan timeSpan2 = (!abilityButton.IsRespec()) ? this.m_abilityButton.GetRemainingResearchTime() : this.m_abilityButton.GetRemainingRespecTime();
                    this.m_statusText.text = string.Concat(new string[]
                    {
                        "<color=#FFC600FF>",
                        StaticDB.GetString("TIME_LEFT", null),
                        "</color> <color=#ffffffff>",
                        timeSpan2.GetDurationString(false),
                        "</color>"
                    });
                }
                else if (GarrisonStatus.Resources() < num)
                {
                    this.m_yourResourcesDisplayObj.SetActive(true);
                    this.m_statusText.text = "<color=#FF0000FF>" + StaticDB.GetString("NEED_MORE_RESOURCES", null) + "</color>";
                }
                else if (this.m_talentTreePanel.AnyTalentIsResearching())
                {
                    this.m_statusText.text = "<color=#FF0000FF>" + StaticDB.GetString("ALREADY_RESEARCHING", null) + "</color>";
                }
                else
                {
                    string whyCantResearch = this.m_abilityButton.GetWhyCantResearch();
                    if (whyCantResearch != null && whyCantResearch != string.Empty)
                    {
                        this.m_statusText.text = "<color=#FF0000FF>" + whyCantResearch + "</color>";
                    }
                    else
                    {
                        this.m_statusText.text = "<color=#FF0000FF>" + StaticDB.GetString("MUST_RESEARCH_PREVIOUS_TIER", null) + "</color>";
                    }
                }
            }
        }