Slide Puzzle : Applet « Swing JFC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing JFC » AppletScreenshots 
Slide Puzzle
  
import java.applet.Applet;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.MediaTracker;
import java.awt.Rectangle;

/* SlidePuzzle, originally from VisualJ++ Developer's News, July 1997 */
public class SlidePuzzle extends Applet implements Runnable {
  Thread m_SlidePuzzle = null;

  private Graphics m_Graphics;

  private Image logo;

  private boolean m_fAllLoaded = false;

  private Rectangle squares[];

  private int order[];

  private int x = 1;

  private int y = 0;

  public void init() {
    //Define and populate Rectangle array
    squares = new Rectangle[9];
    squares[0new Rectangle(006060);
    squares[1new Rectangle(0606060);
    squares[2new Rectangle(01206060);
    squares[3new Rectangle(6006060);
    squares[4new Rectangle(60606060);
    squares[5new Rectangle(601206060);
    squares[6new Rectangle(12006060);
    squares[7new Rectangle(120606060);
    squares[8new Rectangle(1201206060);

    //Define and populate int array
    order = new int[9];
    order[06;
    order[12;
    order[28;
    order[31;
    order[40;
    order[57;
    order[65;
    order[74;
    order[83;
  }

  public void paint(Graphics g) {
    if (m_fAllLoaded) {
      Rectangle r = g.getClipRect();
      g.clearRect(r.x, r.y, r.width, r.height);
      g.drawImage(logo, 00null);

    else
      g.drawString("Loading images..."1020);

  }

  public void start() {
    if (m_SlidePuzzle == null) {
      m_SlidePuzzle = new Thread(this);
      m_SlidePuzzle.start();
    }
  }

  public void stop() {
    if (m_SlidePuzzle != null) {
      m_SlidePuzzle.stop();
      m_SlidePuzzle = null;
    }
  }

  public void run() {
    if (!m_fAllLoaded) {
      m_Graphics = getGraphics();
      MediaTracker tracker = new MediaTracker(this);
      logo = getImage(getDocumentBase()"vjlogo.gif");
      tracker.addImage(logo, 0);

      try {
        tracker.waitForAll();
        m_fAllLoaded = !tracker.isErrorAny();
      catch (InterruptedException e) {
      }

      if (!m_fAllLoaded) {
        stop();
        m_Graphics.drawString("Error loading images!"1040);
        return;
      }
    }

    //Clear the screen and draw first image
    repaint();

    //Move the squares
    while (true) {
      for (x = 1; x < 9; x++) {
        //Slow down the animation
        try {
          Thread.sleep(350);
        catch (InterruptedException e) {
        }

        //Move square to next location

        m_Graphics.copyArea(squares[order[x]].x, squares[order[x]].y,
            6060, squares[order[x - 1]].x - squares[order[x]].x,
            squares[order[x - 1]].y - squares[order[x]].y);

        //Clear most recently copied square

        m_Graphics.clearRect(squares[order[x]].x, squares[order[x]].y,
            6060);
      }

      //Repaint original graphic after two cycles
      y++;
      if (y == 2) {
        repaint();
        y = 0;
      }
    }
  }
}

           
         
    
  
Related examples in the same category
1. Icon Demo Applet
2. Socket Applet
3. Applet Socket Quote
4. Applet Print
5. Applet System Properties
6. Applet Sound
7. Show Document
8. Applet communication (talk to each other)
9. Get Applets
10. JDBC applet
11. An application and an appletAn application and an applet
12. Applet and Swing ComponentsApplet and Swing Components
13. Icon behavior in JbuttonsIcon behavior in Jbuttons
14. Signed Applet
15. Load resource in Applet
16. Scribble AppletScribble Applet
17. Toggle buttonToggle button
18. Bouncing CircleBouncing Circle
19. Applet Menu Bar Demo
20. Applet clock demoApplet clock demo
21. Applet event testerApplet event tester
22. Applet with parameters
23. First applet
24. AppletViewer - a simple Applet Viewer program
25. A simple loan calculator appletA simple loan calculator applet
26. URLButton -- a Button-like object that jumps to a URL
27. Get list of APPLET tags in one HTML file
28. Demonstration of Applet Methods
29. Demonstrates getParameterInfo() and getAppletInfo()
30. Walking Text Demo
31. Java Applets Can Run CGI's (on some browsers)
32. Demo Choice Applet
33. Demo Applet: Connect to Legacy System
34. ShowDocApplet: try out showDocument()
35. Bookmarks
36. Java Wave Applet Demo
37. A class to allow use of the ncsa ISMAP format in java applets
38. File Read Applet
39. Applet I18N
40. Image Loader Applet
41. Thread Race Applet
42. Applet: Print from an Applet
43. Calling methods of an Applet from JavaScript code
44. Read an applet parameters
45. Change an applet background color
46. Passing Parameters to Java Applet
47. Display message in browser status bar
48. Your own Applet runtime environment
49. This applet is a simple button that plays an audio clip when pushed
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.