4

我游戏中的城市是随机生成的,但它是只能形成矩形的道路和十字路口的图形:

在此处输入图像描述

可以看出,我的地形非常空旷。我想要做的是找到每个空矩形并存储在矩形列表中,形成很多。

在此处输入图像描述

正如您在此插图中看到的那样,我填写了 3 个“地块”,并在 1 个中显示了由它构成的 3 个矩形。

我的数据结构是:

package com.jkgames.gta;

import android.graphics.Bitmap;
import android.graphics.RectF;

public class Intersection extends Entity
{
    Road topRoad;
    Road leftRoad;
    Road bottomRoad;
    Road rightRoad;
    Bitmap image;

    public Bitmap getImage() 
    {
        return image;
    }

    public void setImage(Bitmap image)
    {
        this.image = image;
    }

    public Intersection(RectF rect, Bitmap image)
    {
        setRect(rect);
        setImage(image);
    }

    public Road getTopRoad() 
    {
        return topRoad;
    }

    public void setTopRoad(Road topRoad)
    {
        this.topRoad = topRoad;
    }

    public Road getLeftRoad()
    {
        return leftRoad;
    }

    public void setLeftRoad(Road leftRoad)
    {
        this.leftRoad = leftRoad;
    }

    public Road getBottomRoad() 
    {
        return bottomRoad;
    }

    public void setBottomRoad(Road bottomRoad)
    {
        this.bottomRoad = bottomRoad;
    }

    public Road getRightRoad()
    {
        return rightRoad;
    }

    public void setRightRoad(Road rightRoad) 
    {
        this.rightRoad = rightRoad;
    }

    @Override
    public void draw(GraphicsContext c)
    {
        c.drawRotatedScaledBitmap(image, getCenterX(), getCenterY(),
                    getWidth(), getHeight(), getAngle());
    }

}

public class Road extends Entity
{
    private Bitmap image = null;
    private Intersection startIntersection;
    private Intersection endIntersection;
    private boolean topBottom;

    public Road(RectF rect, Intersection start, Intersection end,
            Bitmap image, boolean topBottom)
    {
        setRect(rect);
        setStartIntersection(start);
        setEndIntersection(end);
        setImage(image);
        setTopBottom(topBottom);
    }

    @Override
    public void draw(GraphicsContext c)
    {
        //Rect clipRect = c.getCanvas().getClipBounds();
        //c.getCanvas().clipRect(getRect());
        float sizeW;
        float sizeH;
        if(isTopBottom())
        {
            sizeW = getWidth();
            sizeH = (sizeW / image.getWidth()) * image.getHeight();
        }
        else
        {
            sizeW = getHeight();
            sizeH = (sizeW / image.getWidth()) * image.getHeight();

        }

        int numTiles = isTopBottom() ? (int)Math.ceil(getHeight() / sizeH) :
            (int)Math.ceil(getWidth() / sizeW);

        for(int i = 0; i < numTiles; ++i)
        {
            if(isTopBottom())
            {
                c.drawRotatedScaledBitmap(
                        image,
                        getRect().left + (sizeW / 2.0f),
                        (getRect().top + (sizeH / 2.0f)) + (sizeH * i), 
                        sizeW, sizeH, 0.0f);
            }
            else
            {
                c.drawRotatedScaledBitmap(
                        image,
                        getRect().left + (sizeH / 2.0f) + (sizeH * i),
                        getRect().top + (sizeH / 2.0f), 
                        sizeW, sizeH, (float)Math.PI / 2.0f);
            }

        }

    //  c.getCanvas().clipRect(clipRect);
    }

    public Bitmap getImage() 
    {
        return image;
    }

    public void setImage(Bitmap image) 
    {
        this.image = image;
    }

    public Intersection getStartIntersection()
    {
        return startIntersection;
    }

    public void setStartIntersection(Intersection startIntersection) 
    {
        this.startIntersection = startIntersection;
    }

    public Intersection getEndIntersection()
    {
        return endIntersection;
    }

    public void setEndIntersection(Intersection endIntersection) 
    {
        this.endIntersection = endIntersection;
    }

    public boolean isTopBottom()
    {
        return topBottom;
    }

    public void setTopBottom(boolean topBottom) 
    {
        this.topBottom = topBottom;
    }
}

城市是道路和十字路口的列表。

是否有某种算法可以生成这些地块及其矩形?

谢谢

4

2 回答 2

2

我想到的最简单的方法是使用洪水填充算法来建立您的区域列表。所以基本上

foreach square:
    if the square isn't part of a region:
        create a new empty region list
        add the square to it
        recursivly add all neighboring squares to the region

最终结果将是您将拥有一个区域列表,然后您可以对这些区域进行任何操作(查看包含的任何方块是否有建筑物,为用户着色等)。

注意:要确定一个正方形是否是一个区域的一部分,我会在正方形数据结构中添加一个标记的标志或其他东西,这样当你开始时,你会检查并清除所有这些标志,然后当你添加一个正方形到您设置该标志的区域,当您想要检查一个正方形是否在一个区域中时,您需要做的就是检查是否设置了该标志。这样,您最终会使用线性时间算法来构建您的区域列表。

正如 Markus 在这里的评论中指出的那样,这个“标志”实际上可能是一个指向 Lot 对象的指针/引用,该对象包含你的方格列表,无论如何,这可能很方便。

于 2012-10-16T21:00:03.003 回答
0
for (int y = 0; y < height; y++)
for (int x = 0; x < width; x++) {
    if (x > 0 && squares[y][x].isConnectedTo(squares[y][x-1]) {
        // Connected from the left
        squares[y][x-1].getLot().addSquare(squares[y][x]);

        if (y > 0 && squares[y][x].isConnectedTo(squares[y-1][x]) {
            // Connected from both the left and above
            squares[y-1][x].getLot().mergeWith(squares[y][x].getLot());
        }
    }
    else if (y > 0 && squares[y][x].isConnectedTo(squares[y-1][x]) {
        // Connected from above
        squares[y-1][x].getLot().addSquare(squares[y][x]);
    }
    else {
        // Not connected from either
        createNewLot().addSquare(squares[y][x]);
    }
}
  • Lot.addSquare(…)为地段添加一个正方形,并调用setLot(…)该正方形。
  • Lot.mergeWith(…)合并两个批次,如果它们不是同一批次,则重新分配分配给它们的方格。
  • Square.isConnectedTo(…)检查他们是否是邻居,并且两者之间没有道路。

您可以通过使用不相交集数据结构来优化它

于 2012-10-17T00:53:08.883 回答