-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainWindow.xaml.cs
454 lines (394 loc) · 14.2 KB
/
MainWindow.xaml.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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Shapes;
using Graphs.Algorithms;
using Graphs.Pattern;
using MahApps.Metro.Controls;
using QuickGraph;
using System.IO;
using System.Windows.Input;
using GraphX.Controls;
using Graphs.Model;
namespace Graphs
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : MetroWindow
{
/// <summary>
/// Фабрика
/// </summary>
private Painter _creator;
/// <summary>
/// Строитель
/// </summary>
private Director _director;
/// <summary>
/// Для управления командами
/// </summary>
private readonly List<Command> _commands = new List<Command>();
private Command _currentCommand;
private int _commandCounter = -1;
public MainWindow()
{
InitializeComponent();
//Элементы на поле отрисовки графа
var dgLogic = new GraphLogic();
GraphArea.LogicCore = dgLogic;
GraphArea.VertexSelected += GraphArea_VertexSelected;
ZoomCtrl.IsAnimationEnabled = true;
Painter.GraphZone = GraphArea;
//Command.Graph = _graphWithCliques;
DeleteCliqueCommand.Sp = SpDeletedClicks;
}
#region Конструирование графов
/// <summary>
/// Конструирование таблицы связности
/// </summary>
/// <param name="type"></param>
/// <returns></returns>
public int[,] BuildMatrix(int type)
{
int[,] Data2D = new int[,] { };
switch (type)
{
case 0:
try
{
var filename = GetNameOfFileWithGraph();
if (filename != "")
{
Data2D = (int[,])(ReadGraphFromFile(filename)).Clone();
}
else
throw new Exception("Не выбран файл для загрузки графа!");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Ошибка!");
}
break;
case 1:
Data2D = new[,]
{
{0, 1, 1, 0},
{1, 0, 1, 1},
{1, 1, 0, 0},
{0, 1, 0, 0}
};
break;
case 2:
Data2D = new[,]
{
{ 0, 1, 1, 1 },
{ 1, 0, 1, 1 },
{ 1, 1, 0, 1 },
{ 1, 1, 1, 0 }
};
break;
case 3:
Data2D = Data2D = new[,]
{
{ 0, 1, 1, 0, 1, 1 },
{ 1, 0, 1, 1, 0, 1 },
{ 1, 1, 0, 1, 1, 0 },
{ 0, 1, 1, 0, 1, 1 },
{ 1, 0, 1, 1, 0, 1 },
{ 1, 1, 0, 1, 1, 0 }
};
break;
case 4:
Data2D = new[,]
{
{ 0, 1, 0, 0, 0, 0, 1, 1 },
{ 1, 0, 1, 0, 0, 0, 0, 1 },
{ 0, 1, 0, 1, 0, 0, 0, 1 },
{ 0, 0, 1, 0, 1, 0, 0, 1 },
{ 0, 0, 0, 1, 0, 1, 0, 1 },
{ 0, 0, 0, 0, 1, 0, 1, 1 },
{ 1, 0, 0, 0, 0, 1, 0, 1 },
{ 1, 1, 1, 1, 1, 1, 1, 0 }
};
break;
case 5:
Data2D = new[,]
{
{ 0, 1, 0, 0, 1, 0, 1, 0, 0, 0 },
{ 1, 0, 1, 0, 0, 0, 0, 1, 0, 0 },
{ 0, 1, 0, 1, 0, 0, 0, 0, 1, 0 },
{ 0, 0, 1, 0, 1, 0, 0, 0, 0, 1 },
{ 1, 0, 0, 1, 0, 1, 0, 0, 0, 0 },
{ 0, 0, 0, 0, 1, 0, 0, 1, 1, 0 },
{ 1, 0, 0, 0, 0, 0, 0, 0, 1, 1 },
{ 0, 1, 0, 0, 0, 1, 0, 0, 0, 1 },
{ 0, 0, 1, 0, 0, 1, 1, 0, 0, 0 },
{ 0, 0, 0, 1, 0, 0, 1, 1, 0, 0 }
};
break;
}
return Data2D;
}
private void RBSelectGraph_Checked(object sender, RoutedEventArgs e)
{
int selectedGraph = Convert.ToInt32((sender as RadioButton).Tag);
var m = BuildMatrix(selectedGraph);
if (m.Length > 1)
{
_commands.Clear();
_commandCounter = -1;
//сборка графа из таблицы связности
Builder builder = new GraphBuilder();
_director = new Director(builder);
_director.Construct(m);
Command.Graph = builder.GetResult();
//отрисовка графа
_creator = new GraphPainter(Command.Graph);
_creator.Draw();
SpDeletedClicks.Children.Clear();
}
}
#endregion
#region Команды
/// <summary>
/// Команда НАЗАД
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void BUndo_Click(object sender, RoutedEventArgs e)
{
if (_commandCounter > -1 && (_commands.Count - _commandCounter) < 4)
{
_commands[_commandCounter].UnExecute();
_commandCounter--;
}
}
/// <summary>
/// Команда ВПЕРЕД
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void BRedo_Click(object sender, RoutedEventArgs e)
{
if ((_commands.Count - _commandCounter < 5) && (_commands.Count - _commandCounter > 1))
{
_commandCounter++;
_commands[_commandCounter].Execute();
}
}
/// <summary>
/// Очистить поле отрисовки
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void BClearLayout_Click(object sender, RoutedEventArgs e)
{
}
#endregion
#region Работа с кликами
private void BDeleteCliques_Click(object sender, RoutedEventArgs e)
{
try
{
if (GraphArea.Children.Count > 0)
{
while (_commands.Count - _commandCounter > 1)
_commands.RemoveAt(_commandCounter + 1);
//Непосредственно удаление
_currentCommand = new DeleteCliqueCommand(1);
_currentCommand.Execute();
_commands.Add(_currentCommand);
_commandCounter++;
}
else
throw new Exception("На поле отсутствует граф для анализа!");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Ошибка");
}
}
private void BDeleteParallelCliques_Click(object sender, RoutedEventArgs e)
{
try
{
if (GraphArea.Children.Count > 0)
{
while (_commands.Count - _commandCounter > 1)
_commands.RemoveAt(_commandCounter + 1);
//Непосредственно удаление
_currentCommand = new DeleteCliqueCommand(2);
_currentCommand.Execute();
_commands.Add(_currentCommand);
_commandCounter++;
}
else
throw new Exception("На поле отсутствует граф для анализа!");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Ошибка");
}
}
private void BBuildByCliqueMatrix_Click(object sender, RoutedEventArgs e)
{
int[,] cliqueMatrix = new[,]
{
{ 1,0,0,1,0,1 },
{ 1,1,1,0,0,0 },
{ 0,1,0,0,1,0 }
};
CliqueMatrixAdapter adapter = new CliqueMatrixAdapter(cliqueMatrix);
var newMatrix = adapter.Transform();
_commands.Clear();
_commandCounter = -1;
//сборка графа из таблицы связности
Builder builder = new GraphBuilder();
_director = new Director(builder);
_director.Construct(newMatrix);
Command.Graph = builder.GetResult();
//отрисовка графа
_creator = new GraphPainter(Command.Graph);
_creator.Draw();
SpDeletedClicks.Children.Clear();
}
#endregion
#region Воспомогательные функции
/// <summary>
/// Удаление повторяющихся ребер
/// </summary>
/// <param name="gr"></param>
public void RemoveUnnecessaryEdges(BidirectionalGraph<DataVertex, DataEdge> gr)
{
var indexes = new List<int>();
var edges = gr.Edges.ToList();
foreach (var e in edges)
{
var index = edges.FindLastIndex(x => (x.Source.ID == e.Source.ID && x.Target.ID == e.Target.ID));
if (index != -1)
indexes.Add(index);
}
indexes.Reverse();
foreach (var i in indexes)
{
edges.RemoveAt(i);
}
gr.Edges.ToList().Clear();
foreach (var e in edges)
{
gr.AddEdge(e);
}
}
/// <summary>
/// Путь к файлу с графом
/// </summary>
/// <returns></returns>
public string GetNameOfFileWithGraph()
{
var dlg = new System.Windows.Forms.OpenFileDialog()
{
Filter = "Text files(*.txt)|*.txt|All files(*.*)|*.*"
};
if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.Cancel)
return "";
// получаем выбранный файл
string filename = dlg.FileName;
return filename;
}
/// <summary>
/// Сконструировать таблицу связзности загруженного графа
/// </summary>
/// <param name="filename"></param>
public int[,] ReadGraphFromFile(string filename)
{
List<string> input = File.ReadAllText(filename).Replace("\r\n", "\n").Replace(" \n", "\n").Split('\n').ToList();
int size = Convert.ToInt32(input[0]);
input.RemoveAt(0);
int i = 0, j = 0;
int[,] result = new int[size, size];
foreach (var row in input)
{
j = 0;
foreach (var col in row.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries))
{
result[i, j] = int.Parse(col.Trim());
j++;
}
i++;
}
return (int[,])result.Clone();
}
#endregion
#region Перемещение вершин
/// <summary>
/// Сбросить режим перемещения вершин
/// </summary>
/// <param name="soft"></param>
private void ClearSelectMode(bool soft = false)
{
GraphArea.VertexList.Values
.Where(DragBehaviour.GetIsTagged)
.ToList()
.ForEach(a =>
{
HighlightBehaviour.SetHighlighted(a, false);
DragBehaviour.SetIsTagged(a, false);
});
if (!soft)
GraphArea.SetVerticesDrag(false);
}
/// <summary>
/// Выбор вершины
/// </summary>
/// <param name="vc"></param>
private static void SelectVertex(DependencyObject vc)
{
if (DragBehaviour.GetIsTagged(vc))
{
HighlightBehaviour.SetHighlighted(vc, false);
DragBehaviour.SetIsTagged(vc, false);
}
else
{
HighlightBehaviour.SetHighlighted(vc, true);
DragBehaviour.SetIsTagged(vc, true);
}
}
private void GraphArea_VertexSelected(object sender, GraphX.Controls.Models.VertexSelectedEventArgs args)
{
if (args.MouseArgs.LeftButton == MouseButtonState.Pressed)
{
SelectVertex(args.VertexControl);
}
}
private void BChangeMode_Checked(object sender, RoutedEventArgs e)
{
if (BChangeMode.IsChecked == true && sender == BChangeMode)
{
ZoomCtrl.Cursor = Cursors.Hand;
GraphArea.SetVerticesDrag(true, true);
return;
}
}
private void BChangeMode_Unchecked(object sender, RoutedEventArgs e)
{
ClearSelectMode();
}
#endregion
private void BAbout_Click(object sender, RoutedEventArgs e)
{
var wnd = new About();
wnd.ShowDialog();
}
private void BHelp_Click(object sender, RoutedEventArgs e)
{
var wnd = new Help();
wnd.ShowDialog();
}
}
}