Подергивание столкновения, когда игрок находится на более чем 1 блоке - PullRequest
0 голосов
/ 12 сентября 2018

Я кодирую коллизию в моей 2D-игре на основе тайлов, написанной на Monogame. Я столкнулся с проблемой, когда мой игрок стоит на 2 плитах одновременно, он начинает дергаться, потому что разрешение коллизий выполняется 2 раза, я хочу, чтобы он запускался только один раз. Как бы я это сделал? Вот мой код:

    public void HandleCollisions()
    {
        Rectangle plyRect = ply.GetBounds(); //get player rectangle
        Vector2 currentPos = new Vector2(plyRect.X, plyRect.Y); //get player current position
        Vector2 xy = new Vector2(   (float)Math.Floor((ply.pos.X + ply.tex.Width) / world.tileSize), 
                                    (float)Math.Floor((ply.pos.Y + ply.tex.Height) / world.tileSize)); //get tiles position based on player position
        for (int x = (int)xy.X - 4; x <= (int)xy.X + 4; x++) //run through tiles near the player
        {
            for (int y = (int)xy.Y - 4; y <= (int)xy.Y + 4; y++)
            {
                if (x >= 0 && y >= 0 && x < world.GetWorldSize().X && y < world.GetWorldSize().Y) //check if tiles are within map
                {
                    if (world.tiles[x, y] != null) 
                    {
                        if (world.tiles[x, y].collision == Tile.Collision.SOLID) //check if tile is solid
                        {
                            Rectangle tileRect = world.tiles[x, y].GetRect(); //get the tiles rectangle

                            if (plyRect.Intersects(tileRect)) //check if intersecting
                            {
                                Vector2 depth = RectangleExtension.GetIntersectionDepth(plyRect, tileRect); //get intersecting depth

                                if (depth != Vector2.Zero)
                                {
                                    float absDepthX = Math.Abs(depth.X);
                                    float absDepthY = Math.Abs(depth.Y);

                                    if (absDepthY < absDepthX)
                                    {
                                        currentPos = new Vector2(currentPos.X, currentPos.Y + depth.Y); //resolve Y collision first
                                    }
                                    else
                                    {
                                        currentPos = new Vector2(currentPos.X + depth.X, currentPos.Y); //then resolve X collision
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        ply.pos = currentPos; //set player position after the checking is done
    }

1 Ответ

0 голосов
/ 12 сентября 2018

После обнаружения одного столкновения вырвитесь из цикла for, используя разрыв; Заявление

...