-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCar.java
55 lines (46 loc) · 1.16 KB
/
Car.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.IOException;
import javax.swing.*;
import javax.imageio.ImageIO;
public class Car {
int x;
int y;
int h;
int w;
int speed;
Image image;
String fileName;
Timer timer;
GamePanel gp;
Car(int x, int y, int h, int w, String fileName, int speed,GamePanel gp) {
this.gp = gp;
this.x = x;
this.y = y;
this.h = h;
this.w = w;
this.fileName = fileName;
this.speed = speed;
loadBgImage();
move();
}
void loadBgImage() {
try {
BufferedImage bufferImg = ImageIO.read(GamePanel.class.getResource(fileName));
image = bufferImg.getScaledInstance(w, h, Image.SCALE_DEFAULT);
} catch (IOException e) {
e.printStackTrace();
}
}
void paintImage(Graphics pen) {
pen.drawImage(image, x, y, w, h, null);
}
void move() {
timer = new Timer(50, (a)->{
y =y+speed;
gp.repaint();
});
timer.start();
}
}