私のcocos2dゲームには、モーダルレイヤーを起動し、その下にあるすべてのものをロックするための[設定]ボタンがあります。これを行うには、すべてのCCMenuItemをロックするメニューステータスメソッドとカバーレイヤーを組み合わせて使用します。どちらも以下のコードにあります。
問題は、どちらのソリューションもCCScrollLayersでは機能しないように見えることです。ボタン(モーダルを起動する)をクリックしても、CCScrollLayerをスクロールできますが、これは私が望むものではありません。
そうしたいです:
- ボタンを押すと、すべてのタッチが無効になり、CCScrollLayersを含むすべての要素が無効になります
- モーダルを起動します(モーダルのみのタッチを許可します)
私はもう試した:
- タッチを使用して、
CCTargetedTouchDelegate
[[CCTouchDispatcher sharedDispatcher] addTargetedDelegate:self priority:0 swallowsTouches:YES];
- 私はもう試した
self.isTouchEnabled = NO
モーダルを起動するレイヤー上
- CCScrollLayersで機能するようにメソッドを調整しようとしまし
MenuStatus
たが、機能しないようです。
何が間違っているのかわかりません。私のコードは次のとおりです。
// My main layer which launches the Settings Modal Layer
#pragma mark - Lock/Unlock layers
-(void) doSettings
{
[self lockLayers];
SettingsModalLayer *sml = [[[SettingsModalLayer alloc] init] autorelease];
[sml showSettingsOnLayer:self closeBlock:^{[self unlockLayers];}];
}
-(void) lockLayers
{
[[CCTouchDispatcher sharedDispatcher] addTargetedDelegate:self priority:0 swallowsTouches:YES];
[self MenuStatus:NO Node:self];
}
-(void) unlockLayers
{
[self MenuStatus:YES Node:self];
}
// Disabled/Enable layers
-(void) MenuStatus:(BOOL)_enable Node:(id)_node
{
for (id result in ((CCNode *)_node).children) {
if ([result isKindOfClass:[CCMenu class]]) {
for (id result1 in ((CCMenu *)result).children) {
if ([result1 isKindOfClass:[CCMenuItem class]]) {
((CCMenuItem *)result1).isEnabled = _enable;
}
} // next
}
} // next
}
-(void) registerWithTouchDispatcher {
[[CCTouchDispatcher sharedDispatcher] addTargetedDelegate:self priority:INT_MIN+1 swallowsTouches:YES];
}
- (void)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
NSLog(@"Event: %@", event);
for( UITouch *touch in touches )
{
CGPoint location = [touch locationInView: [touch view]];
location = [[CCDirector sharedDirector] convertToGL: location];
CCLayer *gl = (CCLayer *)[self getChildByTag:4];
[gl setIsTouchEnabled:NO];
}
}
-(void) ccTouchCancelled:(UITouch *)touch withEvent:(UIEvent *)event
{
}
-(void) ccTouchEnded:(UITouch *)touch withEvent:(UIEvent *)event
{
[self removeFromParentAndCleanup:YES];
}
-(BOOL) ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event
{
return YES;
}
// Settings Modal Layer
-(void) showSettingsOnLayer:(CCLayer *)layer closeBlock:(void (^)())noBlock
{
CoverLayer *coverLayer = [[CoverLayer alloc] init];
[layer addChild:coverLayer z:1000];
[coverLayer runAction:[CCFadeTo actionWithDuration:kAnimationTime opacity:155]]; // smooth fade-in to dim with semi-transparency
... // Other stuff goes here
}
// CoverLayer
// This is meant to stop all touches, but it doesn't really work on CCScrollLayer
#define kDialogTag 1234
#import "CoverLayer.h"
// class that implements a black colored layer that will cover the whole screen
// and eats all touches except within the dialog box child
@implementation CoverLayer
- (id)init {
self = [super init];
if (self) {
[self initWithColor:ccc4(0,0,0,0)
width:[CCDirector sharedDirector].winSize.width
height:[CCDirector sharedDirector].winSize.height];
self.isTouchEnabled = YES;
}
return self;
}
- (void)dealloc {
[[CCTouchDispatcher sharedDispatcher] removeDelegate:self];
[super dealloc];
}
- (BOOL)ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event
{
CGPoint touchLocation = [self convertTouchToNodeSpace: touch];
CCNode *dialogBox = [self getChildByTag: kDialogTag];
// eat all touches outside of dialog box
return !CGRectContainsPoint(dialogBox.boundingBox, touchLocation);
}