Example #1
0
        static string GetPMPartyListLabel(string initialValue,
                                          MBBindingList <PartyCharacterVM> partyList,
                                          int limit = 0)
        {
            int unwoundedCount = partyList.Sum <PartyCharacterVM>((Func <PartyCharacterVM, int>)(item => Math.Max(0, item.Number - item.WoundedCount)));
            int woundedCount   = partyList.Sum <PartyCharacterVM>((Func <PartyCharacterVM, int>)(item => item.Number < item.WoundedCount ? 0 : item.WoundedCount));

            if (limit != 0 && woundedCount > 0)
            {
                return($"({unwoundedCount} + {woundedCount}w [{partyList.Sum(x => x.Number)}] / {limit})");
            }
            return(initialValue);
        }
Example #2
0
        public static string PopulatePartyListLabel(MBBindingList <PartyCharacterVM> partyList, int limit = 0)
        {
            int troopsActive = partyList.Sum(item => Math.Max(0, item.Number - item.WoundedCount));
            int troopsWeak   = partyList.Sum(item => item.Number < item.WoundedCount ? 0 : item.WoundedCount);

            MBTextManager.SetTextVariable("COUNT", troopsActive);
            MBTextManager.SetTextVariable("WEAK_COUNT", troopsWeak);
            if (limit == 0)
            {
                return(troopsWeak > 0 ? GameTexts.FindText("str_party_list_label_with_weak_without_max").ToString() : troopsActive.ToString());
            }

            MBTextManager.SetTextVariable("MAX_COUNT", limit);
            if (troopsWeak > 0)
            {
                MBTextManager.SetTextVariable("PARTY_LIST_TAG", "");
                MBTextManager.SetTextVariable("WEAK_COUNT", troopsWeak);
                MBTextManager.SetTextVariable("TOTAL_COUNT", troopsActive + troopsWeak);
                return(GameTexts.FindText("str_party_list_label_with_weak_and_total").ToString());
            }

            MBTextManager.SetTextVariable("PARTY_LIST_TAG", "");
            return(GameTexts.FindText("str_party_list_label").ToString());
        }
Example #3
0
        private string PopulatePartyList(MBBindingList <PartyCharacterVM> list, int sizeLimit)
        {
            int troopNumb = list.Sum(character => Math.Max(0, character.Troop.Number));

            return($"({troopNumb} / {sizeLimit})");
        }