Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (405)
games submitted by our members
Games in WIP (289)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Free-flying camera Y axis movement too fast, is tangent vector calc wrong?  (Read 194 times)
0 Members and 1 Guest are viewing this topic.
Offline pixelprime

Junior Member


Medals: 2



« Posted 2013-02-20 11:33:23 »

Hi All,

I've written a camera class to handle FPS-style movement throughout the game world, but for some reason I don't seem to be traveling the correct distance along the Y axis when pointing in that direction. Here's the code that handles the calculation of 'moving forward' along the current vector:

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
protected void moveForward(float distance)
   {
      // track value (for debugging)
     lastMoveForward = distance;
     
      speedX -= (distance * (float)Math.sin(Math.toRadians(yaw)));
      speedZ += (distance * (float)Math.cos(Math.toRadians(yaw)));
       
       if (flyMode) { speedY += distance * (float) Math.tan(Math.toRadians(pitch)); }
   }


Some quick code notes:
yaw: a value between 0-359
pitch: a value clamped between -80 (looking down) and 80 (looking up)
speedX/Y/Z: values that are added to the camera's X, Y and Z positions respectively, then zeroed-out ready for the next tick.

Moving along the X and Z axes (when looking along those axes) works beautifully. The distance travelled is ~4 units per second.

However, when flyMode is switched on (for a free-flying camera), and looking up or down, the distance travelled is vastly different - more like 20-30 units per second.

Am I calculating the speed increment along the Y axis totally wrong? Or maybe a combination of them all?

Many thanks for any help anyone can offer. I'm already learning how tremendously resourceful this community can be : )
Offline DazKins

Junior Member


Medals: 1
Projects: 1



« Reply #1 - Posted 2013-02-20 13:23:12 »

You should not be using Math.tan() to calculate the new y value, You should be using Math.sin

DazKins

Check out my Dev Blog: http://dazkins.tumblr.com
Offline pixelprime

Junior Member


Medals: 2



« Reply #2 - Posted 2013-02-20 14:10:40 »

That's perfect! Thanks for your help!
Pages: [1]
  ignore  |  Print  
 
 

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Try the Free Demo of Revenge of the Titans

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (58 views)
2013-05-17 21:29:12

alaslipknot (67 views)
2013-05-16 21:24:48

gouessej (97 views)
2013-05-16 00:53:38

gouessej (94 views)
2013-05-16 00:17:58

theagentd (105 views)
2013-05-15 15:01:13

theagentd (96 views)
2013-05-15 15:00:54

StreetDoggy (142 views)
2013-05-14 15:56:26

kutucuk (164 views)
2013-05-12 17:10:36

kutucuk (163 views)
2013-05-12 15:36:09

UnluckyDevil (173 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.097 seconds with 21 queries.