I am sure this is an easy question for anyone who knows anything about math and programming (Cocos2D), but when it comes to math I'm the village idiot.
My game has a ship that flies around in space. The ship stays in the center of the screen and the camera moves with the ship. I am trying to add projectiles that fire from the ship and move at the same speed no matter what speed the ship is "moving" at.
To figure this out I have been attempting to add (10.0, 10.0) to the location of my projectile sprite every step. This works (although it always goes to the upper left), however if I try to get also add the movement of the ship or camera to the sprite position as well as the (10.0, 10.0) I get it completely wrong.
Here is what I am currently doing at the moment:
CGPoint tempStep = ccpAdd(self.position, ccp(10.0, 10.0));
CGPoint tempSubStep = ccpSub(self.position, player.currentLocation);
NSLog(@"Difference: (%fx, %fy)", tempSubStep.x, tempSubStep.y);
CGPoint finalStep = ccpAdd(tempStep, tempSubStep);
// CGPoint tempSubStep = ccpSub(tempStep, player.currentLocation);
// CGFloat diff = ccpDistance(tempStep, player.currentLocation);
// CGPoint tempSubStep = ccpAdd(tempStep, ccp(diff, diff));
self.position = finalStep;
Things that are commented out are some of the things I have been trying (although there are many other things).
- self: Subclassed CCSprite
- player.currentLocation is a held location property of the player sprite. Property is atomic and assigned. If that is wrong, please let me know.
I have attempted to add the projectiles to a new layer and move the layer with the player sprite, but the moment the player sprite moves (and thus the layer) my projectiles disappear. I have tried CCLayerColor and CCParallaxNode.
In summary:
I would like to fire a shot originating from the position of the ship. I would like it to move away from the ship at a constant speed, regardless of the player ship's movement after the shot has been fired.
Example: Player is moving toward the top right of the screen (so to speak) and fires a shot in the same direction. The player does not overtake the projectile no matter how fast the player flies. Alternatively, if the player suddenly goes the opposite direction, the projectile does not seem to suddenly speed up but moves at seemingly the same speed.
Thank you for any help you can provide.
EDIT:
Ok I think I may have gotten it. Pretty simple really.
CGPoint tempStep = ccpAdd(self.position, _direction);
CGPoint playerDiff = ccpSub(player.currentLocation, _lastKnownPlayerLocation);
CGPoint finalStep = ccpAdd(tempStep, playerDiff);
self.position = finalStep;
_lastKnownPlayerLocation = player.currentLocation;
Now I just have to figure out how to get a radius within a range.