如何检查数组中的每个元素?

How to check each element in array?

我正在尝试从迷宫游戏的 txt 字符文件分析已放入我的数组中的每个元素。必须检查数组,这样我们才能确定迷宫中墙壁的位置、玩家、幽灵、钥匙和梯子、入口等。所以我需要检查某些字符(例如#、P、K、D、G , E).我不确定如何设置它?

以下是获取地板文件并将每个角色放置在名为 tiles 的数组中的函数。

const int ROWS = 20;

void Floor::Read (const char * filename)
{
size_t row = 0;
ifstream input(filename);

while (row < ROWS && input >> tiles[row++]);

}
void Game::readFloors()
{
m_floor[0].Read("FloorA.txt");
m_floor[1].Read("FloorB.txt");
m_floor[2].Read("FloorC.txt");

}

然后这是其中一个楼层的每个字符的样子:

##############################
#      K                     #
#  ############## ### ###  # #
#      K    #   # #C# #K#  # #
# ######### # A # # # # #  # #
#      K    #   #          # #
# ############D#####D####### #
#                            #
#   C         G        C     #
#                            #
# ######D##############D#### #
#      #  C         #K#    # #
# #### ######## #   # #      #
# #K   #      # ### # # #### #
# # ## # #### #   # # #    # #
E # ## # #    ### # # #### # #
# #    # #K           D    # #
# #D#### ################### #
#                    K       #
##############################

带有两个类的头文件与上面的函数一起使用:

class Floor {
char tiles[20][30]; 
void printToScreen();
public:
Floor();
void Read (const char * filename);
};

class Game {
private:
Floor m_floor [3];
vector<Character> characters; 
public:
void readFloors();
};

寻找过类似的问题,但大多数都没有分析许多不同的选项。感谢您的帮助!

您可以在 for 循环中使用 for 循环,一个检查数组中的列,另一个检查行。如果它们等于 k、c、g 等,您只需检查每个元素。

我整理了一个简单的 reader 将地图(根据您的示例)放入您可以处理的矩阵中。

#include <iostream>
#include <fstream>
#include <string>

std::ifstream f("/path/../txt.txt");
std::string str;

int cols = 0;
int rows = 0;

char mat[100][100];

int main(){
    int line = 0;
    while(std::getline(f, str)){
        const char * chars = str.c_str();
        for(int i=0; i<str.length(); i++){
            mat[line][i] = chars[i];
        }

        cols = str.length();
        line++;
        rows++;
    }

    for(int i=0; i<line; i++){
        for(int j=0; j<rows; j++){
            std::cout<<mat[i][j]<<" ";
        }
        std::cout<<std::endl;
    }
    std::cout<<"Cols: "<<cols<<" Rows: "<<rows;
    return 0;
}

这样,通过简单的字符比较,就可以通过两点坐标得到每个玩家、墙块等的位置。