コード例 #1
0
        public override void PopulateGump()
        {
            Guild g     = Guild.GetAllianceLeader(guild);
            Guild other = Guild.GetAllianceLeader(m_Other);

            WarDeclaration war       = g.FindPendingWar(other);
            WarDeclaration activeWar = g.FindActiveWar(other);

            AllianceInfo alliance      = guild.Alliance;
            AllianceInfo otherAlliance = m_Other.Alliance;
            //NOTE TO SELF: Only only alliance leader can see pending guild alliance statuses

            bool PendingWar = (war != null);
            bool ActiveWar  = (activeWar != null);

            AddPage(0);

            AddBackground(0, 0, 520, 335, 0x242C);
            AddHtmlLocalized(20, 15, 480, 26, 1062975, 0x0, false, false); // <div align=center><i>Guild Relationship</i></div>
            AddImageTiled(20, 40, 480, 2, 0x2711);
            AddHtmlLocalized(20, 50, 120, 26, 1062954, 0x0, true, false);  // <i>Guild Name</i>
            AddHtml(150, 53, 360, 26, m_Other.Name, false, false);

            AddHtmlLocalized(20, 80, 120, 26, 1063025, 0x0, true, false); // <i>Alliance</i>

            if (otherAlliance != null)
            {
                if (otherAlliance.IsMember(m_Other))
                {
                    AddHtml(150, 83, 360, 26, otherAlliance.Name, false, false);
                }
                //else if( otherAlliance.Leader == guild && ( otherAlliance.IsPendingMember( m_Other ) || otherAlliance.IsPendingMember( guild ) ) )

                /*		else if( (otherAlliance.Leader == guild && otherAlliance.IsPendingMember( m_Other ) ) || ( otherAlliance.Leader == m_Other && otherAlliance.IsPendingMember( guild ) ) )
                 *      {
                 *          AddHtml( 150, 83, 360, 26, Color( alliance.Name, 0xF), false, false );
                 *      }
                 *      //AddHtml( 150, 83, 360, 26, ( alliance.PendingMembers.Contains( guild ) || alliance.PendingMembers.Contains( m_Other ) ) ? String.Format( "<basefont color=#blue>{0}</basefont>", alliance.Name ) : alliance.Name, false, false );
                 *      //AddHtml( 150, 83, 360, 26, ( otherAlliance == alliance &&  otherAlliance.PendingMembers.Contains( guild ) || otherAlliance.PendingMembers.Contains( m_Other ) ) ? String.Format( "<basefont color=#blue>{0}</basefont>", otherAlliance.Name ) : otherAlliance.Name, false, false );
                 */
            }

            AddHtmlLocalized(20, 110, 120, 26, 1063139, 0x0, true, false); // <i>Abbreviation</i>
            AddHtml(150, 113, 120, 26, m_Other.Abbreviation, false, false);


            string kills      = "0/0";
            string time       = "00:00";
            string otherKills = "0/0";

            WarDeclaration otherWar;

            if (ActiveWar)
            {
                kills = String.Format("{0}/{1}", activeWar.Kills, activeWar.MaxKills);

                TimeSpan timeRemaining = TimeSpan.Zero;

                if (activeWar.WarLength != TimeSpan.Zero && (activeWar.WarBeginning + activeWar.WarLength) > DateTime.UtcNow)
                {
                    timeRemaining = (activeWar.WarBeginning + activeWar.WarLength) - DateTime.UtcNow;
                }

                //time = String.Format( "{0:D2}:{1:D2}", timeRemaining.Hours.ToString(), timeRemaining.Subtract( TimeSpan.FromHours( timeRemaining.Hours ) ).Minutes );	//Is there a formatter for htis? it's 2AM and I'm tired and can't find it
                time = String.Format("{0:D2}:{1:mm}", timeRemaining.Hours, DateTime.MinValue + timeRemaining);

                otherWar = m_Other.FindActiveWar(guild);
                if (otherWar != null)
                {
                    otherKills = String.Format("{0}/{1}", otherWar.Kills, otherWar.MaxKills);
                }
            }
            else if (PendingWar)
            {
                kills = Color(String.Format("{0}/{1}", war.Kills, war.MaxKills), 0x990000);
                //time = Color( String.Format( "{0}:{1}", war.WarLength.Hours, ((TimeSpan)(war.WarLength - TimeSpan.FromHours( war.WarLength.Hours ))).Minutes ), 0xFF0000 );
                time = Color(String.Format("{0:D2}:{1:mm}", war.WarLength.Hours, DateTime.MinValue + war.WarLength), 0x990000);

                otherWar = m_Other.FindPendingWar(guild);
                if (otherWar != null)
                {
                    otherKills = Color(String.Format("{0}/{1}", otherWar.Kills, otherWar.MaxKills), 0x990000);
                }
            }

            AddHtmlLocalized(280, 110, 120, 26, 1062966, 0x0, true, false); // <i>Your Kills</i>
            AddHtml(410, 113, 120, 26, kills, false, false);

            AddHtmlLocalized(20, 140, 120, 26, 1062968, 0x0, true, false); // <i>Time Remaining</i>
            AddHtml(150, 143, 120, 26, time, false, false);

            AddHtmlLocalized(280, 140, 120, 26, 1062967, 0x0, true, false); // <i>Their Kills</i>
            AddHtml(410, 143, 120, 26, otherKills, false, false);

            AddImageTiled(20, 172, 480, 2, 0x2711);

            int number = 1062973;// <div align=center>You are at peace with this guild.</div>


            if (PendingWar)
            {
                if (war.WarRequester)
                {
                    number = 1063027; // <div align=center>You have challenged this guild to war!</div>
                }
                else
                {
                    number = 1062969;                             // <div align=center>This guild has challenged you to war!</div>

                    AddButtonAndBackground(20, 260, 5, 1062981);  // Accept Challenge
                    AddButtonAndBackground(275, 260, 6, 1062983); //Modify Terms
                }

                AddButtonAndBackground(20, 290, 7, 1062982); // Dismiss Challenge
            }
            else if (ActiveWar)
            {
                number = 1062965;                                           // <div align=center>You are at war with this guild!</div>
                AddButtonAndBackground(20, 290, 8, 1062980);                // Surrender
            }
            else if (alliance != null && alliance == otherAlliance)         //alliance, Same Alliance
            {
                if (alliance.IsMember(guild) && alliance.IsMember(m_Other)) //Both in Same alliance, full members
                {
                    number = 1062970;                                       // <div align=center>You are allied with this guild.</div>

                    if (alliance.Leader == guild)
                    {
                        AddButtonAndBackground(20, 260, 12, 1062984);  // Remove Guild from Alliance
                        AddButtonAndBackground(275, 260, 13, 1063433); // Promote to Alliance Leader	//Note: No 'confirmation' like the other leader guild promotion things
                                                                       //Remove guild from alliance	//Promote to Alliance Leader
                    }

                    //Show roster, Centered, up
                    AddButtonAndBackground(148, 215, 10, 1063164); //Show Alliance Roster
                                                                   //Leave Alliance
                    AddButtonAndBackground(20, 290, 11, 1062985);  // Leave Alliance
                }
                else if (alliance.Leader == guild && alliance.IsPendingMember(m_Other))
                {
                    number = 1062971; // <div align=center>You have requested an alliance with this guild.</div>

                    //Show Alliance Roster, Centered, down.
                    AddButtonAndBackground(148, 245, 10, 1063164); //Show Alliance Roster
                                                                   //Withdraw Request
                    AddButtonAndBackground(20, 290, 14, 1062986);  // Withdraw Request

                    AddHtml(150, 83, 360, 26, Color(alliance.Name, 0x99), false, false);
                }
                else if (alliance.Leader == m_Other && alliance.IsPendingMember(guild))
                {
                    number = 1062972; // <div align=center>This guild has requested an alliance.</div>

                    //Show alliance Roster, top
                    AddButtonAndBackground(148, 215, 10, 1063164); //Show Alliance Roster
                                                                   //Deny Request
                                                                   //Accept Request
                    AddButtonAndBackground(20, 260, 15, 1062988);  // Deny Request
                    AddButtonAndBackground(20, 290, 16, 1062987);  // Accept Request

                    AddHtml(150, 83, 360, 26, Color(alliance.Name, 0x99), false, false);
                }
            }
            else
            {
                AddButtonAndBackground(20, 260, 2, 1062990); // Request Alliance
                AddButtonAndBackground(20, 290, 1, 1062989); // Declare War!
            }

            AddButtonAndBackground(275, 290, 0, 3000091); //Cancel

            AddHtmlLocalized(20, 180, 480, 30, number, 0x0, true, false);
            AddImageTiled(20, 245, 480, 2, 0x2711);
        }
