我编写了一个类,目前允许通过数组和变量加载3D模型(指定数组中的变量数量)。代码对我来说似乎不错,但屏幕上没有任何东西。
这是顶点结构。
typedef struct
{
float pos[3];
float texCoord[2];
float colour[4];
} Vertex;
这是模型初始化的方式。
- (id)VModelWithArray:(Vertex[])Vertices count:(unsigned short)count
{
self.Vertices = Vertices;
self.count = count;
return self;
}
这两个类变量在标题中声明如此。
@property (nonatomic, assign) Vertex *Vertices;
@property (nonatomic, assign) unsigned short count;
在我的视图控制器中调用它就像这样。
Vertex array[] = {
{{1, -1, 0}, {1, 0}, {1, 0, 0, 1}},
{{1, 1, 0}, {1, 1}, {0, 1, 0, 1}},
{{-1, 1, 0}, {0, 1}, {1, 1, 1, 1}}
};
unsigned short elements = sizeof(array)/sizeof(Vertex);
self.model = [[VModel alloc] VModelWithArray:array count:elements];
Model类在标题中声明如此。
@property (strong, nonatomic) VModel *model;
VBO是通过这种方法创建的。
- (void)CreateVBO
{
glGenBuffers(1, &VBO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(Vertex)*self.count, self.Vertices, GL_STATIC_DRAW);
}
在视图控制器中初始化Model之后调用它。
[self.model CreateVBO];
模型由此方法呈现。
- (void)Render
{
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glEnableVertexAttribArray(GLKVertexAttribPosition);
glVertexAttribPointer(GLKVertexAttribPosition, 3, GL_FLOAT, GL_FALSE, sizeof(Vertex), (const GLvoid *) offsetof(Vertex, pos));
glEnableVertexAttribArray(GLKVertexAttribTexCoord0);
glVertexAttribPointer(GLKVertexAttribTexCoord0, 2, GL_FLOAT, GL_FALSE, sizeof(Vertex), (const GLvoid *) offsetof(Vertex, texCoord));
glEnableVertexAttribArray(GLKVertexAttribColor);
glVertexAttribPointer(GLKVertexAttribColor, 4, GL_FLOAT, GL_FALSE, sizeof(Vertex), (const GLvoid *) offsetof(Vertex, colour));
glDrawArrays(GL_TRIANGLES, 0, self.count);
glDisableVertexAttribArray(GLKVertexAttribPosition);
glDisableVertexAttribArray(GLKVertexAttribTexCoord0);
glDisableVertexAttribArray(GLKVertexAttribColor);
}
在这种方法中调用。
- (void)glkView:(GLKView *)view drawInRect:(CGRect)rect
{
glClearColor(0.5, 0.5, 0.5, 1.0);
glClear(GL_COLOR_BUFFER_BIT);
[self.effect prepareToDraw];
[self.model Render];
}
非常感谢任何帮助。
答案 0 :(得分:1)
我弄清楚了,在合并上一个项目的代码时,我不小心遗漏了这些行。
[EAGLContext setCurrentContext:self.context];
self.effect = [[GLKBaseEffect alloc] init];