Example #1
0
            public CatSelGump(string sys, ACCGumpParams subParams, PGLocation loc)
                : base(0, 0)
            {
                if (sys == null || subParams == null || loc == null || m_CategoryList == null)
                {
                    return;
                }

                Sys = sys;
                if (subParams is PGGumpParams)
                {
                    Params = subParams as PGGumpParams;
                }
                Loc = loc;

                AddPage(0);
                AddBackground(640, 0, 160, 400, 5120);

                for (int i = 0; i < PGSystem.CategoryList.Count; i++)
                {
                    PGCategory PGC = m_CategoryList[i];
                    if (PGC != null)
                    {
                        AddButton(650, 10 + i * 30, 2501, 2501, 1 + i, GumpButtonType.Reply, 0);
                        AddLabel(675, 10 + i * 30, 1153, PGC.Name);
                    }
                }
            }
Example #2
0
        private int CountLocs()
        {
            if (m_Page < 0 || m_Page >= PGSystem.CategoryList.Count)
            {
                return(-1);
            }

            int        count = 0;
            PGCategory PGC   = PGSystem.CategoryList[m_Page];

            if (PGC != null && PGC.Locations != null)
            {
                IEnumerator <PGLocation> PGL = PGC.Locations.GetEnumerator();
                while (PGL.MoveNext())
                {
                    if ((PGL.Current.GetFlag(EntryFlag.StaffOnly) && m_From.AccessLevel > AccessLevel.Player) ||
                        (!PGL.Current.GetFlag(EntryFlag.StaffOnly) && ((!PGL.Current.GetFlag(EntryFlag.Reds) && m_From.Kills < 5) || PGL.Current.GetFlag(EntryFlag.Reds))) ||
                        (m_From.AccessLevel > AccessLevel.Player))
                    {
                        count++;
                    }
                }
            }
            return(count);
        }
Example #3
0
        public PGAddEditGump(Conditions conditions, int curC, int curL, PublicGate gate) : base(0, 0)
        {
            if (!PGSystem.Running)
            {
                return;
            }

            m_Conditions = conditions;
            m_CurCat     = curC;
            m_CurLoc     = curL;
            m_Gate       = gate;

            if (!GetFlag(Conditions.Category) || (GetFlag(Conditions.Category) && !GetFlag(Conditions.Adding)))
            {
                m_Cat = PGSystem.CategoryList[curC];
            }
            if (m_Cat != null && (!GetFlag(Conditions.Category) && !GetFlag(Conditions.Adding)))
            {
                m_Loc = m_Cat.Locations[curL];
            }


            string Name = "";

            if (!GetFlag(Conditions.Adding))
            {
                if (GetFlag(Conditions.Category))
                {
                    Name = m_Cat.Name;
                }
                else
                {
                    Name = m_Loc.Name;
                }
            }

            Point3D Loc = new Point3D(0, 0, 0);
            Map     Map = Map.Trammel;
            bool    Gen, Staff, Reds, Charge, Young;
            int     Hue, Cost;

            Gen = Staff = Reds = Charge = Young = false;
            Hue = Cost = 0;

            if (GetFlag(Conditions.Category) && !GetFlag(Conditions.Adding))
            {
                Gen    = m_Cat.GetFlag(EntryFlag.Generate);
                Staff  = m_Cat.GetFlag(EntryFlag.StaffOnly);
                Reds   = m_Cat.GetFlag(EntryFlag.Reds);
                Charge = m_Cat.GetFlag(EntryFlag.Charge);
                Young  = m_Cat.GetFlag(EntryFlag.Young);
                Cost   = m_Cat.Cost;
            }

            if (!GetFlag(Conditions.Category) && !GetFlag(Conditions.Adding))
            {
                Loc    = m_Loc.Location;
                Map    = m_Loc.Map;
                Gen    = m_Loc.GetFlag(EntryFlag.Generate);
                Staff  = m_Loc.GetFlag(EntryFlag.StaffOnly);
                Reds   = m_Loc.GetFlag(EntryFlag.Reds);
                Charge = m_Loc.GetFlag(EntryFlag.Charge);
                Young  = m_Loc.GetFlag(EntryFlag.Young);
                Hue    = m_Loc.Hue;
                Cost   = m_Loc.Cost;
            }

            Closable   = true;
            Disposable = true;
            Dragable   = true;
            Resizable  = false;

            AddPage(0);

            AddBackground(530, 100, 230, 410, 2600);
            AddLabel(602, 120, 0, string.Format("{0} {1}", (GetFlag(Conditions.Adding) ? "Add" : "Edit"), (GetFlag(Conditions.Category) ? "Category" : "Location")));

            AddLabel(625, 145, 0, "Name :");
            AddImage(555, 170, 2446);
            AddTextEntry(565, 170, 160, 20, 0, 2, Name);

            AddLabel(715, 235, 0, ": C");
            AddImage(650, 235, 2443);
            AddTextEntry(655, 235, 55, 20, 0, 15, Cost.ToString());

            if (!GetFlag(Conditions.Category))
            {
                AddLabel(560, 210, 0, "X :");
                AddImage(580, 210, 2443);
                AddTextEntry(585, 210, 55, 20, 0, 3, Loc.X.ToString());

                AddLabel(560, 235, 0, "Y :");
                AddImage(580, 235, 2443);
                AddTextEntry(585, 235, 55, 20, 0, 4, Loc.Y.ToString());

                AddLabel(560, 260, 0, "Z :");
                AddImage(580, 260, 2443);
                AddTextEntry(585, 260, 55, 20, 0, 5, Loc.Z.ToString());

                AddLabel(715, 210, 0, ": H");
                AddImage(650, 210, 2443);
                AddTextEntry(655, 210, 55, 20, 0, 14, Hue.ToString());

                AddLabel(585, 315, 0, "Trammel");
                AddRadio(555, 315, 208, 209, (Map == Map.Trammel ? true : false), 6);

                AddLabel(585, 340, 0, "Felucca");
                AddRadio(555, 340, 208, 209, (Map == Map.Felucca ? true : false), 7);

                AddLabel(685, 315, 0, "Malas");
                AddRadio(655, 315, 208, 209, (Map == Map.Malas ? true : false), 8);

                AddLabel(685, 345, 0, "Ilshenar");
                AddRadio(655, 340, 208, 209, (Map == Map.Ilshenar ? true : false), 9);

                AddLabel(585, 365, 0, "Tokuno");
                AddRadio(555, 370, 208, 209, (Map == Map.Tokuno ? true : false), 10);

                AddLabel(685, 365, 0, "TerMur");
                AddRadio(655, 370, 208, 209, (Map == Map.TerMur ? true : false), 20);
            }


            AddLabel(585, 395, 0, "Generate?");
            AddCheck(555, 395, 210, 211, Gen, 11);

            AddLabel(665, 395, 0, "Young?");
            AddCheck(715, 395, 210, 211, Young, 16);

            AddLabel(585, 420, 0, "Reds?");
            AddCheck(555, 420, 210, 211, Reds, 13);

            AddLabel(658, 420, 0, "Charge?");
            AddCheck(715, 420, 210, 211, Charge, 17);

            AddLabel(585, 445, 0, "Staff Only?");
            AddCheck(555, 445, 210, 211, Staff, 12);

            AddButton(700, 450, 1417, 1417, 1, GumpButtonType.Reply, 0);
            AddLabel(728, 481, 69, "Apply");
        }