コード例 #2
0
        public void CheckExpiredWars()
        {
            for (int i = 0; i < AcceptedWars.Count; i++)
            {
                WarDeclaration w = AcceptedWars[i];
                Guild          g = w.Opponent;

                WarStatus status = w.Status;

                if (status != WarStatus.InProgress)
                {
                    AllianceInfo myAlliance = Alliance;
                    bool         inAlliance = myAlliance?.IsMember(this) == true;

                    AllianceInfo otherAlliance   = g?.Alliance;
                    bool         otherInAlliance = otherAlliance?.IsMember(this) == true;

                    if (inAlliance)
                    {
                        myAlliance.AllianceMessage(1070739 + (int)status,
                                                   g == null ? "a deleted opponent" : otherInAlliance ? otherAlliance.Name : g.Name);
                        myAlliance.InvalidateMemberProperties();
                    }
                    else
                    {
                        GuildMessage(1070739 + (int)status,
                                     g == null ? "a deleted opponent" : otherInAlliance?otherAlliance.Name: g.Name);
                        InvalidateMemberProperties();
                    }

                    AcceptedWars.Remove(w);

                    if (g == null)
                    {
                        continue;
                    }

                    if (status != WarStatus.Draw)
                    {
                        status = (WarStatus)((int)status + 1 % 2);
                    }

                    if (otherInAlliance)
                    {
                        otherAlliance.AllianceMessage(1070739 + (int)status, inAlliance ? Alliance.Name : Name);
                        otherAlliance.InvalidateMemberProperties();
                    }
                    else
                    {
                        g.GuildMessage(1070739 + (int)status, inAlliance ? Alliance.Name : Name);
                        g.InvalidateMemberProperties();
                    }

                    g.AcceptedWars.Remove(g.FindActiveWar(this));
                }
            }

            for (int i = 0; i < PendingWars.Count; i++)
            {
                WarDeclaration w = PendingWars[i];
                Guild          g = w.Opponent;

                if (w.Status != WarStatus.Pending)
                {
                    //All sanity in here
                    PendingWars.Remove(w);

                    g?.PendingWars.Remove(g.FindPendingWar(this));
                }
            }
        }
