8

Box2D (すべてのオブジェクトの X 座標が 0 < X < 1000 (たとえば)) を使用して無限のラッピング ワールドを作成する必要があります。オブジェクトを前後にテレポートするゲームをいくつかプレイしましたが、もっと良い方法があるように感じます-何かアイデアはありますか? X スパンが約 50 を超えるオブジェクト (またはリンクされたオブジェクトのチェーン) はありません。たとえば、画面の幅よりも小さくなります。

カメラは一度に世界のごく一部しか見ることができません (幅約 5%、高さ 100% - 世界は高さ約 30、幅 1000)。

乾杯。

4

1 に答える 1

0

以下を実装しました。これは決して理想的ではありませんが、私の目的には適しています。関連する多くの制限があり、それは真のラッピングの世界ではありませんが、それで十分です.

    public void Wrap()
    {
        float tp = 0;

        float sx = ship.GetPosition().X;            // the player controls this ship object with the joypad

        if (sx >= Landscape.LandscapeWidth())       // Landscape has overhang so camera can go beyond the end of the world a bit
        {
            tp = -Landscape.LandscapeWidth();
        }
        else if (sx < 0)
        {
            tp = Landscape.LandscapeWidth();
        }

        if (tp != 0)
        {
            ship.Teleport(tp, 0);                   // telport the ship

            foreach (Enemy e in enemies)            // Teleport everything else which is onscreen
            {
                if (!IsOffScreen(e.bodyAABB))       // using old AABB
                {
                    e.Teleport(tp, 0);
                }
            }
        }

        foreach(Enemy e in enemies)
        {
            e.UpdateAABB();                         // calc new AABB for this body

            if (IsOffScreen(g.bodyAABB))            // camera has not been teleported yet, it's still looking at where the ship was
            {
                float x = e.GetPosition().X;

                // everything which will come onto the screen next frame gets teleported closer to where the camera will be when it catches up with the ship

                if (e.bodyAABB.UpperBound.X < 0 || e.bodyAABB.LowerBound.X + Landscape.LandscapeWidth() <= cameraPos.X + screenWidth)
                {
                    e.Teleport(Landscape.LandscapeWidth(), 0);
                }
                else if (e.bodyAABB.LowerBound.X > Landscape.LandscapeWidth() || e.bodyAABB.UpperBound.X - Landscape.LandscapeWidth() >= cameraPos.X - screenWidth)
                {
                    e.Teleport(-Landscape.LandscapeWidth(), 0);
                }
            }
        }
    }
于 2009-05-27T08:27:37.390 に答える