Jump to content

[SOLVED] [1.8.9] Rotating an entity with the player.


JelloMOO

Recommended Posts

Picture this. You're holding a chicken in your hands. You turn around, but the chicken stays in the same spot.

So, now the chicken is literally floating behind you.

 

That's the problem I'm having right now. I'm heavily assuming trigonometry is involved with a solution to this. I've looked at the Item.java class to see how an item follows the player's hand.

 

It's been hours, and I've been staring at this code, but I can't seem to get it to work.

Taken from the Item.java Class

   protected MovingObjectPosition getMovingObjectPositionFromPlayer(World worldIn, EntityPlayer playerIn, boolean useLiquids)
    {
        float f = playerIn.rotationPitch;
        float f1 = playerIn.rotationYaw;
        double d0 = playerIn.posX;
        double d1 = playerIn.posY + (double)playerIn.getEyeHeight();
        double d2 = playerIn.posZ;
        Vec3 vec3 = new Vec3(d0, d1, d2);
        float f2 = MathHelper.cos(-f1 * 0.017453292F - (float)Math.PI);
        float f3 = MathHelper.sin(-f1 * 0.017453292F - (float)Math.PI);
        float f4 = -MathHelper.cos(-f * 0.017453292F);
        float f5 = MathHelper.sin(-f * 0.017453292F);
        float f6 = f3 * f4;
        float f7 = f2 * f4;
        double d3 = 5.0D;
        if (playerIn instanceof net.minecraft.entity.player.EntityPlayerMP)
        {
            d3 = ((net.minecraft.entity.player.EntityPlayerMP)playerIn).theItemInWorldManager.getBlockReachDistance();
        }
        Vec3 vec31 = vec3.addVector((double)f6 * d3, (double)f5 * d3, (double)f7 * d3);
        return worldIn.rayTraceBlocks(vec3, vec31, useLiquids, !useLiquids, false);
    }

 

My code:

					        float f1 = thePlayer.rotationYaw;
					        double d1 = thePlayer.posY + 6;
					        float f = thePlayer.rotationPitch;
					        double d0 = thePlayer.posX;
					        double d2 = thePlayer.posZ;
					        Vec3 vec3 = new Vec3(d0, d1, d2);
					        float f2 = MathHelper.cos(-f1 * 0.017453292F - (float)Math.PI);
					        float f3 = MathHelper.sin(-f1 * 0.017453292F - (float)Math.PI);
					        float f4 = -MathHelper.cos(-f * 0.017453292F);
					        float f5 = MathHelper.sin(-f * 0.017453292F);
					        float f6 = f3 * f4;
					        float f7 = f2 * f4;
					        double d3 = 5.0D;
					        if (thePlayer instanceof net.minecraft.entity.player.EntityPlayerMP)
					        {
					            d3 = ((net.minecraft.entity.player.EntityPlayerMP)thePlayer).theItemInWorldManager.getBlockReachDistance();
					        }
					        Vec3 vec31 = vec3.addVector((double)f6 * d3, (double)f5 * d3, (double)f7 * d3);
						theEntity.setPosition(d0 * (f2 * Math.PI), d1 , d2 * (f3 * -Math.PI));

 

This code did some improvement, but I feel like I'm doing the Math wrong.

 

What am I doing wrong? Please help. Thank you.

Link to comment
Share on other sites

Items in a player's hand don't do anything special to stay in their hand as the player rotates.  That's all handled by the GL calls.  Namely, GL rotates the context, then draws the player and their equipment.  All of the trig is hidden away from you.

 

*Digs out some code from a project he's currently working on.*

 

You'll have to convert some stuff, but the math is here.

 

//SpecialBulletLogic is an XML based parameterized system that drive various aspects, should be apparent what things do
public void MeleeShot_UpdatePosition() {
	double distance = this.SpecialBulletLogicOffsetFromFiringEntity; //how far from parent's center;
	double angle = 0;
	if(this.SpecialBulletLogic.RotatesAroundFiringEntity) { //you want this
		angle = MathHelper.SafeAngleAddRadians(angle, this.SpecialBulletLogic.ParentBullet.CurrentAngleRadians); //add parent's angle
	}
	Vector2 effectiveOffset = Vector2.zero;
	if(distance != 0) {
		//calculate rotated offsets
		effectiveOffset.x = (float)(distance * Math.Cos(angle));
		effectiveOffset.y = (float)(distance * Math.Sin(angle));
	}

	Vector2 newLocation = this.SpecialBulletLogic.ParentBullet.WorldLocation;

	newLocation.x += effectiveOffset.x;
	newLocation.y += effectiveOffset.y;

	this.SetWorldLocation(newLocation);
}

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Didn't seem to work. It rotates in a circular motion when I move, but the circle is so small and the chicken is like 5 blocks adjacent from me, now. Although, that could be that I'm adding the cosine and sin of the rotationYaw of the player with the posX and posZ of the player. 

Link to comment
Share on other sites