コード例 #3
0
        public override void OnResponse(NetState sender, RelayInfo info)
        {
            PlayerMobile pm = sender.Mobile as PlayerMobile;

            if (!IsMember(pm, guild))
            {
                return;
            }

            RankDefinition playerRank = pm.GuildRank;

            Guild guildLeader = Guild.GetAllianceLeader(guild);
            Guild otherGuild  = Guild.GetAllianceLeader(m_Other);

            WarDeclaration war       = guildLeader.FindPendingWar(otherGuild);
            WarDeclaration activeWar = guildLeader.FindActiveWar(otherGuild);
            WarDeclaration otherWar  = otherGuild.FindPendingWar(guildLeader);

            AllianceInfo alliance      = guild.Alliance;
            AllianceInfo otherAlliance = otherGuild.Alliance;

            switch (info.ButtonID)
            {
                #region War
            case 5:     //Accept the war
            {
                if (war != null && !war.WarRequester && activeWar == null)
                {
                    if (!playerRank.GetFlag(RankFlags.ControlWarStatus))
                    {
                        pm.SendLocalizedMessage(1063440);         // You don't have permission to negotiate wars.
                    }
                    else if (alliance != null && alliance.Leader != guild)
                    {
                        pm.SendLocalizedMessage(1063239, String.Format("{0}\t{1}", guild.Name, alliance.Name)); // ~1_val~ is not the leader of the ~2_val~ alliance.
                        pm.SendLocalizedMessage(1070707, alliance.Leader.Name);                                 // You need to negotiate via ~1_val~ instead.
                    }
                    else
                    {
                        //Accept the war
                        guild.PendingWars.Remove(war);
                        war.WarBeginning = DateTime.UtcNow;
                        guild.AcceptedWars.Add(war);

                        if (alliance != null && alliance.IsMember(guild))
                        {
                            alliance.AllianceMessage(1070769, ((otherAlliance != null) ? otherAlliance.Name : otherGuild.Name));         // Guild Message: Your guild is now at war with ~1_GUILDNAME~
                            alliance.InvalidateMemberProperties();
                        }
                        else
                        {
                            guild.GuildMessage(1070769, ((otherAlliance != null) ? otherAlliance.Name : otherGuild.Name));         // Guild Message: Your guild is now at war with ~1_GUILDNAME~
                            guild.InvalidateMemberProperties();
                        }
                        //Technically  SHOULD say Your guild is now at war w/out any info, intentional diff.

                        otherGuild.PendingWars.Remove(otherWar);
                        otherWar.WarBeginning = DateTime.UtcNow;
                        otherGuild.AcceptedWars.Add(otherWar);

                        if (otherAlliance != null && m_Other.Alliance.IsMember(m_Other))
                        {
                            otherAlliance.AllianceMessage(1070769, ((alliance != null) ? alliance.Name : guild.Name));         // Guild Message: Your guild is now at war with ~1_GUILDNAME~
                            otherAlliance.InvalidateMemberProperties();
                        }
                        else
                        {
                            otherGuild.GuildMessage(1070769, ((alliance != null) ? alliance.Name : guild.Name));         // Guild Message: Your guild is now at war with ~1_GUILDNAME~
                            otherGuild.InvalidateMemberProperties();
                        }
                    }
                }

                break;
            }

            case 6:     //Modify war terms
            {
                if (war != null && !war.WarRequester && activeWar == null)
                {
                    if (!playerRank.GetFlag(RankFlags.ControlWarStatus))
                    {
                        pm.SendLocalizedMessage(1063440);         // You don't have permission to negotiate wars.
                    }
                    else if (alliance != null && alliance.Leader != guild)
                    {
                        pm.SendLocalizedMessage(1063239, String.Format("{0}\t{1}", guild.Name, alliance.Name)); // ~1_val~ is not the leader of the ~2_val~ alliance.
                        pm.SendLocalizedMessage(1070707, alliance.Leader.Name);                                 // You need to negotiate via ~1_val~ instead.
                    }
                    else
                    {
                        pm.SendGump(new WarDeclarationGump(pm, guild, otherGuild));
                    }
                }
                break;
            }

            case 7:     //Dismiss war
            {
                if (war != null)
                {
                    if (!playerRank.GetFlag(RankFlags.ControlWarStatus))
                    {
                        pm.SendLocalizedMessage(1063440);         // You don't have permission to negotiate wars.
                    }
                    else if (alliance != null && alliance.Leader != guild)
                    {
                        pm.SendLocalizedMessage(1063239, String.Format("{0}\t{1}", guild.Name, alliance.Name)); // ~1_val~ is not the leader of the ~2_val~ alliance.
                        pm.SendLocalizedMessage(1070707, alliance.Leader.Name);                                 // You need to negotiate via ~1_val~ instead.
                    }
                    else
                    {
                        //Dismiss the war
                        guild.PendingWars.Remove(war);
                        otherGuild.PendingWars.Remove(otherWar);
                        pm.SendLocalizedMessage(1070752);         // The proposal has been updated.
                                                                  //Messages to opposing guild? (Testing on OSI says no)
                    }
                }
                break;
            }

            case 8:     //Surrender
            {
                if (!playerRank.GetFlag(RankFlags.ControlWarStatus))
                {
                    pm.SendLocalizedMessage(1063440);         // You don't have permission to negotiate wars.
                }
                else if (alliance != null && alliance.Leader != guild)
                {
                    pm.SendLocalizedMessage(1063239, String.Format("{0}\t{1}", guild.Name, alliance.Name)); // ~1_val~ is not the leader of the ~2_val~ alliance.
                    pm.SendLocalizedMessage(1070707, alliance.Leader.Name);                                 // You need to negotiate via ~1_val~ instead.
                }
                else
                {
                    if (activeWar != null)
                    {
                        if (alliance != null && alliance.IsMember(guild))
                        {
                            alliance.AllianceMessage(1070740, ((otherAlliance != null) ? otherAlliance.Name : otherGuild.Name));        // You have lost the war with ~1_val~.
                            alliance.InvalidateMemberProperties();
                        }
                        else
                        {
                            guild.GuildMessage(1070740, ((otherAlliance != null) ? otherAlliance.Name : otherGuild.Name));        // You have lost the war with ~1_val~.
                            guild.InvalidateMemberProperties();
                        }

                        guild.AcceptedWars.Remove(activeWar);

                        if (otherAlliance != null && otherAlliance.IsMember(otherGuild))
                        {
                            otherAlliance.AllianceMessage(1070739, ((guild.Alliance != null) ? guild.Alliance.Name : guild.Name));        // You have won the war against ~1_val~!
                            otherAlliance.InvalidateMemberProperties();
                        }
                        else
                        {
                            otherGuild.GuildMessage(1070739, ((guild.Alliance != null) ? guild.Alliance.Name : guild.Name));        // You have won the war against ~1_val~!
                            otherGuild.InvalidateMemberProperties();
                        }

                        otherGuild.AcceptedWars.Remove(otherGuild.FindActiveWar(guild));
                    }
                }
                break;
            }

            case 1:     //Declare War
            {
                if (war == null && activeWar == null)
                {
                    if (!playerRank.GetFlag(RankFlags.ControlWarStatus))
                    {
                        pm.SendLocalizedMessage(1063440);         // You don't have permission to negotiate wars.
                    }
                    else if (alliance != null && alliance.Leader != guild)
                    {
                        pm.SendLocalizedMessage(1063239, String.Format("{0}\t{1}", guild.Name, alliance.Name)); // ~1_val~ is not the leader of the ~2_val~ alliance.
                        pm.SendLocalizedMessage(1070707, alliance.Leader.Name);                                 // You need to negotiate via ~1_val~ instead.
                    }
                    else if (otherAlliance != null && otherAlliance.Leader != m_Other)
                    {
                        pm.SendLocalizedMessage(1063239, String.Format("{0}\t{1}", m_Other.Name, otherAlliance.Name)); // ~1_val~ is not the leader of the ~2_val~ alliance.
                        pm.SendLocalizedMessage(1070707, otherAlliance.Leader.Name);                                   // You need to negotiate via ~1_val~ instead.
                    }
                    else
                    {
                        pm.SendGump(new WarDeclarationGump(pm, guild, m_Other));
                    }
                }
                break;
            }

                #endregion
            case 2:     //Request Alliance
            {
                #region New alliance
                if (alliance == null)
                {
                    if (!playerRank.GetFlag(RankFlags.AllianceControl))
                    {
                        pm.SendLocalizedMessage(1070747);         // You don't have permission to create an alliance.
                    }
                    else if (Faction.Find(guild.Leader) != Faction.Find(m_Other.Leader))
                    {
                        pm.SendLocalizedMessage(1070758);         // You cannot propose an alliance to a guild with a different faction allegiance.
                    }
                    else if (otherAlliance != null)
                    {
                        if (otherAlliance.IsPendingMember(m_Other))
                        {
                            pm.SendLocalizedMessage(1063416, m_Other.Name);         // ~1_val~ is currently considering another alliance proposal.
                        }
                        else
                        {
                            pm.SendLocalizedMessage(1063426, m_Other.Name);         // ~1_val~ already belongs to an alliance.
                        }
                    }
                    else if (m_Other.AcceptedWars.Count > 0 || m_Other.PendingWars.Count > 0)
                    {
                        pm.SendLocalizedMessage(1063427, m_Other.Name);         // ~1_val~ is currently involved in a guild war.
                    }
                    else if (guild.AcceptedWars.Count > 0 || guild.PendingWars.Count > 0)
                    {
                        pm.SendLocalizedMessage(1063427, guild.Name);         // ~1_val~ is currently involved in a guild war.
                    }
                    else
                    {
                        pm.SendLocalizedMessage(1063439);         // Enter a name for the new alliance:
                        pm.BeginPrompt(new PromptCallback(CreateAlliance_Callback));
                    }
                }
                #endregion
                #region Existing Alliance
                else
                {
                    if (!playerRank.GetFlag(RankFlags.AllianceControl))
                    {
                        pm.SendLocalizedMessage(1063436);         // You don't have permission to negotiate an alliance.
                    }
                    else if (alliance.Leader != guild)
                    {
                        pm.SendLocalizedMessage(1063239, String.Format("{0}\t{1}", guild.Name, alliance.Name));         // ~1_val~ is not the leader of the ~2_val~ alliance.
                    }
                    else if (otherAlliance != null)
                    {
                        if (otherAlliance.IsPendingMember(m_Other))
                        {
                            pm.SendLocalizedMessage(1063416, m_Other.Name);         // ~1_val~ is currently considering another alliance proposal.
                        }
                        else
                        {
                            pm.SendLocalizedMessage(1063426, m_Other.Name);         // ~1_val~ already belongs to an alliance.
                        }
                    }
                    else if (alliance.IsPendingMember(guild))
                    {
                        pm.SendLocalizedMessage(1063416, guild.Name);         // ~1_val~ is currently considering another alliance proposal.
                    }
                    else if (m_Other.AcceptedWars.Count > 0 || m_Other.PendingWars.Count > 0)
                    {
                        pm.SendLocalizedMessage(1063427, m_Other.Name);         // ~1_val~ is currently involved in a guild war.
                    }
                    else if (guild.AcceptedWars.Count > 0 || guild.PendingWars.Count > 0)
                    {
                        pm.SendLocalizedMessage(1063427, guild.Name);         // ~1_val~ is currently involved in a guild war.
                    }
                    else if (Faction.Find(guild.Leader) != Faction.Find(m_Other.Leader))
                    {
                        pm.SendLocalizedMessage(1070758);         // You cannot propose an alliance to a guild with a different faction allegiance.
                    }
                    else
                    {
                        pm.SendLocalizedMessage(1070750, m_Other.Name); // An invitation to join your alliance has been sent to ~1_val~.

                        m_Other.GuildMessage(1070780, guild.Name);      // ~1_val~ has proposed an alliance.

                        m_Other.Alliance = alliance;                    //Calls addPendingGuild
                                                                        //alliance.AddPendingGuild( m_Other );
                    }
                }
                #endregion
                break;
            }

            case 10:        //Show Alliance Roster
            {
                if (alliance != null && alliance == otherAlliance)
                {
                    pm.SendGump(new AllianceInfo.AllianceRosterGump(pm, guild, alliance));
                }

                break;
            }

            case 11:        //Leave Alliance
            {
                if (!playerRank.GetFlag(RankFlags.AllianceControl))
                {
                    pm.SendLocalizedMessage(1063436);         // You don't have permission to negotiate an alliance.
                }
                else if (alliance != null && alliance.IsMember(guild))
                {
                    guild.Alliance = null;          //Calls alliance.Removeguild
                                                    //						alliance.RemoveGuild( guild );

                    m_Other.InvalidateWarNotoriety();

                    guild.InvalidateMemberNotoriety();
                }
                break;
            }

            case 12:        //Remove Guild from alliance
            {
                if (!playerRank.GetFlag(RankFlags.AllianceControl))
                {
                    pm.SendLocalizedMessage(1063436);         // You don't have permission to negotiate an alliance.
                }
                else if (alliance != null && alliance.Leader != guild)
                {
                    pm.SendLocalizedMessage(1063239, String.Format("{0}\t{1}", guild.Name, alliance.Name));         // ~1_val~ is not the leader of the ~2_val~ alliance.
                }
                else if (alliance != null && alliance.IsMember(guild) && alliance.IsMember(m_Other))
                {
                    m_Other.Alliance = null;

                    m_Other.InvalidateMemberNotoriety();

                    guild.InvalidateWarNotoriety();
                }
                break;
            }

            case 13:        //Promote to Alliance leader
            {
                if (!playerRank.GetFlag(RankFlags.AllianceControl))
                {
                    pm.SendLocalizedMessage(1063436);         // You don't have permission to negotiate an alliance.
                }
                else if (alliance != null && alliance.Leader != guild)
                {
                    pm.SendLocalizedMessage(1063239, String.Format("{0}\t{1}", guild.Name, alliance.Name));         // ~1_val~ is not the leader of the ~2_val~ alliance.
                }
                else if (alliance != null && alliance.IsMember(guild) && alliance.IsMember(m_Other))
                {
                    pm.SendLocalizedMessage(1063434, String.Format("{0}\t{1}", m_Other.Name, alliance.Name));         // ~1_val~ is now the leader of ~2_val~.

                    alliance.Leader = m_Other;
                }
                break;
            }

            case 14:        //Withdraw Request
            {
                if (!playerRank.GetFlag(RankFlags.AllianceControl))
                {
                    pm.SendLocalizedMessage(1063436);         // You don't have permission to negotiate an alliance.
                }
                else if (alliance != null && alliance.Leader == guild && alliance.IsPendingMember(m_Other))
                {
                    m_Other.Alliance = null;
                    pm.SendLocalizedMessage(1070752);         // The proposal has been updated.
                }
                break;
            }

            case 15:     //Deny Alliance Request
            {
                if (!playerRank.GetFlag(RankFlags.AllianceControl))
                {
                    pm.SendLocalizedMessage(1063436);         // You don't have permission to negotiate an alliance.
                }
                else if (alliance != null && otherAlliance != null && alliance.Leader == m_Other && otherAlliance.IsPendingMember(guild))
                {
                    pm.SendLocalizedMessage(1070752);         // The proposal has been updated.
                                                              //m_Other.GuildMessage( 1070782 ); // ~1_val~ has responded to your proposal.	//Per OSI commented out.

                    guild.Alliance = null;
                }
                break;
            }

            case 16:     //Accept Alliance Request
            {
                if (!playerRank.GetFlag(RankFlags.AllianceControl))
                {
                    pm.SendLocalizedMessage(1063436);         // You don't have permission to negotiate an alliance.
                }
                else if (otherAlliance != null && otherAlliance.Leader == m_Other && otherAlliance.IsPendingMember(guild))
                {
                    pm.SendLocalizedMessage(1070752);         // The proposal has been updated.

                    otherAlliance.TurnToMember(m_Other);      //No need to verify it's in the guild or already a member, the function does this

                    otherAlliance.TurnToMember(guild);
                }
                break;
            }
            }
        }
