Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have had this problem for a while, and I have no idea why but something in this code makes the game suddenly run at 2/3 speed with no warning.. I have made a simple program with a spinning sphere (earth) and a floating hello, world. The only things I have changes about the other files of the program are the files in the resources folder with earth.pod and earth.png.

I am using Cocos3D. This is what I have in cocos3dScene.m and .h, with basically no other files changed:

.m (It moves with two "joysticks")

#import "cocos3dScene.h"
#import "CC3PODResourceNode.h"
#import "CC3ActionInterval.h"
#import "CC3MeshNode.h"
#import "CC3Camera.h"
#import "CC3Light.h"
@implementation cocos3dScene

#pragma mark Updating custom activity

-(void) updateBeforeTransform: (CC3NodeUpdatingVisitor*) visitor {
    if (shouldturn == YES) {
        [camera setRotation:cc3v((convertedlocation1.y-80)/8, (cam.rotation.y-(convertedlocation1.x-360)/80), cam.rotation.z)];
    }
    if (shouldmove == YES) {
        [camera setLocation:cc3v(cam.location.x, 0, cam.location.z)];
        [camera runAction:[CC3MoveForwardBy actionWithDuration:0 moveBy:(convertedlocation2.y-80)/1000]];
        [camera runAction:[CC3MoveRightBy actionWithDuration:0 moveBy:(convertedlocation2.x-120)/1000]];
    }
}
#pragma mark Handling touch events 

-(BOOL)ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event {
    location1 = [touch locationInView:[touch view]];
    convertedlocation = [[CCDirector sharedDirector]convertToGL:location1];
    if (convertedlocation.x>250&&convertedlocation.y<200) {
        convertedlocation1 = [[CCDirector sharedDirector]convertToGL:location1];
        shouldturn = YES;
    }
    if (convertedlocation.x<230&&convertedlocation.y<200) {
        convertedlocation2 = [[CCDirector sharedDirector]convertToGL:location1];
        shouldmove = YES;
    }
    return YES;
}

-(void)ccTouchEnded:(UITouch *)touch withEvent:(UIEvent *)event {
    location1 = [touch locationInView:[touch view]];
    convertedlocation = [[CCDirector sharedDirector]convertToGL:location1];
    if (convertedlocation.x>250&&convertedlocation.y<200)
        shouldturn = NO;
    if (convertedlocation.x<230&&convertedlocation.y<200)
        shouldmove = NO;
}

-(void)ccTouchMoved:(UITouch *)touch withEvent:(UIEvent *)event {
    location1 = [touch locationInView:[touch view]];
    convertedlocation = [[CCDirector sharedDirector]convertToGL:location1];
    if (convertedlocation.x>250&&convertedlocation.y<200) {
        convertedlocation1 = [[CCDirector sharedDirector]convertToGL:location1];
        shouldturn = YES;
    }
    if (convertedlocation.x<230&&convertedlocation.y<200) {
        convertedlocation2 = [[CCDirector sharedDirector]convertToGL:location1];
        shouldmove = YES;
    }
}
@end

I know it has something to do with the screen touching but I have no I idea what. Is there something wrong? or can I simply restart everything when this happens quickly without any noticeable effect? Any help would be highly appreciated.

share|improve this question
Please try to narrow down the problem to a comprehensible amount of code - no one (incl. myself) is gonna read all this. – H2CO3 Oct 3 '12 at 17:18
okay........... – Bob Oct 3 '12 at 17:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.