0

好吧,我在这里碰壁了。

我不知道为什么我的 Xcode 4.5.2 说我在崩溃前使用了 4.16 GB 内存:

ExampleEngine(11672,0xac70f2c0) malloc: *** mmap(size=4160753664) failed (error code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug

我使用 Instruments - Leaks & Allocations 运行了我的 OpenGL ES 应用程序。它显示我使用的分配内存总量为 1.46 MB Live Bytes。

我正在尝试遵循 Ian Terrel 的 OpenGL ES 教程:

http://games.ianterrell.com/how-to-draw-2d-shapes-with-glkit-part-2/

我被EERegularPolygon课程的最后一部分困住了(所有以前的形状,如三角形、矩形、椭圆都工作得很好)。我的代码是这样的(与他的略有不同,因为我使用的是 Xcode 4.5.2 的 auto @synthesize):

// EERegularPolygon.h file
#import "EEShape.h"

@interface EERegularPolygon : EEShape

@property (readonly) int numSides;
@property (nonatomic) float radius;

-(id)initWithNumSides:(int)numSides;

@end


// EERegularPolygon.m file
#import "EERegularPolygon.h"

#define M_TAU (2 * M_PI)

@implementation EERegularPolygon

-(id)initWithNumSides:(int)numSides
{
    self = [super init];

    if(self)
    {
        _numSides = numSides;
    }

    return self;
}

-(void)updateVertices
{    
    for(int i = 0; i < self.numSides; i++)
    {
        float theta = ((float) i) / self.numSides * M_TAU;
        self.vertices[i] = GLKVector2Make(cos(theta) * self.radius, sin(theta) * self.radius);
    }
}

-(void)setRadius:(float)radius
{
    _radius = radius;

    [self updateVertices];
}

@end


// HexagonScene.h file
#import "EEScene.h"
#import "EERegularPolygon.h"

@interface HexagonScene : EEScene
{
    EERegularPolygon *polygon;
}

@end



// HexagonScene.m file
#import "HexagonScene.h"

@implementation HexagonScene

-(id)init
{
    self = [super init];

    if(self)
    {
        polygon = [[EERegularPolygon alloc] initWithNumSides:6];
        polygon.radius = 1;
    }

    return self;
}

-(void)render
{
    [super render];

    [polygon render];
}

@end



// AppDelegate DidFinishLaunchingWithOptions: method
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    EAGLContext *context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
    [EAGLContext setCurrentContext:context];

    GLKView *view = [[GLKView alloc] initWithFrame:[[UIScreen mainScreen] bounds] context:context];
    view.delegate = self;

    GLKViewController *controller = [[GLKViewController alloc] init];
    controller.delegate = self;
    controller.view = view;

    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.rootViewController = controller;
    [self.window makeKeyAndVisible];

    scene = [[HexagonScene alloc] init];
    scene.left = -3;
    scene.right = 3;
    scene.bottom = -2;
    scene.top = 2;
    scene.clearColor = GLKVector4Make(0.25, 0.25, 0.25, 1.0);


    return YES;
}

任何人都知道为什么 Xcode 报告试图分配 4.16 GB 的内存?

我也尝试为该类手动编写 get 和 set 方法,EERegularPolygon但这也没有用。

4

1 回答 1

0

好的,在尝试调试问题后,我神奇地偶然发现了解决方案。

首先是两个变化:

1)我忘了覆盖以下方法:

-(int)numVertices 
{ 
    return self.numSides 
}

2) 阻止应用程序崩溃并显示六边形形状的一行是 NSLog() 行:

-(id)initWithNumSides:(int)numSides
{
    self = [super init];

    if(self)
    {
        _numSides = numSides;

        // ---------------------------------
        // IF THIS LINE IS COMMENTED OUT,
        // THE APP CRASHES, 
        //
        // BUT IF THE LINE IS NOT COMMENTED
        // THE APP WORKS, THE HEXAGON IS
        // RENDERED TO SCREEN AS DESIRED
        //
        // I WANT TO KNOW WHY :(
        // ---------------------------------
        NSLog(@"M_TAU = %lf", M_TAU);
    }

    return self;
}

在上面的代码行中实际调用 #define 预处理器指令之前,一定有一些我不明白的地方。

任何 C 或 Objective C 大师可以解释一下吗?

我也会挖掘谷歌,看看我是否能理解为什么在上面的代码中调用 NSLog 之前#define 无法工作。

除非它是编译器或 Xcode 的错误,否则看起来很荒谬。

编辑

好的,进一步发现,并不是#define 被破坏了,我需要在初始化中像这样调用 M_TAU 常量:

NSLog(@"M_TAU = %lf", M_TAU);

出于某种奇怪的原因,我似乎需要在我的 init 函数中有一行 NSLog ,任何东西。

于 2012-12-12T07:07:56.110 回答