How To: Get rid of screen flickering for Java game development

Get rid of screen flickering for Java game development

In this 14th video in a series about JAVA game development, "thenewboston" (Bucky Roberts) explains how to redefine your screen to avoid annoying flickering. Flickering in JAVA games often occurs because of time lags as the viewer watches the computer draw a new screen, pixel by pixel. Pre-installed code in JAVA can be used to eliminate this problem by taking advantage of "Buffering" and "Page Flipping". These functions permit you to delay the composition of a new screen until it is finished, so the user does not see flickering. You will need to IMPORT a new "Screen Class" which is your screen management strategy that you define. Create a "PRIVATE" object which corresponds to your user's graphics card. Using JAVA methods, you can acquire all the display modes that your user's graphics card can produce, and then search them for a match with your game's capabilities. You can then give your game's Screen Class direct access to the user's graphics card, and this allows you to control the screen management strategy. Your user will then see the Buffer instead of the flickering screen as it's being created.

Just updated your iPhone? You'll find new emoji, enhanced security, podcast transcripts, Apple Cash virtual numbers, and other useful features. There are even new additions hidden within Safari. Find out what's new and changed on your iPhone with the iOS 17.4 update.

Be the First to Comment

Share Your Thoughts

  • Hot
  • Latest