Valhalla Legends Archive

Programming => General Programming => Java Programming => Topic started by: Hdx on March 07, 2006, 09:28 PM

Title: Stoping Flickers
Post by: Hdx on March 07, 2006, 09:28 PM
http://www.jbls.org/upload/files/GUITest.jar
Wen you re-size that, it 'flickers'
Does anyome know how to stop that?
I've been suggested DoubleBuffering, but 2 things:
How do I do that?
And dosent JPanel/JFrame already double buffer?
~-~(HDX)~-~
Title: Re: Stoping Flickers
Post by: iago on March 07, 2006, 10:02 PM
I think there's a method in JFrame and JPanel called enableDoubleBuffer() or something.  Dunno if that would help, but wouldn't hurt. 

Other option is to disallow people from resizing it :P
Title: Re: Stoping Flickers
Post by: Hdx on March 07, 2006, 10:15 PM
No such luck.
And the assighment needs to be re-sizeable.
(Stoping the flicker is jsut for me, it has annoyed me to much)
~-~(HDX)~-~
Title: Re: Stoping Flickers
Post by: gameschild on March 08, 2006, 06:48 PM
Quote from: HdxBmx27 on March 07, 2006, 10:15 PM
No such luck.
And the assighment needs to be re-sizeable.
(Stoping the flicker is jsut for me, it has annoyed me to much)
~-~(HDX)~-~


createBufferStrategy(2);
BufferStrategy strategy = getBufferStrategy();
Graphics2D g = (Graphics2D) strategy.getDrawGraphics();
g.setColor(Color.black);
g.fillRect(0,0,800,600);
                  strategy.show();

This is what i used on a game i wrote in Java, not sure if it helps.
Title: Re: Stoping Flickers
Post by: Ender on April 17, 2006, 02:15 PM
Quote from: iago on March 07, 2006, 10:02 PM
I think there's a method in JFrame and JPanel called enableDoubleBuffer() or something.  Dunno if that would help, but wouldn't hurt. 

Other option is to disallow people from resizing it :P
Yes, double buffering is one way to do it, but I don't think it's that easy. I believe that you basically do all the work on a memory image and then when it is done you draw that memory image onto the main image. The memory image is invisible of course. For resizing it doesn't seem necessary -- perhaps you can just set the thread in which you do the resizing to highest priority. But if you want to do it via double-buffering, listen for when the user resizes the window and do the resizing on a memory JFrame/JPanel. When it is done you can make the main JFrame/JPanel reference the memory JFrame/JPanel. Perhaps the best way to get the "memory JFrame/JPanel" would be to clone the main one when a resize event happens. You can let the JVM do the garbage collection afterwards.

Swing may have built-in support for it... I guess it's worth looking into...

Edit: Come to think about it, what I said does not make much sense for resizing a JFrame/JPanel, yet this is what I've learned about double-buffering. Is my understanding of double-buffering incorrect, or is it not really not applicable to this situation? Would delegating a high-priority thread for doing the resizing be best?
Title: Re: Stoping Flickers
Post by: defcore on May 07, 2006, 10:04 AM
Quote from: gameschild on March 08, 2006, 06:48 PM
Quote from: HdxBmx27 on March 07, 2006, 10:15 PM
No such luck.
And the assighment needs to be re-sizeable.
(Stoping the flicker is jsut for me, it has annoyed me to much)
~-~(HDX)~-~


createBufferStrategy(2);
BufferStrategy strategy = getBufferStrategy();
Graphics2D g = (Graphics2D) strategy.getDrawGraphics();
g.setColor(Color.black);
g.fillRect(0,0,800,600);
                  strategy.show();

This is what i used on a game i wrote in Java, not sure if it helps.


This is called accelerated 2d graphics in Java. Google "Accelerated Graphics", and read up on double buffering and buffer strategies.
http://www.cokeandcode.com/info/tut2d.html -- might be a good start.
Title: Re: Stoping Flickers
Post by: Joe[x86] on May 08, 2006, 05:00 PM
Ok, I'm kinda wondering what double buffering is. I'm guessing it's two different window panes, in a way? Buffer 1 is drawn, copied to buffer 2, changed as buffer 2, buffer two is copied to buffer 1 - repeat?
Title: Re: Stoping Flickers
Post by: MyndFyre on May 08, 2006, 05:33 PM
Quote from: J on May 08, 2006, 05:00 PM
Ok, I'm kinda wondering what double buffering is. I'm guessing it's two different window panes, in a way? Buffer 1 is drawn, copied to buffer 2, changed as buffer 2, buffer two is copied to buffer 1 - repeat?

Double-buffering (http://en.wikipedia.org/wiki/Double_buffering) is a technique whereby drawing operations are performed onto a shadow video page in RAM and then copied as a whole once the operation is complete.  That prevents artifacts of partially-complete drawing operations from being displayed on the screen.
Title: Re: Stoping Flickers
Post by: Camel on August 06, 2007, 01:17 AM
Sorry for the bump. You can also prevent flicker by overloading paintComponents() to disable the "flicking" redraw.

My bot's JEditorPane would flicker when I forced it to scroll to the bottom; here's my implementation:
http://bnubot.googlecode.com/svn/trunk/BNUBot/src/net/bnubot/bot/gui/components/TextWindow2.java