我正在尝试创建一个C ++程序,它将解析.obj文件并在OpenGL中呈现.obj文件中定义的模型。到目前为止,所有这些代码应该打开一个.obj文件,并将每个顶点放入一个向量中(.obj文件中的顶点定义在以&#34开头的行中; v")。
我的完整代码是:
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
using namespace std;
struct vec3{
float x;
float y;
float z;
};
void loadOBJ(const char * Path){
vector<vec3> Vertices;
FILE * OBJFile;
vec3 temp = vec3();
fopen_s(&OBJFile, Path, "r");
char lineHeader[128];
//set to true when there are no more lines in the OBJ file
bool ended = false;
while(!ended){
fscanf_s(OBJFile, "%s", lineHeader);
if(strcmp(lineHeader,"v") == 0){
fscanf_s(OBJFile, "%f %f %f\n", &temp.x, &temp.y, &temp.z);
printf("Point: %f %f %f\n", temp.x, temp.y, temp.z);
Vertices.push_back(temp);
}else if(lineHeader != NULL){
fscanf_s(OBJFile, "\n");
}
else{
ended = true;
}
}
}
int main(){
loadOBJ("example.obj");
cin.get();
return 0;
}
行
出现问题 fscanf_s(OBJFile, "%s", lineHeader);
如果我评论这一行,我将不会得到第一次机会异常。如果我使用char而不是字符串,我也没有得到第一次机会异常。
答案 0 :(得分:-1)
我强烈建议使用freed并且永远不要使用fsanf及其变体。