Example #4
0
        public override void Gump(Mobile from, Gump gump, ACCGumpParams subParams)
        {
            gump.AddButton(195, 40, 2445, 2445, 101, GumpButtonType.Reply, 0);
            gump.AddLabel(200, 41, 1153, "Manage System");
            gump.AddButton(310, 40, 2445, 2445, 102, GumpButtonType.Reply, 0);
            gump.AddLabel(342, 41, 1153, "Import");

            if (subParams == null || !(subParams is PGGumpParams))
            {
                gump.AddHtml(215, 65, 300, 25, "<basefont size=7 color=white><center>Public Gates</center></font>", false, false);
                gump.AddHtml(140, 95, 450, 250, "<basefont color=white><center>Welcome to the Public Gate Admin Gump!</center><br>With this gump, you can manage the entire system and import and export locations or full categories.  Please choose an option from the top bar.<br><br>Manage System allows you to add/change/delete locations and categories from anywhere in the world.<br><br>Im/Ex port allows you to import or export categories and locations to files that you can distribute to other servers that use this system.</font>", false, false);
                return;
            }

            Params = subParams as PGGumpParams;

            switch ((int)Params.Page)
            {
                #region Manage Gump Code
            case (int)Pages.Manage:
            {
                gump.AddBackground(640, 0, 160, 400, 5120);
                gump.AddButton(425, 40, 2445, 2445, 123, GumpButtonType.Reply, 0);
                gump.AddLabel(456, 41, 1153, "Export");

                for (int i = 0; i < m_CategoryList.Count && i < 50; i++)
                {
                    PGCategory PGC = m_CategoryList[i];
                    if (PGC != null)
                    {
                        gump.AddButton(650, 10 + i * 30, 2501, 2501, 150 + i, GumpButtonType.Reply, 0);
                        gump.AddButton(655, 12 + i * 30, (Params.SelectedCategory.Key == PGC ? 5401 : 5402), (Params.SelectedCategory.Key == PGC ? 5402 : 5401), 150 + i, GumpButtonType.Reply, 0);
                        gump.AddLabel(675, 10 + i * 30, 1153, PGC.Name);
                    }
                }

                if (Params.SelectedCategory.Key != null)
                {
                    gump.AddBackground(425, 75, 170, 285, 5120);
                    gump.AddButton(195, 65, 2445, 2445, 121, GumpButtonType.Reply, 0);
                    gump.AddLabel(206, 66, 1153, "Add Category");
                    gump.AddButton(310, 65, 2445, 2445, 122, GumpButtonType.Reply, 0);
                    gump.AddLabel(322, 66, 1153, "Add Location");

                    for (int i = 0, c = 0, r = 0; i < Params.SelectedCategory.Key.Locations.Count; i++)
                    {
                        PGLocation PGL = Params.SelectedCategory.Key.Locations[i];
                        if (PGL != null)
                        {
                            gump.AddButton(120 + c * 150, 100 + r * 30, 2501, 2501, 200 + i, GumpButtonType.Reply, 0);
                            gump.AddButton(125 + c * 150, 102 + r * 30, (Params.SelectedLocation.Key == PGL ? 5401 : 5402), (Params.SelectedLocation.Key == PGL ? 5402 : 5401), 200 + i, GumpButtonType.Reply, 0);
                            gump.AddLabel(145 + c * 150, 100 + r * 30, 1153, PGL.Name);
                            r += (c == 1 ? 1 : 0);
                            c += (c == 1 ? -1 : 1);
                        }
                    }

                    if (Params.SelectedLocation.Key != null)
                    {
                        gump.AddButton(550, 265, 2642, 2643, 103, GumpButtonType.Reply, 0);         //Apply Location

                        gump.AddImage(440, 85, 2501);
                        gump.AddTextEntry(446, 85, 130, 20, 0, 105, Params.SelectedLocation.Key.Name);

                        gump.AddImage(445, 110, 2443);
                        gump.AddImage(513, 110, 2443);
                        gump.AddImage(445, 135, 2443);
                        gump.AddImage(513, 135, 2443);
                        gump.AddImage(445, 160, 2443);

                        gump.AddTextEntry(450, 110, 53, 20, 0, 106, Params.SelectedLocation.Key.Location.X.ToString());
                        gump.AddTextEntry(518, 110, 53, 20, 0, 107, Params.SelectedLocation.Key.Location.Y.ToString());
                        gump.AddTextEntry(450, 135, 53, 20, 0, 108, Params.SelectedLocation.Key.Location.Z.ToString());
                        gump.AddTextEntry(518, 135, 53, 20, 0, 109, Params.SelectedLocation.Key.Hue.ToString());
                        gump.AddTextEntry(450, 160, 53, 20, 0, 110, Params.SelectedLocation.Key.Cost.ToString());

                        gump.AddLabel(435, 112, 1153, "X");
                        gump.AddLabel(578, 112, 1153, "Y");
                        gump.AddLabel(435, 137, 1153, "Z");
                        gump.AddLabel(578, 137, 1153, "H");
                        gump.AddLabel(435, 162, 1153, "C");

                        gump.AddRadio(435, 190, 208, 209, (Params.SelectedLocation.Key.Map == Map.Trammel), 111);
                        gump.AddRadio(570, 190, 208, 209, (Params.SelectedLocation.Key.Map == Map.Malas), 112);
                        gump.AddRadio(435, 215, 208, 209, (Params.SelectedLocation.Key.Map == Map.Felucca), 113);
                        gump.AddRadio(570, 215, 208, 209, (Params.SelectedLocation.Key.Map == Map.Ilshenar), 114);
                        gump.AddRadio(435, 240, 208, 209, (Params.SelectedLocation.Key.Map == Map.Tokuno), 115);

                        gump.AddLabel(460, 192, 1153, "Tram");
                        gump.AddLabel(530, 192, 1153, "Malas");
                        gump.AddLabel(460, 217, 1153, "Fel");
                        gump.AddLabel(542, 217, 1153, "Ilsh");
                        gump.AddLabel(460, 242, 1153, "Tokuno");

                        gump.AddLabel(465, 282, 1153, "Young?");
                        gump.AddCheck(440, 280, 210, 211, Params.SelectedLocation.Key.GetFlag(EntryFlag.Young), 120);
                        gump.AddLabel(465, 307, 1153, "Gen?");
                        gump.AddCheck(440, 305, 210, 211, Params.SelectedLocation.Key.GetFlag(EntryFlag.Generate), 116);
                        gump.AddLabel(515, 307, 1153, "Staff?");
                        gump.AddCheck(565, 305, 210, 211, Params.SelectedLocation.Key.GetFlag(EntryFlag.StaffOnly), 117);
                        gump.AddLabel(465, 332, 1153, "Reds?");
                        gump.AddCheck(440, 330, 210, 211, Params.SelectedLocation.Key.GetFlag(EntryFlag.Reds), 118);
                        gump.AddLabel(522, 332, 1153, "Chrg?");
                        gump.AddCheck(565, 330, 210, 211, Params.SelectedLocation.Key.GetFlag(EntryFlag.Charge), 119);
                    }

                    else
                    {
                        gump.AddButton(550, 265, 2642, 2643, 104, GumpButtonType.Reply, 0);         //Apply Category

                        gump.AddImage(440, 110, 2501);
                        gump.AddTextEntry(446, 110, 130, 20, 0, 105, Params.SelectedCategory.Key.Name);

                        gump.AddImage(445, 160, 2443);
                        gump.AddTextEntry(450, 160, 53, 20, 0, 110, Params.SelectedCategory.Key.Cost.ToString());
                        gump.AddLabel(435, 162, 1153, "C");

                        gump.AddLabel(465, 282, 1153, "Young?");
                        gump.AddCheck(440, 280, 210, 211, Params.SelectedCategory.Key.GetFlag(EntryFlag.Young), 120);
                        gump.AddLabel(465, 307, 1153, "Gen?");
                        gump.AddCheck(440, 305, 210, 211, Params.SelectedCategory.Key.GetFlag(EntryFlag.Generate), 116);
                        gump.AddLabel(515, 307, 1153, "Staff?");
                        gump.AddCheck(565, 305, 210, 211, Params.SelectedCategory.Key.GetFlag(EntryFlag.StaffOnly), 117);
                        gump.AddLabel(465, 332, 1153, "Reds?");
                        gump.AddCheck(440, 330, 210, 211, Params.SelectedCategory.Key.GetFlag(EntryFlag.Reds), 118);
                        gump.AddLabel(522, 332, 1153, "Chrg?");
                        gump.AddCheck(565, 330, 210, 211, Params.SelectedCategory.Key.GetFlag(EntryFlag.Charge), 119);
                    }
                }
                break;
            }
                #endregion //Manage Gump Code

                #region Import Gump Code
            case (int)Pages.Import:
            {        //Import
                if (!Directory.Exists("Data/ACC Exports"))
                {
                    from.SendMessage("There are no files to import!");
                    return;
                }

                gump.AddButton(195, 65, 2445, 2445, 124, GumpButtonType.Reply, 0);         //Switch to Systems
                gump.AddLabel(220, 66, 1153, "Systems");

                gump.AddButton(310, 65, 2445, 2445, 125, GumpButtonType.Reply, 0);         //Switch to Categories
                gump.AddLabel(328, 66, 1153, "Categories");

                gump.AddButton(425, 65, 2445, 2445, 126, GumpButtonType.Reply, 0);         //Switch to Locations
                gump.AddLabel(447, 66, 1153, "Locations");
                switch ((int)Params.ImportSelection)
                {
                case (int)ImportSelections.Systems: { Dirs = Directory.GetFiles("Data/ACC Exports/", "*.pgs"); break; }

                case (int)ImportSelections.Categories: { Dirs = Directory.GetFiles("Data/ACC Exports/", "*.pgc"); break; }

                case (int)ImportSelections.Locations: { Dirs = Directory.GetFiles("Data/ACC Exports/", "*.pgl"); break; }

                default: { return; }
                }
                if (Dirs == null || Dirs.Length == 0)
                {
                    from.SendMessage("There are no files of that type!");
                    return;
                }
                for (int i = 0, r = 0, c = 0; i < Dirs.Length && c < 3; i++)
                {
                    string s = Dirs[i];
                    s = s.Remove(0, 12);
                    s = s.Remove(s.Length - 4, 4);
                    if (Params.ImportSelection == ImportSelections.Systems)
                    {
                        s = s.Remove(0, 9);
                    }

                    gump.AddButton(120 + c * 150, 100 + r * 30, 2501, 2501, 300 + i, GumpButtonType.Reply, 0);
                    gump.AddLabelCropped(125 + c * 150, 101 + r * 30, 140, 30, 1153, s);

                    c += (r == 7 ? 1 : 0);
                    r += (r == 7 ? -7 : 1);
                }
                break;
            }
                #endregion //Import Gump Code
            }
        }
