예제 #1
0
        public HouseRaffleManagementGump(HouseRaffleStone stone, SortMethod sort, int page)
            : base(40, 40)
        {
            this.m_Stone = stone;
            this.m_Page  = page;

            this.m_List = new List <RaffleEntry>(this.m_Stone.Entries);
            this.m_Sort = sort;

            switch (this.m_Sort)
            {
            case SortMethod.Name:
            {
                this.m_List.Sort(NameComparer.Instance);

                break;
            }

            case SortMethod.Account:
            {
                this.m_List.Sort(AccountComparer.Instance);

                break;
            }

            case SortMethod.Address:
            {
                this.m_List.Sort(AddressComparer.Instance);

                break;
            }
            }

            this.AddPage(0);

            this.AddBackground(0, 0, 618, 354, 9270);
            this.AddAlphaRegion(10, 10, 598, 334);

            this.AddHtml(10, 10, 598, 20, this.Color(this.Center("Raffle Management"), LabelColor), false, false);

            this.AddHtml(45, 35, 100, 20, this.Color("Location:", LabelColor), false, false);
            this.AddHtml(145, 35, 250, 20, this.Color(this.m_Stone.FormatLocation(), LabelColor), false, false);

            this.AddHtml(45, 55, 100, 20, this.Color("Ticket Price:", LabelColor), false, false);
            this.AddHtml(145, 55, 250, 20, this.Color(this.m_Stone.FormatPrice(), LabelColor), false, false);

            this.AddHtml(45, 75, 100, 20, this.Color("Total Entries:", LabelColor), false, false);
            this.AddHtml(145, 75, 250, 20, this.Color(this.m_Stone.Entries.Count.ToString(), LabelColor), false, false);

            this.AddButton(440, 33, 0xFA5, 0xFA7, 3, GumpButtonType.Reply, 0);
            this.AddHtml(474, 35, 120, 20, this.Color("Sort by name", LabelColor), false, false);

            this.AddButton(440, 53, 0xFA5, 0xFA7, 4, GumpButtonType.Reply, 0);
            this.AddHtml(474, 55, 120, 20, this.Color("Sort by account", LabelColor), false, false);

            this.AddButton(440, 73, 0xFA5, 0xFA7, 5, GumpButtonType.Reply, 0);
            this.AddHtml(474, 75, 120, 20, this.Color("Sort by address", LabelColor), false, false);

            this.AddImageTiled(13, 99, 592, 242, 9264);
            this.AddImageTiled(14, 100, 590, 240, 9274);
            this.AddAlphaRegion(14, 100, 590, 240);

            this.AddHtml(14, 100, 590, 20, this.Color(this.Center("Entries"), LabelColor), false, false);

            if (page > 0)
            {
                this.AddButton(567, 104, 0x15E3, 0x15E7, 1, GumpButtonType.Reply, 0);
            }
            else
            {
                this.AddImage(567, 104, 0x25EA);
            }

            if ((page + 1) * 10 < this.m_List.Count)
            {
                this.AddButton(584, 104, 0x15E1, 0x15E5, 2, GumpButtonType.Reply, 0);
            }
            else
            {
                this.AddImage(584, 104, 0x25E6);
            }

            this.AddHtml(14, 120, 30, 20, this.Color(this.Center("DEL"), LabelColor), false, false);
            this.AddHtml(47, 120, 250, 20, this.Color("Name", LabelColor), false, false);
            this.AddHtml(295, 120, 100, 20, this.Color(this.Center("Address"), LabelColor), false, false);
            this.AddHtml(395, 120, 150, 20, this.Color(this.Center("Date"), LabelColor), false, false);
            this.AddHtml(545, 120, 60, 20, this.Color(this.Center("Num"), LabelColor), false, false);

            int    idx    = 0;
            Mobile winner = this.m_Stone.Winner;

            for (int i = page * 10; i >= 0 && i < this.m_List.Count && i < (page + 1) * 10; ++i, ++idx)
            {
                RaffleEntry entry = this.m_List[i];

                if (entry == null)
                {
                    continue;
                }

                this.AddButton(13, 138 + (idx * 20), 4002, 4004, 6 + i, GumpButtonType.Reply, 0);

                int x     = 45;
                int color = (winner != null && entry.From == winner) ? HighlightColor : LabelColor;

                string name = null;

                if (entry.From != null)
                {
                    Account acc = entry.From.Account as Account;

                    if (acc != null)
                    {
                        name = String.Format("{0} ({1})", entry.From.Name, acc);
                    }
                    else
                    {
                        name = entry.From.Name;
                    }
                }

                if (name != null)
                {
                    this.AddHtml(x + 2, 140 + (idx * 20), 250, 20, this.Color(name, color), false, false);
                }

                x += 250;

                if (entry.Address != null)
                {
                    this.AddHtml(x, 140 + (idx * 20), 100, 20, this.Color(this.Center(entry.Address.ToString()), color), false, false);
                }

                x += 100;

                this.AddHtml(x, 140 + (idx * 20), 150, 20, this.Color(this.Center(entry.Date.ToString()), color), false, false);
                x += 150;

                this.AddHtml(x, 140 + (idx * 20), 60, 20, this.Color(this.Center("1"), color), false, false);
                x += 60;
            }
        }
예제 #2
0
 public HouseRaffleRegion(HouseRaffleStone stone)
     : base(null, stone.PlotFacet, Region.DefaultPriority, stone.PlotBounds)
 {
     m_Stone = stone;
 }
예제 #3
0
 public HouseRaffleManagementGump(HouseRaffleStone stone)
     : this(stone, SortMethod.Default, 0)
 {
 }