Basic example:I still don't quite get your example.// initial location
bullet.x = cos(gun.getRotation()) * gun.getBarrelLength(); // cos: remember that most cos/sin impl use radians | barrelLength == radius
bullet.y = sin(gun.getRotation()) * gun.getBarrelLength(); // same things as above
Or if you also want to move the bullet in the same direction:sf::Vector2f velocity(cos(gun.getRotation()), sin(gun.getRotation()));
// set initial position
bullet.setPosition(velocity * gun.getBarrelLength());
while (window.isOpen())
{
// move each frame
bullet.move(velocity * deltaTime * movementSpeed);
}
You should really read up on trigonometry and vector math, it really isn't optional when it comes to gamedev.
It starts from the top left of the screen
So you take the bullet set the position to the rotation of the barrel, for both x and y axis?
(Which in my case is 200,200)
Please avoid using full quotes!I asked how to get the position of the barrel (the barrel moves upon rotation of the sprite) and set the bullet's position to the tip of the barrel, no matter what rotation the barrel is at.QuoteIt starts from the top left of the screen
Well, you need to also add the gun's position to the bullet's starting position. You only asked how to calculate the position of the bullet depending on the rotation........
How can it be {200, 200}? Length by definition is only 1 dimension.
So to clarify again, I want to know how to get the tip of the barrel's position, so I can set it as the bullet starting position.
So I have an idea on how I want to spawn bullets for this space-shooter I'm making. But the problem is, I have an option to rotate the shooter (setRotation + or -), and there's a specific bullet hole where the bullets are supposed to come out of.
I'm having trouble figuring out how to trace that bullet hole and set the bullet's position to that same spot even when the sprite rotates.
Can you guys please help me?