Example #5
0
        public PGGump(Mobile from, int Page, PublicGate gate) : base(0, 0)
        {
            if (!PGSystem.Running)
            {
                return;
            }

            if (PGSystem.CategoryList == null || PGSystem.CategoryList.Count == 0)
            {
                SetFlag(EntryFlag.StaffOnly, true);
                SetFlag(EntryFlag.Generate, false);
                PGSystem.CategoryList = new List <PGCategory>();
                PGSystem.CategoryList.Add(new PGCategory("Empty System", EFlags));
            }

            m_From = from;
            m_Page = Page;
            m_Gate = gate;

            Closable   = true;
            Disposable = true;
            Dragable   = true;
            Resizable  = false;

            AddPage(0);

            #region Categories
            int Cats = CountCats();

            int CStart = (250 - ((Cats / 2) * 25));
            if (CStart < 0)
            {
                CStart = 0;
            }

            AddBackground(0, CStart, 230, 100 + Cats * 25, 2600);
            AddHtml(0, CStart + 15, 230, 20, "<BASEFONT COLOR=#58D3F7 SIZE=8><CENTER>Traveler's Traverse</CENTER></BASEFONT>", false, false);

            int CurC = 0;
            for (int i = 0; i < PGSystem.CategoryList.Count; i++)
            {
                PGCategory PGC = PGSystem.CategoryList[i];
                if (PGC != null)
                {
                    if (from.AccessLevel >= PGSystem.PGAccessLevel)
                    {
                        AddButton(20, CStart + 53 + CurC * 25, (Page == i ? 209 : 208), (Page == i ? 208 : 209), 100 + i, GumpButtonType.Reply, 0);
                        AddLabel(50, CStart + 53 + CurC * 25, (Page == i ? 69 : 0), PGC.Name);
                        CurC++;
                        continue;
                    }

                    if (PGC.GetFlag(EntryFlag.StaffOnly) && from.AccessLevel == AccessLevel.Player)
                    {
                        continue;
                    }
                    if (!PGC.GetFlag(EntryFlag.StaffOnly))
                    {
                        if (PGC.GetFlag(EntryFlag.Young) && !((PlayerMobile)from).Young)
                        {
                            continue;
                        }
                        if (!PGC.GetFlag(EntryFlag.Reds) && from.Kills >= 5)
                        {
                            continue;
                        }
                    }

                    AddButton(20, CStart + 53 + CurC * 25, (Page == i ? 209 : 208), (Page == i ? 208 : 209), 100 + i, GumpButtonType.Reply, 0);
                    AddLabel(50, CStart + 53 + CurC * 25, (Page == i ? 69 : 0), PGC.Name);
                    CurC++;
                }
            }

            if (from.AccessLevel >= PGSystem.PGAccessLevel)
            {
                AddLabel(75, CStart + 65 + Cats * 25, 0, "Add");
                AddButton(50, CStart + 65 + Cats * 25, 208, 209, 2, GumpButtonType.Reply, 0);
                AddLabel(125, CStart + 65 + Cats * 25, 0, "Edit");
                AddButton(160, CStart + 65 + Cats * 25, 208, 209, 3, GumpButtonType.Reply, 0);
            }
            #endregion             //Categories

            #region Locations
            int Locs = CountLocs();
            if (Locs == -1)
            {
                Locs = 0;
            }

            int LStart = (250 - ((Locs / 2) * 25));
            if (LStart < 20)
            {
                LStart = 20;
            }

            AddBackground(230, LStart, 300, 100 + Locs * 25, 2600);

            int        CurL = 0;
            PGCategory PGCL = PGSystem.CategoryList[m_Page];
            if (PGCL != null && PGCL.Locations != null)
            {
                for (int i = 0; i < PGCL.Locations.Count; i++)
                {
                    PGLocation PGL = PGCL.Locations[i];
                    if (PGL != null)
                    {
                        if (from.AccessLevel >= PGSystem.PGAccessLevel)
                        {
                            AddRadio(250, LStart + 53 + CurL * 25, 208, 209, false, 200 + i);
                            AddLabel(280, LStart + 53 + CurL * 25, 0, PGL.Name);
                            CurL++;
                            continue;
                        }

                        if (PGL.GetFlag(EntryFlag.StaffOnly) && from.AccessLevel == AccessLevel.Player)
                        {
                            continue;
                        }
                        if (!PGL.GetFlag(EntryFlag.StaffOnly))
                        {
                            if (PGL.GetFlag(EntryFlag.Young) && !((PlayerMobile)from).Young)
                            {
                                continue;
                            }
                            if (!PGL.GetFlag(EntryFlag.Reds) && from.Kills >= 5)
                            {
                                continue;
                            }
                        }

                        AddRadio(250, LStart + 53 + CurL * 25, 208, 209, false, 200 + i);
                        AddLabel(280, LStart + 53 + CurL * 25, 0, PGL.Name);
                        CurL++;
                    }
                }
            }

            AddButton(465, LStart - 20, 1417, 1417, 1, GumpButtonType.Reply, 0);
            AddHtml(485, LStart + 10, 40, 40, "<BODY><BASEFONT SIZE=7 COLOR=#2E64FE><CENTER><I><B>GO</B></I></CENTER></BASEFONT></BODY>", false, false);

            if (from.AccessLevel >= PGSystem.PGAccessLevel)
            {
                AddLabel(305, LStart + 15, 0, "Add Current Gate");
                AddButton(280, LStart + 15, 208, 209, 6, GumpButtonType.Reply, 0);

                AddLabel(305, LStart + 65 + Locs * 25, 0, "Add");
                AddButton(280, LStart + 65 + Locs * 25, 208, 209, 4, GumpButtonType.Reply, 0);

                AddLabel(430, LStart + 65 + Locs * 25, 0, "Edit");
                AddButton(460, LStart + 65 + Locs * 25, 208, 209, 5, GumpButtonType.Reply, 0);
            }
            #endregion             //Locations
        }
