private void RenderCategories()
        {
            TimeSpan rewardInterval = RewardSystem.RewardInterval;

            string intervalAsString;

            if (rewardInterval == TimeSpan.FromDays(30.0))
            {
                intervalAsString = "month";
            }
            else if (rewardInterval == TimeSpan.FromDays(60.0))
            {
                intervalAsString = "two months";
            }
            else if (rewardInterval == TimeSpan.FromDays(90.0))
            {
                intervalAsString = "three months";
            }
            else if (rewardInterval == TimeSpan.FromDays(365.0))
            {
                intervalAsString = "year";
            }
            else
            {
                intervalAsString = String.Format("{0} day{1}", rewardInterval.TotalDays, rewardInterval.TotalDays == 1 ? "" : "s");
            }

            AddPage(1);

            AddHtml(60, 35, 500, 70, "<B>Ultima Online Rewards Program</B><BR>" +
                    "Thank you for being a part of the Ultima Online community for a full " + intervalAsString + ".  " +
                    "As a token of our appreciation,  you may select from the following in-game reward items listed below.  " +
                    "The gift items will be attributed to the character you have logged-in with on the shard you are on when you chose the item(s).  " +
                    "The number of rewards you are entitled to are listed below and are for your entire account.  " +
                    "To read more about these rewards before making a selection, feel free to visit the uo.com site at " +
                    "<A HREF=\"http://www.uo.com/rewards\">http://www.uo.com/rewards</A>.", true, true);

            int cur, max;

            RewardSystem.ComputeRewardInfo(m_From, out cur, out max);

            AddHtmlLocalized(60, 105, 300, 35, 1006006, false, false);               // Your current total of rewards to choose:
            AddLabel(370, 107, 50, (max - cur).ToString());

            AddHtmlLocalized(60, 140, 300, 35, 1006007, false, false);               // You have already chosen:
            AddLabel(370, 142, 50, cur.ToString());

            RewardCategory[] categories = RewardSystem.Categories;

            for (int i = 0; i < categories.Length; ++i)
            {
                if (categories[i].Entries.Count == 0)
                {
                    continue;
                }

                if (!RewardSystem.HasAccess(m_From, (RewardEntry)categories[i].Entries[0]))
                {
                    continue;
                }

                AddButton(100, 180 + (i * 40), 4005, 4005, 0, GumpButtonType.Page, 2 + i);

                if (categories[i].NameString != null)
                {
                    AddHtml(135, 180 + (i * 40), 300, 20, categories[i].NameString, false, false);
                }
                else
                {
                    AddHtmlLocalized(135, 180 + (i * 40), 300, 20, categories[i].Name, false, false);
                }
            }

            for (int i = 0; i < categories.Length; ++i)
            {
                RenderCategory(categories[i], i);
            }
        }
示例#2
0
        private void RenderCategories()
        {
            var rewardInterval = RewardSystem.RewardInterval;

            string intervalAsString;

            if (rewardInterval == TimeSpan.FromDays(30.0))
            {
                intervalAsString = "month";
            }
            else if (rewardInterval == TimeSpan.FromDays(60.0))
            {
                intervalAsString = "two months";
            }
            else if (rewardInterval == TimeSpan.FromDays(90.0))
            {
                intervalAsString = "three months";
            }
            else if (rewardInterval == TimeSpan.FromDays(365.0))
            {
                intervalAsString = "year";
            }
            else
            {
                intervalAsString = $"{rewardInterval.TotalDays} day{(rewardInterval.TotalDays == 1 ? "" : "s")}";
            }

            AddPage(1);

            AddHtml(
                60,
                35,
                500,
                70,
                $"<B>Ultima Online Rewards Program</B><BR>Thank you for being a part of the Ultima Online community for a full {intervalAsString}.  As a token of our appreciation,  you may select from the following in-game reward items listed below.  The gift items will be attributed to the character you have logged-in with on the shard you are on when you chose the item(s).  The number of rewards you are entitled to are listed below and are for your entire account.  To read more about these rewards before making a selection, feel free to visit the uo.com site at <A HREF=\"http://www.uo.com/rewards\">http://www.uo.com/rewards</A>.",
                true,
                true
                );

            RewardSystem.ComputeRewardInfo(m_From, out var cur, out var max);

            AddHtmlLocalized(60, 105, 300, 35, 1006006); // Your current total of rewards to choose:
            AddLabel(370, 107, 50, (max - cur).ToString());

            AddHtmlLocalized(60, 140, 300, 35, 1006007); // You have already chosen:
            AddLabel(370, 142, 50, cur.ToString());

            var categories = RewardSystem.Categories;

            var page = 2;

            for (var i = 0; i < categories.Length; ++i)
            {
                if (!RewardSystem.HasAccess(m_From, categories[i]))
                {
                    page += 1;
                    continue;
                }

                AddButton(100, 180 + i * 40, 4005, 4005, 0, GumpButtonType.Page, page);

                page += PagesPerCategory(categories[i]);

                if (categories[i].NameString != null)
                {
                    AddHtml(135, 180 + i * 40, 300, 20, categories[i].NameString);
                }
                else
                {
                    AddHtmlLocalized(135, 180 + i * 40, 300, 20, categories[i].Name);
                }
            }

            page = 2;

            for (var i = 0; i < categories.Length; ++i)
            {
                RenderCategory(categories[i], i, ref page);
            }
        }