Graphic interface java help

Graphic interface java help

A modified checkers program with class name Checkers using double buffering. Somehow the program must have two top squares and two bottom squares. There should be two checkers of different color. The two checkers always move in opposite directions. When a checker reaches the end of its path, it should start moving backwards in the opposite direction.

Somehow need to enhance the Checkers program above to respond to mouse clicks. The checkers must stop moving whenever the user clicks and holds down the mouse. Then start moving again whenever the mouse is released. Cannot figure this out at all, please help.

View Answers

April 26, 2012 at 12:41 PM

1)Checkers.java:

 import java.awt.Graphics;
    import java.awt.Color;
    import java.awt.Image;
    import java.awt.event.*;

    public class Checkers extends java.applet.Applet implements Runnable, MouseListener
    {

      Thread thread;
      int x;
      int y;
      Image image;
      Graphics graphics;

      public void init()
      {
        addMouseListener(this);
        x = 5;
        y = 100;
       image = createImage(this.size().width, this.size().height);
       graphics = image.getGraphics();
      }

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

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

      public void run()
      {
        while (true)
         {
          while(x <= 105)
            {
            repaint();
            try { Thread.sleep(100); }
            catch (InterruptedException e) { }
              y-=4;
              x+=4;
          }

            while(x >= 5)
            {
            repaint();
            try { Thread.sleep(100); }
            catch (InterruptedException e) { }
              x-=4;
              y+=4;
          }
        }
      }

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


      public void paint(Graphics g)
      {
        graphics.setColor(Color.black);
        graphics.fillRect(0,0,100,100);

         graphics.setColor(Color.black);
         graphics.fillRect(100,100,100,100);

        graphics.setColor(Color.gray);
        graphics.fillRect(100,0,100,100);
         graphics.setColor(Color.gray);
         graphics.fillRect(0,100,100,100);    

        graphics.setColor(Color.red);
        graphics.fillOval(x,5,90,90);

         graphics.setColor(Color.blue);
         graphics.fillOval(y,100,90,90);

        g.drawImage(image,0,0,this);
      }
      public void destroy()
      {
         graphics.dispose();
      }

      public void mousePressed (MouseEvent e)
       {
            this.stop(); 
        }
        public void mouseReleased (MouseEvent e)
       {
            this.start();
        }

      public void mouseClicked(MouseEvent arg0) {}
        public void mouseEntered(MouseEvent arg0) {}
        public void mouseExited(MouseEvent arg0) {}
    }

2)applet.html:

<HTML>
<BODY>
<APPLET CODE ="Checkers.class" WIDTH="800" HEIGHT="500"></APPLET>
</BODY>
</HTML>









