-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyMap2DTest.java
More file actions
325 lines (292 loc) · 10.7 KB
/
MyMap2DTest.java
File metadata and controls
325 lines (292 loc) · 10.7 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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
package Exe.EX3;
import static org.junit.Assert.*;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.Test;
public class MyMap2DTest{
@Test
public void DrawSegmentTest() {
int[][] map1= new int[10][10]; //placement new array
int[][] map2= new int[10][10]; //placement new array
for(int x=0;x<10;x++) // for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++) // for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
map1[x][y]=-1;//reset the array to white
map2[x][y]=-1;//reset the array to white
}
}
MyMap2D _map1= new MyMap2D(map1);//placement
MyMap2D _map2 = new MyMap2D(map2);//placement
Point2D p1 = new Point2D(8,9);//placement
Point2D p2 = new Point2D(8,5);//placement
_map1.drawSegment(p1, p2, MyMap2D.BLACK);//use of segment function in black color
Point2D p3 = new Point2D(9,0);//placement
Point2D p4 = new Point2D(9,4);//placement
_map1.drawSegment(p3, p4, MyMap2D.BLACK);//use of segment function in black color
_map2.drawSegment(p1, p3, MyMap2D.BLACK);//use of segment function in black color
for(int x=0;x<10;x++) // for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++) // for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
assertEquals(_map1.getPixel(x,y),_map2.getPixel(x,y));
}
}
}
@Test
public void drawRectAndDrawSegmentTest() {
int[][] map1= new int[10][10]; //placement new array
int[][] map2= new int[10][10]; //placement new array
for(int x=0;x<10;x++) // for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++) // for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
map1[x][y]=-1;//reset the array to white
map2[x][y]=-1;//reset the array to white
}
}
MyMap2D _map1= new MyMap2D(map1);//placement
MyMap2D _map2 = new MyMap2D(map2);//placement
Point2D p2;//placement
Point2D p1;//placement
for(int y=0;y<10;y++) // for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
p1 = new Point2D(0,y);//placement new point
p2 = new Point2D(5,y);//placement new point
_map1.drawSegment(p1,p2,MyMap2D.BLACK);//use of segment function in black color
}
p1 = new Point2D(0,0);//placement new point
p2 = new Point2D(5,9);//placement new point
_map2.drawRect(p1, p2, MyMap2D.BLACK);//use of segment function in black color
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
assertEquals(_map1.getPixel(x,y),_map2.getPixel(x,y));//tests the rect and the segment
}
}
}
@Test
public void drawCircleTest() {
int[][] map1= new int[10][10]; //placement new array
int[][] map2= new int[10][10]; //placement new array
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
map1[x][y]=-1;//reset the array to white
map2[x][y]=-1;//reset the array to white
}
}
MyMap2D _map1= new MyMap2D(map1);
MyMap2D _map2 = new MyMap2D(map2);
Point2D p1 = new Point2D(5,5);//placement new point
double radius = 3; //placement
_map1.drawCircle(p1,radius ,MyMap2D.BLACK);//use of circle function in black color
Point2D p3 = new Point2D(3,3);//placement new point
Point2D p4 = new Point2D(7,7);//placement new point
_map2.drawRect(p3, p4, MyMap2D.BLACK);
_map2.setPixel(2,5, MyMap2D.BLACK);
_map2.setPixel(5,2, MyMap2D.BLACK);
_map2.setPixel(5,8, MyMap2D.BLACK);
_map2.setPixel(8,5, MyMap2D.BLACK);
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
assertEquals(_map1.getPixel(x,y),_map2.getPixel(x,y));
}
}
}
@Test
public void fillTest() {
int[][] map1= new int[10][10];//placement new array
int[][] map2= new int[10][10];//placement new array
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
map1[x][y]=-1;//reset the array to white
map2[x][y]=-1;//reset the array to white
}
}
MyMap2D _map1= new MyMap2D(map1);
MyMap2D _map2 = new MyMap2D(map2);
Point2D p1 = new Point2D(5,1);//placement new point
Point2D p2 = new Point2D(5,9);//placement new point
_map1.drawSegment(p1,p2 ,MyMap2D.BLACK);//use of segment function in black color
_map2.drawSegment(p1,p2 ,MyMap2D.BLACK);//use of segment function in black color
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
if(_map1.getPixel(x,y)==MyMap2D.WHITE)_map1.setPixel(x,y,2);
}
}
p1 = new Point2D(0,0);//placement new point
MyMap2D.P=p1;
_map2.fill(p1,2);
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
assertEquals(_map1.getPixel(x,y),_map2.getPixel(x,y));
}
}
}
@Test
public void fill2Test() {
int[][] map1= new int[10][10];//placement new array
int[][] map2= new int[10][10];//placement new array
for(int x=0;x<10;x++)
{
for(int y=0;y<10;y++)
{
map1[x][y]=-1;//reset the array to white
map2[x][y]=-1;//reset the array to white
}
}
MyMap2D _map1= new MyMap2D(map1);
MyMap2D _map2 = new MyMap2D(map2);
Point2D p1 = new Point2D(5,1);//placement new point
Point2D p2 = new Point2D(5,9);//placement new point
_map1.drawSegment(p1,p2 ,MyMap2D.BLACK);//use of segment function in black color
_map2.drawSegment(p1,p2 ,MyMap2D.BLACK);//use of segment function in black color
for(int x=0;x<10;x++)
{
for(int y=0;y<10;y++)
{
if(_map1.getPixel(x,y)==MyMap2D.WHITE)_map1.setPixel(x,y,2);
}
}
p1 = new Point2D(0,0);//placement new point
MyMap2D.P=p1;//placement new point
_map2.fill(p1.ix(),p1.iy(),2);
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
assertEquals(_map1.getPixel(x,y),_map2.getPixel(x,y));
}
}
}
@Test
public void shortestPathTest() {
int[][] map1= new int[10][10];//placement new array
int[][] map2= new int[10][10];//placement new array
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
map1[x][y]=-1;//reset the array to white
map2[x][y]=-1;//reset the array to white
}
}
MyMap2D _map1= new MyMap2D(map1);
MyMap2D _map2 = new MyMap2D(map2);
Point2D p1 = new Point2D(3,2);//placement new point
Point2D p2 = new Point2D(3,9);//placement new point
_map1.drawSegment(p1,p2,MyMap2D.color);
MyMap2D.PshortestPath=p1;
_map2.shortestPathDist(p1,p2);
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop in for loop that runs from 0 to the value of 10 and than add one each time to the Y
{
assertEquals(_map1.getPixel(x,y),_map2.getPixel(x,y));
}
}
}
@Test
public void GolTest() {
int[][] map1= new int[10][10];//placement new array
int[][] map2= new int[10][10];//placement new array
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
map1[x][y]=-1;//reset the array to white
map2[x][y]=-1;//reset the array to white
}
}
MyMap2D _map1= new MyMap2D(map1);
MyMap2D _map2 = new MyMap2D(map2);
_map1.setPixel(5,5, MyMap2D.BLACK);
_map1.setPixel(5,6, MyMap2D.BLACK);
_map1.setPixel(5,7, MyMap2D.BLACK);
_map2.setPixel(4,6, MyMap2D.BLACK);
_map2.setPixel(5,6, MyMap2D.BLACK);
_map2.setPixel(6,6, MyMap2D.BLACK);
_map2.nextGenGol();
for(int x=0;x<10;x++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
for(int y=0;y<10;y++)// for loop that runs from 0 to the value of 10 and than add one each time to the X
{
assertEquals(_map1.getPixel(x,y),_map2.getPixel(x,y));
}
}
}
}
/*
for(int x=0;x<10;x++)
{
for(int y=0;y<10;y++)
{
System.out.print(map1[x][y]+" ");
}
System.out.println();
}
System.out.println();
System.out.println();
System.out.println();
for(int x=0;x<10;x++)
{
for(int y=0;y<10;y++)
{
System.out.print(map2[x][y]+" ");
}
System.out.println();
}
System.out.println(_map1.getPixel(x,y)+" ,"+_map2.getPixel(x,y));
System.out.println(x+" ,"+y);
fail();
p1 = new Point2D(2,2);
p2 = new Point2D(2,9);
_map2.drawSegment(p1,p2,MyMap2D.BLACK);
p1 = new Point2D(4,2);
p2 = new Point2D(4,9);
_map2.drawSegment(p1,p2,MyMap2D.BLACK);
_map2.setPixel(3,1,MyMap2D.BLACK);
p1 = new Point2D(2,9);
p2 = new Point2D(4,9);
MyMap2D.color=MyMap2D.BLACK;
MyMap2D.PshortestPath=p1;
int shortestPath = _map1.shortestPathDist(p1,p2);
//_map1.fill(p1,MyMap2D.BLACK);
if(shortestPath<0)fail();
for(int x=0;x<10;x++)
{
for(int y=0;y<10;y++)
{
System.out.print(_map1.getPixel(x,y)+" ");
}
System.out.println();
}
System.out.println();
System.out.println();
System.out.println();
for(int x=0;x<10;x++)
{
for(int y=0;y<10;y++)
{
System.out.print(_map2.getPixel(x,y)+" ");
}
System.out.println();
}
for(int x=0;x<10;x++)
{
for(int y=0;y<10;y++)
{
assertEquals(_map1.getPixel(x,y),_map2.getPixel(x,y));
}
}
*/