-
Notifications
You must be signed in to change notification settings - Fork 0
/
MinesweeperGames.java
executable file
·72 lines (56 loc) · 1.61 KB
/
MinesweeperGames.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
import java.util.ArrayList;
public class MinesweeperGames {
/**
* il game che viene fatto vedere all'utente (quello che sta giocando)
*/
private int IDActiveGame = -1;
private ArrayList<MinesweeperGame> listGame;
public MinesweeperGames(ArrayList<MinesweeperGame> listGame) {
this.listGame = listGame;
}
public ArrayList<MinesweeperGame> getListGame() {
return listGame;
}
/**
* permette di selezionare un game tramite id
* @param id
* @return
*/
public MinesweeperGame getGameById(int id) {
for(int i = 0; i < listGame.size(); i++){
if(listGame.get(i).getId() == id){
return listGame.get(i);
}
}
return null;
}
public void add(MinesweeperGame game){
listGame.add(game);
}
public void setGame(int id, MinesweeperGame game) {
listGame.set(id, game);
}
/**
* restituisce il primo id disponibile per generare un nuovo game
*
* @return
*/
public int generateNewID(){
int max;
if(listGame.size() != 0)
max = listGame.get(0).getId();
else
return 1;
for(int i = 0; i < listGame.size(); i++) {
if(listGame.get(i).getId() > max)
max = listGame.get(i).getId();
}
return max + 1;
}
public void setIDActiveGame(int activeGame) {
this.IDActiveGame = activeGame;
}
public int getIDActiveGame() {
return IDActiveGame;
}
}