-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayer.java
422 lines (366 loc) · 8.29 KB
/
Player.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
import java.net.URL;
import java.sql.Date;
import java.text.SimpleDateFormat;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.Background;
import javafx.scene.layout.BackgroundImage;
import javafx.scene.layout.BackgroundPosition;
import javafx.scene.layout.BackgroundRepeat;
import javafx.scene.layout.BackgroundSize;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.scene.text.Text;
/**
*
* @author Alyza Diaz Rodriguez
*
*/
public class Player {
private String teamName;
private String name;
private int number;
private String flag;
private String position;
private String height;
private int weight;
private int experience;
private Date dob;
private int age;
private Image photo;
private ImageView view;
private ImageView copy;
private Image country;
private ImageView viewCountry;
private Button button;
private Button back;
private VBox vbox;
private Scene scene;
private BackgroundImage background;
private ClassLoader cl;
/**
* Initializes a new player with the following variables:
* @param a - team name
* @param b - name
* @param c - jersey number
* @param d - country/flag
* @param f - position
* @param g - height
* @param h - weight
* @param i - years of experience
* @param j - birthday
* @param k - age
*/
public Player(String a, String b, int c, String d, String f, String g, int h, int i, Date j, int k) {
teamName = a;
name = b;
number = c;
flag = d;
position = f;
height = g;
weight = h;
experience = i;
dob = j;
age = k;
button = new Button();
back = new Button("Back");
vbox = new VBox(10);
vbox.setAlignment(Pos.CENTER);
scene = new Scene(vbox, 900, 900);
setCountry(flag);
viewCountry = new ImageView(country);
cl = this.getClass().getClassLoader();
}
/**
* Will change the name of the player's team to a.
* @param a - team name
*/
public void setTeam(String a) {
teamName = a;
}
/**
* Returns the player's name
* @return
*/
public String getTeam() {
return teamName;
}
/**
* Change the player's name to b
* @param b - name
*/
public void setName(String b) {
name = b;
}
/**
* Returns the player's name
* @return
*/
public String getName() {
return name;
}
/**
* Sets the player's jersey number
* @param c - number
*/
public void setNumber(int c) {
number = c;
}
/**
* Returns the player's jersey number
* @return
*/
public int getNumber() {
return number;
}
/**
* Sets the player's country of origin
* @param d - flag
*/
public void setFlag(String d) {
flag = d;
}
/**
* Gets the player's country of origin
* @return
*/
public String getFlag() {
return flag;
}
/**
* Sets the player's game position
* @param f - position
*/
public void setPos(String f) {
position = f;
}
/**
* Returns the player's game position
* @return
*/
public String getPos() {
return position;
}
/**
* Sets player's height
* @param g - height
*/
public void setHeight(String g) {
height = g;
}
/**
* Gets players height
* @return
*/
public String getHeight() {
return height;
}
/**
* Sets the player's weight
* @param h - weight
*/
public void setWeight(int h) {
weight = h;
}
/**
* Gets the player's weight
* @return
*/
public int getWeight() {
return weight;
}
/**
* Sets the player's number of years of experience
* @param i - experience
*/
public void setExp(int i) {
experience = i;
}
/**
* Gets the player's number of years of experience
* @return
*/
public int getExp() {
return experience;
}
/**
* Sets the player's birthday
* @param j - dob
*/
public void setDOB(Date j) {
dob = j;
}
/**
* Gets the player's birthday
* @return
*/
public Date getDOB() {
return dob;
}
/**
* Sets the player's age
* @param k - age
*/
public void setAge(int k) {
age = k;
}
/**
* Gets the player's age
* @return
*/
public int getAge() {
return age;
}
/**
* Prints out all of a player's information
*/
public void print() {
System.out.printf("%s, %s #%d, %s, %s, height: %s, %d lbs, %d years of exp., ",
teamName, name, number, flag, position, height, weight, experience);
System.out.printf("%1$tA, %1$tB %1$tY,", dob);
System.out.printf(" %d years old\n", age);
}
/**
* Creates and sets the player's photo
*/
public void createPhoto(URL url) {
photo = new Image(url.toString());
view = new ImageView(photo);
view.setFitWidth(100);
view.setFitHeight(100);
//a copy of the player's headshot
copy = new ImageView(photo);
copy.setFitWidth(250);
copy.setFitHeight(250);
}
/**
* Gets the player's photo
* @return
*/
public ImageView getPhoto() {
return view;
}
/**
* Matches the player with their country flag image
* @param f - country abbreviation
*/
private void setCountry(String f) {
cl = this.getClass().getClassLoader();
switch(f) {
case "CAN":
country = new Image(cl.getResource("flags/can.png").toString());
break;
case "CZE":
country = new Image(cl.getResource("flags/cze.png").toString());
break;
case "FIN":
country = new Image(cl.getResource("flags/fin.png").toString());
break;
case "SVK":
country = new Image(cl.getResource("flags/svk.png").toString());
break;
case "SWE":
country = new Image(cl.getResource("flags/swe.png").toString());
break;
case "USA":
country = new Image(cl.getResource("flags/usa.png").toString());
}
}
/**
* Displays the player's country flag
* @return
*/
public ImageView getCountryFlag() {
return viewCountry;
}
/**
* Sets the player's button
* @param b
*/
public void setButton(Button b) {
button = b;
}
/**
* Returns the player's button
* @return
*/
public Button getButton() {
return button;
}
/**
* Returns the player's back button
* @return
*/
public Button getBack() {
return back;
}
/**
* Returns the player's VBox
* @return
*/
public VBox getBox() {
return vbox;
}
/*
* Returns the background image
*/
public BackgroundImage getBackground() {
return background;
}
/**
* Sets up the player's background with their action shot
*/
private void createBackG() {
String team = "";
switch(teamName) {
case "Bruins":
team = "bruins background.png";
break;
case "Blackhawks":
team = "hawks background.png";
break;
}
background = new BackgroundImage(new Image(cl.getResource("misc/"+team).toString(), 900, 900, false, true),
BackgroundRepeat.NO_REPEAT, BackgroundRepeat.NO_REPEAT, BackgroundPosition.CENTER,
BackgroundSize.DEFAULT);
vbox.setBackground(new Background(background));
}
/**
* Sets up the player's information page
*/
public void setup() {
Font bankFont = Font.loadFont(cl.getResource("misc/F25_Bank_Printer.otf").toString(), 15);
Font brushFont = Font.loadFont(cl.getResource("misc/brush.otf").toString(), 50);
Text tn = new Text(teamName);
tn.setFont(bankFont);
Text n = new Text(name);
n.setFont(brushFont);
Text j = new Text("#"+Integer.toString(number));
j.setFont(bankFont);
Text f = new Text("Country of Origin: "+flag);
f.setFont(bankFont);
Text p = new Text("Position: "+position);
p.setFont(bankFont);
Text h = new Text("Height: "+height);
h.setFont(bankFont);
Text e = new Text("Years of experience: "+Integer.toString(experience));
e.setFont(bankFont);
SimpleDateFormat form = new SimpleDateFormat("MM/dd/yyyy");
Text b = new Text("Birthday: "+form.format(dob));
b.setFont(bankFont);
Text a = new Text("Age: "+Integer.toString(age));
a.setFont(bankFont);
createBackG();
vbox.getChildren().addAll(viewCountry, copy, tn, n, j, f, p, h, e, b, a, back);
}
/**
* Returns the player's scene
* @return
*/
public Scene getScene() {
return scene;
}
}