-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jogador.java
64 lines (47 loc) · 1.33 KB
/
Jogador.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
package LP3.SuperTrunfo;
import java.util.ArrayList;
public class Jogador {
private String nome;
private int vitorias = 0;
private ArrayList<CartaSuperTrunfo> cartas;
public Jogador(String nome) {
this.nome = nome;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public int getVitorias() {
return vitorias;
}
public void setVitorias(int vitorias) {
this.vitorias = vitorias;
}
public ArrayList<CartaSuperTrunfo> getCartas() {
return cartas;
}
public void setCartas(ArrayList<CartaSuperTrunfo> cartas) {
this.cartas = cartas;
}
////////////////////////
public CartaSuperTrunfo getProximaCarta(){
return this.getCartas().remove(0);
}
// Este método retorna a primeira carta.
public void adicionarCarta(CartaSuperTrunfo carta){
this.getCartas().add(carta);
}
//Este método insere a carta no final das cartas.
public int getQuantidadeCartas(){
return this.getCartas().size();
}
public boolean isSemCartas(){
return this.getQuantidadeCartas() == 0;
}
//Este método retorna verdadeiro caso o jogador esteja sem cartas.
public void incrementaVitorias(){
this.vitorias ++;
}
}