Related Tutorials/Questions & Answers:
Graphic interface java help
Graphic interface java help  A modified checkers program with class name Checkers using double buffering. Somehow the program must have two top..., please help
Java interface
Java interface  What is the List interface
Advertisements
Java Interface
Java Interface  Can an Interface have an inner class?  Yes, interface can have inner class. for example- public interface gyan { static...("in interface"); }; public static void main(String args
Java interface
Java interface  What must a class do to implement an interface?  It must provide all of the methods in the interface and identify the interface in its implements clause
Java interface
Java interface  What modifiers may be used with an interface declaration
Interface in java
Interface in java  An Interface method implemented in more than one different class with same method name. To avoid overriding of methods, we use ObjectReference for that class
java interface
java interface  Create a interface called student Define methods like get roll number Get name Get subject Create two classes Electronic student And history student Enter 5 students in the main class 2 of history and 3 elec
Interface in Java
Interface in Java Interface in java programming languages is a collection... oriented concept. Through interface only abstraction is achieved in java. Syntax... is achieved in  Java. In an interface, only abstract method can be declared
Marker Interface,Java Marker Interface
Interface in Java       In this section we will learn about Interface and Marker Interfaces in Java.... Electric switch is also the interface's example. But in java programming language
Interface - Java Beginners
Interface in Core Java  What is Interface? How Can i Use Interface in Core Java
Java cloneable interface
Java cloneable interface  What is cloneable interface
interface.
interface.  Write short note on interface.   Please visit the following link: Java Interface
Java interface reference
Java interface reference  When can an object reference be cast to an interface reference
Java Serializalble interface
Java Serializalble interface  What is the difference between Serializalble and Externalizable interface
interface - Java Beginners
interface  how to build interface in java programming language
Java Interface
Java Interface In this section we will discuss about the interface in Java... or more than one interfaces. Interface in Java is created for referencing something to other. To create an interface in Java the keyword "interface"
interface variables - Java Beginners
interface variables  why interface variable is by default final? what was the necessisity to make it final? plz explain me with good java prog
interface - Java Beginners
interface  what is an interface? when we will we use an interface in java? what will achived using interface?  Hi friend, Interface : An interface is a named collection of method definitions (without
INTERFACE
INTERFACE  how interface support multiple inheritance in java
Java itrator interface
Java itrator interface  What is an Iterator interface?  An iterator over a collection. Iterator takes the place of Enumeration in the Java.... The iterator interface have these methods- boolean hasNext(); Object next
interface
interface  what the use of interface?   An interface is one... variables.Any class can implement(inherit)the interface and make use of the methods(functions) and variables within it. In java, multiple inheritance
java help!
java help!   I need help starting off a program I am trying to write for class. The class should contain a private instance variable to represent temperature in Degrees Celsius and it should have the following methods
Help With Java...
Help With Java...  Write a java program that can take a positive integer greater than 2 as input and write out the number of times one must repeatedly divide this number by 2 before getting a value less than 2
interface
interface   what is the use of marking interface
interface
interface  What is marker interface ?? what is its use in java programming?? is this us in programming ??Explain is implementation with code
Interface - Java Interview Questions
Interface  Respected sir why we use Interface in java? because we... the interface's example. But in java programming language interface is nothing... a new interface, you are defining a new reference data type. You can use
help in java
help in java   Rational Numbers Rational numbers are numbers that can be represented as a fraction p / q where p is an integer number and q is a positive integer (q != 0). Design and implement a Java class RationalNumber
INTERFACE - Java Interview Questions
INTERFACE  Why Use Interface in Java?i want region ?plz post answer   Hi Friend, Interfaces form a contract between the class... the methods of the interface are implemented with the correct signature.Interfaces
Abstract class and interface in Java
Abstract class and interface in Java  What is the difference between abstract class and interfaces in Java?   Differences between an interface and an abstract class: At the same time multiple interfaces can
interface - Java Beginners
Interface meaning in java  What is the meaning of Interface? and why we need to call
Interface in Java
Interface in Java       In this section we will learn about Interface and Marker Interfaces in Java.... Electric switch is also the interface's example. But in java programming language
help in java
help in java  Write an application that prompt the user to enter a number to use as an array size, and then attempt to declare an array using the entered size. Java generates a NegativeArraySizeException if wou attempt to create
interface
interface  why do we need interface in java..if it`s usefull for to obtain multiple inheritance in the sense how it gonna be achieved...and i can...)...the y we need interface...THis is question often i heard from my developer
interface - Java Beginners
interface  I need the complete program for Design of java interface for Stack ADT and implement the same using array and linked list in java. Kindly send it as soon as possible. SOme of your solutions are not accessible
Interface
for Interface in java? and want to know why they used interface instead of multiple inheritance? Thanks in advance   An interface is one which has abstract... method it will take.It creates complexity.Therefore java uses Interface
java help?
java help?  Write a program, where you first ask values to an array with 6 integer values and then count the sum and average of the values in methods (send in the array & return the counted value to the main program). Print
about interface - Java Beginners
of the given line Set si=new HashSet(); Problem is that Set is an interface and HashSet is a class... so how instantiation of interface is possible..or..what...://www.roseindia.net/java
java help
java help   Write a Java program that does the following: 1.Creates a grading program based on the Baker College grading standard. You will need to look up the current grade standard. You may use only the letter grades without
help for java
help for java  1.convert the following Pseudo code to java if/else structure if student?s grade is greater than or equal to 90 Print ?A? else if student?s grade is greater than or equal to 80 Print ?B? else
interface
interface  will the interface implements a interface   Hi Friend, No. Interface can extends another interface but cannot implements it, because interface will not contain the implementation. Thanks
help in java
help in java  Write a program that will evaluate simple expressions such as 17 + 3 and 3.14159 * 4.7. The expressions are to be typed in by the user. The input always consist of a number, followed by an operator, followed
help in java
help in java  3.Flights Design and implement a class called Flight that represents an airline flight. It should contain instance data that represents the airline name, flight number, and the flight's origin and destination cities
help in java
help in java  Design and implement a class called Sphere that contains instance data that represents the sphere's diameter. Define the Sphere constructor to accept and initialize the diameter, and include getter and setter
help in java
help in java  The factorial of a nonnegative integer n is written n! (pronounced ââ?¬Å? n factorialââ?¬Â?) and is defined as follows: n!=n . (n-1) . (n-2) . .... . 1 (for values of n greater than or equal to 1) and n!=1 (for n
Interface - Java Beginners
Interface  Dear Sir, Could you send me a java program for INTERFACE... java.lang.*; import java.io.*; import java.util.*; interface MyInterface { int...://www.roseindia.net/java/master-java/interface.shtml Thanks
help in java
help in java  Shopping cart Create 3 shopping carts from a Cart class. Each class should have four items in it, a title, a price for the 4 items and the number of each. Your shopping cart should use private variables, so use
help in java
help in java  Gross And Dozens Design and implement a class called GrossAndDozens to convert a given number of eggs into the number of gross, the number of dozens, and to the number of left over eggs. If you have N eggs, then you
Interface in java with example
We are going to discuss about Interface in Java. Interface is blueprint... implement them. Java interface is nothing but is a empty collection... extending interface. Why use interface in java? We use itto achieve complete
interface - Java Beginners
Interface definition language example  example of interface definition  If it is a Class --> Interface is implemented. A class may implement multiple interfaces.if it is an Interface --> Interface can be extended
help in java
help in java   Team Roster Create a program called TeamRoster that uses a class called Roster. Roster should contain a team name and the names of all... or help me on this pleas.. 7. Gross And Dozens Design and implement a class

Ads