Jump to content

Gui Scaling


PurePlugins

Recommended Posts

Hello all,

I'm currently working on a GuiDesigner mod, it's working but I am having an issue with the components scaling. Normally the Minecraft GUI will re-construct the buttons in the initGui method the initGui method gets called when the screen in reconstructed. The screen is reconstructed if you scale up or down the Minecraft window and of course when you enter that screen. My GuiDesigner mod saves and loads the components to and from JSON, so they are never reconstructed. How would I go about scaling all the components to the screen width and height?

any help is greatly appreciated.

here is a video of the GUI in action

https://a.pomf.cat/ifzyma.mp4

Thanks in advance,
Marshall.

Edited by PurePlugins
change title
Link to comment
Share on other sites

1.7.10 is no longer supported on this forum. You should update to 1.10.2 or, preferably, 1.11.2.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

25 minutes ago, diesieben07 said:

You should probably first let the initGui method do it's thing (it might do other things than just re-constructing components) and then apply your modifications afterwards.


Also stop modding for 1.7.10.

 

It's funny you say that, I actually do let the initGui handle the initial construction, but I can assure you it does nothing more,

here is the code for the initial construction.

https://hastebin.com/uhovimadul.scala

Link to comment
Share on other sites

1 hour ago, diesieben07 said:

Again, stop using 1.7.10. It is no longer supported on this forum and your thread will be locked otherwise.

 

I thought you were actually using the normal main menu. Your code clearly does not re-create the components in initGui. Also you seem to have your own custom system there, how are we supposed to know how to fix that without any code?

 

I'm not sure how to change the topic on this forum, this mod is not strictly for 1.7.10 it's for 1.7.10 - 1.11.2

And yes, it's not the regular gui, it's a custom component system. The question I have is how can I scale an x and y position on the screen without having access to the original equation that was used to place it where it is. (if that makes sense)

Link to comment
Share on other sites

9 minutes ago, diesieben07 said:

When you store the position don't store the scaled version, store the unscaled version. In your calculations, etc. you should always deal with the unscaled version. Only add the scaling as the last step.

 

The code I sent is only used to position the components at first launch, the user can move any component on the screen to their liking, I'm unsure how to scale the X & Y  when I have no idea where it will be.

Link to comment
Share on other sites

6 hours ago, JTK222 said:

I would simply say that you can store everything as Percentage values, Positions and Widths.

I assume that's the easiest thing you can do.

 

you mean like 10% from the top, 15% from the right?

would that work?

how would I go about doing that with the scaling 

Link to comment
Share on other sites

Yeah that would work in case you make correct calculations.
I meant the percentag values more for the content, that way you could scale the GUI itself without problems and the elements would automatically adjust.

 

(Exampl for Calculation: (elementPosX/(currentWidth/100)) = element Position on the x axis in percent.)

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.