-
Notifications
You must be signed in to change notification settings - Fork 0
/
GamePanel.java
338 lines (289 loc) · 6.43 KB
/
GamePanel.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
package game;
import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.io.*;
import java.util.ArrayList;
public class GamePanel extends JPanel implements Runnable
{
private static final int NO_DELAYS_PER_YIELD = 16;
private static int MAX_FRAME_SKIPS = 5;
private int pWidth, pHeight;
private long gameStartTime;
private Thread animator;
private volatile boolean running = false;
private volatile boolean isPaused = false;
private volatile boolean ready = false;
private long period;
private Player playa;
private Monster monsta;
private volatile boolean gameOver = false;
private Font font;
private FontMetrics metrics;
private Graphics dbg;
private Image dbImage = null;
private Image background;
private Monster monstaX;
private Monster monstaY;
private BGObject[] bgobjects;
public GamePanel(long period, int w, int h)
{
start(period,w,h);
}
private void start(long period, int w, int h)
{
this.period = period;
pWidth = w;
pHeight = h;
setBackground(Color.white);
setPreferredSize(new Dimension(pWidth, pHeight));
setFocusable(true);
requestFocus();
readyForTermination();
playa = new Player(pWidth, pHeight);
monsta = new Monster5(pWidth, pHeight);
monsta.setPlayer(playa);
playa.setMonster(monsta);
gameOver = false;
addKeyListener(new KeyAdapter()
{
public void keyPressed(KeyEvent e)
{
playa.press(e);
}
public void keyReleased(KeyEvent e)
{
playa.release(e);
}
});
font = new Font("SansSerif", Font.BOLD, 120);
metrics = this.getFontMetrics(font);
try
{
background = ImageIO.read(new File("Background.jpg"));
} catch (IOException ex) {}
monstaX = null;
monstaY = null;
bgobjects = new BGObject[15];
for (int i = 0; i < 5; i++)
{
bgobjects[i] = new BGLine(w, h, w*i/4+Math.random()*200-100, h/2, -1, 1, Color.GREEN);
bgobjects[i+5] = new BGLine(w, h, w*i/4+Math.random()*200-100, h/2, -1, -1, Color.GREEN);
}
for (int i = 10; i < 15; i++)
{
bgobjects[i] = new BGPolygon(w, h, 3+(int)(3*Math.random()), 50+(int)(100*Math.random()), 0.25+0.75*Math.random(), 0.01+(0.03*Math.random()), Color.GREEN);
}
}
private void readyForTermination()
{
addKeyListener(new KeyAdapter()
{
public void keyPressed(KeyEvent e)
{
int keyCode = e.getKeyCode();
if ((keyCode == KeyEvent.VK_ESCAPE))
{
running = false;
}
}
});
}
public void addNotify()
{
super.addNotify();
startGame();
}
private void startGame()
{
if (animator == null || !running)
{
animator = new Thread(this);
animator.start();
}
}
public void resumeGame()
{
isPaused = false;
}
public void pauseGame()
{
isPaused = true;
}
public void stopGame()
{
running = false;
System.exit(0);
}
public void run()
{
while (true)
{
getClass();
start(period, pWidth, pHeight);
ready = true;
addKeyListener(new KeyAdapter()
{
public void keyPressed(KeyEvent e)
{
int keyCode = e.getKeyCode();
if ((keyCode == KeyEvent.VK_ENTER))
{
ready = true;
}
}
});
long beforeTime, afterTime, timeDiff, sleepTime;
long overSleepTime = 0L;
int noDelays = 0;
long excess = 0L;
running = true;
while (!ready)
{
startScreen();
}
gameStartTime = System.nanoTime();
beforeTime = gameStartTime;
while (running)
{
gameUpdate();
gameRender();
paintScreen();
afterTime = System.nanoTime();
timeDiff = afterTime - beforeTime;
sleepTime = (period - timeDiff) - overSleepTime;
if (sleepTime > 0)
{
try
{
Thread.sleep(sleepTime / 1000000L);
}
catch (InterruptedException ex)
{
}
overSleepTime = (System.nanoTime() - afterTime) - sleepTime;
}
else
{
excess -= sleepTime;
overSleepTime = 0L;
if (++noDelays >= NO_DELAYS_PER_YIELD)
{
Thread.yield();
noDelays = 0;
}
}
beforeTime = System.nanoTime();
int skips = 0;
while ((excess > period) && (skips < MAX_FRAME_SKIPS))
{
excess -= period;
gameUpdate();
skips++;
}
}
}
}
private void startScreen()
{
dbImage = createImage(pWidth, pHeight);
dbg = dbImage.getGraphics();
drawBackground(dbg);
String msg = "PROJECT TOUHOU";
int x = (pWidth - metrics.stringWidth(msg)) / 2;
int y = (pHeight - metrics.getHeight()) / 2;
dbg.setColor(Color.red);
dbg.setFont(font);
dbg.drawString(msg, x, y);
paintScreen();
}
private void drawBackground(Graphics g)
{
//g.drawImage(background, 0, 0, pWidth, pHeight, null);
g.setColor(Color.BLACK);
g.fillRect(0, 0, pWidth, pHeight);
for (int i = 0; i < bgobjects.length; i++)
{
bgobjects[i].move();
bgobjects[i].draw(g);
}
}
private void gameOverMessage(Graphics g)
{
drawBackground(g);
if (playa.isAlive())
{
if (monstaX == null)
{
monstaX = new MonsterX(pWidth, pHeight);
monstaX.makeBPs();
}
monstaX.move();
monstaX.draw(g);
String msg = "YOU WIN";
g.setColor(Color.GREEN);
int x = (pWidth - metrics.stringWidth(msg)) / 2;
int y = (pHeight - metrics.getHeight()) / 2;
g.setColor(new Color((int)(255*Math.random()),(int)(255*Math.random()),(int)(255*Math.random())));
g.setFont(font);
g.drawString(msg, x, y);
}
else
{
if (monstaY == null)
{
monstaY = new MonsterY(pWidth, pHeight);
monstaY.makeBPs();
}
monstaY.move();
monstaY.draw(g);
String msg = "YOU LOSE";
g.setColor(Color.GREEN);
int x = (pWidth - metrics.stringWidth(msg)) / 2;
int y = (pHeight - metrics.getHeight()) / 2;
g.setColor(Color.red);
g.setFont(font);
g.drawString(msg, x, y);
}
}
private void gameUpdate()
{
if (!isPaused && !gameOver)
{
playa.move();
monsta.move();
if (!monsta.isAlive() || !playa.isAlive())
gameOver = true;
}
}
private void gameRender()
{
if (dbImage == null)
{
dbImage = createImage(pWidth, pHeight);
dbg = dbImage.getGraphics();
}
drawBackground(dbg);
dbg.setFont(font);
playa.draw(dbg);
monsta.draw(dbg);
if (gameOver)
gameOverMessage(dbg);
}
private void paintScreen()
{
try
{
Graphics g = getGraphics();
if ((g != null) && (dbImage != null))
g.drawImage(dbImage, 0, 0, null);
Toolkit.getDefaultToolkit().sync();
g.dispose();
}
catch (Exception e)
{
System.out.println("Graphics error: " + e);
}
}
}