-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFish.java
More file actions
512 lines (447 loc) · 13.5 KB
/
Fish.java
File metadata and controls
512 lines (447 loc) · 13.5 KB
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
package q3;
//ofri rom:208891804
//avigail shekasta:209104314
import java.awt.*;
import java.util.concurrent.BrokenBarrierException;
import java.util.concurrent.CyclicBarrier;
public class Fish extends Swimmable {
private int DISTANCE_EAT;
private int size;
private int col;
private Color color;
private int eatCount;
private int x_front=550;
private int y_front=225;
private int x_dir;
private int y_dir;
static boolean sleep=false;
static boolean food=false;
HungerState State=new Satiated();
double m;
int num;
public Fish(int size,int DISTANCE_EAT,int horSpeed,int verSpeed,int col,int f){
/**
* parameters constructor
*/
super(horSpeed,verSpeed,f);
this.DISTANCE_EAT=DISTANCE_EAT;
this.size=size;
this.col=col;
this.x_front=300;
this.y_front=300;
eatCount=0;
x_dir=1;
y_dir=1;
color=gettColor();
}
public Fish(){
/**
* default constructor
*/
}
@Override
public int get_x_front() {
return x_front;
}
@Override
public int get_y_front() {
return y_front;
}
@Override
public Color get_Color() {
return color;
}
public int getCol(){return col;}
public Fish(Fish obj){
/**
* copy constructor
*/
DISTANCE_EAT=obj.DISTANCE_EAT;
size=obj.size;
col=obj.col;
horSpeed=obj.horSpeed;
verSpeed=obj.verSpeed;
f=obj.f;
x_dir=obj.x_dir;
y_dir=obj.y_dir;
x_front=obj.x_front;
y_front=obj.y_front;
color=obj.color;
}
@Override
public String getAnimalName() {
return "Fish";
}
@Override
public int getEatCount() {
return eatCount;
}
@Override
public int getSize() {
return size;
}
@Override
public int getx_dir() {
return x_dir;
}
@Override
public String getColor() {
String[] color ={"BLACK","RED" ,"BLUE" ,"GREEN" ,"cyan" ,"ORANGE","YELLOW" ,"MAGENTA" ,"PINK"};
return color[col];
}
@Override
public int getColorInt() {
return col;
}
// convert each color to color object that can use in the draw method
public Color gettColor() {
Color[] color ={Color.BLACK,Color.RED ,Color.BLUE ,Color.GREEN ,Color.cyan ,Color.ORANGE,Color.YELLOW ,Color.MAGENTA ,Color.PINK};
return color[col];
}
@Override
public void setColor(Color color) {
this.color=color;
}
@Override
public void eatInc() {
if(DISTANCE_EAT==eatCount){
size+=1;
eatCount=0;
DISTANCE_EAT+=1;
}
eatCount+=1;
}
//run method get from Threads class
@Override
public void run() {
/**
* the run method override from Threads
*/
// init first local vars
int rando=(int) ((Math.random()*2));
int f_temp=f;
x_dir=rando;
// the while true loop that make the fish move in the frame by roles
while (true) {
AquaFrame.Panel.repaint();
if(f_temp==0){
f_temp=f;
State=new Hungry();
notifyObserver(String.valueOf(this.getId()));
}
else
f_temp--;
// while for wait and notify
while (sleep) {
setSuspend();
}
// while loop the fishes swim to the worm
while (food) {
if(f_temp==0){
f_temp=f;
State=new Hungry();
notifyObserver(String.valueOf(this.getId()));
num=(575 - x_front);
if(num==0)
m = (180 - y_front) ;
else
m = (180.0 - y_front) /num ;
}
else
f_temp--;
State.doaction(this);
AquaFrame.Panel.repaint();
if(!food){
State=new Satiated();
f_temp=f;
}
}
State.doaction(this);
}
}
public void changeFish(int size){
this.size=size;
}
public void changeColor(){
if (col==9)
col=1;
else
col+=1;
}
public int getDISTANCE_EAT() {
return DISTANCE_EAT;
}
public void drawAnimal(Graphics g)
{
/**
* draw animal method
*/
g.setColor(color);
if(x_dir==1) // fish swims to right side
{
// Body of fish
g.fillOval(x_front - size, y_front - size/4, size, size/2);
// Tail of fish
int[] x_t={x_front-size-size/4,x_front-size-size/4,x_front-size};
int [] y_t = {y_front - size/4, y_front + size/4, y_front};
Polygon t = new Polygon(x_t,y_t,3);
g.fillPolygon(t);
// Eye of fish
Graphics2D g2 = (Graphics2D) g;
g2.setColor(new Color(255-color.getRed(),255-color.getGreen(),255- color.getBlue()));
g2.fillOval(x_front-size/5, y_front-size/10, size/10, size/10);
// Mouth of fish
if(size>70)
g2.setStroke(new BasicStroke(3));
else if(size>30)
g2.setStroke(new BasicStroke(2));
else
g2.setStroke(new BasicStroke(1));
g2.drawLine(x_front, y_front, x_front-size/10, y_front+size/10);
g2.setStroke(new BasicStroke(1));
}
else // fish swims to left side
{
// Body of fish
g.fillOval(x_front, y_front - size/4, size, size/2);
// Tail of fish
int[] x_t={x_front+size+size/4,x_front+size+size/4,x_front+size};
int [] y_t = {y_front - size/4, y_front + size/4, y_front};
Polygon t = new Polygon(x_t,y_t,3);
g.fillPolygon(t);
// Eye of fish
Graphics2D g2 = (Graphics2D) g;
g2.setColor(new Color(255-color.getRed(),255-color.getGreen(),255-color.getBlue()));
g2.fillOval(x_front+size/10, y_front-size/10, size/10, size/10);
// Mouth of fish
if(size>70)
g2.setStroke(new BasicStroke(3));
else if(size>30)
g2.setStroke(new BasicStroke(2));
else
g2.setStroke(new BasicStroke(1));
g2.drawLine(x_front, y_front, x_front+size/10, y_front+size/10);
g2.setStroke(new BasicStroke(1));
}
}
// set suspend put the current fish in wait mode until the condition change
@Override
public synchronized void setSuspend() {
/**
* set suspend method for sleep button and synchronized
*/
try {
wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Override
public void setColo(Color col) {
color=col;
}
// change the condition to notify the object from wait mode
@Override
public synchronized void setResume() {
/**
* set resume method for wake up button and synchronized
*/
sleep=false;
notify();
}
@Override
public memento saveStateToMemento() {
return new memento(getAnimalName(),size,x_front, y_front,color,horSpeed,verSpeed);
}
@Override
public void getStateFromMemento(memento m) {
size=m.get_size();
x_front=m.get_x_front();
y_front=m.get_y_front();
color=m.get_Colorr();
horSpeed=m.get_horSpeed();
verSpeed=m.get_verSpeed();
}
@Override
public void set_obj(int size, int DISTANCE_EAT, int horSpeed, int verSpeed, int col,int f) {
/**
* set object parameters
*/
this.DISTANCE_EAT=DISTANCE_EAT;
this.size=size;
this.col=col;
this.color=gettColor();
this.horSpeed=horSpeed;
this.verSpeed=verSpeed;
this.f=f;
}
@Override
public void drawCreature(Graphics g) {
/**
* draw creature implement of the interface
*/
drawAnimal(g);
}
@Override
public String to_string() {
return " שם: Fish " +" צבע: "+getColor()+" גודל: "+String.valueOf(size)+" כמות אוכל לגדילה: "+String.valueOf(DISTANCE_EAT)+" מהירות אופקית: "+String.valueOf(horSpeed)+" מהירות אנכית: "+String.valueOf(verSpeed);
}
@Override
public void set_x_dir(int x) {
x_dir=x;
}
boolean flag=true;
@Override
public void swim() {
/**
* when the fish is not hungry this method called in the satiate state
*/
AquaFrame.Panel.repaint();
if(x_dir==1){
//ריצפה
if(x_front<1100 && y_front>350){
flag=true;
x_front+=horSpeed;
y_front-=verSpeed;
}
//תקרה
else if(x_front<1100 && y_front<50){
flag=false;
x_front+=horSpeed;
y_front+=verSpeed;
}
//קיר
else if(x_front>1100 && y_front<350 &&y_front>50){
x_dir=0;
x_front+=horSpeed;
y_front+=verSpeed;
}
//פינה למעלה
else if(x_front>1100 && y_front<50){
x_dir=0;
flag=false;
x_front-=horSpeed;
y_front+=verSpeed;
}
//פינה למטה
else if(x_front>1100 && y_front>350){
x_dir=0;
flag=true;
x_front-=horSpeed;
y_front-=verSpeed;
}
//תקין
else {
if (flag==true){
x_front+=horSpeed;
y_front-=verSpeed;
}
else {
x_front+=horSpeed;
y_front+=verSpeed;
}
}
}
//מקרה שנייייי
else {
//ריצפה
if(x_front>90 && y_front>350){
flag=true;
x_front-=horSpeed;
y_front-=verSpeed;
}
//תקרה
else if(x_front>90 && y_front<50){
flag=false;
x_front-=horSpeed;
y_front+=verSpeed;
}
//קיר
else if(x_front<90 && y_front<350 &&y_front>50){
x_dir=1;
x_front+=horSpeed;
y_front+=verSpeed;
}
//פינה למעלה
else if(x_front<90 && y_front<50){
x_dir=1;
flag=false;
x_front+=horSpeed;
y_front+=verSpeed;
}
//פינה למטה
else if(x_front<90 && y_front>350){
x_dir=1;
flag=true;
x_front+=horSpeed;
y_front-=verSpeed;
}
//תקין
else {
if (flag==true){
x_front-=horSpeed;
y_front-=verSpeed;
}
else {
x_front-=horSpeed;
y_front+=verSpeed;
}
}
}
try {
sleep(30);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Override
public void swim_after_worm() {
/**
* when the fish is hungry this method called in the do action method in hungry state
*/
AquaFrame.Panel.repaint();
if (x_front < 555) {
x_dir = 1;
y_front = (int) (m * (x_front ) - (m * 555) + 180);
x_front += horSpeed;
} else {
x_dir = 0;
y_front = (int) (m * (x_front ) - (m * 555) + 180);
x_front -= horSpeed;
}
// if the fish close to the worm we call to callback in aqua panel
if(y_front<=200 && y_front>=160 && x_front<=580 && x_front>=530){
food=false;
AquaPanel.food=false;
AquaPanel.callback(this);
}
try {
sleep(30);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
// all this methods is for set and get
@Override
public void setx_front(int x_front) {
this.x_front=x_front;
}
@Override
public void sety_front(int y_front) {
this.y_front=y_front;
}
@Override
public Fish clone() {
/**
* for prototype pattern we used this clone method to copy the object
*/
return new Fish(this);
}
@Override
public void PaintFish(Color col) {
/**
* an implement from marine interface for decorator pattern
*/
setColor(col);
}
}