我正在尝试编写一个非常简单的 obj 文件阅读器,它将 obj 文件中的所有顶点值按顺序写入一个向量(已经这样做了),并将 obj 文件中的面值引用的顶点值写入另一个向量,例如例子:
v1 = 0.0 0.0 0.0
v2 = 1.0 0.0 0.0
v3 = 1.0 1.0 0.0
f1 = 3 2 1
我的程序将在第一个向量中按顺序写入所有顶点值,然后在第二个向量中写入构成面的顶点值,如下所示:1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
一切正常,直到我尝试从第一个向量(verticesCoordsXYZ)中获取值并将它们推回第二个向量(faceCoords)。我注释掉的代码破坏了程序,似乎我在第一个向量中搜索的位置大于向量大小(当程序中断时,我在内存位置错误时得到 out_of_range,它说 verticesCoordsXYZ 的大小是0),即使我用所有顶点值填充了向量。
我究竟做错了什么?我不了解向量是如何工作的,我是否超出了向量范围?我该如何解决这个问题?
string line;
while (getline(modelfile, line))
{
string s;
istringstream iss(line);
iss >> s;
vector <float> verticesCoordsXYZ;
vector <float> faceCoords;
if (s == "v")
{
float x, y ,z;
iss >> x >> y >> z;
verticesCoordsXYZ.push_back(x);
verticesCoordsXYZ.push_back(y);
verticesCoordsXYZ.push_back(z);
for (int i = 0; i < (int)verticesCoordsXYZ.size(); i++)
{
cout << verticesCoordsXYZ.at(i);
}
cout << endl;
}
if (s == "f")
{
int a, b, c;
iss >> a >> b >> c;
int aLocation = a * 3 - 3; //vertice locations in verticeCoordsXYZ that would make up faces
int bLocation = b * 3 - 3;
int cLocation = c * 3 - 3;
for (int i = 0; i < 2; i++)
{
//faceCoords.push_back(verticesCoordsXYZ.at(aLocation+i));
}
for (int i = 0; i < 2; i++)
{
//faceCoords.push_back(verticesCoordsXYZ.at(bLocation+i));
}
for (int i = 0; i < 2; i++)
{
//faceCoords.push_back(verticesCoordsXYZ.at(cLocation+i));
}
for (int i = 0; i < (int)faceCoords.size(); i++)
{
cout << faceCoords.at(i) << "f";
}
cout << endl << a << b << c;
}
}
modelfile.close();