Jump to content

[1.8.9] [UNSOLVED] Constantly get player's hand position


JelloMOO

Recommended Posts

Hello. I have some code with which I'm trying to constantly get the player's hand position. It calculates correctly when I turn. However, when I move the player's body without turning, the hand moves, but the position it's calculating stays in the same position.

 

So if I'm holding a chicken, and I move my body without turning or rotating, the chicken doesnt move, but the player's body and hand does.

 

How do I take into account the player's body movements to be able to constantly get the player's hand position no matter what?

 

I used rotationYaw to take into account the player's head movements.

Link to comment
Share on other sites

Please give more information, such as your code, why you need to do this, whether you are want the hand position in third person or first person, etc.

 

I'd take a look at the vanilla code which calculates hand position.

catch(Exception e)

{

 

}

Yay, Pokémon exception handling, gotta catch 'em all (and then do nothing with 'em).

Link to comment
Share on other sites

I need to be able to hold a chicken in my hand.

 

I want to be able to get the hand position in third person.

 

					d0 = player.posX;
					d1 = player.posY + 2;
					d2 = player.posZ;
					distance = player.renderOffsetX + -2; //how far from parent's center;
					f1 = player.renderYawOffset + 10;
					double f2 = distance * MathHelper.cos(-f1 * 0.017453292F - (float)Math.PI);
					double f3 = distance * MathHelper.sin(-f1 * 0.017453292F - (float)Math.PI);
			                newPosX = d0 + f3;
			                newPosY = d1;
					newPosZ = d2 + f2;

 

With this code I calculate to move the chicken to stay in the Player's hands when I turn in a circle.

 

This doesnt account for when the player moves without rotating, however.

 

Where is the vanilla code calculating hand position located?

Link to comment
Share on other sites

  • 2 weeks later...

i get an idea but do not hell know how to get data from the player render class to implement it

 

 

long ago i want to help not a chicken but an entity whith fire gun aperance

you can create an invisibloe entity to stay around player, and this entity every tick get the the player rotation pick and rotation yaw based on that calculate a point in the air in from of player but like a meter at front and a little to right of the player sig vector

 

i actualy have the mathas and the skiill to create the invisble entity but never get how to get the players hand position so i could alineated this properly soo get tired and just made mi guns as items

 

 

Link to comment
Share on other sites

  • 2 weeks later...

Anyone else know how to do this?

 

If youre having trouble picturing what I mean, think of it as holding an item.

 

In minecraft, when you hold an item, and you turn around and move your body, it constantly stays in your hand, it doesnt begin to float in the middle of no where around your body.

 

I want to recreate that effect with a chicken.

 

Anyone?

Link to comment
Share on other sites

Why don't you make it use player data (using IExtendedProperties, or PlayerCapabilities), and then use a LayerRenderer to render it. The item layer renderer would be a starting point. Then make it render a chicken model instead of an item model.

 

I suppose you could also accomplish this by making a unique entity, keep it "invisible", where the entity itself doesn't render, then with a layer renderer, check that the entity is riding the player (simple way to keep it at the player's location all the time, and track when you have a chicken), and render in hand with the above method.

 

That's just me thinking about how to re-use existing approaches, to save you a ton of time getting the math.

I don't have the documentation and code out in front of me, so I'm not going to be of any help with the actual code, but I figure pointing you in the general direction, and you digging around ought to suffice. Good luck.

Link to comment
Share on other sites

    	chicken.posY = player.posY;
   	chicken.posZ = (playerArmLength * (MathHelper.sin(-player.rotationYaw + angOffset))) + (playerArmLength * (MathHelper.cos(-player.rotationYaw + angOffset))) + player.posZ;
    	chicken.posX = (playerArmLength * (MathHelper.cos(-player.rotationYaw + angOffset))) - (playerArmLength * (MathHelper.sin(-player.rotationYaw + angOffset))) + player.posX;

 

Hey gummy! The code above didn't really help, maybe I did it wrong. It works but only for when you move your head.

My problem is that I need to be able to account for sudden movements/jerks in the player's body. Like if the player, instead of moving their head, moves their body with W, A, S, D. It would put the chicken out of place.

 

	public void moveHitBoxes(EntityDragonPart part, double FrontToBack, double SideToSide, double TopToBot) {

	float f3 = this.rotationYaw * (float) Math.PI / 180.0F;
	float f11 = MathHelper.sin(f3);
	float f4 = MathHelper.cos(f3);

	part.setLocationAndAngles(this.posX + (double) (f11 * -FrontToBack) + (double) (f4 * SideToSide), this.posY + TopToBot, this.posZ + (double) (f4 * FrontToBack) + (double) (f11 * SideToSide), 0.0F, 0.0F);
	part.onUpdate();


}

 

The code above didn't seem to work either, I dont know why. I think i did it wrong.

Link to comment
Share on other sites

  • 2 weeks later...

You should take it into account that linear interpolation with partialTicks is needed on the rendering, including the rotations of the player.

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

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

    • Hello, I was trying to play a MOD in my preferred language, but I see that only some items are translated, and I go to debug and I get this information (the only thing that is translated is the bestiary):   [14sep.2024 17:14:36.415] [Render thread/WARN] [net.minecraft.client.resources.language.ClientLanguage/]: Skipped language file: mowziesmobs:lang/es_es.json (com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Expected name at line 394 column 2 path $.config.mowziesmobs.ice_crystal_attack_multiplier) [14sep.2024 17:14:36.421] [Render thread/WARN] [net.minecraft.client.resources.language.ClientLanguage/]: Skipped language file: iceandfire:lang/es_es.json (com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated object at line 1349 column 4 path $.iceandfire.sound.subtitle.dragonflute)   Is that the reason why everything is not translated? , and is there any way to fix it? Thanks
    • I got my model to render from the models renderToBuffer method. But still not quite what I want. I want to render the model from my renderer's render method. I feel that having access to the renderer and its methods will open some doors for me later down the line. //EntityRendererProvider.Context pContext = ; I want this //ToaPlayerRenderer render = new ToaPlayerRenderer(pContext, false); // if I can get the above line to work, having the methods from the renderer class would be incredibly helpful down the line RenderType rendertype = model.renderType(p.getSkinTextureLocation()); // this should be something like render.getTextureLocation() VertexConsumer vertexconsumer = buffer.getBuffer(rendertype); model.renderToBuffer(stack, vertexconsumer, paLights, 1, 1, 1, 1, 1); // I don't want the render to happen here since it doesn't use the renderer //model.render(p, 1f, pTicks, stack, buffer, paLights); I want to render the model using this It is certainly getting closer though. Probably. I am still worried that even if pContext is initialized this new instance of the renderer class will still hit me with the classic and all too familiar "can't use static method in non-static context"
    • Hello, I am learning how to create Multipart Entities and I tried creating a PartEntity based on the EnderDragonPart code. However, when I tested summoning the entity in the game, the PartEntity appeared at position x 0, y 0, z 0 within the game. I tried to make it follow the main entity, and after testing again, the part entity followed the main entity but seemed to teleport back to x 0, y 0, z 0 every tick (I'm just guessing). I don't know how to fix this can someone help me? My github https://github.com/SteveKK666/Forge-NewWorld-1.20.1/tree/master/src/main/java/net/kk/newworldmod/entity/custom Illustration  https://drive.google.com/file/d/157SPvyQCE8GcsRXyQQkD4Dyhalz6LjBn/view?usp=drive_link Sorry for my English; I’m not very good at it. 
    • its still crashing with the same message
  • Topics

×
×
  • Create New...

Important Information

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