I am working on java game like rummy card game. now I have successfully draw 104 images now I have drag one image , now I want to shift this drag image onto (400,320) position. Also see that image is shifting or going to selected position, please help me, I have many times tried but not solving this problem, please- please help me....... I am using applet using eclipse.
package com.progresso;
import java.applet.*;
import java.awt.event.*;
import java.awt.*;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import java.util.concurrent.TimeUnit;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JApplet;
import javax.swing.JPanel;
import javax.swing.JLabel;
public class DoubleBuffering extends Applet implements MouseListener,Runnable,ActionListener,
MouseMotionListener
{
/**
*
*/
private static final long serialVersionUID = 1L;
// The object we will use to write with instead of the standard screen graphics
Graphics bufferGraphics;
// The image that will contain everything that has been drawn on
// bufferGraphics.
Image offscreen= null;
// To get the width and height of the applet.
Dimension dim;
Image image1,img,img1,Casino_table_img,img2;
MediaTracker tr;
int x;
int y;
private int _initX = 200;
private int _initY = 320;
private DoubleBuffering _currentCard=null;
private DoubleBuffering _currentCard_myhand=null;
int my_hand1=0;
private int _dragFromX =0;
private int _dragFromY =0;
private int _dragFromX_myten =0;
private int _dragFromY_myten =0;
private static final int IMAGE_WIDTH = 73;
private static final int IMAGE_HEIGHT = 97;
static DoubleBuffering[] _deck = new DoubleBuffering[104];
static DoubleBuffering[] _deck83 = new DoubleBuffering[83];
int[] cards = new int[104];
public Boolean[] nums = new Boolean[104];
AudioClip audioClip;
String suits = "shdcshdc";
String faces = "a23456789tjqk";
int cardPosition = 0;
Image card;
int n=104;
private int[] x1 = {200,220,240,260,280,300,320,340,360,380,400};
private int[] y1 = {320,320,320,320,320,320,320,320,320,320,320};
private int[] x2 = {200,220,240,260,280,300,320,340,360,380};
private int[] y2 = {110,110,110,110,110,110,110,110,110,110};
private double[] x83= {120,120.5,121,121.5,122,122.5,123,123.5,124,124.5,125,125.5,126,126.5,127,127.5,128,128.5,129,129.5,130,130.5,131,131.5,132,132.5,133,133.5,134,134.5,135,135.5,136,136.5,137,137.5,138,138.5,139,139.5,140,140.5,141,141.5,142,142.5,143,143.5,144.5,145,145.5,146,146.5,147,147.5,148,148.5,149,149.5,150,150.5,151,151.5,152,152.5,153,153.5,154,154.5,155,155.5,156,156.5,157,157.5,158,158.5,159,159.5,160,160.5,161,161.5,162};
private int[] y83= {210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210};
private int[] x3 = {305};
private int[] y3 = {210};
private int[] My_one_dragx = {400};
private int[] My_one_dragy = {320};
Random rgen = new Random();
List<Integer> intList = new ArrayList<Integer>();
List<Integer> intList_ten = new ArrayList<Integer>();
List<Integer> intList_ten_user = new ArrayList<Integer>();
List<Integer> intList_ten_83 = new ArrayList<Integer>();
List<Integer> intList_ten_one = new ArrayList<Integer>();
boolean frame;
volatile Thread thread;
boolean shouldDrawImage = false;
int xpos;
int ypos;
Random r;
private static final int STEPS = 40;
private static final long INTERVAL = 500;//msec
private static final long STEP_INTERVAL = INTERVAL / STEPS;
private int stepX, stepY;
int dx,dy;
public DoubleBuffering()
{
Demo1(offscreen,x,y);
}
public DoubleBuffering(Image offscreen, int x, int y) {
this.offscreen = offscreen;
this.x = x;
this.y = y;
//System.out.println("Card is: "+this.image);
}
public void Demo1(Image offscreen, int x, int y) //here x and y is 0-51;
{
this.offscreen = offscreen;
this.x = x;
this.y = y;
//--- Add mouse listeners.
}
public void init()
{
setLayout(null);
// We'll ask the width and height by this
dim = getSize();
// We'll redraw the applet eacht time the mouse has moved.
addMouseMotionListener(this);
// setBackground(Color.cyan);
// Create an offscreen image to draw on
// Make it the size of the applet, this is just perfect larger
// size could slow it down unnecessary.
offscreen = createImage(dim.width,dim.height);
// by doing this everything that is drawn by bufferGraphics
// will be written on the offscreen image.
bufferGraphics = offscreen.getGraphics();
setSize(800,530);
setPreferredSize(new Dimension(300, 300));
audioClip = getAudioClip(getCodeBase(), "audio/TestSnd.wav");
img1 = getImage(getCodeBase(),"cards/b.gif");
img2 = getImage(getCodeBase(),"cards/b.gif");
Casino_table_img = getImage(getCodeBase(),"cards/casino_table2.gif");
try {
System.out.println("1");
for (int suit=0; suit<suits.length(); suit++)
{
for (int face=0; face<faces.length(); face++)
{
//img = getImage(getCodeBase(),"cards/"+ faces.charAt(face)
// + suits.charAt(suit) + ".gif");
offscreen=getImage(getCodeBase(),"cards/"+ faces.charAt(face)
+ suits.charAt(suit) + ".gif");
_deck[cardPosition++] = new DoubleBuffering(offscreen, _initX+20,_initY);
//_deck83[cardPosition++] = new DoubleBuffering(offscreen, _initX1+1,_initY1);
}
}
}catch (Exception ex)
{
System.err.println("Caught Exception: " + ex.getMessage());
// handle exception...
}
for (int crd=0; crd<_deck.length; crd++)
{
intList.add(crd);
}
try
{
for(int j =0; j <10; j++)
{
//System.out.println(j);
int randomPosition = rgen.nextInt(intList.size());
//System.out.println("Random no. is: "+randomPosition);
intList_ten.add(randomPosition);
intList.remove(randomPosition);
}
for(int j =0; j <10; j++)
{
int randomPosition = rgen.nextInt(intList.size());
// System.out.println("Random no. is: "+randomPosition);
intList_ten_user.add(randomPosition);
intList.remove(randomPosition);
}
for (int crd=0; crd<1; crd++)
{
int randomPosition = rgen.nextInt(intList.size());
intList_ten_one.add(randomPosition);
intList.remove(randomPosition);
}
for (int crd=0; crd<intList.size(); crd++)
{
int randomPosition = rgen.nextInt(intList.size());
intList_ten_83.add(randomPosition);
}
}
catch (Exception e) {
System.err.println("Caught IOException: " + e.getMessage());
}
this.addMouseListener(this);
this.addMouseMotionListener(this);
}
public void paint(Graphics g)
{
//System.out.println("paint");
super.paintComponents(g); // Required
g.drawImage(Casino_table_img, 20, 20, this);
try
{
for(int j =0; j <10; j++)//for ten
{
DoubleBuffering c = _deck[intList_ten.get(j)];
g.drawImage(c.offscreen,c.x1[j],c.y1[j], this );
}
for(int j =0; j <1; j++)
{
DoubleBuffering c = _deck[intList_ten_one.get(j)];
g.drawImage(c.offscreen,x3[j],y3[j], this);
}
for(int j =0; j <10; j++)
{
DoubleBuffering c = _deck[intList_ten_user.get(j)];
g.drawImage(c.offscreen,x2[j],y2[j], this);
g.drawImage(img2,x2[j],y2[j], this);
}
for (int crd=0; crd<intList_ten_83.size(); crd++)
{
DoubleBuffering c = _deck[intList_ten_83.get(crd)];
//g.drawImage(c.image, c.x,c.y, this);
g.drawImage(c.offscreen,(int) c.x83[crd],c.y83[crd], this);
//g.drawImage(img1, (int) c.x83[crd],c.y83[crd], this);
}
if(my_hand1==1)
{
intList_ten.add(11);
g.drawImage(_currentCard.offscreen, My_one_dragx[0],My_one_dragy[0], this);
}
//_currentCard= _currentCard_myhand;
}
catch (Exception e)
{
System.err.println("Caught IOException: " + e.getMessage());
}
System.out.println("ok");
}
// Always required for good double-buffering.
// This will cause the applet not to first wipe off
// previous drawings but to immediately repaint.
// the wiping off also causes flickering.
// Update is called automatically when repaint() is called.
public void update(Graphics g)
{
paint(g);
}
public void stop()
{
}
// Save the current mouse position to paint a rectangle there.
// and request a repaint()
public void mouseMoved(MouseEvent evt)
{
}
public void mousePressed(MouseEvent e) {
try
{
my_hand1=1;
//for Deck card to drag.
for (int crd=82; crd>0; crd--)
{
int x = e.getX(); // Save the x cord of the click
int y = e.getY(); //
//System.out.println("First get 83x"+e.getX());
//System.out.println("Second get 83y"+e.getY());
dx=x;
dy=y;
_currentCard = null;
DoubleBuffering testCard = _deck[intList_ten_83.get(crd)];
if(intList_ten_83.get(crd)==-1)
{
break;
}
if (x >= testCard.x83[crd] && x <= (testCard.x83[crd] + IMAGE_WIDTH)
&& y>= testCard.x83[crd] && y <= (testCard.x83[crd] + IMAGE_HEIGHT))
{
_currentCard = testCard; // Remember what we're dragging.
_dragFromX = (int) (x - testCard.x83[crd]); // how far from left
_dragFromY = y - testCard.y83[crd]; // how far from top
//System.out.println("First drag 83: "+_dragFromX);
//System.out.println("Second drag 83: "+_dragFromY);
System.out.println("Current 83 drag: "+ _currentCard);
// Graphics g= testCard.getGraphics();
//g.drawImage(_currentCard.image, My_one_dragx[0],My_one_dragy[0], this);
break; // Stop when we find the first match.
}
}
}
catch (Exception ex){
System.out.println(" mouse pressed Exception: " + ex.getMessage());
}
try
{
//for My hand card to drag.
for (int crd=9; crd>=0; crd--)
{
int x = e.getX(); // Save the x cord of the click
int y = e.getY(); //
System.out.println("My hand getx: "+e.getX());
System.out.println("My hand gety: "+e.getY());
_currentCard_myhand = null;
DoubleBuffering testCard = _deck[intList_ten.get(crd)];
if (x >= testCard.x1[crd] && x <= (testCard.x1[crd] + IMAGE_WIDTH)
&& y>= testCard.x1[crd] && y <= (testCard.x1[crd] + IMAGE_HEIGHT)) {
_dragFromX_myten = x - testCard.x1[crd]; // how far from left
_dragFromY_myten = y - testCard.y1[crd]; // how far from top
// Graphics g= testCard.getGraphics();
//g.drawImage(_currentCard.image, My_one_dragx[0],My_one_dragy[0], this);
//System.out.println("_dragFromX_myten: "+_dragFromX_myten);
//System.out.println("_dragFromY_myten: "+_dragFromY_myten);
_currentCard_myhand = testCard; // Remember what we're dragging.
//System.out.println(intList_ten_83.get(crd));
System.out.println("My hand: "+ _currentCard_myhand);
break; // Stop when we find the first match.
}
}
}
catch (Exception ex) {
System.out.println(" mouse pressed Exception: " + ex.getMessage());
}
}//end mousePressed
/** Set x,y to mouse position and repaint. */
public void mouseDragged(MouseEvent e) {
if (_currentCard != null)
{
for (int crd=0; crd<intList_ten_83.size(); crd++)
{
// Non-null if pressed inside card image.
_currentCard.x83[crd] = e.getX() - _dragFromX;
_currentCard.y83[crd] = e.getY() - _dragFromY;
System.out.println("currentx 83 position: "+_currentCard.x83[crd]);
System.out.println("currenty 83 position: "+_currentCard.y83[crd]);
//--- Don't move the image off the screen sides
_currentCard.x83[crd] = Math.max(_currentCard.x83[crd], 0);
_currentCard.x83[crd] = Math.min(_currentCard.x83[crd], getWidth()-IMAGE_WIDTH);
//System.out.println(e.getX() - _dragFromX);
//--- Don't move the image off top or bottom
_currentCard.y83[crd] = Math.max(_currentCard.y83[crd], 0);
_currentCard.y83[crd] = Math.min(_currentCard.y83[crd], getHeight()-IMAGE_HEIGHT);
repaint();
}
}
if (_currentCard_myhand != null)
{
for (int crd=0; crd<10; crd++)
{
// Non-null if pressed inside card image.
//System.out.println("ggggggg");
_currentCard_myhand.x1[crd] = e.getX()-_dragFromX_myten;
_currentCard_myhand.y1[crd] = e.getY()-_dragFromY_myten;
//System.out.println("currentx position: "+_currentCard_myhand.x1[crd]);
// System.out.println("currenty position: "+_currentCard_myhand.y1[crd]);
//--- Don't move the image off the screen sides
_currentCard_myhand.x1[crd] = Math.max(_currentCard_myhand.x1[crd], 0);
_currentCard_myhand.x1[crd] = Math.min(_currentCard_myhand.x1[crd], getWidth()-IMAGE_WIDTH);
//System.out.println(e.getX() - _dragFromX);
//--- Don't move the image off top or bottom
_currentCard_myhand.y1[crd] = Math.max(_currentCard_myhand.y1[crd], 0);
_currentCard_myhand.y1[crd] = Math.min(_currentCard_myhand.y1[crd], getHeight()-IMAGE_HEIGHT);
repaint();
}
}
}//end mouseDragged
public void mouseExited(MouseEvent e) {
_currentCard = null;
_currentCard_myhand=null;
System.out.println("7");
}//end mouseExited
//=============================================== Ignore other mouse events.
public void mouseEntered (MouseEvent e) {
} // ignore these events
public void mouseClicked (MouseEvent e) { } // ignore these events
public void mouseReleased(MouseEvent e)
{
int w = _currentCard.getWidth();
int h = _currentCard.getHeight();
if ((w > 0) && (h > 0)) {
bufferGraphics.drawImage(_currentCard.offscreen,500,320, this);
}
/*try {
Thread.sleep(2000);
} catch(InterruptedException e1) {}*/
if(_currentCard!=null)
{
add(_currentCard);
/*_currentCard.reshape(Math.abs(400)%(size().width-70),
Math.abs(320)%(size().height-30),73,97);
repaint();
_currentCard.offscreen=null;*/
update(bufferGraphics);
}
if(_currentCard_myhand!=null)
{
//audioClip.play();
}
System.out.println("83 vala: "+_currentCard);
System.out.println("myhand vala: "+_currentCard_myhand);
/*try
{
try { Thread.sleep(50); }// this will pause for 5 seconds
catch (InterruptedException e) { System.err.println("sleep exception"); }
System.out.println("Released");
_currentCard.setSize(e.getX() - _currentCard.x, e.getY() - _currentCard.y);
//Graphics g=image.getGraphics();
System.out.println("else");
g.drawImage(_currentCard.image,400,320, this);
}
catch (Exception ex) {
System.out.println(" mouse relesed Exception: " + ex.getMessage());
}*/
} // ignore these events
public void run() {
System.out.println("run");
int currX = dx;
int currY = dy;
//computeMovement();
stepX = (370 - dx) / STEPS;
stepY = (400 - dy) / STEPS;
for( int i = 0; i < STEPS; i++ ) {
currX += stepX;
currY += stepY;
//move image to (currX, currY)
try {
TimeUnit.MICROSECONDS.sleep( STEP_INTERVAL );
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public void computeMovement() {
System.out.println("run method");
}
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
System.out.println("Action"+e.getSource() );
if(e.getSource()==_currentCard){
try{
System.out.println("Action"+e.getSource() );
//lab.setIcon(new ImageIcon("cards/2c.gif"));
}catch(Exception ex4){}
}
}
}
Please check the above code that you have required.
