3

我想将 cocos2d 集成到我的一个视图中。所以,我有一个普通的视图控制器(MapEditorViewController)和一个视图,在我的视图控制器中,(我创建了一个IBOutlet UIView *openGLView)我希望 cocos2d 在其中。在我的视图控制器中,我有一个方法 setupCocos2D :

- (void)setupCocos2D {
    CCGLView *glView = [CCGLView viewWithFrame:self.openGLView.bounds
                                   pixelFormat:kEAGLColorFormatRGB565   // kEAGLColorFormatRGBA8
                                   depthFormat:0                        // GL_DEPTH_COMPONENT16_OES
                        ];
    glView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
    [self.openGLView insertSubview:glView atIndex:0];
    [[CCDirector sharedDirector] setOpenGLView:glView];
    CCScene *scene = [HelloWorldLayer scene];
    [[CCDirector sharedDirector] runWithScene:scene];
}

setupCocos2DviewDidLoad在类中被调用MapEditorViewController

我有一个层(HelloWorldLayer),基本上就是http://www.raywenderlich.com/25736/how-to-make-a-simple-iphone-game-with-cocos2d-2-x-的教程中的代码教程

// Helper class method that creates a Scene with the HelloWorldLayer as the only child.
+(CCScene *) scene
{
    // 'scene' is an autorelease object.
    CCScene *scene = [CCScene node];

    // 'layer' is an autorelease object.
    HelloWorldLayer *layer = [HelloWorldLayer node];

    // add layer as a child to scene
    [scene addChild: layer];

    // return the scene
    return scene;
}

- (void) addMonster {

    CCSprite * monster = [CCSprite spriteWithFile:@"backbutton.png"];

    // Determine where to spawn the monster along the Y axis
    CGSize winSize = [CCDirector sharedDirector].winSize;
    int minY = monster.contentSize.height / 2;
    int maxY = winSize.height - monster.contentSize.height/2;
    int rangeY = maxY - minY;
    int actualY = (arc4random() % rangeY) + minY;

    // Create the monster slightly off-screen along the right edge,
    // and along a random position along the Y axis as calculated above
    monster.position = ccp(winSize.width + monster.contentSize.width/2, actualY);
    [self addChild:monster];

    // Determine speed of the monster
    int minDuration = 2.0;
    int maxDuration = 4.0;
    int rangeDuration = maxDuration - minDuration;
    int actualDuration = (arc4random() % rangeDuration) + minDuration;

    // Create the actions
    CCMoveTo * actionMove = [CCMoveTo actionWithDuration:actualDuration
                                                position:ccp(-monster.contentSize.width/2, actualY)];
    CCCallBlockN * actionMoveDone = [CCCallBlockN actionWithBlock:^(CCNode *node) {
        [node removeFromParentAndCleanup:YES];
    }];
    [monster runAction:[CCSequence actions:actionMove, actionMoveDone, nil]];

}

// on "init" you need to initialize your instance
-(id) init
{
    // always call "super" init
    // Apple recommends to re-assign "self" with the "super's" return value
    if( (self=[super initWithColor:ccc4(255,0,255,255)]) ) {

        CGSize winSize = [CCDirector sharedDirector].winSize;
        CCSprite *player = [CCSprite spriteWithFile:@"carteIntrouvable.png"];
        player.position = ccp(player.contentSize.width/2, winSize.height/2);
        [self addChild:player];


        [self setIsTouchEnabled:YES];

        [self schedule:@selector(gameLogic:) interval:1.0];

            }
    return self;
}

-(void)gameLogic:(ccTime)dt {
    [self addMonster];
}

现在,我不知道我做错了什么,图层出现但它是黑色的,即使我initWithColor-(id) init.

如何更改图层的背景颜色,因为如果我不将 cocos2d 与 UIKit 集成,代码可以工作...?

4

1 回答 1

6

替代解决方案:将 CCLayerColor 添加到基础层。

-(void) onEnter
{
    [super onEnter];
    ccColor4B color = {255,255,0,255};
    CCLayerColor *colorLayer = [CCLayerColor layerWithColor:color];
    [self addChild:colorLayer z:LAST_LAYER_PLUS_1];
}
于 2013-03-17T18:48:24.453 回答