我遇到了Texture2D的问题,我想了解如何更好地使用它。
我从here获取了Crashlander Texture2D类,并在XCode 4中使用了默认的OpenGL项目,迫使它加载OpenGL ES1.1
首先,一个概念性问题。 Texture2D init方法的大小显然是OpenGL大小,但是fontSize参数与OpenGL世界有什么关系呢?
二,调试。我从下面的代码得到的结果是一个黑色(或我在glColor中设置的任何颜色)正方形文本应该是。
以下是我在代码中所做的更改:
- (void)awakeFromNib
{
EAGLContext *aContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES1];
if (!aContext) {
aContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES1];
}
self.labelAtTheTop = [[[Texture2D alloc] initWithString:@"Some Text" dimensions:CGSizeMake(1, 1) alignment:UITextAlignmentLeft fontName:@"Helvetica" fontSize:14.0f] autorelease];
if (!aContext)
NSLog(@"Failed to create ES context");
else if (![EAGLContext setCurrentContext:aContext])
NSLog(@"Failed to set ES context current");
self.context = aContext;
[aContext release];
[(EAGLView *)self.view setContext:context];
[(EAGLView *)self.view setFramebuffer];
animating = FALSE;
animationFrameInterval = 1;
self.displayLink = nil;
}
- (void)drawFrame
{
[(EAGLView *)self.view setFramebuffer];
// Replace the implementation of this method to do your own custom drawing.
glClearColor(0.5f, 0.5f, 0.5f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
glEnableClientState(GL_VERTEX_ARRAY);
glEnable(GL_TEXTURE_2D);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glColor4f(0.0f, 0.0f, 0.0f, 1.0f);
glPushMatrix();
glLoadIdentity();
[self.labelAtTheTop drawAtPoint:CGPointMake(0, 0)];
glPopMatrix();
glDisable(GL_COLOR_MATERIAL);
// Disable modes so they don't interfere with other parts of the program
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
glDisableClientState(GL_VERTEX_ARRAY);
glDisable(GL_TEXTURE_2D);
glDisable(GL_BLEND);
[(EAGLView *)self.view presentFramebuffer];
}
答案 0 :(得分:1)
Crashlander确实是一个古老的代码库,所以我建议避开它。有一个非常好的iPhone引擎叫做Cocos2D http://www.cocos2d-iphone.org/。关于代码,尝试发表评论glDisable(GL_COLOR_MATERIAL);
加glColor4f(0,0,0,1);
实际上代表黑色,尝试对此进行评论。我认为fontSize是屏幕点中字体的大小。
[编辑]
如果你想了解一些关于OpenGLES的内容,这里有一个很好的介绍教程 http://iphonedevelopment.blogspot.com/2009/05/opengl-es-from-ground-up-table-of.html