Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: Need help with this code urgent please, i appreciate it.

  1. #1
    Junior Member
    Join Date
    Jul 2011
    Posts
    14
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Need help with this code urgent please, i appreciate it.

    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
     
    public class GameRace extends JFrame
    {
     
    	final int WIDTH = 900, HEIGHT = 650;
     
    	double p1Speed =.5, p2Speed =.5;
     
    	final int UP = 0, RIGHT = 1, DOWN = 2, LEFT = 3;
     
    	int p1Direction = UP;
    	int p2Direction = UP;
     
    	Rectangle left = new Rectangle(0,0,WIDTH/9, HEIGHT);
    	Rectangle right = new Rectangle((WIDTH/9)*8,0,WIDTH/9,HEIGHT);
    	Rectangle top = new Rectangle(0,0,WIDTH,HEIGHT/9);
    	Rectangle bottom = new Rectangle(0, (HEIGHT/9)*8,WIDTH,HEIGHT/9);
    	Rectangle center = new Rectangle((int)((WIDTH/9) *2.5), (int)((HEIGHT/9)*2.5), (int)((WIDTH/9)*5),
    		(HEIGHT/9)*4);
    	Rectangle obstacle = new Rectangle(WIDTH/2, (int)((HEIGHT/9)*7,WIDTH/10,HEIGHT/9);
    	Rectangle obstacle2 = new Rectangle(WIDTH/3, (int)((HEIGHT/9)*5,WIDTH/10,HEIGHT/4);
    	Rectangle obstacle3 = new Rectangle(2*(WIDTH/3), (int)((HEIGHT/9)*5),WIDTH/10,HEIGHT/4);
    	Rectangle obstacle4 = new Rectangle(WIDTH/3,HEIGHT/9,WIDTH/30,HEIGHT/9);
    	Rectangle obstacle5 = new Rectangle(WIDTH/2, (int)((HEIGHT/9)*1.5),WIDTH/30,HEIGHT/4);
     
    	Rectangle finish = new Rectangle(WIDTH/9, (HEIGHT/2) -HEIGHT/9, (int)((WIDTH/9)*1.5),HEIGHT/70);
     
    	Rectangle p1 = newRectangle(WIDTH/9,HEIGHT/2, WIDTH/30,HEIGHT/30);
    	Rectangle p2 = newRectangle(((WIDTH/9)+ ((int)((WIDTH/9)*1.5)/2)), (HEIGHT/2)+
    		(HEIGHT/10),WIDTH/30,WIDTH/30);
     
    	public GameRace()
    	{
     
    		super("Radical Racing");
    		setSize(WIDTH,HEIGHT);
    		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    		setVisible(true);
     
    		Move1 m1 = new Move1();
    		Move2 m2 = new Move2();
    		m1.start();
    		m2.start();
    	}
     
    	public void paint(Graphics g)
    	{
     
    		super.paint(g);
     
    		g.setColor(Color.DARK_GRAY);
    		g.fillRect(0,0,WIDTH,HEIGHT);
     
    		g.setColor(Color.GREEN);
     
    		Rectangle lineO = new Rectangle(WIDTH/9,HEIGHT/2, (int)((WIDTH/9)*1.5)/2,HEIGHT/140);
    		Rectangle LineI = new Rectangle(((WIDTH/9)+((int)((WIDTH/9)*1.5)/2)),(HEIGHT/2)+
    			(HEIGHT/10), (int)((WIDTH/9)*1.5)/2,HEIGHT/140);
     
    		g.fillRect(left.x,left.y,left.width,left.height);
    		g.fillRect(right.x,right.y,right.width,right.height);
    		g.fillRect(top.x,top.y,top.width,top.height);
    		g.fillRect(bottom.x,bottom.y,bottom.width,bottom.height);
    		g.fillRect(center.x,center.y,center.width,center.height);
    		g.fillRect(obstacle.x,obstacle.y,obstacle.width,obstacle.height);
    		g.fillRect(obstacle2.x,obstacle2.y,obstacle2.width,obstacle2.height);
    		g.fillRect(obstacle3.x,obstacle3.y,obstacle3.width,obstacle3.height);
    		g.fillRect(obstacle4.x,obstacle4.y,obstacle4.width,obstacle4.height);
    		g.fillRect(obstacle5.x,obstacle5.y,obstacle5.width,obstacle5.height);
     
    		g.setColor(Color.WHITE);
    		g.fillRect(lineO.x,lineO.y,lineO.width,lineO.height);
    		g.fillRect(lineI.x,lineI.y,lineI.width,lineI.height);
     
    		g.setColor(Color.YELLOW);
    		g.fillRect(finish.x,finish.y,finish.width,finish.height);
     
    		g.setColor(Color.BLUE);
    		g.fillRect(p1.x,p1.y,p1.width,p1.height,true);
    		g.fillRect(p2.x,p2.y,p2.width,p2.height,true);
    	}
     
    	private class Move1 extends Thread implements KeyListener
    	{
    		public void run()
    		{
    			addKeyListener(this);
     
    			while(true)
    			{
     
    				try
    				{
     
    					repaint();
     
    					if(p1.intersects(left) || p1.intersects(right) || 
    					     p1.intersects(top) || p1.intersects(bottom) ||
    					     p1.intersects(obstacle) || p1.intersects(obstacle2) ||
    					     p1.intersects(p2) || p1.intersects(obstacle3) ||
    					     p1.intersects(obstacle4) || p1.intersects(obstacle5))
    					{
    					p1Speed = -4;
    					}
     
    					if(p1.intersects(center)
    					{
    					p1Speed = -2.5;
    					}
     
    					if(p1Speed<=5)
    					{
    					p1Speed+=.2;
     
    					if(p1Direction==UP)
    					{
    					p1.y-=(int)p1Speed;
    					}
    					if(p1Direction==DOWN)
    					{
    					p1.y+=(int)p1Speed;
    					}
    					if(p1Direction==LEFT)
    					{
    					p1.x-=(int)p1Speed;
    					}
    					if(p1Direction==RIGHT)
    					{	
    					p1.x+=(int)p1Speed;
    					}
     
    						Thread.sleep(75);
    					}
    					catch(Exception e)
    					{
     
    						break;
    					}
    				}
    			}
     
    	public void keyPressed(KeyEvent event)
    	{
    	}
     
    	public void keyReleased(KeyEvent event)
    	{
    	}
     
    	public void keyTyped(KeyEvent event)
    	{
     
    		if(event.getKeyChar()=='a')
    		{
    			p1Direction = LEFT;
    		}
     
    		if(event.getKeyChar()=='s')
    		{
    			p1Direction = DOWN;
    		}
     
    		if(event.getKeyChar()=='d')
    		{
    			p1Direction = RIGHT;
    		}
     
    		if(event.getKeyChar()=='w')
    		{
    			p1.Direction = UP;
    		}
    	}
    }
     
    	private class Move2 extends Thread implements KeyListener
    	{
    		public void run()
    		{
    			addKeyListener(this);
     
    			while(true)
    			{
     
    				try
    				{
     
    					repaint();
     
    					if(p2.intersects(left) || p2.intersects(right) || 
    					     p2.intersects(top) || p2.intersects(bottom) ||
    					     p2.intersects(obstacle) || p2.intersects(obstacle2) ||
    					     p1.intersects(p2)) 
     
    					{
    					p2Speed = -4;
    					}
     
    					if(p2.intersects(center)
    					{
    					p2Speed = -2.5;
    					}
     
    					if(p2Speed<=5)
    					{
    					p2Speed+=.2;
     
    					if(p2Direction==UP)
    					{
    					p2.y-=(int)p2Speed;
    					}
    					if(p2Direction==DOWN)
    					{
    					p2.y+=(int)p2Speed;
    					}
    					if(p2Direction==LEFT)
    					{
    					p2.x-=(int)p2Speed;
    					}
    					if(p2Direction==RIGHT)
    					{	
    					p2.x+=(int)p2Speed;
    					}
     
    						Thread.sleep(75);
    					}
    					catch(Exception e)
    					{
     
    						break;
    					}
    				}
    			}
     
    	public void keyPressed(KeyEvent event)
    	{
    	}
     
    	public void keyReleased(KeyEvent event)
    	{
    	}
     
    	public void keyTyped(KeyEvent event)
    	{
     
    		if(event.getKeyChar()=='j')
    		{
    			p2Direction = LEFT;
    		}
     
    		if(event.getKeyChar()=='k')
    		{
    			p2Direction = DOWN;
    		}
     
    		if(event.getKeyChar()=='l')
    		{
    			p2Direction = RIGHT;
    		}
     
    		if(event.getKeyChar()=='i')
    		{
    			p2.Direction = UP;
    		}
    	}
    }
     
    	public static void main(String args[]) {
     
    		new GameRace();
    	}
    }

    here is the compiler errors:

    GameRace.java:24: ')' expected
    Rectangle obstacle = new Rectangle(WIDTH/2, (int)((HEIGHT/9)*7,WIDTH/10,HEIGHT/9);
    ^
    GameRace.java:25: ')' expected
    Rectangle obstacle2 = new Rectangle(WIDTH/3, (int)((HEIGHT/9)*5,WIDTH/10,HEIGHT/4);
    ^
    GameRace.java:110: ')' expected
    if(p1.intersects(center)
    ^
    GameRace.java:138: 'catch' without 'try'
    catch(Exception e)
    ^
    GameRace.java:138: ')' expected
    catch(Exception e)
    ^
    GameRace.java:138: not a statement
    catch(Exception e)
    ^
    GameRace.java:138: ';' expected
    catch(Exception e)
    ^
    GameRace.java:96: 'try' without 'catch' or 'finally'
    try
    ^
    GameRace.java:146: illegal start of expression
    public void keyPressed(KeyEvent event)
    ^
    GameRace.java:146: illegal start of expression
    public void keyPressed(KeyEvent event)
    ^
    GameRace.java:146: ';' expected
    public void keyPressed(KeyEvent event)
    ^
    GameRace.java:146: ';' expected
    public void keyPressed(KeyEvent event)
    ^
    GameRace.java:150: illegal start of expression
    public void keyReleased(KeyEvent event)
    ^
    GameRace.java:150: illegal start of expression
    public void keyReleased(KeyEvent event)
    ^
    GameRace.java:150: ';' expected
    public void keyReleased(KeyEvent event)
    ^
    GameRace.java:150: ';' expected
    public void keyReleased(KeyEvent event)
    ^
    GameRace.java:154: illegal start of expression
    public void keyTyped(KeyEvent event)
    ^
    GameRace.java:154: illegal start of expression
    public void keyTyped(KeyEvent event)
    ^
    GameRace.java:154: ';' expected
    public void keyTyped(KeyEvent event)
    ^
    GameRace.java:154: ';' expected
    public void keyTyped(KeyEvent event)
    ^
    GameRace.java:202: ')' expected
    if(p2.intersects(center)
    ^
    GameRace.java:230: 'catch' without 'try'
    catch(Exception e)
    ^
    GameRace.java:230: ')' expected
    catch(Exception e)
    ^
    GameRace.java:230: not a statement
    catch(Exception e)
    ^
    GameRace.java:230: ';' expected
    catch(Exception e)
    ^
    GameRace.java:188: 'try' without 'catch' or 'finally'
    try
    ^
    GameRace.java:238: illegal start of expression
    public void keyPressed(KeyEvent event)
    ^
    GameRace.java:238: illegal start of expression
    public void keyPressed(KeyEvent event)
    ^
    GameRace.java:238: ';' expected
    public void keyPressed(KeyEvent event)
    ^
    GameRace.java:238: ';' expected
    public void keyPressed(KeyEvent event)
    ^
    GameRace.java:242: illegal start of expression
    public void keyReleased(KeyEvent event)
    ^
    GameRace.java:242: illegal start of expression
    public void keyReleased(KeyEvent event)
    ^
    GameRace.java:242: ';' expected
    public void keyReleased(KeyEvent event)
    ^
    GameRace.java:242: ';' expected
    public void keyReleased(KeyEvent event)
    ^
    GameRace.java:246: illegal start of expression
    public void keyTyped(KeyEvent event)
    ^
    GameRace.java:246: illegal start of expression
    public void keyTyped(KeyEvent event)
    ^
    GameRace.java:246: ';' expected
    public void keyTyped(KeyEvent event)
    ^
    GameRace.java:246: ';' expected
    public void keyTyped(KeyEvent event)
    ^
    GameRace.java:275: reached end of file while parsing
    }
    ^
    39 errors


  2. #2
    Banned
    Join Date
    May 2010
    Location
    North Central Illinois
    Posts
    1,631
    My Mood
    Sleepy
    Thanks
    390
    Thanked 112 Times in 110 Posts

    Default Re: Need help with this code urgent please, i appreciate it.

    First, I'm wondering if you either forgot a bracket, added too many, or added or left out a ;.

    Hmmmmm...found a problem.


    Rectangle p1 = newRectangle(WIDTH/9,HEIGHT/2, WIDTH/30,HEIGHT/30);
    Rectangle p2 = newRectangle(((WIDTH/9)+ ((int)((WIDTH/9)*1.5)/2)), (HEIGHT/2)+
    (HEIGHT/10),WIDTH/30,WIDTH/30);

    There's no method in your program called newRectangle().

  3. #3
    Junior Member
    Join Date
    Jul 2011
    Posts
    14
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Need help with this code urgent please, i appreciate it.

    thats not a problem i tried it already but thanks. i added some brackets i was missing and got down to 10 errors, the ones bothering me right now are the "try without catch" and i have no clue on what that means. helppppp thanks

  4. #4
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Need help with this code urgent please, i appreciate it.

    "try without catch"
    Where are you getting that error?
    Is the next symbol after the try a {?
    Where is the matching }?
    What is the next symbol after the }?
    The compiler would like there to be a catch(..){..} there.

    try{...}catch(...){...} is the full syntax of a try/catch statement.

Similar Threads

  1. URGENT Need help with code for billing
    By ab3lr in forum What's Wrong With My Code?
    Replies: 2
    Last Post: February 13th, 2011, 11:44 AM
  2. Help URGENT
    By javfifed in forum Java Theory & Questions
    Replies: 7
    Last Post: July 4th, 2010, 11:16 AM
  3. Urgent Help
    By pb60704 in forum Web Frameworks
    Replies: 7
    Last Post: December 1st, 2009, 03:27 AM
  4. Urgent code needed
    By subhvi in forum AWT / Java Swing
    Replies: 4
    Last Post: August 27th, 2009, 12:55 AM
  5. Replies: 1
    Last Post: May 4th, 2009, 06:30 AM