You should be taking the player's rotation, getting the sin and cos, and adding that to the player's position.  I don't know why the circle would be small, unless the offset isn't being multiplied by a large enough value (the

double distance = this.SpecialBulletLogicOffsetFromFiringEntity;

line dictates how far away from the player the chicken will be).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

						double distance = -3;
						float f1 = thePlayer.rotationYaw;
					        double d1 = thePlayer.posY + 6;
					        double d0 = thePlayer.posX;
					        double d2 = thePlayer.posZ;
					        double f2 = distance * MathHelper.cos(f1);
					        double f3 = distance * MathHelper.sin(f1);
					        double newPosX = d0 + f3;
					        double newPosZ = d2 + f2;
						theEntity.setPosition(newPosX + - 4, d1, newPosZ + 4);

 

 

I'm think I'm doing something wrong.

Link to comment
Share on other sites

(newPosX + - 4, d1, newPosZ + 4);

 

Wha?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Alright, so I found a solution to the circle being too small and stuff by multiplying the rotationYaw with pi/180 and subtracting that by pi, and it creates a proper circle.

 

The thing is, the rotationYaw moves even when my head moves. I want it to only calculate based on my body, not my head, so that if I simply turn my head, the chicken doesnt move out of place.

 

 

Link to comment
Share on other sites

Alright, so I found a solution to the circle being too small and stuff by multiplying the rotationYaw with pi/180

 

Mm, degrees and radains. Don't know why you had to subtract pi though.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Multiplying it by pi/180 alone would put the entity across the angle behind me. Like if you would look on a unit circle, if I wanted the entity to be at pi/2, they'd be at 3pi/2.

 

Subtracting pi from it fixed this.

 

 

EDIT:

 

Added to the rotationYaw and it gave me the desired result. The chicken now stays in my hands.

 

Thank you, Draco18s. Not only for helping me get to this result, but for also being so patient with me. You rock, man.

 

Link to comment
Share on other sites

Gotcha.  I figured that was why, but didn't see how the angle of rotation put it behind the player rather than in front.  Huh.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • If you're seeking an unparalleled solution to recover lost or stolen cryptocurrency, let me introduce you to GearHead Engineers Solutions. Their exceptional team of cybersecurity experts doesn't just restore your funds; they restore your peace of mind. With a blend of cutting-edge technology and unparalleled expertise, GearHead Engineers swiftly navigates the intricate web of the digital underworld to reclaim what's rightfully yours. In your moment of distress, they become your steadfast allies, guiding you through the intricate process of recovery with transparency, trustworthiness, and unwavering professionalism. Their team of seasoned web developers and cyber specialists possesses the acumen to dissect the most sophisticated schemes, leaving no stone unturned in their quest for justice. They don't just stop at recovering your assets; they go the extra mile to identify and track down the perpetrators, ensuring they face the consequences of their deceitful actions. What sets  GearHead Engineers apart is not just their technical prowess, but their unwavering commitment to their clients. From the moment you reach out to them, you're met with compassion, understanding, and a resolute determination to right the wrongs inflicted upon you. It's not just about reclaiming lost funds; it's about restoring faith in the digital landscape and empowering individuals to reclaim control over their financial futures. If you find yourself ensnared in the clutches of cybercrime, don't despair. Reach out to GearHead Engineers and let them weave their magic. With their expertise by your side, you can turn the tide against adversity and emerge stronger than ever before. In the realm of cybersecurity, GearHead Engineers reigns supreme. Don't just take my word for it—experience their unparalleled excellence for yourself. Your journey to recovery starts here.
    • Ok so this specific code freezes the game on world creation. This is what gets me so confused, i get that it might not be the best thing, but is it really so generation heavy?
    • Wizard web recovery has exhibited unparalleled strength in the realm of recovery. They stand out as the premier team to collaborate with if you encounter withdrawal difficulties from the platform where you’ve invested. Recently, I engaged with them to recover over a million dollars trapped in an investment platform I’d been involved with for months. I furnished their team with every detail of the investment, including accounts, names, and wallet addresses to which I sent the funds. This decision proved to be the best I’ve made, especially after realizing the company had scammed me.   Wizard web recovery ensures exemplary service delivery and ensures the perpetrators face justice. They employ advanced techniques to ensure you regain access to your funds. Understandably, many individuals who have fallen victim to investment scams may still regret engaging in online services again due to the trauma of being scammed. However, I implore you to take action. Seek assistance from Wizard Web Recovery today and witness their remarkable capabilities. I am grateful that I resisted their enticements, and despite the time it took me to discover Wizard web recovery, they ultimately fulfilled my primary objective. Without wizard web recovery intervention, I would have remained despondent and perplexed indefinitely.
    • I've tested the same code on three different envionrments (Desktop win10, desktop Linux and Laptop Linux) and it kinda blows up all the same. Gonna try this code and see if i can tune it
  • Topics

×
×
  • Create New...

Important Information

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