-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeam.java
More file actions
177 lines (135 loc) · 4.2 KB
/
Copy pathTeam.java
File metadata and controls
177 lines (135 loc) · 4.2 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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package nbafantasycenter;
import java.io.Serializable;
/**
*
* @author JackHotaling
*/
public class Team implements Serializable{
private User user;
public User getUser(){
return user;
}
private League league;
private String teamName = "undetermined";
private int wins = 0;
private int losses = 0;
private int rank = 0;
//private Pfrontcourt[] frontCourtList = new Pfrontcourt[3];
//private Pguard[] guardList = new Pguard[2];
//vs
//IF HAVE TIME
private Player[] playerArray = new Player[5];
private int fCount;
private int gCount;
public int getFCount() {
return fCount;
}
public int getGCount() {
return gCount;
}
public Player[] getPlayerArray(){
return playerArray;
}
private int availableNbaPts = 200;
public int getAvailableNbaPts(){
return availableNbaPts;
}
private String teamStatus = "In Progress";
public void setTeamStatus(String status){
teamStatus = status;
}
public String getTeamStatus (){
return teamStatus;
}
public Team(User user, League league){
this.user = user;
this.league = league;
}
public Team(){}
public int getRank() {
return rank;
}
public void setRank(int rank) {
this.rank = rank;
}
public String getTeamName() {
return teamName;
}
public void setTeamName(String teamName) {
this.teamName = teamName;
}
public int getWins() {
return wins;
}
public void setWins(int wins) {
this.wins = wins;
}
public int getLosses() {
return losses;
}
public void setLosses(int losses) {
this.losses = losses;
}
public double getTeamPerformPoints() {
double sum = 0;
for (Player player : playerArray) {
sum += player.getPerformPoints();
}
return sum;
}
public void addWin() {
wins++;
}
public void addLoss() {
losses++;
}
public boolean addPlayer(Player player){ //not allowed to add the same player + check for max players
for(int i = 0; i<playerArray.length; i++){
if(playerArray[i] == null){
if ((player != playerArray[0])&&(player != playerArray[1])&&(player != playerArray[2])&&(player != playerArray[3])&&(player != playerArray[4])){ // ensure no duplicate players
// System.out.print("player: "+player.getPlayerName());
// System.out.print("player: "+playerArray[i].getPlayerName());
playerArray[i] = player;
availableNbaPts -= player.getNbaPts();
System.out.print("?....."+playerArray[i].getPlayerName()); // testing
if(player instanceof Pfrontcourt){
fCount++;
} else {
gCount++;
}
return true;
}
return false;
}
}
return false;
}
public boolean dropPlayer(Player player){
if(player instanceof Pfrontcourt){
for(int i = 0; i<playerArray.length; i++){
if(playerArray[i]==player){
playerArray[i] = null;
availableNbaPts += player.getNbaPts();
fCount--;
return true;
}
}
}
if(player instanceof Pguard){
for(int i = 0; i<playerArray.length; i++){
if(playerArray[i]==player){
playerArray[i] = null;
availableNbaPts += player.getNbaPts();
gCount--;
return true;
}
}
}
return false;
}
}