Example #6
0
        public override void OnResponse(NetState state, RelayInfo info)
        {
            Mobile from = state.Mobile;
            int    BID  = info.ButtonID;
            int    Loc  = -1;

            if (!PGSystem.Running)
            {
                return;
            }

            if (m_From.Deleted || m_Gate.Deleted || m_From.Map == null)
            {
                return;
            }

            if (info.Switches.Length > 0)
            {
                Loc = info.Switches[0];
            }

            Loc -= 200;

            if (BID == 0)
            {
                from.SendMessage("You choose not to go anywhere.");
                return;
            }

            if (BID == 1)
            {
                if (Loc <= -1)
                {
                    from.SendMessage("You must select a location!");
                    from.SendGump(new PGGump(from, m_Page, m_Gate));
                    return;
                }

                PGCategory PGC = PGSystem.CategoryList[m_Page];
                if (PGC == null)
                {
                    return;
                }

                PGLocation PGL = PGC.Locations[Loc];
                if (PGL == null)
                {
                    return;
                }

                if (!from.InRange(m_Gate.GetWorldLocation(), 1) || from.Map != m_Gate.Map)
                {
                    from.SendLocalizedMessage(1019002);                       // You are too far away to use the gate.
                }
                else if (Factions.Sigil.ExistsOn(from) && PGL.Map != Factions.Faction.Facet)
                {
                    from.SendLocalizedMessage(1019004);                       // You are not allowed to travel there.
                    from.SendGump(new PGGump(from, m_Page, m_Gate));
                }
                else if (from.Criminal)
                {
                    from.SendLocalizedMessage(1005561, "", 0x22);                       // Thou'rt a criminal and cannot escape so easily.
                }
                else if (Server.Spells.SpellHelper.CheckCombat(from))
                {
                    from.SendLocalizedMessage(1005564, "", 0x22);                       // Wouldst thou flee during the heat of battle??
                }
                else if (from.Spell != null)
                {
                    from.SendLocalizedMessage(1049616);                       // You are too busy to do that at the moment.
                }
                else if (from.Map == PGL.Map && from.InRange(PGL.Location, 1))
                {
                    from.SendLocalizedMessage(1019003);                       // You are already there.
                    from.SendGump(new PGGump(from, m_Page, m_Gate));
                }
                else if (PGL.GetFlag(EntryFlag.Young) && !((PlayerMobile)from).Young && from.AccessLevel == AccessLevel.Player)
                {
                    from.SendMessage("You are too old to travel here.");
                    from.SendGump(new PGGump(from, m_Page, m_Gate));
                }
                else if (!PGL.GetFlag(EntryFlag.Reds) && from.Kills >= 5 && from.AccessLevel == AccessLevel.Player)
                {
                    from.SendMessage("You too many murders to travel here.");
                    from.SendGump(new PGGump(from, m_Page, m_Gate));
                }
                else if (PGL.GetFlag(EntryFlag.StaffOnly) && from.AccessLevel == AccessLevel.Player)
                {
                    from.SendMessage("You are not allowed to travel here.");
                    from.SendGump(new PGGump(from, m_Page, m_Gate));
                }
                else
                {
                    bool charged = false;
                    if (PGC.GetFlag(EntryFlag.Charge) && PGC.Cost > 0 && from.AccessLevel == AccessLevel.Player)
                    {
                        Container pack = from.Backpack;
                        if (pack == null)
                        {
                            return;
                        }
                        if (!pack.ConsumeTotal(typeof(Gold), PGC.Cost))
                        {
                            from.SendMessage("You require {0} gold to travel there.", PGC.Cost);
                            from.SendGump(new PGGump(from, m_Page, m_Gate));
                            return;
                        }
                        charged = true;
                    }

                    if (!charged && PGL.GetFlag(EntryFlag.Charge) && PGL.Cost > 0 && from.AccessLevel == AccessLevel.Player)
                    {
                        Container pack = from.Backpack;
                        if (pack == null)
                        {
                            return;
                        }
                        if (!pack.ConsumeTotal(typeof(Gold), PGL.Cost))
                        {
                            from.SendMessage("You require {0} gold to travel there.", PGL.Cost);
                            from.SendGump(new PGGump(from, m_Page, m_Gate));
                            return;
                        }
                    }

                    BaseCreature.TeleportPets(from, PGL.Location, PGL.Map);

                    from.Combatant = null;
                    from.Warmode   = false;
                    from.Hidden    = true;

                    from.MoveToWorld(PGL.Location, PGL.Map);

                    Effects.PlaySound(PGL.Location, PGL.Map, 0x1FE);
                    from.SendMessage("You have been teleported to: " + PGL.Name);
                }
            }

            else if (BID >= 100)
            {
                from.CloseGump(typeof(PGGump));
                from.SendGump(new PGGump(from, BID - 100, m_Gate));
            }

            else if (BID == 2 && from.AccessLevel >= PGSystem.PGAccessLevel)
            {
                SetFlag(Conditions.Adding, true);
                SetFlag(Conditions.Category, true);

                from.CloseGump(typeof(PGAddEditGump));
                from.CloseGump(typeof(PGGump));
                from.SendGump(new PGGump(from, m_Page, m_Gate));
                from.SendGump(new PGAddEditGump(Flags, m_Page, -1, m_Gate));
            }

            else if (BID == 3 && from.AccessLevel >= PGSystem.PGAccessLevel)
            {
                SetFlag(Conditions.Adding, false);
                SetFlag(Conditions.Category, true);

                from.CloseGump(typeof(PGAddEditGump));
                from.CloseGump(typeof(PGGump));
                from.SendGump(new PGGump(from, m_Page, m_Gate));
                from.SendGump(new PGAddEditGump(Flags, m_Page, -1, m_Gate));
            }

            else if (BID == 4 && from.AccessLevel >= PGSystem.PGAccessLevel)
            {
                SetFlag(Conditions.Adding, true);
                SetFlag(Conditions.Category, false);

                from.CloseGump(typeof(PGAddEditGump));
                from.CloseGump(typeof(PGGump));
                from.SendGump(new PGGump(from, m_Page, m_Gate));
                from.SendGump(new PGAddEditGump(Flags, m_Page, Loc, m_Gate));
            }

            else if (BID == 5 && from.AccessLevel >= PGSystem.PGAccessLevel)
            {
                if (Loc <= -1)
                {
                    from.SendMessage("You must select a location!");
                    from.SendGump(new PGGump(from, m_Page, m_Gate));
                    return;
                }
                SetFlag(Conditions.Adding, false);
                SetFlag(Conditions.Category, false);

                from.CloseGump(typeof(PGAddEditGump));
                from.CloseGump(typeof(PGGump));
                from.SendGump(new PGGump(from, m_Page, m_Gate));
                from.SendGump(new PGAddEditGump(Flags, m_Page, Loc, m_Gate));
            }

            else if (BID == 6 && from.AccessLevel >= PGSystem.PGAccessLevel)
            {
                if (m_Gate.Parent != null)
                {
                    from.SendMessage("You must place the gate in the World to add it.");
                    from.SendGump(new PGGump(from, m_Page, m_Gate));
                    return;
                }

                PGLocation PGL = new PGLocation("Un-named Gate", EntryFlag.None, m_Gate.Location, m_Gate.Map, 0);
                if (PGL == null)
                {
                    from.SendMessage("Could not add.");
                    from.SendGump(new PGGump(from, m_Page, m_Gate));
                    return;
                }

                from.SendMessage("Added the Gate.  Please edit any other features you wish it to have.");
                PGSystem.CategoryList[m_Page].Locations.Add(PGL);
                from.SendGump(new PGGump(from, m_Page, m_Gate));
                from.SendGump(new PGAddEditGump(Flags, m_Page, PGSystem.CategoryList[m_Page].Locations.Count - 1, m_Gate));
            }

            else
            {
                from.SendMessage("Undefined button pressed: {0}", BID);
            }
        }
