-
Notifications
You must be signed in to change notification settings - Fork 0
/
Zoo.java
2506 lines (2482 loc) · 144 KB
/
Zoo.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
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package com.ioannis.unipiZoo;
import java.util.Scanner;
import java.io.FileOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.io.ObjectInputStream;
import java.util.ArrayList;
public class Zoo extends Animal {
public static void console() //first menu
{
System.out.println("");
System.out.println("please select from below:");
System.out.println("");
System.out.println("1 - display available animals");
System.out.println("2 - insert new animal");
System.out.println("3 - search animal by its name");
System.out.println("4 - search animal by its id");
System.out.println("5 - edit animal by its id");
System.out.println("6 - delete animal by its id");
System.out.println("7 - play with the animals");
System.out.println("8 - information about our animals (wikipedia) and also see them");
System.out.println("9 - exit");
System.out.println(":) type hidden number for surprise");
System.out.println(" (hint: the number are the first three digits after the comma of the pi number)");
}
/*these inner classes below are used in order to return multiple values so that I can store each of these value
inside the creation classes below (newChimpanzee, newDolphin etc.)*/
//static so they can be called from a static context (main)
static class MultipleStore {
static String name;
static String homotaxy;
static double weight;
static int age;
MultipleStore(String name,String homotaxy,double weight,int age)
{
this.name = name;
this.homotaxy = homotaxy;
this.weight = weight;
this.age = age;
}
}
static class ReturnMultiple {
MultipleStore getValues()
{
Scanner scanner = new Scanner(System.in);
System.out.print("enter a name: ");
String name = scanner.next();
System.out.print("enter its homotaxy: ");
String homotaxy = scanner.next();
System.out.print("enter its weight (double-type in kilos): ");
double weight = scanner.nextDouble();
System.out.print("enter its max average age (integer): ");
int age = scanner.nextInt();
return new MultipleStore(name,homotaxy,weight,age);
}
}
/*each method below creates a new instance of the class declared and after it is saved inside the ArrayList with all animals*/
public Chimpanzee newChimpanzee()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its intelligence level (integer): ");
int intelligenceLevel = scanner.nextInt();
Chimpanzee chimp = new Chimpanzee(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,intelligenceLevel);
chimp.addAnimal(chimp);
return chimp;
}
public Dolphin newDolphin()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its playfulness level (integer): ");
int playfullness = scanner.nextInt();
Dolphin dolphin = new Dolphin(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,playfullness);
dolphin.addAnimal(dolphin);
return dolphin;
}
public Eagle newEagle()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its wings length (double): ");
double wingsLength = scanner.nextDouble();
Eagle eagle = new Eagle(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,wingsLength);
eagle.addAnimal(eagle);
return eagle;
}
public Giraffe newGiraffe()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its height (double): ");
double height = scanner.nextDouble();
Giraffe giraffe = new Giraffe(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,height);
giraffe.addAnimal(giraffe);
return giraffe;
}
public Kangaroo newKangaroo()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("is it a mother (enter 'true' or 'false'): ");
boolean mother = scanner.nextBoolean();
Kangaroo kangaroo = new Kangaroo(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,mother);
kangaroo.addAnimal(kangaroo);
return kangaroo;
}
public Lion newLion()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its wings length (double): ");
String gender = scanner.next();
Lion lion = new Lion(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,gender);
lion.addAnimal(lion);
return lion;
}
public Panda newPanda()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter number of bamboo he has (integer): ");
int bamboo = scanner.nextInt();
Panda panda = new Panda(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,bamboo);
panda.addAnimal(panda);
return panda;
}
public Penguin newPenguin()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its color: ");
String color = scanner.next();
Penguin penguin = new Penguin(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,color);
penguin.addAnimal(penguin);
return penguin;
}
public Panther newPanther()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its average velocity (double): ");
double velocity = scanner.nextDouble();
Panther panther = new Panther( MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,velocity);
panther.addAnimal(panther);
return panther;
}
public Rhinoceros newRhinoceros()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its horn length (double): ");
double hornLength = scanner.nextDouble();
Rhinoceros rhinoceros = new Rhinoceros(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,hornLength);
rhinoceros.addAnimal(rhinoceros);
return rhinoceros;
}
public Snake newSnake()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its length (double): ");
double length = scanner.nextDouble();
Snake snake = new Snake(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,length);
snake.addAnimal(snake);
return snake;
}
public Spider newSpider()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its number of eyes (integer): ");
int eyesNumber = scanner.nextInt();
Spider spider = new Spider(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,eyesNumber);
spider.addAnimal(spider);
return spider;
}
public Zebra newZebra()
{
new ReturnMultiple().getValues();
Scanner scanner = new Scanner(System.in);
System.out.print("enter its number of stripes (int): ");
int stripesNumber = scanner.nextInt();
Zebra zebra = new Zebra(MultipleStore.name,MultipleStore.homotaxy,
MultipleStore.weight,MultipleStore.age,stripesNumber);
zebra.addAnimal(zebra);
return zebra;
}
public void showAnimals()
{
System.out.println("animals we already have:");
System.out.println("1 - chimpanzee");
System.out.println("2 - dolphin");
System.out.println("3 - eagle");
System.out.println("4 - kangaroo");
System.out.println("5 - lion");
System.out.println("6 - panda");
System.out.println("7 - penguin");
System.out.println("8 - rhinoceros");
System.out.println("9 - snake");
System.out.println("10 - spider");
System.out.println("**************");
System.out.println("animals we can bring:");
System.out.println("11 - giraffe");
System.out.println("12 - panther");
System.out.println("13 - zebra");
}
//with the method below we choose which animal will be instantiated
public void animalChoice()
{
System.out.println("");
System.out.println("choose animal");
System.out.println("-------------");
showAnimals();
Scanner scanner = new Scanner(System.in);
int animalChoice = scanner.nextInt();
switch (animalChoice) {
case 1:
newChimpanzee();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 2:
newDolphin();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 3:
newEagle();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 4:
newGiraffe();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 5:
newKangaroo();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 6:
newLion();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 7:
newPanda();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 8:
newPanther();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 9:
newPenguin();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 10:
newRhinoceros();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 11:
newSnake();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 12:
newSpider();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case 13:
newZebra();
System.out.println("success");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
default:
System.out.println("your input does not match none of given options");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
//the method below searches for an animal by its name inside the 'animals' array list
public String searchByName()
{
Scanner scanner = new Scanner(System.in);
System.out.print("enter the name of the animal you want to search: ");
String name = scanner.nextLine();
for (var animal:animals)
{
if (name.equals(animal.getName()))
{
System.out.println(animal);
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "animal found\n";
}
else
{
System.out.println("animal not found");
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "";
}
}
return "error";
}
//the method below searches for an animal by its id inside the 'animals' array list
public String searchByID()
{
Scanner scanner = new Scanner(System.in);
System.out.print("enter the id of the animal you want to search: ");
String id = scanner.nextLine();
for (var animal:animals)
{
if (id.equals(animal.getId()))
{
System.out.println(animal);
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "animal found\n";
}
else
{
System.out.println("animal not found");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "";
}
}
return "error";
}
//the method below deletes an animal by its id inside the 'animals' array list
public void deleteByID()
{
Scanner scanner = new Scanner(System.in);
System.out.print("enter the id of the animal you want to delete: ");
String id = scanner.nextLine();
outer: for (var animal:animals)
{
if (id.equals(animal.getId()))
{
animals.remove(animal); //delete it from the array with animals
animal = null; //set reference to that specific animal to null, so it deletes
System.out.println("animal deleted");
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break outer;
}
else
{
System.out.println("error");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
//the method below edits an animal by its id inside the 'animals' array list
public void editAnimal()
{
Scanner scanner1 = new Scanner(System.in);
System.out.print("enter the id of the animal you want to edit: ");
String id = scanner1.nextLine();
for (var animal: animals)
{
if (!(id.equals(animal.getId())))
System.out.println("animal not found");
else if (id.equals(animal.getId()))
{
Scanner scanner2 = new Scanner(System.in);
System.out.println("would you ike to change its name?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice2 = scanner2.nextLine();
switch (choice2){
case "y":
Scanner scannerName = new Scanner(System.in);
System.out.print("enter new name: ");
String newName = scannerName.nextLine();
animal.setName(newName);
System.out.println("success");
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
System.out.println("");
System.out.println("would you ike to change its homotaxy?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice3 = scanner2.nextLine();
switch (choice3){
case "y":
Scanner scannerName = new Scanner(System.in);
System.out.print("enter new homotaxy: ");
String newHomotaxy = scannerName.nextLine();
animal.setHomotaxy(newHomotaxy);
System.out.println("success");
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
System.out.println("");
System.out.println("would you ike to change its weight?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice4 = scanner2.nextLine();
switch (choice4){
case "y":
Scanner scannerName = new Scanner(System.in);
System.out.print("enter new weight (double): ");
double newWeight = scannerName.nextDouble();
animal.setWeight(newWeight);
System.out.println("success");
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
System.out.println("");
System.out.println("would you ike to change its average max age?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice5 = scanner2.nextLine();
switch (choice5){
case "y":
Scanner scannerName = new Scanner(System.in);
System.out.print("enter new average max age (integer): ");
int newAge = scannerName.nextInt();
animal.setAge(newAge);
System.out.println("success");
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
System.out.println("");
if ((animal.getClassName()).equals("chimpanzee")) {
System.out.println("current intelligence level: " + animal.getIntelligenceLevel());
System.out.println("would you like to change its intelligence level?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new intelligence level (integer): ");
int intelligenceLevel = scanner2.nextInt();
animal.setIntelligenceLevel(intelligenceLevel);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("dolphin")) {
System.out.println("current playfulness level: " + getPlayfulness());
System.out.println("would you like to change its playfulness level?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new playfulness level (integer): ");
int playfulness = scanner2.nextInt();
animal.setPlayfulness(playfulness);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("eagle")) {
System.out.println("current wings length: " + getWingsLength());
System.out.println("would you like to change its wings length?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new wings length (double): ");
double wingsLength = scanner2.nextDouble();
animal.setWingsLength(wingsLength);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("kangaroo")) {
System.out.println("is she a mother? - " + animal.getMother());
System.out.println("would you like to change its state of being or not a mother?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
boolean mother = false;
if (animal.getMother()) {
animal.setMother(mother);
System.out.println("success");
} else if (!(animal.getMother())) System.out.println("she is already a mother");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("lion")) {
System.out.println("current gender: " + animal.getGender());
System.out.println("would you like to change its gender?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
if ((animal.getGender()).equals("male"))
animal.setGender("female");
else if ((animal.getGender()).equals("female"))
animal.setGender("male");
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("panda")) {
System.out.println("current number of bamboo it owns: " + getBamboo());
System.out.println("would you like to change of number of bamboo it owns?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new number of bamboo he own (integer): ");
int newBamboos = scanner2.nextInt();
animal.setBamboo(newBamboos);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("penguin")) {
System.out.println("current color: " + getColor());
System.out.println("would you like to change its color?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new color: ");
String newColor = scanner2.nextLine();
animal.setColor(newColor);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("rhinoceros")) {
System.out.println("current horn length: " + getHornLength());
System.out.println("would you like to change its horn length?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new horn length (double): ");
double newHornLength = scanner2.nextDouble();
animal.setHornLength(newHornLength);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("snake")) {
System.out.println("current length: " + getLength());
System.out.println("would you like to change its length?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new length (double): ");
double newLength = scanner2.nextDouble();
animal.setLength(newLength);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("spider")) {
System.out.println("current eyes number: " + getEyesNumber());
System.out.println("would you like to change its eyes number?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new eyes number (integer): ");
int newEyesNumber = scanner2.nextInt();
animal.setEyesNumber(newEyesNumber);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("giraffe")) {
System.out.println("current height: " + getHeight());
System.out.println("would you like to change its height?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new height (double): ");
double newHeight= scanner2.nextDouble();
animal.setHeight(newHeight);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("panther")) {
System.out.println("current velocity: " + getVelocity());
System.out.println("would you like to change its velocity?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new veocity (double): ");
double newVelocity= scanner2.nextDouble();
animal.setVelocity(newVelocity);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
if ((animal.getClassName()).equals("zebra")) {
System.out.println("current number of stripes: " + getStripesNumber());
System.out.println("would you like to change its stripes number?");
System.out.print("type 'y' for yes and 'n' for no: ");
String choice = scanner1.nextLine();
switch (choice) {
case "y":
System.out.println("enter new stripes number (integer): ");
int newStripesNumber= scanner2.nextInt();
animal.setStripesNumber(newStripesNumber);
System.out.println("success");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
case "n":
break;
default:
System.out.println("wrong input");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
break;
}
}
}
}
}
//the method below shows information about the animals and also ascii pictures of them
public static void animalInformation()
{
Scanner scanner = new Scanner(System.in);
System.out.println("select an animal from below");
new Zoo().showAnimals();
System.out.println("enter the number of the animal you are interested in: ");
int number = scanner.nextInt();
switch (number) {
case 1:
System.out.println(" __,__\n" +
" .--. .-\" \"-. .--.\n" +
" / .. \\/ .-. .-. \\/ .. \\\n" +
" | | '| / Y \\ |' | |\n" +
" | \\ \\ \\ 0 | 0 / / / |\n" +
" \\ '- ,\\.-\"`` ``\"-./, -' /\n" +
" `'-' /_ ^ ^ _\\ '-'`\n" +
" .--'| \\._ _./ |'--. \n" +
" /` \\ \\ `~` / / `\\\n" +
" / '._ '---' _.' \\\n" +
" / '~---~' | \\\n" +
" / _. \\ \\\n" +
" / .'-./`/ .'~'-.|\\ \\\n" +
" / / `\\: / `\\'. \\\n" +
"/ | ; | '.`; /\n" +
"\\ \\ ; \\ \\/ /\n" +
" '. \\ ; \\ \\ ` /\n" +
" '._'. \\ '. | ;/_\n" +