-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
326 lines (271 loc) · 10.5 KB
/
Form1.cs
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
326
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
namespace PathAlgorithms
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
runDFS.Enabled = false;
runBFS.Enabled = false;
runAstar.Enabled = false;
select.Enabled = false;
prepareBoard();
}
int startX, startY, endX, endY;
void disableButtons()
{
runBFS.Enabled = false;
runDFS.Enabled = false;
runAstar.Enabled = false;
select.Enabled = false;
clear.Enabled = false;
button1.Enabled = false;
}
void enableButtons()
{
runBFS.Enabled = true;
runDFS.Enabled = true;
runAstar.Enabled = true;
select.Enabled = true;
clear.Enabled = true;
button1.Enabled = true;
}
private void CloseButton_Click(object sender, EventArgs e)
{
this.Close();
}
void prepareBoard()
{
board.BackgroundColor = Color.Black;
board.DefaultCellStyle.BackColor = Color.Black;
for(int i = 0; i < 19; i++)
{
board.Rows.Add();
}
foreach(DataGridViewTextBoxColumn c in board.Columns)
{
c.Width = board.Width / board.Columns.Count;
}
foreach(DataGridViewRow r in board.Rows)
{
r.Height = board.Height / board.Rows.Count;
}
}
public void wait(int milliseconds)
{
System.Windows.Forms.Timer timer1 = new System.Windows.Forms.Timer();
if (milliseconds == 0 || milliseconds < 0) return;
//Console.WriteLine("start wait timer");
timer1.Interval = milliseconds;
timer1.Enabled = true;
timer1.Start();
timer1.Tick += (s, e) =>
{
timer1.Enabled = false;
timer1.Stop();
};
while (timer1.Enabled)
{
Application.DoEvents();
}
}
Tuple<List<int>,List<int>> BuildWalls()
{
int height_SZ = board.Rows.Count;
int width_SZ = board.Columns.Count;
List<int> xWalls = new List<int>();
List<int> yWalls = new List<int>();
for (int i = 0; i < width_SZ; i++)
{
for (int j = 0; j < height_SZ; j++)
{
if (board[i, j].Style.BackColor == Color.Red)
{
xWalls.Add(i);
yWalls.Add(j);
}
if (board[i, j].Selected)
{
board[i, j].Selected = false;
}
}
}
return Tuple.Create(xWalls, yWalls);
}
void ColorTheBoard(List<Tuple<int, int>> path, bool clr)
{
disableButtons();
var toColor = Color.Orange;
var color2 = Color.Green;
/* If clr is true it means we are coloring the shortest path ( in case of BFS ) */
if (clr == true) toColor = color2;
int iterator = 0;
for (int currIT= 0; currIT < path.Count;currIT++ )
{
Tuple<int, int> x = path[currIT];
wait(70);
int xx = x.Item1;
int yy = x.Item2;
if (clr == true)
{
board[xx, yy].Value = iterator; //If shortest path then mark current steps
board[xx, yy].Style.BackColor = toColor;
}
if (xx == endX && yy == endY)
{
board[xx, yy].Style.BackColor = toColor;
board[xx, yy].Value = "ok!";
break;
}
else
{
if (currIT > 0 ) // color previous (not yellow)
{
Tuple<int, int> prevX = path[currIT - 1];
board[prevX.Item1, prevX.Item2].Style.BackColor = toColor;
}
if(board[xx, yy].Style.BackColor != toColor && clr==false) // if not colored then color it yellow (current)
{
board[xx, yy].Style.BackColor = Color.Yellow;
//board[xx, yy].Value = iterator;
}
}
iterator++;
}
clear.Enabled = true;
button1.Enabled = true;
}
private void Select_Click(object sender, EventArgs e)
{
int height_SZ = board.Rows.Count;
int width_SZ = board.Columns.Count;
for (int i = 0; i < width_SZ; i++)
{
for (int j = 0; j < height_SZ; j++)
{
if (board[i, j].Selected && board[i,j].Style.BackColor!= Color.Brown) {
board[i, j].Selected = false;
board[i, j].Style.BackColor = Color.Red;
}
}
}
}
// select start and end button
private void Button1_Click(object sender, EventArgs e)
{
try
{
startY = Int32.Parse(startLISTx.SelectedItem.ToString()) - 1;
startX = Int32.Parse(startLISTy.SelectedItem.ToString()) - 1;
endY = Int32.Parse(endLISTx.SelectedItem.ToString()) - 1;
endX = Int32.Parse(endLISTy.SelectedItem.ToString()) - 1;
if (startX == endX && startY == endY)
{
MessageBox.Show("Please check coordinates...");
}
else
{
board[startX, startY].Style.BackColor = Color.Brown;
board[startX, startY].Value = "start";
board[endX, endY].Style.BackColor = Color.Brown;
board[endX, endY].Value = "end";
enableButtons();
button1.Enabled = false;
startLISTx.ClearSelected();
startLISTy.ClearSelected();
endLISTx.ClearSelected();
endLISTy.ClearSelected();
}
}catch(Exception )
{
MessageBox.Show("Please check coordinates...");
}
}
private void RunBFS_Click(object sender, EventArgs e)
{
List<int> xWalls = new List<int>();
List<int> yWalls = new List<int>();
Tuple<List<int>, List<int>> walls = BuildWalls(); // calls the BuildWalls method
xWalls = walls.Item1;
yWalls = walls.Item2;
// BFS(startX,startY,ebdX,endY, row,col, (position of walls ))
BFS bfs = new BFS(startX, startY, endX, endY, 19, 20, xWalls, yWalls); // create BFS object
Tuple<List<Tuple<int, int>>, List<Tuple<int, int>>> paths = bfs.get_BFS_path(); // run BFS and get the paths (traversal and shortest)
List<Tuple<int, int>> path = paths.Item1;
List<Tuple<int, int>> shortestPath = paths.Item2;
//MessageBox.Show(path.Count.ToString());
ColorTheBoard(path, false); // colors the board
if (shortestPath.Count() == 0) {
MessageBox.Show("No path for the selected cells...");
clearBoard();
}
else
{
MessageBox.Show("Now showing the shortest path...");
ColorTheBoard(shortestPath, true);
}
pathCount.Text = (shortestPath.Count()-1).ToString()+ " steps";
}
private void RunAstar_Click(object sender, EventArgs e)
{
List<int> xWalls = new List<int>();
List<int> yWalls = new List<int>();
Tuple<List<int>, List<int>> walls = BuildWalls(); // calls the BuildWalls method
xWalls = walls.Item1;
yWalls = walls.Item2;
Astar astar = new Astar(startX, startY, endX, endY, 19, 20, xWalls, yWalls); // create A* object
Tuple<List<Tuple<int, int>>, List<Tuple<int, int>>> paths = astar.get_Astar_path(); // run A* and get the paths (traversal and shortest)
List<Tuple<int, int>> path = paths.Item1;
List<Tuple<int, int>> shortestPath = paths.Item2;
ColorTheBoard(path, false); // colors the board
if (shortestPath.Count() == 0)
{
MessageBox.Show("No path for the selected cells...");
clearBoard();
}
else
{
MessageBox.Show("Now showing the shortest path...");
ColorTheBoard(shortestPath, true);
}
pathCount.Text = (shortestPath.Count() - 1).ToString() + " steps";
}
private void RunDFS_Click(object sender, EventArgs e)
{
List<int> xWalls = new List<int>();
List<int> yWalls = new List<int>();
Tuple<List<int>, List<int>> walls = BuildWalls(); // calls the BuildWalls method
xWalls = walls.Item1;
yWalls = walls.Item2;
// (sX,Sy,eX,eY, row,col)
DFS dfs = new DFS(startX, startY, endX, endY, 19, 20, xWalls, yWalls); // create DFS object
List<Tuple<int, int>> path = dfs.get_DFS_path(); // run DFS get the cells traversed in BFS order
ColorTheBoard(path,false); // colors the board
pathCount.Text = (path.Count() - 1).ToString() + " steps";
}
void clearBoard()
{
button1.Enabled = true;
int height_SZ = board.Rows.Count;
int width_SZ = board.Columns.Count;
for (int i = 0; i < width_SZ; i++)
{
for (int j = 0; j < height_SZ; j++)
{
board[i, j].Style.BackColor = Color.Black;
board[i, j].Value = "";
}
}
// enableButtons();
}
private void Clear_Click(object sender, EventArgs e)
{
clearBoard();
}
}
}