Esempio n. 1
0
        static void Player_Moved(object sender, Events.PlayerMovedEventArgs e)
        {
            //abuse portal moved event and add in message blocks right here
            Vector3I oldPos = new Vector3I(e.OldPosition.X / 32, e.OldPosition.Y / 32, e.OldPosition.Z / 32);             //get positions as block coords
            Vector3I newPos = new Vector3I(e.NewPosition.X / 32, e.NewPosition.Y / 32, e.NewPosition.Z / 32);

            if (oldPos.X != newPos.X || oldPos.Y != newPos.Y || oldPos.Z != newPos.Z)            //check if player has moved at least one block
            {
                //loop through all message blocks and check if we triggered one
                foreach (var messageBlock in e.Player.World.MessageBlocks)
                {
                    Tuple <Vector3I, string> tuple = messageBlock.Value;

                    //player is sitting on the message block, play the message
                    if (e.Player.Position.ToBlockCoords() == tuple.Item1)
                    {
                        e.Player.Message("__" + messageBlock.Key + "__");
                        e.Player.Message(messageBlock.Value.Item2);
                        e.Player.Message(e.Player.Position.ToBlockCoords().ToString());
                        e.Player.Message(tuple.Item1.ToString());
                    }
                }
            }

            try
            {
                if (e.Player.PortalsEnabled)
                {
                    lock (e.Player.PortalLock)
                    {
                        if (e.Player.CanUsePortal)
                        {
                            if ((e.OldPosition.X != e.NewPosition.X) || (e.OldPosition.Y != e.NewPosition.Y) || (e.OldPosition.Z != (e.NewPosition.Z)))
                            {
                                if (e.Player.Can(Permission.UsePortal))
                                {
                                    if (PortalHandler.GetInstance().GetPortal(e.Player) != null && !e.Player.StandingInPortal)
                                    {
                                        if (e.Player.LastUsedPortal != null && (DateTime.UtcNow - e.Player.LastUsedPortal).TotalSeconds < 5)
                                        {
                                            // To prevent portal loops
                                            if (e.Player.LastWarnedPortal == null || (DateTime.UtcNow - e.Player.LastWarnedPortal).TotalSeconds > 2)
                                            {
                                                e.Player.LastWarnedPortal = DateTime.Now;
                                                e.Player.Message("You can not use portals within 5 seconds of joining a world.");
                                            }

                                            return;
                                        }

                                        // Make sure this method isn't called twice
                                        e.Player.CanUsePortal = false;

                                        e.Player.StandingInPortal = true;
                                        Portal portal = PortalHandler.GetInstance().GetPortal(e.Player);

                                        World world = WorldManager.FindWorldExact(portal.World);
                                        // Teleport player, portal protection
                                        switch (world.AccessSecurity.CheckDetailed(e.Player.Info))
                                        {
                                        case SecurityCheckResult.Allowed:
                                        case SecurityCheckResult.WhiteListed:
                                            if (world.IsFull)
                                            {
                                                e.Player.Message("Cannot join {0}&S: world is full.", world.ClassyName);
                                                return;
                                            }
                                            e.Player.StopSpectating();
                                            e.Player.JoinWorld(WorldManager.FindWorldExact(portal.World), WorldChangeReason.Portal);
                                            e.Player.Message("You used portal: " + portal.Name);
                                            break;

                                        case SecurityCheckResult.BlackListed:
                                            e.Player.Message("Cannot join world {0}&S: you are blacklisted.",
                                                             world.ClassyName);
                                            break;

                                        case SecurityCheckResult.RankTooLow:
                                            e.Player.Message("Cannot join world {0}&S: must be {1}+",
                                                             world.ClassyName, world.AccessSecurity.MinRank.ClassyName);
                                            break;
                                        }
                                    }
                                    else
                                    {
                                        e.Player.StandingInPortal = false;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                Logger.Log(LogType.Error, "PortalHandler.Player_Moved: " + ex);
            }
        }
Esempio n. 2
0
        static void Player_Moved(object sender, Events.PlayerMovedEventArgs e)
        {
            try {
                if (e.Player.PortalsEnabled)
                {
                    lock (e.Player.PortalLock) {
                        if (e.Player.CanUsePortal)
                        {
                            if ((e.OldPosition.X != e.NewPosition.X) || (e.OldPosition.Y != e.NewPosition.Y) || (e.OldPosition.Z != (e.NewPosition.Z)))
                            {
                                if (e.Player.Can(Permission.UsePortal))
                                {
                                    if (PortalHandler.GetInstance().GetPortal(e.Player) != null && !e.Player.StandingInPortal)
                                    {
                                        if (e.Player.LastUsedPortal != null && (DateTime.UtcNow - e.Player.LastUsedPortal).TotalSeconds < 4)
                                        {
                                            // To prevent portal loops
                                            if (e.Player.LastWarnedPortal == null || (DateTime.UtcNow - e.Player.LastWarnedPortal).TotalSeconds > 2)
                                            {
                                                e.Player.LastWarnedPortal = DateTime.UtcNow;
                                                e.Player.Message("You cannot use portals for another {0} seconds.", 4 - (DateTime.UtcNow - e.Player.LastUsedPortal).Seconds);
                                            }
                                            return;
                                        }

                                        // Make sure this method isn't called twice
                                        e.Player.CanUsePortal = false;

                                        e.Player.StandingInPortal = true;
                                        Portal portal = PortalHandler.GetInstance().GetPortal(e.Player);

                                        World world = WorldManager.FindWorldExact(portal.World);
                                        if (world == null)
                                        {
                                            return;
                                        }
                                        // Teleport player, portal protection
                                        switch (world.AccessSecurity.CheckDetailed(e.Player.Info))
                                        {
                                        case SecurityCheckResult.Allowed:
                                        case SecurityCheckResult.WhiteListed:
                                            if (world.IsFull)
                                            {
                                                e.Player.Message("Cannot join {0}&S: world is full.", world.ClassyName);
                                                return;
                                            }
                                            e.Player.StopSpectating();
                                            if (portal.World == e.Player.World.Name)
                                            {
                                                if (!portal.HasDesiredOutput)
                                                {
                                                    e.Player.TeleportTo(e.Player.World.Map.Spawn);
                                                }
                                                else
                                                {
                                                    e.Player.TeleportTo(new Position((short)portal.DesiredOutputX, (short)portal.DesiredOutputY, (short)portal.DesiredOutputZ, portal.DesiredOutputR, portal.DesiredOutputL));
                                                }
                                                e.Player.LastWarnedPortal = DateTime.UtcNow;
                                                e.Player.StandingInPortal = false;
                                                e.Player.CanUsePortal     = true;
                                                e.Player.LastUsedPortal   = DateTime.UtcNow;
                                            }
                                            else
                                            {
                                                if (!portal.HasDesiredOutput)
                                                {
                                                    e.Player.JoinWorld(WorldManager.FindWorldExact(portal.World), WorldChangeReason.Portal);
                                                }
                                                else
                                                {
                                                    e.Player.JoinWorld(WorldManager.FindWorldExact(portal.World), WorldChangeReason.Portal, new Position(( short )portal.DesiredOutputX, ( short )portal.DesiredOutputY, ( short )portal.DesiredOutputZ, portal.DesiredOutputR, portal.DesiredOutputL));
                                                }
                                            }
                                            e.Player.Message("You used portal: " + portal.Name);
                                            break;

                                        case SecurityCheckResult.BlackListed:
                                            e.Player.Message("Cannot join world {0}&S: you are blacklisted.",
                                                             world.ClassyName);
                                            break;

                                        case SecurityCheckResult.RankTooLow:
                                            e.Player.Message("Cannot join world {0}&S: must be {1}+",
                                                             world.ClassyName, world.AccessSecurity.MinRank.ClassyName);
                                            break;
                                        }
                                    }
                                    else
                                    {
                                        e.Player.StandingInPortal = false;
                                    }
                                }
                            }
                        }
                    }
                }
            } catch (Exception ex) {
                Logger.Log(LogType.Error, "PortalHandler.Player_Moved: " + ex);
            }
        }
Esempio n. 3
0
        static void Player_Moved(object sender, Events.PlayerMovedEventArgs e)
        {
            //abuse portal moved event and add in message blocks right here
            //Vector3I oldPos = e.OldPosition.ToBlockCoordsRaw(); //get positions as block coords
            //Vector3I newPos = e.NewPosition.ToBlockCoordsRaw();

            /*if (oldPos.X != newPos.X || oldPos.Y != newPos.Y || oldPos.Z != newPos.Z) //check if player has moved at least one block
             * {
             *  //loop through all message blocks and check if we triggered one
             *  foreach (var messageBlock in e.Player.World.MessageBlocks)
             *  {
             *      Tuple<Vector3I, string> tuple = messageBlock.Value;
             *
             *      //player is sitting on the message block, play the message
             *      if (e.Player.Position.ToBlockCoords() == tuple.Item1)
             *      {
             *          e.Player.Message("__" + messageBlock.Key + "__");
             *          e.Player.Message(messageBlock.Value.Item2);
             *          e.Player.Message(e.Player.Position.ToBlockCoords().ToString());
             *          e.Player.Message(tuple.Item1.ToString());
             *      }
             *  }
             * }*/

            if (!e.Player.PortalsEnabled)
            {
                return;
            }
            lock (e.Player.PortalLock) {
                if (!e.Player.CanUsePortal)
                {
                    return;
                }
                if (e.OldPosition.X == e.NewPosition.X && e.OldPosition.Y == e.NewPosition.Y && e.OldPosition.Z == e.NewPosition.Z)
                {
                    return;
                }
                if (!e.Player.Can(Permission.Chat))
                {
                    return;
                }

                try {
                    Portal portal = e.Player.World.Portals.Find(e.Player);
                    if (portal == null || e.Player.StandingInPortal)
                    {
                        e.Player.StandingInPortal = false;
                        return;
                    }

                    if ((DateTime.UtcNow - e.Player.LastUsedPortal).TotalSeconds < 5)
                    {
                        // To prevent portal loops
                        if ((DateTime.UtcNow - e.Player.LastWarnedPortal).TotalSeconds > 2)
                        {
                            e.Player.LastWarnedPortal = DateTime.UtcNow;
                            e.Player.Message("You can not use portals within 5 seconds of joining a world.");
                        }
                        return;
                    }

                    e.Player.StandingInPortal = true;
                    World world = WorldManager.FindWorldExact(portal.World);

                    if (world == e.Player.World)
                    {
                        e.Player.TeleportTo(portal.tpPosition());
                        e.Player.Message("You used portal: " + portal.Name);
                        return;
                    }

                    // Teleport player, portal protection
                    switch (world.AccessSecurity.CheckDetailed(e.Player.Info))
                    {
                    case SecurityCheckResult.Allowed:
                    case SecurityCheckResult.WhiteListed:
                        if (world.IsFull)
                        {
                            e.Player.Message("Cannot join {0}&S: world is full.", world.ClassyName);
                            return;
                        }
                        e.Player.StopSpectating();

                        if (portal.TeleportPosX != 0 && portal.TeleportPosY != 0 && portal.TeleportPosZ != 0)
                        {
                            e.Player.JoinWorld(world, WorldChangeReason.Portal, portal.tpPosition());
                        }
                        else
                        {
                            e.Player.JoinWorld(world, WorldChangeReason.Portal);
                        }

                        e.Player.Message("You used portal: " + portal.Name);
                        if (e.Player.WorldMap.Spawn == Position.RandomSpawn)
                        {
                            e.Player.Message("Randomized Spawn!");
                        }

                        // Make sure this method isn't called twice
                        e.Player.CanUsePortal = false;
                        break;

                    case SecurityCheckResult.BlackListed:
                        if ((DateTime.UtcNow - e.Player.LastWarnedPortal).TotalSeconds < 2)
                        {
                            e.Player.LastWarnedPortal = DateTime.UtcNow;
                            e.Player.Message("Cannot join world {0}&S: you are blacklisted.",
                                             world.ClassyName);
                        }
                        break;

                    case SecurityCheckResult.RankTooLow:
                        if ((DateTime.UtcNow - e.Player.LastWarnedPortal).TotalSeconds > 2)
                        {
                            e.Player.LastWarnedPortal = DateTime.UtcNow;
                            e.Player.Message("Cannot join world {0}&S: must be {1}+",
                                             world.ClassyName, world.AccessSecurity.MinRank.ClassyName);
                        }
                        break;
                    }
                } catch (Exception ex) {
                    Logger.Log(LogType.Error, "PortalHandler.Player_Moved: " + ex);
                }
            }
        }