-
Notifications
You must be signed in to change notification settings - Fork 1
/
MainFish.java
276 lines (237 loc) · 5.23 KB
/
MainFish.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
package FunFish;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.geom.Point2D;
import java.util.Random;
import javax.swing.JFrame;
import javax.swing.Timer;
public class MainFish implements ActionListener, KeyListener
{
public static MainFish mainFish;
public Point2D.Double fish;
// public static OtherFish otherFish; //foodFish, killerFish
public FishPanel fishPanel;
public JFrame jframe;
public static final int STABLE = 0, LEFT = 1, RIGHT = 2, UP = 3, DOWN = 4, SCALE = 10;
public int direction;
public static int score;
public static int level;
public static int numSmallFish;
public static double fishR;
public static boolean over;
public boolean eaten;
//public Random random = new Random();
public Dimension dim;
public Timer timer = new Timer(20, this);
public long startTime;
public MainFish()
{
dim = Toolkit.getDefaultToolkit().getScreenSize();
jframe = new JFrame("Hungry Fish");
jframe.setVisible(true);
jframe.setSize(805, 700);
jframe.setResizable(false);
jframe.setLocation(dim.width / 2 - jframe.getWidth() / 2, dim.height / 2 - jframe.getHeight() / 2);
jframe.add(fishPanel = new FishPanel());
jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jframe.addKeyListener(this);
startGame();
}
public void startGame()
{
startTime = System.currentTimeMillis();
over = false;
level = 1;
eaten = false;
fish = new Point2D.Double(38, 60);
fishR = 5;
OtherFish.otherFish = new OtherFish(new Point2D.Double(38.0, 1.0), 1.0, 3.0);
numSmallFish = 0;
direction = STABLE;
//otherFish.clear();
timer.start();
}
@Override
public void actionPerformed(ActionEvent arg0)
{
fishPanel.repaint();
if(!over)
{
if(!eaten)
{
OtherFish.otherFish.otherFishMove();
}
if(OtherFish.otherFish.oFish.y > 65 || OtherFish.otherFish.oFish.y < 1 || OtherFish.otherFish.oFish.x > 80 || OtherFish.otherFish.oFish.x < 1)
{
OtherFish.generateOtherFish();
if(OtherFish.oFishR < fishR)
{
numSmallFish++;
}
OtherFish.otherFish.otherFishMove();
}
else if(OtherFish.eatOtherFish() && fishR >= OtherFish.oFishR)
{
fishR++;
score++;
if(score >= 3 && score < 6)
{
level = 2;
}
else if(score >= 6 && score < 9)
{
level = 3;
}
else if(score >= 9)
{
level = 4;
}
OtherFish.generateOtherFish();
OtherFish.otherFish.otherFishMove();
}
else if(OtherFish.eatOtherFish() && fishR < OtherFish.oFishR || fishR >= 100)
{
over = true;
}
if(numSmallFish >= 3)
{
fishR--;
numSmallFish = 0;
if(fishR <= 2)
{
over = true;
}
}
if(score % 3 == 2)
{
OtherFish.oSpeed += 0.01;
}
}
// if(!eaten)
// {
// for(int i = 0; i < numOtherFish; i++)
// otherFish[i].oFish = new Point2D.Double(otherFish[i].oFish.x, otherFish[i].oFish.y + 1);
// } //generate other fish
//--------------------------------------------------------------------------------------------------------------//
if(direction == LEFT && !over)
{
if(fish.x >= 1)
{
fish = new Point2D.Double(fish.x - 1, fish.y);
direction = STABLE;
}
else
direction = STABLE;
}
if(direction == RIGHT && !over)
{
if(fish.x <= 78)
{
fish = new Point2D.Double(fish.x + 1, fish.y);
direction = STABLE;
}
else
direction = STABLE;
}
if(direction == UP && !over)
{
if(fish.y >= 1)
{
fish = new Point2D.Double(fish.x, fish.y - 1);
direction = STABLE;
}
else
direction = STABLE;
}
if(direction == DOWN && !over)
{
if(fish.y <= 64)
{
fish = new Point2D.Double(fish.x, fish.y + 1);
direction = STABLE;
}
else
direction = STABLE;
}
}
@Override
public void keyPressed(KeyEvent e)
{
int i = e.getKeyCode();
if (i == KeyEvent.VK_LEFT)
{
direction = LEFT;
}
if (i == KeyEvent.VK_RIGHT)
{
direction = RIGHT;
}
if (i == KeyEvent.VK_UP)
{
direction = UP;
}
if (i == KeyEvent.VK_DOWN)
{
direction = DOWN;
}
if (i == KeyEvent.VK_SPACE)
{
startGame();
}
}
@Override
public void keyReleased(KeyEvent e) {
// TODO Auto-generated method stub
}
@Override
public void keyTyped(KeyEvent e) {
// TODO Auto-generated method stub
}
public double getFishR()
{
return fishR;
}
public double getFishX()
{
return fish.x;
}
public double getFishY()
{
return fish.y;
}
/* private void deleteOtherFish(int index) //otherFish in array
{
numOtherFish--;
for(int i = index; i < numOtherFish; i++)
{
otherFish[i] = otherFish[i+1];
otherFish[numOtherFish] = null;
}
}
private void addOtherFish(OtherFish f)
{
otherFish[numOtherFish] = f;
numOtherFish++;
}
private void updateOtherFish() //only contains the eat condition
{
for(int i = 0; i < numOtherFish; i++)
{
otherFish[i].otherFishMove();
if(otherFish[i].eatOtherFish(mainFish))
{
fishR += 0.5;
deleteOtherFish(i);
i--;
}
}
}*/
public static void main(String[] args){
mainFish = new MainFish();
}
}