我正在为工作编写一个Wavefront对象加载器,因为我觉得使用我在专业项目中不理解的代码感觉不舒服。在明显的第一步之后,整理出哪些部分,我正在尝试加载和记录顶点。首先,我写了一个C结构来保存值。
struct Vertice {
float x;
float y;
float z;
};
接下来,我需要一种方法来有效地记录这个,所以我写了一个预处理器函数,灵感来自本网站上的一个。 Jeeze,你们拥有一切。
#define LogVertice(VERTICE) NSLog(@"Vertice - X: %0.00000f, Y: %0.00000f, Z: %0.00000f", VERTICE.x, VERTICE.y, VERTICE.z);
接下来,我实际加载尝试解析顶点。
NSArray *verticeLineParts = [currentLine componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
struct Vertice v;
v.x = [[verticeLineParts objectAtIndex:1] floatValue];
v.y = [[verticeLineParts objectAtIndex:2] floatValue];
v.z = [[verticeLineParts objectAtIndex:3] floatValue];
NSLog(@"%@", currentLine);
LogVertice(v);
我不确定描述输出的最佳方式,而不是说它是错误的,所以我会告诉你。前五行输出:
2010-10-14 13:46:03.587 ObjLoader[1353:207] v -0.035910 1.710543 -0.048286
2010-10-14 13:46:03.594 ObjLoader[1353:207] Vertice - X: -0, Y: 2, Z: -0
2010-10-14 13:46:03.595 ObjLoader[1353:207] v -0.041089 1.710543 -0.048951
2010-10-14 13:46:03.596 ObjLoader[1353:207] Vertice - X: -0, Y: 2, Z: -0
2010-10-14 13:46:03.596 ObjLoader[1353:207] v -0.040913 1.711848 -0.048951
2010-10-14 13:46:03.597 ObjLoader[1353:207] Vertice - X: -0, Y: 2, Z: -0
2010-10-14 13:46:03.598 ObjLoader[1353:207] v -0.040396 1.713069 -0.048951
2010-10-14 13:46:03.599 ObjLoader[1353:207] Vertice - X: -0, Y: 2, Z: -0
2010-10-14 13:46:03.600 ObjLoader[1353:207] v -0.039573 1.714114 -0.048951
2010-10-14 13:46:03.600 ObjLoader[1353:207] Vertice - X: -0, Y: 2, Z: -0
来自文件的前五个顶点。
v -0.035910 1.710543 -0.048286
v -0.041089 1.710543 -0.048951
v -0.040913 1.711848 -0.048951
v -0.040396 1.713069 -0.048951
v -0.039573 1.714114 -0.048951
我会说我是一个不错的Objective-C程序员,但显然我甚至无法让我的花车正确。有人能看到我明显的错误吗?
答案 0 :(得分:1)
更改我的日志功能会修复它。
#define LogVertice(VERTICE) NSLog(@"Vertice - X: %f, Y: %f, Z: %f", VERTICE.x, VERTICE.y, VERTICE.z);