コード例 #4
0
        public GuildAdminGump(Mobile from, Page page, int listPage, string notice, List <Guild> list, object state)
            : base(50, 40)
        {
            from.CloseGump(typeof(GuildAdminGump));

            if (list == null)
            {
                PopulateGuildList();
            }
            else
            {
                m_List = list;
            }

            PopulateAllianceTable();
            PopulateWarTable();

            m_From     = from;
            m_PageType = page;
            m_ListPage = listPage;
            m_State    = state;

            AddPage(0);
            AddBackground(0, 0, 420, 440, 5054);

            AddBlackAlpha(10, 10, 170, 100);
            AddBlackAlpha(190, 10, 220, 100);
            AddBlackAlpha(10, 120, 400, 260);
            AddBlackAlpha(10, 390, 400, 40);

            if (!Guild.NewGuildSystem)
            {
                AddLabel(20, 130, LabelHue, "This menu does not support old guild systems.");
                return;
            }

            AddPageButton(10, 10, GetButtonID(0, 0), "INFORMATION", Page.Information);
            AddPageButton(10, 30, GetButtonID(0, 1), "GUILD LIST", Page.Guilds, Page.GuildInfo);
            AddPageButton(10, 50, GetButtonID(0, 2), "ALLIANCES", Page.Alliances, Page.AllianceDetails);

            if (notice != null)
            {
                AddHtml(12, 392, 396, 36, Color(notice, LabelColor32), false, false);
            }

            switch (page)
            {
            case Page.Information:
            {
                AddGuildHeader();

                AddLabel(20, 130, LabelHue, "GuildAdmin Version:");
                AddLabel(150, 130, LabelHue, Version);

                AddLabel(20, 150, LabelHue, "Registration Fee:");
                AddLabel(150, 150, LabelHue, Guild.RegistrationFee.ToString("#,0") + " gp");

                AddLabel(20, 170, LabelHue, "Total Guilds:");
                AddLabel(150, 170, LabelHue, m_List.Count.ToString());

                AddLabel(20, 190, LabelHue, " Active Alliances:");
                AddLabel(150, 190, LabelHue, m_AllianceTable.Count.ToString());

                AddLabel(20, 210, LabelHue, " Active Wars:");
                AddLabel(150, 210, LabelHue, m_WarTable.Count.ToString());

                break;
            }

            case Page.Guilds:
            {
                AddGuildHeader();

                if (m_List == null)
                {
                    AddHtml(12, 140, 250, 60, Color("There was a problem building the list of guilds on the server. This page cannot be displayed.", LabelColor32), false, false);
                    break;
                }

                AddLabelCropped(12, 120, 81, 20, LabelHue, "Guild ID");
                AddLabelCropped(95, 120, 81, 20, LabelHue, "Abbreviaton");
                AddLabelCropped(178, 120, 172, 20, LabelHue, "Name");

                if (listPage > 0)
                {
                    AddButton(375, 122, 0x15E3, 0x15E7, GetButtonID(1, 0), GumpButtonType.Reply, 0);
                }
                else
                {
                    AddImage(375, 122, 0x25EA);
                }

                if ((listPage + 1) * 12 < m_List.Count)
                {
                    AddButton(392, 122, 0x15E1, 0x15E5, GetButtonID(1, 1), GumpButtonType.Reply, 0);
                }
                else
                {
                    AddImage(392, 122, 0x25E6);
                }

                if (m_List.Count == 0)
                {
                    AddLabel(12, 140, LabelHue, "There are no guilds to display.");
                }

                for (int i = 0, index = (listPage * 12); i < 12 && index >= 0 && index < m_List.Count; i++, index++)
                {
                    Guild g = m_List[index];

                    if (g == null)
                    {
                        continue;
                    }

                    int offset = (140 + (i * 20));

                    AddLabelCropped(12, offset, 81, 20, LabelHue, g.Id.ToString());
                    AddLabelCropped(95, offset, 81, 20, LabelHue, g.Abbreviation);
                    AddLabelCropped(178, offset, 172, 20, LabelHue, g.Name);

                    AddButton(380, offset - 1, 0xFA5, 0xFA7, GetButtonID(4, index + 2), GumpButtonType.Reply, 0);
                }

                break;
            }

            case Page.GuildInfo:
            {
                Guild g = state as Guild;

                if (g == null)
                {
                    break;
                }

                AddGuildHeader();
                AddHtml(10, 125, 400, 20, Color(Center("Guild Information"), LabelColor32), false, false);

                int y = 146;

                AddLabel(20, y, LabelHue, "Name:");
                AddLabel(200, y, LabelHue, g.Name);
                y += 20;

                AddLabel(20, y, LabelHue, "Abbreviation:");
                AddLabel(200, y, LabelHue, g.Abbreviation);
                y += 20;

                AddLabel(20, y, LabelHue, "Guild Leader:");
                if (g.Leader.Account != null)
                {
                    AddLabelCropped(200, y, 150, 20, LabelHue, String.Format("{0} [{1}]", g.Leader.RawName,
                                                                             ((Server.Accounting.Account)g.Leader.Account).Username));
                }
                else
                {
                    AddLabelCropped(200, y, 150, 20, LabelHue, g.Leader.RawName);
                }
                y += 20;

                AddLabel(20, y, LabelHue, "Active Members:");
                AddLabel(200, y, LabelHue, g.Members.Count.ToString());
                y += 44;

                AddButtonLabeled(20, y, GetButtonID(7, 0), "Disband");
                AddButtonLabeled(200, y, GetButtonID(7, 1), "Active Alliance");
                y += 20;

                AddButtonLabeled(20, y, GetButtonID(7, 2), "Member List");
                AddButtonLabeled(200, y, GetButtonID(7, 3), "Active Wars");
                y += 20;

                AddButtonLabeled(20, y, GetButtonID(7, 4), "Add Member");
                AddButtonLabeled(200, y, GetButtonID(7, 5), "Guild Properties");

                break;
            }

            case Page.GuildMemberList:
            {
                Guild g = state as Guild;

                if (g == null)
                {
                    break;
                }

                AddGuildHeader();
                AddLabelCropped(12, 120, 120, 20, LabelHue, "Player Name");
                AddLabelCropped(132, 120, 120, 20, LabelHue, "Account Username");
                AddLabelCropped(252, 120, 120, 20, LabelHue, "Status");

                if (listPage > 0)
                {
                    AddButton(375, 122, 0x15E3, 0x15E7, GetButtonID(1, 0), GumpButtonType.Reply, 0);
                }
                else
                {
                    AddImage(375, 122, 0x25EA);
                }

                if ((listPage + 1) * 12 < g.Members.Count)
                {
                    AddButton(392, 122, 0x15E1, 0x15E5, GetButtonID(1, 1), GumpButtonType.Reply, 0);
                }
                else
                {
                    AddImage(392, 122, 0x25E6);
                }

                if (g.Members.Count == 0)
                {
                    AddLabel(12, 140, LabelHue, "This guild has no members.");
                }

                for (int i = 0, index = (listPage * 12); i < 12 && index >= 0 && index < g.Members.Count; i++, index++)
                {
                    Mobile m = g.Members[index];

                    if (m == null || m.Account == null)
                    {
                        continue;
                    }

                    int offset = (140 + (i * 20));

                    AddLabelCropped(12, offset, 120, 20, LabelHue, m.RawName);
                    AddLabelCropped(132, offset, 120, 20, LabelHue, ((Server.Accounting.Account)m.Account).Username);

                    if (m.NetState != null)
                    {
                        AddLabelCropped(252, offset, 120, 20, 0x40, "Online");
                    }
                    else
                    {
                        AddLabelCropped(252, offset, 120, 20, 0x20, "Offline");
                    }
                }

                break;
            }

            case Page.Alliances:
            {
                AddGuildHeader();

                if (m_AllianceTable == null)
                {
                    AddHtml(12, 140, 250, 60, Color("There was a problem building the table of alliances. This page cannot be displayed.", LabelColor32), false, false);
                    break;
                }

                AddLabelCropped(12, 120, 170, 20, LabelHue, "Name");
                AddLabelCropped(184, 120, 81, 20, LabelHue, "Member Count");
                AddLabelCropped(291, 120, 61, 20, LabelHue, "Leader");

                if (listPage > 0)
                {
                    AddButton(375, 122, 0x15E3, 0x15E7, GetButtonID(1, 0), GumpButtonType.Reply, 0);
                }
                else
                {
                    AddImage(375, 122, 0x25EA);
                }

                if ((listPage + 1) * 12 < m_AllianceTable.Count)
                {
                    AddButton(392, 122, 0x15E1, 0x15E5, GetButtonID(1, 1), GumpButtonType.Reply, 0);
                }
                else
                {
                    AddImage(392, 122, 0x25E6);
                }

                if (m_AllianceTable.Count == 0)
                {
                    AddLabel(12, 140, LabelHue, "There are no alliances to display.");
                }

                List <AllianceInfo> allianceList = new List <AllianceInfo>(m_AllianceTable.Keys);

                for (int i = 0, index = (listPage * 12); i < 12 && index >= 0 && index < allianceList.Count; i++, index++)
                {
                    AllianceInfo info = allianceList[index];

                    if (info == null)
                    {
                        continue;
                    }

                    List <Guild> tempList = null;
                    m_AllianceTable.TryGetValue(info, out tempList);

                    int offset = (140 + (i * 20));

                    AddLabelCropped(12, offset, 170, 20, LabelHue, info.Name);
                    AddLabelCropped(204, offset, 61, 20, LabelHue, (tempList == null ? "N/A" : tempList.Count.ToString()));
                    AddLabelCropped(291, offset, 61, 20, LabelHue, info.Leader.Abbreviation);

                    AddButton(380, (offset - 1), 0xFA5, 0xFA7, GetButtonID(5, index), GumpButtonType.Reply, 0);
                }

                break;
            }

            case Page.AllianceDetails:
            {
                AllianceInfo info = state as AllianceInfo;

                if (info == null || !m_AllianceTable.ContainsKey(info))
                {
                    break;
                }

                AddGuildHeader();
                AddHtml(10, 125, 400, 20, Color(Center("Alliance Details"), LabelColor32), false, false);

                int y = 146;

                AddLabel(20, y, LabelHue, "Name:");
                AddLabel(200, y, LabelHue, info.Name);
                y += 20;

                AddLabel(20, y, LabelHue, "Leader:");
                AddLabelCropped(200, y, 180, 20, LabelHue, String.Format("[{0}] {1}", info.Leader.Abbreviation, info.Leader.Name));
                y += 20;

                AddLabel(20, y, LabelHue, "Member Count:");
                AddLabel(200, y, LabelHue, m_AllianceTable[info].Count.ToString());
                y += 20;

                AddLabel(20, y, LabelHue, "Status:");
                AddLabel(200, y, LabelHue, (m_AllianceTable[info].Count < 2 ? "Pending Acceptance" : "Active"));
                y += 20;

                y = 270;

                AddButtonLabeled(20, y, GetButtonID(8, 0), "Disband");
                AddButtonLabeled(200, y, GetButtonID(8, 1), "Member List");

                break;
            }

            case Page.Wars:
            {
                Guild g = state as Guild;

                if (g == null)
                {
                    break;
                }

                AddGuildHeader();

                AddLabelCropped(12, 120, 120, 20, LabelHue, "Guild Name");
                AddLabelCropped(134, 120, 120, 20, LabelHue, "Opponent Guild");
                AddLabelCropped(246, 120, 90, 20, LabelHue, "Date Started");

                if (listPage > 0)
                {
                    AddButton(375, 122, 0x15E3, 0x15E7, GetButtonID(1, 0), GumpButtonType.Reply, 0);
                }
                else
                {
                    AddImage(375, 122, 0x25EA);
                }

                if ((listPage + 1) * 12 < g.AcceptedWars.Count)
                {
                    AddButton(392, 122, 0x15E1, 0x15E5, GetButtonID(1, 1), GumpButtonType.Reply, 0);
                }
                else
                {
                    AddImage(392, 122, 0x25E6);
                }

                if (g.AcceptedWars.Count == 0)
                {
                    AddLabel(12, 140, LabelHue, "This guild has not accepted any war declarations.");
                }

                for (int i = 0, index = (listPage * 12); i < 12 && index >= 0 && index < g.AcceptedWars.Count; i++, index++)
                {
                    WarDeclaration warDecl = g.AcceptedWars[index];

                    if (warDecl == null)
                    {
                        continue;
                    }

                    int offset = (140 + (i * 20));

                    AddLabelCropped(12, offset, 120, 20, LabelHue, g.Name);
                    AddLabelCropped(134, offset, 120, 20, LabelHue, warDecl.Opponent.Name);
                    AddLabelCropped(246, offset, 120, 20, LabelHue, warDecl.WarBeginning.ToShortDateString());

                    AddButton(380, (offset - 1), 0xFA5, 0xFA7, GetButtonID(6, index), GumpButtonType.Reply, 0);
                }

                break;
            }

            case Page.WarDetails:
            {
                WarDeclaration warDecl = state as WarDeclaration;

                if (warDecl == null)
                {
                    break;
                }

                AddGuildHeader();
                AddHtml(10, 125, 400, 20, Color(Center(String.Format("War Details for {0}", warDecl.Guild.Abbreviation)), LabelColor32), false, false);

                int y = 146;

                AddLabel(20, y, LabelHue, "Current Status:");
                AddLabel(200, y, LabelHue, GetStatus(warDecl.Status));
                y += 20;

                AddLabel(20, y, LabelHue, "Initiated at:");
                AddLabel(200, y, LabelHue, warDecl.WarBeginning.ToShortTimeString() + " on " + warDecl.WarBeginning.ToShortDateString());
                y += 40;

                AddHtml(10, y, 400, 20, Color(Center("Conditions of War:"), LabelColor32), false, false);
                y += 30;

                AddLabel(20, y, LabelHue, "Kills [Current/Max]:");
                AddLabel(200, y, LabelHue, String.Format("{0}/{1}", warDecl.Kills.ToString(), warDecl.MaxKills.ToString()));
                y += 20;

                AddLabel(20, y, LabelHue, "Time [Remaining/Length]:");
                AddLabel(200, y, LabelHue, String.Format("{0}/{1}", GetRemainingTime(warDecl), String.Format("{0:D2}:{1:mm}", warDecl.WarLength.Hours, DateTime.MinValue + warDecl.WarLength)));

                y = 290;

                AddButtonLabeled(20, y, GetButtonID(9, 0), "Guild Details");
                AddButtonLabeled(200, y, GetButtonID(9, 1), "Opponent Details");

                break;
            }
            }
        }