Example #7
0
        public bool UseGate(Mobile m)
        {
            if (!PGSystem.Running)
            {
                m.SendMessage("The Public Gate System is not active.  Please page a GM for assistance.");
                return(false);
            }

            /*if ( m.Criminal )
             * {
             *      m.SendLocalizedMessage( 1005561, "", 0x22 ); // Thou'rt a criminal and cannot escape so easily.
             *      return false;
             * }*/
            else if (Server.Spells.SpellHelper.CheckCombat(m))
            {
                m.SendLocalizedMessage(1005564, "", 0x22);                   // Wouldst thou flee during the heat of battle??
                return(false);
            }
            else if (m.Spell != null)
            {
                m.SendLocalizedMessage(1049616);                   // You are too busy to do that at the moment.
                return(false);
            }
            else
            {
                int  page  = 0;
                bool found = false;
                for (int i = 0; i < PGSystem.CategoryList.Count && !found; i++)
                {
                    PGCategory PGC = PGSystem.CategoryList[i];
                    if (PGC != null && PGC.Locations != null && PGC.Locations.Count > 0 &&
                        (PGC.GetFlag(EntryFlag.StaffOnly) && m.AccessLevel > AccessLevel.Player) ||
                        (!PGC.GetFlag(EntryFlag.StaffOnly) && ((!PGC.GetFlag(EntryFlag.Reds) && m.Kills < 5) || PGC.GetFlag(EntryFlag.Reds))) ||
                        (m.AccessLevel > AccessLevel.Player))
                    {
                        for (int j = 0; j < PGC.Locations.Count && !found; j++)
                        {
                            PGLocation PGL = PGC.Locations[j];
                            if (PGL != null && (PGL.GetFlag(EntryFlag.StaffOnly) && m.AccessLevel > AccessLevel.Player) ||
                                (!PGL.GetFlag(EntryFlag.StaffOnly) && ((!PGL.GetFlag(EntryFlag.Reds) && m.Kills < 5) || PGL.GetFlag(EntryFlag.Reds))) ||
                                (m.AccessLevel > AccessLevel.Player))
                            {
                                if (PGL.Location == this.Location && PGL.Map == this.Map)
                                {
                                    page  = i;
                                    found = true;
                                }
                            }
                        }
                    }
                }

                m.CloseGump(typeof(PGGump));
                m.SendGump(new PGGump(m, page, this));

                if (!m.Hidden || m.AccessLevel == AccessLevel.Player)
                {
                    Effects.PlaySound(m.Location, m.Map, 0x20E);
                }

                return(true);
            }
        }
