3

我无法弄清楚数学。我有一个交错的二维等距网格,将网格单元转换为世界坐标没有问题,但现在我不知道如何扭转这个过程。

这是 CellToCoord 方法:

public static Vector2 CellToCoord(int x, int y) {
    return new Vector2() {
        x = x + ((y % 2) * 0.5f),
        y = y * -0.25f
    };
}

非常简单并完全按照我想要的方式显示网格,我现在想从世界坐标中获取图块。

编辑:
Image,我从 CellToCoord() 方法获得的世界坐标给了我一个代表单元中心的世界位置。

4

1 回答 1

0
public static Point CoordToCell(Vector2 coord) {
    // Divide the cell coordinate the value again (or multiply by -4)
    // Then Math.Round() to eliminate any floating point inaccuracies
    var cellY = (int)Math.Round(coord.y / -0.25f);

    // Armed with the original Integer Y, we can undo the mutation of X (again, accounting for floating point inaccuracies)
    var cellX = (int)Math.Round(coord.x - ((cellY % 2) * 0.5f));

    return new Point() {
        x = cellX,
        y = cellY
    };
}

这应该扭转这个过程。我使用 Point 作为整数 X 和 Y 坐标的通用容器,您可以酌情替换它。

我认为最大的问题是 X 突变最初是基于 Y 的整数值,然后您从中存储了一个浮点值。如果没有 Math.Round()s 将浮点结果可靠地强制转换回整数值,我无法找到一种方法来扭转这种情况。

更新计算包含给定世界坐标的单元坐标:

看看你的世界坐标是如何排列的,我们可以看到每个单元格的中心都在对角线上:

  • y = ( x - i ) / 2 ... 或 ... x - 2y = i
  • y = ( j - x ) / 2 ... 或 ... x + 2y = j

其中 i 和 j 是整数。该图显示了 x - 2y = i 对角线的情况。

显示对角坐标的图表

使用这些,我们可以获取给定点的世界坐标,计算出 i 和 j,然后将它们四舍五入到最接近的整数,得到单元格的中心,即 i 和 j。

然后我们可以使用 i 和 j 来计算单元格中心的 x 和 y,并使用我之前发布的函数将它们转换回单元格坐标。

public static Point CoordToCell(Vector2 coord)
{
    // Work out the diagonal i and j coordinates of the point.
    // i and j are in a diagonal coordinate system that allows us
    // to round them to get the centre of the cell.
    var i = Math.Round( coord.x - coord.y * 2 );
    var j = Math.Round( coord.x + coord.y * 2 );

    // With the i and j coordinates of the centre of the cell,
    // convert these back into the world coordinates of the centre
    var centreX = ( i + j ) / 2;
    var centreY = ( j - i ) / 4;

    // Now convert these centre world coordinates back into the
    // cell coordinates
    int cellY = (int)Math.Round(centreY * -4f);
    int cellX = (int)Math.Round(centreX - ((cellY % 2) * 0.5f));

    return new Point() {
        x = cellX,
        y = cellY
    };
}

我使用以下坐标点作为测试用例

{ x = 1.5f, y = -0.25f } => ( 1, 1 )        // Centre of 1, 1
{ x = 1.9f, y = -0.25f } => ( 1, 1 )        // Near the right of 1, 1
{ x = 1.5f, y = -0.374f } => ( 1, 1 )       // Near the bottom of 1, 1
{ x = 1.1f, y = -0.25f } => ( 1, 1 )        // Near the left of 1, 1
{ x = 1.5f, y = -0.126f } => ( 1, 1 )       // Near the top of 1, 1
{ x = 2.5f, y = -0.25f } => ( 2, 1 )        // Centre of 2, 1
{ x = 2f, y = -0.5f } => ( 2, 2 )           // Centre of 2, 2

希望这可以帮助

于 2018-01-29T18:36:10.883 回答