-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.java
135 lines (111 loc) · 3.19 KB
/
Game.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package planeProject;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ImageIcon;
import javax.swing.JPanel;
import javax.swing.Timer;
public class Game extends JPanel implements ActionListener{
/**
*
*/
private static final long serialVersionUID = 1L;
private String backGround = "/images/skyline.png";
Timer runGame;
Drone d;
Plane plane;
PlanesControl p;
//BulletControl b;
int hi=5;
int score = 0;
int round = 1;
int lives = 3;
public Game() {
Timer timer = new Timer(1000, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
hi -= 1;
if (hi ==-1) {
//((Timer)e.getSource()).stop();
round++;
score+=100;
hi = 5;
}
}
});
timer.start();
setFocusable(true);
System.out.println("Plane Game");
runGame = new Timer(8, this); // like a delay, if not 10, but 2, it will be way faster
// time starts
runGame.start();
d = new Drone(50, 50); // initial position of the drone
//e = new Enemies(640, 300); //
p = new PlanesControl(d);
//b = new BulletControl();
addKeyListener(new KeyInput(d)); // once this runs, it will go into KeyInput and call the keyPressed and keyReleased functions
}
public Image getBackGroundImage()
{
ImageIcon i = new ImageIcon(getClass().getResource(backGround));
return i.getImage();
}
public void paint(Graphics g)
{
super.paint(g);
Graphics2D g2d = (Graphics2D)g;
g2d.drawImage(getBackGroundImage(), 0, 0, this);
d.draw(g2d); // draw the player . this function draw is inside Player
//e.draw(g2d);
p.draw(g2d);
p.drawB(g2d);
//System.out.println("Create bullet???");
//b.draw(g2d);
g.drawString(""+ hi, 280, 10);
g.drawString(""+ score, 600, 10);
g.drawString("Your score:", 520, 10);
g.drawString("Round:"+round, 10, 10);
//g.drawString(""+lives, 400, 10);
g.drawString("Lives:", 360, 10);
//g.drawString("Round:"+round, 10, 10);
if(p.hitted ) // check collision
{
//runGame.stop();
if(lives == 0)
{
runGame.stop();
g.setColor(Color.red);
g.setFont(new Font("serif", Font.BOLD, 40));
g.drawString("OOPS! GAME OVER", 120, 240);
}
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
//e.printStackTrace();
}
//System.out.println("Hited!!!!!");
p.reverseHit();
lives--;
}
g.setColor(Color.red);
g.setFont(new Font("serif", Font.BOLD, 14));
g.drawString(""+lives, 400, 10);
}
@Override
public void actionPerformed(ActionEvent event) {
// TODO Auto-generated method stub
//System.out.println("running the game every 10 m-sec.");
//System.out.println("x: " + d.getX() + " y: " + d.getY());
repaint(); //this calls the public void paint() method
d.update();
//e.update();
p.update();
//System.out.println(d.x + d.y);
//b.update();
}
}