0

我想通过 Perlin 噪声生成地形并将其存储到 .raw 文件中。

Nehe 的 HeightMap 教程中,我知道 .raw 文件的读取方式如下:

#define MAP_SIZE        1024    

void LoadRawFile(LPSTR strName, int nSize, BYTE *pHeightMap)
{
    FILE *pFile = NULL;

    // Let's open the file in Read/Binary mode.
    pFile = fopen( strName, "rb" );

    // Check to see if we found the file and could open it
    if ( pFile == NULL )    
    {
        // Display our error message and stop the function
        MessageBox(NULL, "Can't find the height map!", "Error", MB_OK);
        return;
    }

    // Here we load the .raw file into our pHeightMap data array.
    // We are only reading in '1', and the size is the (width * height)
    fread( pHeightMap, 1, nSize, pFile );

    // After we read the data, it's a good idea to check if everything read fine.
    int result = ferror( pFile );

    // Check if we received an error.
    if (result)
    {
        MessageBox(NULL, "Can't get data!", "Error", MB_OK);
    }

    // Close the file.
    fclose(pFile);

}

pHeightMap是一维的,所以我不明白如何将 x,y 对应于高度值。我打算在 Ken Perlin 的页面上使用libnoise或noise2 函数,使 1024x1024矩阵中的每个值对应于点的高度,但是 .raw 文件存储在一个维度中,我该如何制作 x,你的通信工作在那里?

4

1 回答 1

1

设 A 为等维二维数组:

A[3][3] = {
            {'a', 'b', 'c'},
            {'d', 'e', 'f'},
            {'g', 'h', 'i'}
          }

您还可以将此矩阵设计为一维数组:

A[9] = {
         'a', 'b', 'c',
         'd', 'e', 'f',
         'g', 'h', 'i'
       }

在第一种情况(二维)中,您使用类似于 的符号访问第二个数组中的第一个元素A[1][0]。但是,在第二种情况(一维)中,您将使用类似于 的表示法访问相同的元素A[1 * n + 0],其中n是每个逻辑包含的数组的长度,在这种情况下为 3。请注意,您仍然使用相同的索引值(1 和 0),但对于单维情况,您必须包含该乘数n作为偏移量。

于 2012-02-08T20:20:37.833 回答