Jump to content

[1.7.10] A function to get the direction in which a player is looking?


JaselUmena

Recommended Posts

Hi,

 

Recently in my mod, we started to develop accessories as a utility for Traveller's Gear mod and we plan to add many cool stuff. However, one of my ideas was an accessory which pushes the player in the direction he's looking at (at least horizontally). I know there are many compass HUD mods, so there must be some kind of function which can be got to then apply mobility in that direction.

 

Any clues?

Link to comment
Share on other sites

Simple vector maths >_>

The code can be further improved to improve performance, current there are some redundant calcs.

float rad(float angle) { 
return angle * (float) Math.PI / 180; 
}

Vec3 lookVector(Entity player) {
float rotationYaw = player.rotationYaw, rotationPitch = player.rotationPitch;
float vx = -MathHelper.sin(rad(rotationYaw)) * MathHelper.cos(rad(rotationPitch));
float vz = MathHelper.cos(rad(rotationYaw)) * MathHelper.cos(rad(rotationPitch));
float vy = -MathHelper.sin(rad(rotationPitch));
return Vec3.createVectorHelper(vx, vy, vz);
}

The returned Vec3 is the player's looking direction vector.

 

You can also use ```player.getLookVec()``` for the exact same result.

 

Link to comment
Share on other sites

there must be some kind of function which can be got to then apply mobility in that direction.

 

Any clues?

In general, when you intuit that "there ought to be a vanilla function for that", you should look in the vanilla source code. Look in EntityPlayer and classes both above and below it in its lineage. By the time you post here, you should be telling us where you looked, what you found/tried, and why you still need help.

 

For my own curiosity, I just did that myself. I see a method in class Entity that may help you. However, I am using mc-1.8, so what you find (and how it's used) might be a little different than what I see. I'll give you the keywords "horizontal", "yaw" and "facing" to start your search.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.