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.