Example #8
0
        public PGGump(Mobile from, int Page, PublicGate gate) : base(0, 0)
        {
            if (!PGSystem.Running)
            {
                return;
            }

            if (PGSystem.CategoryList == null || PGSystem.CategoryList.Count == 0)
            {
                SetFlag(EntryFlag.StaffOnly, true);
                SetFlag(EntryFlag.Generate, false);
                PGSystem.CategoryList = new List <PGCategory>();
                PGSystem.CategoryList.Add(new PGCategory("Empty System", EFlags));
            }

            m_From = from;
            m_Page = Page;
            m_Gate = gate;

            Closable   = true;
            Disposable = true;
            Dragable   = true;
            Resizable  = false;

            AddPage(0);

            int Locs     = CountLocs();
            int Cats     = CountCats();
            int BHeightT = Locs;
            int BWidth   = 430;

            if (Locs < Cats)
            {
                BHeightT = Cats;
            }

            int BHeight = 280 > (100 + (BHeightT * 25)) ? 280 : (100 + (BHeightT * 25));


            AddBackground(0, 0, BWidth, BHeight, 9270);
            AddLabel(20, 10, 1153, "The Grove");
            AddLabel(215, 10, 1153, "Where ya headed?:");

            AddButton(15, BHeight - 70, 4005, 4007, 1, GumpButtonType.Reply, 0);
            AddLabel(50, BHeight - 70, 1153, "OKAY");

            AddButton(15, BHeight - 45, 4005, 4007, 0, GumpButtonType.Reply, 0);
            AddLabel(50, BHeight - 45, 1153, "CANCEL");

            #region Categories
            int CStart = 35;

            int CurC = 0;
            for (int i = 0; i < PGSystem.CategoryList.Count; i++)
            {
                PGCategory PGC = PGSystem.CategoryList[i];
                if (PGC != null)
                {
                    if (from.AccessLevel >= PGSystem.PGAccessLevel)
                    {
                        AddButton(15, CStart + (CurC * 25), (Page == i ? 2118 : 2117), (Page == i ? 2117 : 2118), 100 + i, GumpButtonType.Reply, 0);
                        AddLabel(35, CStart + (CurC * 25), (Page == i ? 53 : PGC.Hue == 0 ? 1153 : PGC.Hue), (Page == i ? (PGC.Name + " <--") : PGC.Name));
                        CurC++;
                        continue;
                    }

                    if (PGC.GetFlag(EntryFlag.StaffOnly) && from.AccessLevel == AccessLevel.Player)
                    {
                        continue;
                    }
                    if (!PGC.GetFlag(EntryFlag.StaffOnly))
                    {
                        if (PGC.GetFlag(EntryFlag.Young) && !((PlayerMobile)from).Young)
                        {
                            continue;
                        }
                        if (!PGC.GetFlag(EntryFlag.Reds) && from.Kills >= 5)
                        {
                            continue;
                        }
                    }

                    AddButton(15, CStart + (CurC * 25), (Page == i ? 2118 : 2117), (Page == i ? 2117 : 2118), 100 + i, GumpButtonType.Reply, 0);
                    AddLabel(35, CStart + (CurC * 25), (Page == i ? 53 : PGC.Hue == 0 ? 1153 : PGC.Hue), (Page == i ? (PGC.Name + " <--") : PGC.Name));
                    CurC++;
                }
            }

            if (from.AccessLevel >= PGSystem.PGAccessLevel)
            {
                AddLabel(160, BHeight - 70, 1153, "ADD");
                AddButton(125, BHeight - 70, 4005, 4007, 2, GumpButtonType.Reply, 0);
                AddLabel(160, BHeight - 45, 1153, "EDIT");
                AddButton(125, BHeight - 45, 4005, 4007, 3, GumpButtonType.Reply, 0);
            }
            #endregion             //Categories

            #region Locations
            if (Locs == -1)
            {
                Locs = 0;
            }

            int LStart = 35;


            int        CurL = 0;
            PGCategory PGCL = PGSystem.CategoryList[m_Page];
            if (PGCL != null && PGCL.Locations != null)
            {
                for (int i = 0; i < PGCL.Locations.Count; i++)
                {
                    PGLocation PGL = PGCL.Locations[i];
                    if (PGL != null)
                    {
                        if (from.AccessLevel >= PGSystem.PGAccessLevel)
                        {
                            AddRadio(215, LStart + (CurL * 25), 210, 211, false, 200 + i);
                            AddLabel(235, LStart + (CurL * 25), PGL.Hue == 0 ? 1153 : PGL.Hue, PGL.Name);
                            CurL++;
                            continue;
                        }

                        if (PGL.GetFlag(EntryFlag.StaffOnly) && from.AccessLevel == AccessLevel.Player)
                        {
                            continue;
                        }
                        if (!PGL.GetFlag(EntryFlag.StaffOnly))
                        {
                            if (PGL.GetFlag(EntryFlag.Young) && !((PlayerMobile)from).Young)
                            {
                                continue;
                            }
                            if (!PGL.GetFlag(EntryFlag.Reds) && from.Kills >= 5)
                            {
                                continue;
                            }
                        }

                        AddRadio(215, LStart + (CurL * 25), 210, 211, false, 200 + i);
                        AddLabel(235, LStart + (CurL * 25), PGL.Hue == 0 ? 1153 : PGL.Hue, PGL.Name);
                        CurL++;
                    }
                }
            }


            if (from.AccessLevel >= PGSystem.PGAccessLevel)
            {
                AddButton(215, BHeight - 45, 4005, 4007, 6, GumpButtonType.Reply, 0);
                AddLabel(250, BHeight - 45, 1153, "Add Current");

                AddLabel(370, BHeight - 70, 1153, "ADD");
                AddButton(335, BHeight - 70, 4005, 4007, 4, GumpButtonType.Reply, 0);

                AddLabel(370, BHeight - 45, 1153, "EDIT");
                AddButton(335, BHeight - 45, 4005, 4007, 5, GumpButtonType.Reply, 0);
            }
            #endregion             //Locations
        }
		public PGAddEditGump( Conditions conditions, int curC, int curL, PublicGate gate ) : base( 0, 0 )
		{
			if( !PGSystem.Running )
				return;

			m_Conditions = conditions;
			m_CurCat     = curC;
			m_CurLoc     = curL;
			m_Gate       = gate;

			if( !GetFlag( Conditions.Category ) || (GetFlag( Conditions.Category ) && !GetFlag( Conditions.Adding )) )
				m_Cat = PGSystem.CategoryList[curC];
			if( m_Cat != null && (!GetFlag( Conditions.Category ) && !GetFlag( Conditions.Adding )) )
				m_Loc = m_Cat.Locations[curL];


			string Name = "";
			if( !GetFlag( Conditions.Adding ) )
			{
				if( GetFlag( Conditions.Category ) )
					Name = m_Cat.Name;
				else
					Name = m_Loc.Name;
			}

			Point3D Loc = new Point3D( 0, 0, 0 );
			Map Map = Map.Trammel;
			bool Gen, Staff, Reds, Charge, Young;
			int Hue, Cost;
			Gen = Staff = Reds = Charge = Young = false;
			Hue = Cost = 0;

			if( GetFlag( Conditions.Category ) && !GetFlag( Conditions.Adding ) )
			{
				Gen    = m_Cat.GetFlag( EntryFlag.Generate );
				Staff  = m_Cat.GetFlag( EntryFlag.StaffOnly );
				Reds   = m_Cat.GetFlag( EntryFlag.Reds );
				Charge = m_Cat.GetFlag( EntryFlag.Charge );
				Young  = m_Cat.GetFlag( EntryFlag.Young );
				Cost   = m_Cat.Cost;
			}

			if( !GetFlag( Conditions.Category ) && !GetFlag( Conditions.Adding ) )
			{
				Loc    = m_Loc.Location;
				Map    = m_Loc.Map;
				Gen    = m_Loc.GetFlag( EntryFlag.Generate );
				Staff  = m_Loc.GetFlag( EntryFlag.StaffOnly );
				Reds   = m_Loc.GetFlag( EntryFlag.Reds );
				Charge = m_Loc.GetFlag( EntryFlag.Charge );
				Young  = m_Loc.GetFlag( EntryFlag.Young );
				Hue    = m_Loc.Hue;
				Cost   = m_Loc.Cost;
			}

			Closable   = true;
			Disposable = true;
			Dragable   = true;
			Resizable  = false;

			AddPage(0);

			AddBackground( 530, 100, 230, 410, 2600 );
			AddLabel( 602, 120, 0, string.Format("{0} {1}", (GetFlag(Conditions.Adding) ? "Add" : "Edit"), (GetFlag(Conditions.Category) ? "Category" : "Location")) );

			AddLabel( 625, 145, 0, "Name :" );
			AddImage( 555, 170, 2446 );
			AddTextEntry( 565, 170, 160, 20, 0, 2, Name );

			AddLabel( 715, 235, 0, ": C" );
			AddImage( 650, 235, 2443 );
			AddTextEntry( 655, 235, 55, 20, 0, 15, Cost.ToString() );

			if( !GetFlag(Conditions.Category) )
			{

				AddLabel( 560, 210, 0, "X :" );
				AddImage( 580, 210, 2443 );
				AddTextEntry( 585, 210, 55, 20, 0, 3, Loc.X.ToString() );

				AddLabel( 560, 235, 0, "Y :" );
				AddImage( 580, 235, 2443 );
				AddTextEntry( 585, 235, 55, 20, 0, 4, Loc.Y.ToString() );

				AddLabel( 560, 260, 0, "Z :" );
				AddImage( 580, 260, 2443 );
				AddTextEntry( 585, 260, 55, 20, 0, 5, Loc.Z.ToString() );

				AddLabel( 715, 210, 0, ": H" );
				AddImage( 650, 210, 2443 );
				AddTextEntry( 655, 210, 55, 20, 0, 14, Hue.ToString() );

				AddLabel( 585, 315, 0, "Trammel" );
				AddRadio( 555, 315, 208, 209, (Map == Map.Trammel ? true : false), 6 );

				AddLabel( 585, 340, 0, "Felucca" );
				AddRadio( 555, 340, 208, 209, (Map == Map.Felucca ? true : false), 7 );

				AddLabel( 685, 315, 0, "Malas" );
				AddRadio( 655, 315, 208, 209, (Map == Map.Malas ? true : false), 8 );

				AddLabel( 685, 345, 0, "Ilshenar" );
				AddRadio( 655, 340, 208, 209, (Map == Map.Ilshenar ? true : false), 9 );

				AddLabel( 585, 365, 0, "Tokuno" );
				AddRadio( 555, 370, 208, 209, (Map == Map.Tokuno ? true : false), 10 );
			}


			AddLabel( 585, 395, 0, "Generate?" );
			AddCheck( 555, 395, 210, 211, Gen, 11 );

			AddLabel( 665, 395, 0, "Young?" );
			AddCheck( 715, 395, 210, 211, Young, 16 );

			AddLabel( 585, 420, 0, "Reds?" );
			AddCheck( 555, 420, 210, 211, Reds, 13 );

			AddLabel( 658, 420, 0, "Charge?" );
			AddCheck( 715, 420, 210, 211, Charge, 17 );

			AddLabel( 585, 445, 0, "Staff Only?" );
			AddCheck( 555, 445, 210, 211, Staff, 12 );

			AddButton( 700, 450, 1417, 1417, 1, GumpButtonType.Reply, 0 );
			AddLabel( 728, 481, 69, "Apply" );
		}