Jump to content

Recommended Posts

Posted

Hey all,

 

I'm working on the lore book for my mod, but I felt like I couldn't get enough info on its pages with Minecraft's default font size.  I did some research and figured out that you have to change the GL scale to be able to change the font size.  I finally got this working, mostly, but... it's presented me with a new problem.  On my fairly large monitor with the window full size, the text looks fine...

gui_text_nodistortion.png.aa5e9b335f5efc03407dfb66110bf409.png

but when I make the window smaller...

gui_text_distortion.png.9848e55724023abaaa61406836583162.png

the scaling is very uneven and reduces legibility-- which is especially a big issue at such a small size.

The code I'm using to scale the text is called through the render method of my GUI (extends Screen, since it has no inventory):

GL11.glPushMatrix();
GL11.glScalef(fontScale, fontScale, fontScale);
this.font.drawSplitString(I18n.format(pageSegments.get(i)), (int) scaleUp(xOffset), (int) scaleUp(yPos), (int) scaleUp(textWidth), this.textColorDark);
GL11.glPopMatrix();

fontScale is at 0.8F.  I'm guessing the problem is occurring because I'm scaling down and therefore losing pixels.  But the font is a pixel one to begin with, so... in theory, shouldn't it be possible to start with it at a 1pixel scale and then scale it up?  I'm just not sure how to override Minecraft's default GUI sizing for this.  I still want it to be based off the GUI scale so that people can change the sizing as they wish, but I need to do my own calculation to get it at 0.8 the normal size instead of 1.0.  Unless I'm totally wrong about that guess, which is also totally possible.  In any case, I'm hoping someone here may have a solution...

 

Thanks, and have a great day!

Posted (edited)
  On 6/5/2020 at 10:03 PM, JayZX535 said:

fontScale is at 0.8F.  I'm guessing the problem is occurring because I'm scaling down and therefore losing pixels.  But the font is a pixel one to begin with, so... in theory, shouldn't it be possible to start with it at a 1pixel scale and then scale it up?  I'm just not sure how to override Minecraft's default GUI sizing for this.

Expand  

Your scale isn't a whole number, so yes, you're going to lose pixels. That's what happens when there is no interpolation. There is simply no way to smoothly scale something that is 5 pixels wide down to 4 pixels wide and still have aliased results (i.e. a given pixels is either fully transparent or fully opaque) and not look weird.

 

 

The only value less than 1 that will produce "acceptable" results is 0.5 due to the fact that Minecraft uses a 2x2 pixel square "per pixel" of detail. But this will not scale to the small UI scale (as that removes the doubling effect present at the default scale).

Edited by Draco18s
  • Like 1

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.

Posted (edited)
  On 6/5/2020 at 11:51 PM, Draco18s said:

Your scale isn't a whole number, so yes, you're going to lose pixels. That's what happens when there is no interpolation. There is simply no way to smoothly scale something that is 5 pixels wide down to 4 pixels wide and still have aliased results (i.e. a given pixels is either fully transparent or fully opaque) and not look weird.

 

 

The only value less than 1 that will produce "acceptable" results is 0.5 due to the fact that Minecraft uses a 2x2 pixel square "per pixel" of detail.

Expand  

Ahhh, that was about what I figured the problem was.  On the smallest sized window I've been looking at, one pixel does take up a 2x2.  On the largest one it's a 5x5.  I was hoping maybe I could snag the raw 1x1 pixel data before Minecraft scales it up to the size of the rest of the GUI because if I set it to 0.5 it was weird on the large size (trying to draw 2.5x2.5) and if I did 0.8 it was weird on the small size (trying to draw 1.6x1.6), and by getting the data before it scales up I could then calculate up rather than down and more easily ensure it would never be a fraction of a pixel, but... after poking around with it some more, that's seeming to be more trouble than I think it's worth.  I'd have to worry about so many possible pixel sizes, and even when I did try the 1x1 pixel for the small window it was too small to read well, not to mention potential issues with the GUI scale, so... I guess I'll be sticking with the larger font size for now.

 

Thank you for the answer!

Edited by JayZX535

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

    • Hi! I've been running a server on Minecraft using the Prodigium Reforged pack on curse forge using the site exaroton. It was working fine until randomly encountering this error every time anyone tries to connect to the server, I've already reloaded backups and deleted json files  Here is the crash report https://mclo.gs/EwKw51q. Thanks for the help in advance
    • nevermind i figured out the issue  
    • I was trying to host a server with the 1.21.1 cobbleverse forge mod, but when I tried starting it, it kept giving me this error. Crash report here: https://pastebin.com/AsE1X5QY   Thanks
    • This mod lets you choose an element power, Earth, Wind, Fire, or Water. Also two secret element powers Light and Darkness. Each power gives good a bad things, Earth lets you dig through anything but ores and bedrock, Wind lets you jump high in the air every three seconds, Fir lets you throw fire balls and you are immune to any flame/lava but you can't go into water or else you take damage, Water you swim and break blocks under water quicker and you can get rid of water like a sponge but you take more damage when in fire/lava, Light makes you faster at day but slower at night you are able to throw light spears that do four hearts and can go through any armor, Darkness let's you be faster at night but slower at day mobs don't harm you but peaceful mobs run away from you you are able to spawn ink creatures around you that are like dogs but are stronger. another thing in the mod is that there are other dimensions that can get you ores to make better armor and weapons, each dimensions are are good for a certain element though each dimension has a boss depending on which dimension one dimension has more than one boss, each elements are required to defeat the bosses with each others help.
    • Read the posts above yours, it tells you exactly how to do it, instructions are the same if it's making a forge installation or a vanilla one, just make a new folder for the game directory.
  • Topics

×
×
  • Create New...

Important Information

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