-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameDriverV4.java
203 lines (137 loc) · 4.19 KB
/
GameDriverV4.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
/**
* @(#)GameDriverV4.java
*
*
* updates: jframe included, keylistener included, switch to render, game loop
* from tasktimer to thread - needs more testing sorry
*
*
* @version 4.0 9/13/2018
*/
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Toolkit;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.Canvas;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.image.BufferStrategy;
import java.awt.image.BufferedImage;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.JFrame;
public abstract class GameDriverV4 extends Canvas implements Runnable, KeyListener {
/**
*
*/
private static final long serialVersionUID = 1L;
private int FramesPerSecond;
protected static boolean[] Keys;
private JFrame frame;
private Color backGroundColor = Color.BLUE;
private String title = "Kirby Super Star Ultra";
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
//private int width = screenSize.width -920, height = screenSize.height - 270;
private int width = 1000, height = 800;
public GameDriverV4(int frames) {
// set up all variables related to the game
FramesPerSecond = frames;
this.addKeyListener(this);
// key setup
Keys = new boolean[KeyEvent.KEY_LAST];
//Keys2 = new boolean[KeyEvent.KEY_LAST];
}
public GameDriverV4() {
// default setting (60 frames per second)
this(120);
}
public void start() {
frame = new JFrame();
frame.setSize(width, height);
frame.setTitle(title);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setResizable(true);
frame.add(this);
frame.setVisible(true);
this.startThread();
}
private synchronized void startThread() {
Thread t1 = new Thread(this);
t1.start(); // calls run method after paint
}
public void setFrames(int num) {
this.FramesPerSecond = num;
}
private void render() {
BufferStrategy buffs = this.getBufferStrategy();
if (buffs == null) {
this.createBufferStrategy(3);
buffs = this.getBufferStrategy();
}
Graphics g = buffs.getDrawGraphics();
g.setColor(this.backGroundColor);
g.fillRect(0, 0, getWidth(), getHeight());
draw((Graphics2D) g);
g.dispose();
buffs.show();
}
public abstract void draw(Graphics2D win);
public void run() {
this.setFocusable(true);
long beforeTime, timeDiff, sleep;
beforeTime = System.currentTimeMillis();
while (true) {
timeDiff = System.currentTimeMillis() - beforeTime;
sleep = 1000 / this.FramesPerSecond - timeDiff;
if (sleep < 0) {
sleep = 2;
}
try {
Thread.sleep(sleep);
} catch (InterruptedException e) {
String msg = String.format("Thread interrupted: %s", e.getMessage());
System.out.println(msg);
}
render();
beforeTime = System.currentTimeMillis();
}
}
public BufferedImage addImage(String name) {
BufferedImage img = null;
//Graphics r = B.getGraphics();
try {
img = ImageIO.read(this.getClass().getResource(name));
} catch (IOException e) {
System.out.println(e);
}
return img;
}
public Color getBackGroundColor() {
return backGroundColor;
}
public void setBackGroundColor(Color backGroundColor) {
this.backGroundColor = backGroundColor;
}
@Override
public void keyPressed(KeyEvent e) {
// TODO Auto-generated method stub
Keys[e.getKeyCode()] = true;
}
@Override
public void keyReleased(KeyEvent e) {
// TODO Auto-generated method stub
Keys[e.getKeyCode()] = false;
}
@Override
public void keyTyped(KeyEvent e) {
// TODO Auto-generated method stub
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}