Animation: Swing and thread : Swing Thread « Threads « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » Threads » Swing ThreadScreenshots 
Animation: Swing and thread
Animation: Swing and thread


import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.geom.Ellipse2D;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;

import javax.swing.JComponent;
import javax.swing.JFrame;

public class SwingWithThread extends JComponent {
  private Image[] frameList;

  private long msPerFrame;

  private volatile int currFrame;

  private Thread internalThread;

  private volatile boolean noStopRequested;

  public SwingWithThread(int width, int height, long msPerCycle, int framesPerSec,
      Color fgColor) {

    setPreferredSize(new Dimension(width, height));

    int framesPerCycle = (int) ((framesPerSec * msPerCycle1000);
    msPerFrame = 1000L / framesPerSec;

    frameList = buildImages(width, height, fgColor, framesPerCycle);
    currFrame = 0;

    noStopRequested = true;
    Runnable r = new Runnable() {
      public void run() {
        try {
          runWork();
        catch (Exception x) {
          // in case ANY exception slips through
          x.printStackTrace();
        }
      }
    };

    internalThread = new Thread(r);
    internalThread.start();
  }

  private Image[] buildImages(int width, int height, Color color, int count) {

    BufferedImage[] im = new BufferedImage[count];

    for (int i = 0; i < count; i++) {
      im[inew BufferedImage(width, height,
          BufferedImage.TYPE_INT_ARGB);

      double xShape = 0.0;
      double yShape = ((double) (i * height)) (doublecount;

      double wShape = width;
      double hShape = 2.0 (height - yShape);
      Rectangle2D shape = new Rectangle2D.Double(xShape, yShape, wShape,
          hShape);

      Graphics2D g2 = im[i].createGraphics();
      g2.setColor(color);
      g2.fill(shape);
      g2.dispose();
    }

    return im;
  }

  private void runWork() {
    while (noStopRequested) {
      currFrame = (currFrame + 1% frameList.length;
      repaint();

      try {
        Thread.sleep(msPerFrame);
      catch (InterruptedException x) {
        Thread.currentThread().interrupt();
      }
    }
  }

  public void stopRequest() {
    noStopRequested = false;
    internalThread.interrupt();
  }

  public boolean isAlive() {
    return internalThread.isAlive();
  }

  public void paint(Graphics g) {
    g.drawImage(frameList[currFrame]00this);
  }

  public static void main(String[] args) {
    SwingWithThread redSquish = new SwingWithThread(2502002500L10, Color.red);
    JFrame f = new JFrame();
    f.setLayout(new FlowLayout());
    f.add(redSquish);

    f.setSize(450250);
    f.setVisible(true);
    f.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
  }
}

           
       
Related examples in the same category
1. Is Event Dispatcher ThreadIs Event Dispatcher Thread
2. GUI clock
3. Race Conditions using Swing ComponentsRace Conditions using Swing Components
4. Eliminating race Conditions using Swing ComponentsEliminating race Conditions using Swing Components
5. Using the Runnable interfaceUsing the Runnable interface
6. Write your Beans this way so they can run in a multithreaded environmentWrite your Beans this way so they can run in a multithreaded environment
7. User interface responsiveness
8. InvokeExample: Swing and threadInvokeExample: Swing and thread
9. Counter: Swing and threadCounter: Swing and thread
10. Thread accuracy: Swing and threadsThread accuracy: Swing and threads
11. Swing and thread: invoke and waitSwing and thread: invoke and wait
12. Swing and threads: invoke laterSwing and threads: invoke later
13. Swing and threads: slideSwing and threads: slide
14. Swing and threads: scroll textSwing and threads: scroll text
15. Swing and Thread for length operationSwing and Thread for length operation
16. Swing and Thread: cancel a lengthy operationSwing and Thread: cancel a lengthy operation
17. Swing and Thread: repaintSwing and Thread: repaint
18. Swing Thread Test
19. Thread and Swing 1Thread and Swing 1
20. Thread and Swing 2Thread and Swing 2
21. Thread and Swing 3Thread and Swing 3
22. Swing Type Tester 10Swing Type Tester 10
w__w__w__.j___av___a2___s_.___c_o_m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.