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 to iOS 18? You'll find a ton of hot new features for some of your most-used Apple apps. Dive in and see for yourself:

Be the First to Comment

Share Your Thoughts

  • Hot
  • Latest