/* 
	Simple.java

	java basics, 15-19.11.1999, juhuu@katastro.fi
*/

import java.applet.Applet;
import java.awt.*;
import java.net.*;
import java.util.Random;

public class pallo extends Applet implements Runnable {
  Image		imageDoubleBuffer;
  Graphics	gDoubleBuffer;
  Thread	engine = null;

  int		x, y;
  int		mousex, mousey;
  boolean 	mouse_down;
  Image 	imgPic;
  Image 	imgBackground;
  Random	rand;

  public void init() {
      // initialize double buffering
      imageDoubleBuffer = createImage(size().width, size().height);
      gDoubleBuffer = imageDoubleBuffer.getGraphics();
      gDoubleBuffer.setColor(Color.white);
      gDoubleBuffer.fillRect(0, 0, size().width, size().height);

      mousex 	= 0;
      mousey 	= 0;

      rand 	= new Random();

      x 	= (int) (rand.nextDouble() * (size().width - 10));
      y 	= (int) (rand.nextDouble() * (size().height - 10));

      mouse_down = false;

      // let's load an image

      imgPic = null;

      String sBackground = "pallot2.gif";
      String sPic = "molo.gif";

      MediaTracker med = new MediaTracker(this);

      imgPic = getImage(getDocumentBase(), sPic);
      med.addImage(imgPic, 0);

      imgBackground = getImage(getDocumentBase(), sBackground);
      med.addImage(imgBackground, 1);

      try
      {
  	  med.waitForAll();
      }	catch (InterruptedException e) {
      }
  }

 
//--------------------------------------------------------
// mousedownrandom

  public void paint(Graphics g) {

        // clear the screen
//      gDoubleBuffer.setColor(Color.white);
//      gDoubleBuffer.fillRect(0, 0, size().width, size().height);

        if (imgBackground != null)
        {
                gDoubleBuffer.drawImage(imgBackground, 0, 0, null);

                if (imgPic != null)
                {
                        int pic_width = imgPic.getWidth(null);
                        int pic_height = imgPic.getHeight(null);

                        // is the mouse pressed ?
                        if (mouse_down)
                        {       
                                // do the coordinates match ?
                                if ( mousex >= x && mousex <= x + pic_width)
                                {
                                        if ( mousey >= y && mousey <= y + pic_height)
                                        {
                                        // find new coordinates
                                              x = (int) (rand.nextDouble() * (size().width - pic_width));
                                              y = (int) (rand.nextDouble() * (size().height - pic_height));
                                        }
                                }
                        }

                        gDoubleBuffer.drawImage(imgPic, x, y, null);
                }
        }


        // draw all the stuff from the double buffer to the screen
        g.drawImage(imageDoubleBuffer, 0, 0, null);                             
  }




//--------------------------------------------


  // start the applet
  public void start() {
      if (engine == null) {
          engine = new Thread(this);
          engine.start();
      }
      showStatus(getAppletInfo());
  } 

  // stop the applet
  public void stop() {
     if (engine != null && engine.isAlive())
     {
         engine.stop();
     } 
     engine = null; 
  }

  public void run()
  {                  
     while (true)
     {
         try
         {
             repaint();
             Thread.sleep(10);
         } catch (InterruptedException e) {
             stop();
         }
     }                                  
  }

  public void update(Graphics g) {    
	paint(g);
  }

  // print to the console & browserstatus
  private void print(String s) {
    System.out.println(s); 		// console
    showStatus(s);         		// browser status  
  }

//---

  public boolean mouseDown(Event e, int x, int y) {
	mouse_down = true;
	return true;  
  }

  public boolean mouseUp(Event e, int x, int y) {
	mouse_down = false;
	return true;  
  }

  public boolean mouseMove(Event e, int x, int y)
  {
	mousex = x;
	mousey = y;
	return true;  
  }

  public boolean mouseDrag(Event e, int x, int y)
  {
	mousex = x;
	mousey = y;
	return true;  
  }


//---

}
