-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoachActions.java
434 lines (408 loc) · 14.1 KB
/
CoachActions.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
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
import java.util.Scanner;
import java.util.Collections;
import java.util.InputMismatchException;
import java.lang.ArithmeticException;
import java.util.ArrayList;
public class CoachActions {
ArrayList<Athletes> athletesearray;
Coaches coach;
private int numberOfAthletes;
public CoachActions(ArrayList<Athletes> a, Coaches c, int n) {
athletesearray = a;
coach = c;
numberOfAthletes = n;
}
public void showProfile() {
System.out.println(" Name: " + coach.getName()+" Age: "+coach.getAge()+" Sport: "+ coach.getSport()+" Team: "+ coach.getTeam()+
" Years_of_Experience: " + coach.getYears()+" Bio: " + coach.getBio());
}
//int numberOfAthletes = athletesearray.size();
//sorting athletes array in descending order based on Likes
public void descendingLikeFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if ((athletesearray.get(max)).getLikes() < (athletesearray.get(i)).getLikes()) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void ascendingLikeFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if ( (athletesearray.get(max)).getLikes() > (athletesearray.get(i)).getLikes()) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void descendingAgeFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if ( (athletesearray.get(max)).getAge() < (athletesearray.get(i)).getAge()) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void ascendingAgeFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if ((athletesearray.get(max)).getAge() > (athletesearray.get(i)).getAge()) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void descendingSportFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if ( ((athletesearray.get(max)).getSport()).compareTo((athletesearray.get(i)).getSport())<0) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void ascendingSportFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if (((athletesearray.get(max)).getSport()).compareTo((athletesearray.get(i)).getSport())>0) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void descendingPositionFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if (((athletesearray.get(max)).getPosition()).compareTo((athletesearray.get(i)).getPosition())<0){
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void ascendingPositionFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if ( ((athletesearray.get(max)).getPosition()).compareTo((athletesearray.get(i)).getPosition())>0) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void descendingHeightFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if ( (athletesearray.get(max)).getHeight() < (athletesearray.get(i)).getHeight()) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void ascendingHeightFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if ( (athletesearray.get(max)).getHeight() > (athletesearray.get(i)).getHeight()) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void descendingWeightFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if ((athletesearray.get(max)).getWeight() < (athletesearray.get(i)).getWeight()) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void ascendingWeightFilter() {
for (int k=0; k < numberOfAthletes; k++) {
int max = 0;
for (int i=k; i < numberOfAthletes; i++) {
if ( (athletesearray.get(max)).getWeight() > (athletesearray.get(i)).getWeight()) {
try {
Collections.swap(athletesearray, max, i);
max = i;
} catch (IndexOutOfBoundsException e) {
System.out.println("\nException thrown : " + e);
}
}
}
}
}
public void showAthletes() {
descendingLikeFilter();
boolean continueLoop = true;
Scanner input3 = new Scanner(System.in);
do {
System.out.println("The default filter is the descending like filter.Do you want to change it? 1 = YES , 2 = NO");
try {
int choice2 = input3.nextInt();
if (choice2 == 1) {
Scanner input4 = new Scanner(System.in);
boolean stop = true;
do {
System.out.println("Which filter do you want to use ?\n1. ascendingLikeFilter\n2. descendingAgeFilter\n3. ascendingAgeFilter\n"
+"4. descendingSportFilter\n5. ascendingSportFilter\n6. descendingPositionFilter\n7. ascendingPositionFilter\n"
+"8. descendingHeightFilter\n9. ascendingHeightFilter\n10. descendingWeightFilter\n11. ascendingWeightFilter");
try {
int choice = input4.nextInt();
if (choice == 1) {
ascendingLikeFilter();
stop = false;
} else if (choice == 2) {
descendingAgeFilter();
stop = false;
} else if (choice == 3) {
ascendingAgeFilter();
stop = false;
} else if (choice == 4) {
descendingSportFilter();
stop = false;
} else if (choice == 5) {
ascendingSportFilter();
stop = false;
} else if (choice == 6) {
descendingPositionFilter();
stop = false;
} else if (choice == 7) {
ascendingPositionFilter();
stop = false;
} else if (choice == 8) {
descendingHeightFilter();
stop = false;
} else if (choice == 9) {
ascendingHeightFilter();
stop = false;
} else if (choice == 10) {
descendingWeightFilter();
stop = false;
} else if (choice == 11) {
ascendingWeightFilter();
stop = false;
}
} catch (InputMismatchException e3) {
System.out.println("Please give a number between 1 and 11");
input4.next();
} catch (ArithmeticException e2) {
System.out.println("Please give a number between 1 and 11");
input4.next();
}
} while (stop);
}
if (choice2 == 1 || choice2 == 2) {
continueLoop = false;
}
} catch (InputMismatchException e1) {
System.out.println("Please give number 1 or 2");
input3.next();
} catch (ArithmeticException e2) {
System.out.println("Please give number 1 or 2");
input3.next();
}
} while (continueLoop);
boolean f = true ;
int h1 = 0 ;
int h2 = 0 ;
int numofath = 0;
do {
if ( h1 + 10 > numberOfAthletes) {
h2 = numberOfAthletes;
} else {
h2 = h1 + 10;
}
for (int counter = h1; counter < h2; counter++) {
System.out.printf("%d.%s\n",counter+1,showBasicProfile(counter));
}
//Scanner input = new Scanner(System.in);
Scanner in = new Scanner(System.in);
boolean f1 = true;
boolean f11 = true;
boolean flag1 = true;
do {
System.out.println("Are you interested in any athletes? Type 1 for YES 2 for NO");
try {
int ans = in.nextInt();
while (ans == 1) {
do {
System.out.println("In which athlete where you interested in ?");
System.out.println("Please write their ascending number");
try {
numofath = in.nextInt() - 1;
if (numofath >= 0 && numofath < numberOfAthletes) {
flag1 = false;
}
} catch (InputMismatchException e1) {
System.out.println("Please give a number between 1 and " + numberOfAthletes );
in.next();
} catch (ArithmeticException e2) {
System.out.println("Please give a number between 1 and " + numberOfAthletes );
in.next();
}
}while(flag1);
int numberOfChosenAthlete = numofath;
if (numberOfChosenAthlete >= 0 && numberOfChosenAthlete < numberOfAthletes) {
showAllProfile(numberOfChosenAthlete);
//add like
athletesearray.get(numberOfChosenAthlete).addLike();
//send message
System.out.println("Do you want to reach out? Type 1 for YES 2 for NO");
int reachout = in.nextInt();
if (reachout == 1) {
Chat.sendMessage(athletesearray.get(numberOfChosenAthlete), coach, Chat.checkChat(athletesearray.get(numberOfChosenAthlete), coach));
}
}
do {
System.out.println("Were you interested in anyone else? Type 1 for YES 2 for NO");
try {
ans = in.nextInt();
if (ans == 1 || ans == 2) {
f11 = false;
}
} catch (InputMismatchException e1) {
System.out.println("Please give number 1 or 2");
in.next();
} catch (ArithmeticException e2) {
System.out.println("Please give number 1 or 2");
in.next();
}
} while(f11);
}
if (ans == 1 || ans == 2) {
f1 = false;
}
} catch (InputMismatchException e1) {
System.out.println("Please give number 1 or 2");
in.next();
} catch (ArithmeticException e2) {
System.out.println("Please give number 1 or 2");
in.next();
}
} while (f1);
Scanner input2 = new Scanner(System.in);
boolean f2 = true;
do {
System.out.println("Want to see more athletes ? Type 1 for YES 2 for NO");
try {
int choice3 = input2.nextInt();
if (choice3 == 2) {
f = false ;
}
if (choice3 == 1 || choice3 == 2) {
if (choice3 == 1 && h2 == numberOfAthletes) {
System.out.println("There aren't any athletes left");
f = false;
}
f2 = false;
}
} catch (InputMismatchException e1) {
System.out.println("Please give number 1 or 2");
input2.next();
}
} while (f2);
h1 = h2;
}while(h2 != numberOfAthletes && f);
}
public String showBasicProfile(int number) {
return ("Username: " + athletesearray.get(number).getUsername() + " Name: " +athletesearray.get(number).getName()+ " Age: " +(athletesearray.get(number)).getAge()+" Sport: "+(athletesearray.get(number)).getSport()+" Position: "+(athletesearray.get(number)).getPosition()+" Current Team: "+
(athletesearray.get(number)).getCurrent_team()+" Height: "+(athletesearray.get(number)).getHeight()+" Weight: "+(athletesearray.get(number)).getWeight() + " Likes: " + athletesearray.get(number).getLikes()) ;
}
public void showAllProfile(int number) {
System.out.println("Username: " + athletesearray.get(number).getUsername() +" Name: " + athletesearray.get(number).getName()+" Age: "+ (athletesearray.get(number)).getAge() +" Sport: "+ (athletesearray.get(number)).getSport()+ " Position: " + (athletesearray.get(number)).getPosition()+
"Current Team: " +(athletesearray.get(number)).getCurrent_team()+" Height: "+(athletesearray.get(number)).getHeight()+" Weight: "+(athletesearray.get(number)).getWeight()+" Bio: "+(athletesearray.get(number)).getBio()+ " Likes: " + athletesearray.get(number).getLikes()) ;
}
public void seeWholeConversation(Users receiver) {
Chat.seeConversation(coach.getMessages(), receiver);
Scanner in = new Scanner(System.in);
int reachout = 0;
System.out.println("Do you want to send a new message? Type 1 for YES 2 for NO :");
boolean continueLoop = true;
do {
try {
reachout = in.nextInt();
while (reachout!=1 && reachout!=2) {
System.out.println("Wrong answer.Please type 1 for YES 2 for NO :");
reachout = in.nextInt();
}
continueLoop = false;
} catch ( InputMismatchException e) {
System.out.println("You must enter a number. Please type 1 for YES 2 for NO :");
in.nextLine();
}
} while (continueLoop);
if (reachout == 1) {
Chat.sendMessage(receiver, coach, Chat.checkChat(receiver, coach));
}
}
public void sendNewMessage(Users receiver) {
Chat.sendMessage(receiver,coach, Chat.checkChat(receiver, coach));
}
}