-
Notifications
You must be signed in to change notification settings - Fork 0
/
SudokuStore.java
executable file
·127 lines (113 loc) · 4.36 KB
/
SudokuStore.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
import java.io.*;
import java.util.Scanner;
import java.util.ArrayList;
public class SudokuStore {
/**
* Se SudokuDS.txt non esiste chiama il metodo per crearlo
* e legge i dati dal file
*
* @return lista di Sudoku Grid
*/
static ArrayList<SudokuGrid> getStore(){
File SudokuDSFile = new File("SudokuDS.txt");
if(!SudokuDSFile.exists()) createSudokuDS(SudokuDSFile);
return readSudokuDS(SudokuDSFile);
}
/**
* Crea il file SudokuDS.txt
*
* @param SudokuDS gli viene passato il file
*/
static void createSudokuDS(File SudokuDS){
try {
SudokuDS.createNewFile();
} catch (IOException e) {}
}
/**
* Legge dal file SudokuDS.txt e inserisci i dati in una lista di Sudoku Grid
*
* @param SudokuDSFile
* @return
*/
static ArrayList<SudokuGrid> readSudokuDS(File SudokuDSFile){
ArrayList<SudokuGrid> SudokuDS = new ArrayList<SudokuGrid>();
try {
Scanner SudokuDSReader = new Scanner(SudokuDSFile);
while (SudokuDSReader.hasNextLine()) {
int id = Integer.parseInt(SudokuDSReader.nextLine());
int N = Integer.parseInt(SudokuDSReader.nextLine());
int dif = Integer.parseInt(SudokuDSReader.nextLine());
char status = SudokuDSReader.nextLine().toCharArray()[0];
SudokuCell cells[][] = new SudokuCell[N][N];
for(int row = 0; row < N; row++) {
String line = SudokuDSReader.nextLine();
String data[] = line.split(" ");
for(int col = 0; col < N; col++) {
cells[row][col] = new SudokuCell(Integer.parseInt(data[col]), false);
}
}
for(int row = 0; row < N; row++) {
String data[] = SudokuDSReader.nextLine().split(" ");
for(int col = 0; col < N; col++) {
cells[row][col].setEditable(data[col].equals("T") ? true : false);
}
}
SudokuGrid tmp = new SudokuGrid(id, dif, N, 'U');
tmp.resetGrid();
tmp.setCells(cells);
tmp.setStatus(status);
SudokuDS.add(tmp);
}
SudokuDSReader.close();
} catch (IOException e) {}
return SudokuDS;
}
/**
* Salva le informazioni del gioco nel file SudokuDS.txt
*
* @param SudokuDS Lista di Studoku Grid da salvare
*/
static void SaveSudokuDS(ArrayList<SudokuGrid> SudokuDS){
try {
FileWriter SudokuWriter = new FileWriter("SudokuDS.txt");
for(int i = 0; i < SudokuDS.size(); i++){
SudokuGrid tmp = SudokuDS.get(i);
SudokuWriter.write(tmp.getId() + "\n");
SudokuWriter.write(tmp.getN() + "\n");
SudokuWriter.write(tmp.getDifficulty() + "\n");
SudokuWriter.write(tmp.getStatus() + " " + "\n");
for(int row = 0; row < tmp.getN(); row++){
String tmpVal = "";
for(int col = 0; col < tmp.getN(); col++){
tmpVal += tmp.getCells()[row][col].getValue() + " ";
}
SudokuWriter.write(tmpVal + "\n");
}
for(int row = 0; row < tmp.getN(); row++){
String tmpVal = "";
for(int col = 0; col < tmp.getN(); col++){
tmpVal += (tmp.getCells()[row][col].getIsEditable() ? "T" : "F") + " ";
}
SudokuWriter.write(tmpVal + "\n");
}
}
SudokuWriter.close();
} catch (IOException e) {}
}
static int getPositionFromId(ArrayList<SudokuGrid> SudokuDS, int id){
for(int i = 0; i < SudokuDS.size(); i++){
if(id == SudokuDS.get(i).getId()) return i;
}
return -1;
}
static int nextId(ArrayList<SudokuGrid> SudokuDS){
int lastId[] = {-1, 0}; // 0 postion 1 value
for(int i = 0; i < SudokuDS.size(); i++){
if(lastId[1] < SudokuDS.get(i).getId()){
lastId[1] = SudokuDS.get(i).getId();
lastId[0] = i;
}
}
return lastId[1] + 1;
}
}