-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
285 lines (252 loc) · 9.54 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
// 23513 - Diogo Lourenço
// 23521 - Gustavo Cruz
using System;
using System.Collections.Generic;
using System.IO;
using System.Windows.Forms;
namespace apMartianPathways
{
public partial class FrmPaths : Form
{
public FrmPaths()
{
InitializeComponent();
}
// ##### Beginning of Cities tab page #####
string citiesFile = null;
IHashTable<City> table;
private void btnOpenCitiesFile_Click(object sender, EventArgs e)
{
if (dlgOpenCitiesFile.ShowDialog() == DialogResult.Cancel)
return;
if (rbBucketHashing.Checked)
table = new BucketHashing<City>();
else
if (rbLinearProbing.Checked)
table = new LinearProbing<City>();
else
if (rbQuadraticProbing.Checked)
table = new QuadraticProbing<City>();
else
if (rbDoubleHashing.Checked)
table = new DoubleHashing<City>();
citiesFile = dlgOpenCitiesFile.FileName;
var file = new StreamReader(citiesFile);
while (!file.EndOfStream)
{
City city = new City();
city.ReadRegistry(file);
table.Insert(city);
}
ShowCities();
file.Close();
}
private void SaveCitiesFile()
{
if (citiesFile == null)
return;
var file = new StreamWriter(citiesFile);
List<City> cities = table.Content();
foreach (City c in cities)
c.WriteData(file);
file.Close();
}
private void FrmPaths_FormClosing(object sender, FormClosingEventArgs e)
{
SaveCitiesFile();
SaveRoutesFile();
}
private void btnInsert_Click(object sender, EventArgs e)
{
string cap = "Add city";
try
{
if (txtCity.Text.Trim() == string.Empty)
throw new ArgumentException();
City city = new City(txtCity.Text, (double)udX.Value, (double)udY.Value);
if (table.Insert(city))
{
string msg = "City added.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Information;
MessageBox.Show(msg, cap, btn, ico);
}
else
{
string msg = "City already added.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Exclamation;
MessageBox.Show(msg, cap, btn, ico);
}
}
catch (NullReferenceException)
{
string msg = "No opened file to add a city. Open a file first.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Error;
MessageBox.Show(msg, cap, btn, ico);
}
catch (ArgumentOutOfRangeException f)
{
string msg = f.Message;
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Exclamation;
MessageBox.Show(msg, cap, btn, ico);
}
catch (ArgumentException)
{
string msg = "City name can't be empty.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Exclamation;
MessageBox.Show(msg, cap, btn, ico);
}
}
private void btnRemove_Click(object sender, EventArgs e)
{
string cap = "Remove city";
try
{
City city = new City(txtCity.Text, (double)udX.Value, (double)udY.Value);
if (table.Remove(city))
{
string msg = "City removed.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Information;
MessageBox.Show(msg, cap, btn, ico);
}
else
{
string msg = "City not found.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Exclamation;
MessageBox.Show(msg, cap, btn, ico);
}
}
catch (NullReferenceException)
{
string msg = "No opened file to remove a city. Open a file first.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Error;
MessageBox.Show(msg, cap, btn, ico);
}
}
private void btnSearch_Click(object sender, EventArgs e)
{
string cap = "Search city";
try
{
City city = new City(txtCity.Text, (double)udX.Value, (double)udY.Value);
if (table.Exists(city, out _))
{
string msg = "City found.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Information;
MessageBox.Show(msg, cap, btn, ico);
}
else
{
string msg = "City not found.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Exclamation;
MessageBox.Show(msg, cap, btn, ico);
}
}
catch (NullReferenceException)
{
string msg = "No opened file to search for a city. Open a file first.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Error;
MessageBox.Show(msg, cap, btn, ico);
}
}
private void btnList_Click(object sender, EventArgs e)
{
string cap = "List cities";
try
{
ShowCities();
}
catch (NullReferenceException)
{
string msg = "No opened file to list cities. Open a file first.";
MessageBoxButtons btn = MessageBoxButtons.OK;
MessageBoxIcon ico = MessageBoxIcon.Error;
MessageBox.Show(msg, cap, btn, ico);
}
}
private void ShowCities()
{
lsbCities.Items.Clear();
var cities = table.Content();
foreach (City c in cities)
lsbCities.Items.Add(c);
}
// ##### End of Cities tab page #####
// ##### Beginning of Routes tab page #####
string routesFile = null;
City[] cities; // Array of ordered cities from cities file
int[,] citiesAdjacency; // Matrix of distances between adjacent cities from routes file
private void tpRoutes_Enter(object sender, EventArgs e)
{
SaveCitiesFile();
// Add cities to an array of cities
// Order array by name
/*
* Based on the ordered array of cities:
* Update cbxOrigin
* Update cbxDestiny
*/
}
private void SaveRoutesFile()
{
throw new NotImplementedException();
// Save routes matrix state to the routes file
}
private void ShowRoutes()
{
throw new NotImplementedException();
// Update dgvRoutes with all the routes found for cities A and B
}
private void ShowBestRoute()
{
throw new NotImplementedException();
// Update dgvBestRoute with the best route found for cities A and B
}
private void btnOpenRoutesFile_Click(object sender, EventArgs e)
{
throw new NotImplementedException();
routesFile = dlgOpenRoutesFile.FileName;
var file = new StreamReader(routesFile);
/*
* Read file line by line
* Save distances to routes array
*/
}
private void btnAddConnection_Click(object sender, EventArgs e)
{
throw new NotImplementedException();
// Add connection between two cities selected from cbxOrigin and cbxDestiny
// Addition should be made to the routes matrix
}
private void btnRemoveConnection_Click(object sender, EventArgs e)
{
throw new NotImplementedException();
// Remove connection between two cities selected from cbxOrigin and cbxDestiny
// Deletion should be made to the routes matrix
}
private void btnUpdateConnection_Click(object sender, EventArgs e)
{
throw new NotImplementedException();
// Update connection between two cities selected from cbxOrigin and cbxDestiny
}
private void btnSearchRoute_Click(object sender, EventArgs e)
{
throw new NotImplementedException();
// Search for all the routes between two cities selected from cbxOrigin and cbxDestiny
// Get the best route
ShowRoutes();
ShowBestRoute();
}
// ##### End of Routes tab page #####
}
}