-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolver.java
More file actions
240 lines (185 loc) · 5.83 KB
/
Solver.java
File metadata and controls
240 lines (185 loc) · 5.83 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
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
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import javax.swing.SwingUtilities;
public class Solver {
private ArrayList<TComponent> solutions;
public Solver(Parser p, boolean rotate, boolean reflect){
solutions = new ArrayList<TComponent>();
TComponent soluB = new TComponent();
Iterator iter = p.getMainBoard().getComp().iterator();
while(iter.hasNext()){
Grid ng = ((Grid)iter.next());
soluB.add(new Grid(ng.getRow(), ng.getCol(), '.'));
}
if(p.isMainSingle()){
putOnBoard2(p.getMainBoard(), p.getTiles(), soluB, 0, 'A', rotate, reflect);
}
else{
putOnBoard(p.getMainBoard(), p.getTiles(), soluB, 0, 'A', rotate, reflect);
}
}
public ArrayList<TComponent> getSolutions(){
return solutions;
}
public void removeDuplicates(){
for(int i = 0; i < solutions.size(); i++){
for(int j = 0; j < i; j++){
if(solutions.get(i).equals(solutions.get(j))){
solutions.get(i).clear();
break;
}
}
}
for(int k = solutions.size()-1; k >= 0; k--){
if(solutions.get(k).isClear()){
solutions.remove(k);
}
}
}
public void putBoard(TComponent mainb, ArrayList<TComponent> tt, TComponent solutionb, int depth, char tag){
if(depth >= tt.size())
return;
TComponent temp = tt.get(depth);
for ( int i = 0; i <= (mainb.getRight() -temp.getRight()); i++ ){
for ( int j = 0; j <= (mainb.getBottom() -temp.getBottom()); j++ ){
}
}
}
public void putOnBoard(TComponent mainb, ArrayList<TComponent> tt, TComponent solutionb,
int depthi, char depth, boolean rotateFlag, boolean reflectflag){
if(depthi >= tt.size())
return;
ArrayList<TComponent> varTiles = new ArrayList<TComponent>();
TComponent org = tt.get(depthi);
varTiles.add(org);
if( (!(org.isRLSym() && org.isTBSym()))){
if (rotateFlag == true){
TComponent rtt90 = new TComponent(org.rotate90());
rtt90.update();
varTiles.add(rtt90);
TComponent rtt180 = new TComponent(org.rotate180());
rtt180.update();
varTiles.add(rtt180);
TComponent rtt270 = new TComponent(org.rotate270());
rtt270.update();
varTiles.add(rtt270);
}
}
if( reflectflag){
if (!(org.isRLSym())){
TComponent rlR = new TComponent(org.rlReflect());
rlR.update();
varTiles.add(rlR);
}
if(!(org.isTBSym())){
TComponent tbR = new TComponent(org.tbReflect());
tbR.update();
varTiles.add(tbR);
}
}
TComponent solutioncopy;
for (int k = 0; k < varTiles.size(); k++){
TComponent temp = varTiles.get(k);
for ( int i = 0; i <= (mainb.getRight() -temp.getRight()); i++ ){
for ( int j = 0; j <= (mainb.getBottom() -temp.getBottom()); j++ ){
solutioncopy = new TComponent(solutionb.getComp());
Iterator iter = temp.getComp().iterator();
boolean flag = true;
while(iter.hasNext()){
Grid nextG = (Grid)iter.next();
Grid mainbG = mainb.getGrid((nextG.getRow()+i), (nextG.getCol()+j));
Grid soluG = solutioncopy.getGrid((nextG.getRow()+i), (nextG.getCol()+j));
if(mainbG.getValue()!=nextG.getValue() || (!soluG.isClear())){
flag = false;
break;
}
}
if(flag == true){
Iterator iterc = temp.getComp().iterator();
while(iterc.hasNext()){
Grid nextGc = (Grid)iterc.next();
solutioncopy.getGrid((nextGc.getRow()+i), (nextGc.getCol()+j)).setValue(depth);
}
if(depthi == (tt.size()-1))
solutions.add(solutioncopy);
char depthc = depth;
depthc++;
int depthic = depthi+1;
putOnBoard(mainb, tt, solutioncopy, depthic, depthc, rotateFlag, reflectflag);
}
}
}
}
}
public void putOnBoard2(TComponent mainb, ArrayList<TComponent> tt, TComponent solutionb,
int depthi, char depth, boolean rotateFlag, boolean reflectflag){
if(depthi >= tt.size())
return;
ArrayList<TComponent> varTiles = new ArrayList<TComponent>();
TComponent org = tt.get(depthi);
varTiles.add(org);
if( (!(org.isRLSym() && org.isTBSym())) && rotateFlag){
TComponent rtt90 = new TComponent(org.rotate90());
rtt90.update();
varTiles.add(rtt90);
TComponent rtt180 = new TComponent(org.rotate180());
rtt180.update();
varTiles.add(rtt180);
TComponent rtt270 = new TComponent(org.rotate270());
rtt270.update();
varTiles.add(rtt270);
}
if( reflectflag){
if (!(org.isRLSym())){
TComponent rlR = new TComponent(org.rlReflect());
rlR.update();
varTiles.add(rlR);
}
if(!(org.isTBSym())){
TComponent tbR = new TComponent(org.tbReflect());
tbR.update();
varTiles.add(tbR);
}
}
TComponent solutioncopy;
for (int k = 0; k < varTiles.size(); k++){
TComponent temp = varTiles.get(k);
for ( int i = 0; i <= (mainb.getRight() -temp.getRight()); i++ ){
for ( int j = 0; j <= (mainb.getBottom() -temp.getBottom()); j++ ){
solutioncopy = new TComponent(solutionb.getComp());
Iterator iter = temp.getComp().iterator();
boolean flag = true;
while(iter.hasNext()){
Grid nextG = (Grid)iter.next();
Grid soluG = solutioncopy.getGrid((nextG.getRow()+i), (nextG.getCol()+j));
if(!soluG.isClear()){
flag = false;
break;
}
}
if(flag == true){
Iterator iterc = temp.getComp().iterator();
while(iterc.hasNext()){
Grid nextGc = (Grid)iterc.next();
solutioncopy.getGrid((nextGc.getRow()+i), (nextGc.getCol()+j)).setValue(depth);
}
if(depthi == (tt.size()-1))
solutions.add(solutioncopy);
char depthc = depth;
depthc++;
int depthic = depthi+1;
putOnBoard2(mainb, tt, solutioncopy, depthic, depthc , rotateFlag, reflectflag);
}
}
}
}
}
public void printSolution(){
System.out.println("printSolution");
for(int i = 0; i < solutions.size(); i++){
solutions.get(i).print();
System.out.println("-------------");
}
}
}