Character Rotation to direction of movement

Started by
5 comments, last by MrChrisnis 11 years ago

Hi,

I have got my character to rotate so that it faces the direction that it will be moving when the W key is pressed, however this only works for a certain amount to each side. I cannot turn my camera 180 degrees and have the character follow it. The code I am using is shown below.


void Game::calcRotAngle(Model *p) {
	float dot = xAxis.DotProduct(heading);

	float theta = acos(dot);

	float angle = theta * 180/PI;

	p->rotAngleZ = -angle;

	/*char text[256];
	sprintf_s(text, "Angle: %5f", angle);
	DebugOut(text);*/
}

The "heading" Vector is calculated from the position the camera is looking at - the camera's eye position to get the forward vector for where the camera is looking.

Can anybody help me to understand why this isn't working as I want it to?

Thanks,

Chris

Advertisement

acos only returns angles in a 180degree (pi radians) range.

Use atan2(y, x) instead, that returns a full 360 degree range.

EDIT: Better still drop the trig and use your facing (normalise it and scale by movement speed) for your velocity.

"Most people think, great God will come from the sky, take away everything, and make everybody feel high" - Bob Marley

Hi,

Thanks for your reply so fast.

I have the stuff you mentioned in your Edit for my velocity setting. The problem was just getting the character to rotate to face the way it is moving.

In regards to the atan2, what would I actually be using for the parameters of that function?

Sorry, I've just been trying to get this rotation working for quite a while now and staring at it makes me annoyed now :(

Thanks,

Chris

The arguments for atan2 are the y and x coordinates of the triangle, angle = atan2(y, x). y = opposite, x = adjacent in trig-speak, remember that tan(theta) = opposite/adjacent.

EDIT: 0 radians is facing due east, pi/2 is north, pi (or -pi) is west and -pi/2 is south.

"Most people think, great God will come from the sky, take away everything, and make everybody feel high" - Bob Marley

Oh wow, I totally should have known that...

Thanks again for the help. I feel really stupid right now :D

atan2 doesn't do anything magic by the way, it just calls atan(y/x) and then it adjusts the sign of the angle based on the signs of y and x (and also does the correct thing if x = 0 [i.e. it returns pi/2 if y is positive and -pi/2 if y is negative. If y is zero as well as x, the return value wont make any sense]). That's how it can return an angle in the full -pi to pi range, it works out which quadrant the angle is in.

"Most people think, great God will come from the sky, take away everything, and make everybody feel high" - Bob Marley

Ahhh, thank you for the extra explanation. Now I just need to try to remember that for the future :P

The code is now working properly and my character rotates as expected.

This topic is closed to new replies.

Advertisement