Jump to content

[1.10.2] What's the correct way to modify the player model?


TPD

Recommended Posts

I want the arms of a player to point in the same direction that he/she is looking

Do I have to listen for the RenderPlayerEvent.Pre event and then change the mainModel somehow?

Also, how is it possible to prevent the "hitting-animation" (pressing left mouse button ingame) for first and thirdperson?

Link to comment
Share on other sites

Ok. How does it work? If I wanted the arm to have the same direction as the head would I do something like this?

 

ModelBiped biped = event.getRenderer().getMainModel();
biped.bipedLeftArm.rotateAngleX = biped.bipedHead.rotateAngleX;

Link to comment
Share on other sites

  • 2 weeks later...

what do you mean by "where the player looks"

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

have you ever useg OpenGL or lwjgl ? Well search for explanation of Gl11.glRotate Gl11.glScale and Fl11.glTranslate. With these methods you can alter rendered things. There is an event with pre and post phase, PlayerRenderEvent or something like that. in the prer you should acces the player model, inside the PlayerRenderer, and edit it. It should be an instance of ModelBiped. If there are some weird bugs with other player/creatures use the post methode to reverse you changes. between pre and post the player get rendered, so in the post phase you cant change the model.

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

How do I do this exactly? Something like this?

    public void renderPlayer(RenderPlayerEvent.Pre event)
    {
        ModelPlayer model = event.getRenderer().getMainModel();
        GL11.glPushMatrix();
        GL11.glRotatef(2,1,0,0);
        model.bipedRightArm.render(0.0625F);
        GL11.glPopMatrix();
    }

Link to comment
Share on other sites

this whould result in rendering thr RightArm twice.

//... pre event
//rX, rY, rZ need to be global
rX = model.bipedRightArm.roationX;
rY = model.bipedRightArm.roationY;
rZ = model.bipedRightArm.roationZ;
model.bipedRightArm.roationX=2;
model.bipedRightArm.roationY=3;
model.bipedRightArm.roationZ=4;

//.....
//... post event
model.bipedRightArm.roationX=rX;
model.bipedRightArm.roationY=rY;
model.bipedRightArm.roationZ=rZ;

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

1st I will just note: Look at event callbacks. Pre and Post is called exactly at start and end of rendering. If you do something in Pre, it won't really do much to vanilla code since vanilla will render rest on its own.

 

So one could ask - why such events even exist if they don't allow shit? Well - they do! And yes - almost anything rendering-related has close to zero compatibility (without special APIs) and thus - you basically replace whole thing.

 

So where am I going with it?

If you would want to render bracelet, cape, hat or some fire and sparkles - hell yeah, do it in Pre or Post!

If you need anything that is supposed to manipulate vanilla part of rendering - aside from GL calls like scaling, translating and rotating whole model - you usually can't. Solution? It's always - cancel rendering in Pre and re-render with modified code.

How to make modified code? Extend e.g: RenderPlayer and edit it to your needs, initialize it in some static field and call doRender() from Pre after event.setCanceled(true); - vanilla is gone, your rendering kicks in.

You need player specific stuff? Use @Capabilities and make Render class honour your per-player data.

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

This is kind of similar to my current solution: I replace the ModelRenderer of the bipedRightarm and bipedLeftarm of the player model (as well as the armor layers) in pre with my own ModelRenderer if a specific item is held. This ModelRenderer changes the angles in the render() method. In the post rendering event the renderer is disabled again.

 

I don't know if this is a good approach or not but at least I don't have to do the rendering myself and it could provide at least some compatibility with other mods that want to change the model. I'm not sure how I shoud secure the functionality of the original ModelRenderer in my own ModelRenderer though.

I could either copy all fields from the original renderer via reflection, or store the original renderer inside my custom renderer, make my own renderer override all methods and then call the ones of the original renderer instead.

 

 

 

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.