0

我正在尝试读取一个包含 12x12 ASCII 迷宫的文本文件。然而,我在屏幕上看到的只是一个 12x12 的星号网格。

我在上学期编写的 CLI 扫雷游戏中使用了类似的代码,它运行良好。我不确定我做了什么导致它不起作用......

代码:

bool loadBoard(Tile board [][gridSize], string filename) {
    ifstream hndl;
    char isWall;
    hndl.open(filename);

    // Check that the file is opened
    if (hndl.is_open()) {
        for (int row = 0; row < gridSize; row++) {
            for (int col = 0; col < gridSize; col++) {
                hndl >> isWall;

                if (isWall == '*')
                    board[row][col].wall = true;

                cout << row << col << isWall << " ";
            }
            cout << endl;
        }
    }

    return EXIT_SUCCESS;
}

文件迷宫.txt:

************
*   *      *
  * * **** *
 ** *    * *
     *** *  
 * * * * * *
   * * * * *
 * * * * * *
         * *
 ***** *** *
*      *   *
 ***********

输出:

00* 01* 02* 03* 04* 05* 06* 07* 08* 09* 010* 011*
10* 11* 12* 13* 14* 15* 16* 17* 18* 19* 110* 111*
20* 21* 22* 23* 24* 25* 26* 27* 28* 29* 210* 211*
30* 31* 32* 33* 34* 35* 36* 37* 38* 39* 310* 311*
40* 41* 42* 43* 44* 45* 46* 47* 48* 49* 410* 411*
50* 51* 52* 53* 54* 55* 56* 57* 58* 59* 510* 511*
60* 61* 62* 63* 64* 65* 66* 67* 68* 69* 610* 611*
70* 71* 72* 73* 74* 75* 76* 77* 78* 79* 710* 711*
80* 81* 82* 83* 84* 85* 86* 87* 88* 89* 810* 811*
90* 91* 92* 93* 94* 95* 96* 97* 98* 99* 910* 911*
100* 101* 102* 103* 104* 105* 106* 107* 108* 109* 1010* 1011*
110* 111* 112* 113* 114* 115* 116* 117* 118* 119* 1110* 1111*
4

2 回答 2

6

您的代码“跳过”任何空格。您可以这样做cin >> noskipws >> isWall;- 或者您可以使用不同的字符来显示“不是墙”,例如'.'or '-'

于 2013-09-05T14:55:15.793 回答
2

>>运算符忽略空白字符,这就是为什么它会跳过空白并始终使用星号。改为使用std::istream.get()

于 2013-09-05T14:47:15.040 回答