Need help writing code for java game with animation?
-
i need help getting a rectangle to move side to side these are the dimensions: g.setColor(Color.BLUE); g.fillRect(397,207,25,165); i need it to move along the x axis between the points 200 and 570 where y=125 (moving pretty much on a horizontal line) not sure if i should use a thread or what..thanks
-
Answer:
you need a thread. suppose you have a: import java.awt.*; import java.applet.*; public class myApplet extends Applet { public void init ( ) { //this sets up the thread new MyThread(this).start(); } public void paint(Graphics g) { g.setColor(Color.BLUE); //the following starts the rectangle at 397, 207 with dimensions 25 x 165. //as i increases, the rectange will move. g.fillRect(397+i, 207, 25, 165); } //suppose we had a method moveRight( ) that increments i by 1 space. public void moveRight( ) { i++; //note: maybe you want if it goes off the screen to readjust itself if(397 + i >=getWidth()) { i=0; } repaint(); //this refreshes the display } private int i=0; } now we will make a MyThread class to extend Thread. we will put the applet to sleep and then wake it up and move it again. class MyThread extends Thread { public MyThread(MyApplet applet) { this.applet = applet; //stores the reference as a local variable. } public void run() { while(true) { try { Thread.sleep(1000); //this puts the applet to sleep for 1000 milliseconds = 1 sec } catch (InterruptedException e) { } applet.moveRight(); } } private MyApplet applet; }
peanutt at Yahoo! Answers Visit the source
Related Q & A:
- Can't delete name off messenger address list, error code 40402,need help pls?Best solution by Yahoo! Answers
- I need help writing an objective for my resume.Best solution by resume-help.org
- Help Writing a CV?Best solution by Yahoo! Answers
- Help writing a cover letter?Best solution by resume-help.org
- I really need some help writing my personal statement for a nursing program.Best solution by cmu.edu
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.