-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCGTeaFrame.cpp
executable file
·251 lines (223 loc) · 10.1 KB
/
CGTeaFrame.cpp
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
//
// Created by rostam on 15.10.19.
//
#include "CGTeaFrame.h"
#include "CGTeaSidebar.h"
#include <wx/filedlg.h>
#include "generators/Cycle.h"
#include "generators/Complete.h"
#include "generators/Antiprism.h"
#include "generators/Prism.h"
#include "generators/Star.h"
#include "generators/Regular.h"
#include "generators/Banana.h"
#include "generators/GeneralizedPeterson.h"
#include "generators/Cmn.h"
#include "generators/Path.h"
#include "generators/Flower.h"
#include "generators/Wheel.h"
#include "generators/Crown.h"
#include "generators/Web.h"
#include "generators/CocktailParty.h"
#include "generators/Gear.h"
#include "generators/Heawood.h"
#include "reports/NumOfVertices.h"
#include "reports/NumOfEdges.h"
#include "reports/MaxDegree.h"
#include "reports/MinDegree.h"
#include "reports/MaxEigenValue.h"
#include "reports/MinEigenValue.h"
#include "reports/SumEigenValues.h"
#include "reports/Diameter.h"
#include "reports/NumOfTriangles.h"
#include "actions/Coloring.h"
#include "actions/LineGraph.h"
#include <memory>
wxBEGIN_EVENT_TABLE(CGTeaFrame, wxFrame)
EVT_MENU(wxID_ABOUT, CGTeaFrame::OnAbout)
wxEND_EVENT_TABLE()
CGTeaFrame::CGTeaFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
: wxFrame(nullptr, wxID_ANY, title, pos, size) {
availableGenerators.emplace_back(std::make_unique<Antiprism>());
availableGenerators.emplace_back(std::make_unique<Banana>());
availableGenerators.emplace_back(std::make_unique<Cycle>());
availableGenerators.emplace_back(std::make_unique<Complete>());
availableGenerators.emplace_back(std::make_unique<Prism>());
availableGenerators.emplace_back(std::make_unique<Regular>());
availableGenerators.emplace_back(std::make_unique<GeneralizedPeterson>());
availableGenerators.emplace_back(std::make_unique<Cmn>());
availableGenerators.emplace_back(std::make_unique<Path>());
availableGenerators.emplace_back(std::make_unique<Flower>());
availableGenerators.emplace_back(std::make_unique<Star>());
availableGenerators.emplace_back(std::make_unique<Wheel>());
availableGenerators.emplace_back(std::make_unique<Crown>());
availableGenerators.emplace_back(std::make_unique<Web>());
availableGenerators.emplace_back(std::make_unique<CocktailParty>());
availableGenerators.emplace_back(std::make_unique<Gear>());
availableGenerators.emplace_back(std::make_unique<Heawood>());
availableReports.emplace_back(std::make_unique<NumOfVertices>());
availableReports.emplace_back(std::make_unique<NumOfEdges>());
availableReports.emplace_back(std::make_unique<MaxDegree>());
availableReports.emplace_back(std::make_unique<MinDegree>());
availableReports.emplace_back(std::make_unique<MaxEigenValue>());
availableReports.emplace_back(std::make_unique<MinEigenValue>());
availableReports.emplace_back(std::make_unique<SumEigenValues>());
availableReports.emplace_back(std::make_unique<GraphDiameter>());
availableReports.emplace_back(std::make_unique<NumberOfTriangles>());
availableActions.emplace_back(std::make_unique<Coloring>());
availableActions.emplace_back(std::make_unique<LineGraph>());
auto menuFile = new wxMenu;
menuFile->Append(1000, "&Open");
menuFile->Append(1001, "&Save");
menuFile->AppendSeparator();
menuFile->Append(wxID_EXIT);
Connect(1000, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(CGTeaFrame::Open));
Connect(1001, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(CGTeaFrame::Save));
Connect(wxID_EXIT, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(CGTeaFrame::OnExit));
auto menuGenerate = new wxMenu;
int i = 1;
// std::apply([&](auto&&... args) {((menuGenerate->Append(i, wxString(args.name().c_str(), wxConvUTF8), wxString(args.description().c_str(), wxConvUTF8)),i++), ...);}, availableGenerators);
for (auto& gi : availableGenerators) {
menuGenerate->Append(i, wxString(gi->name().c_str(), wxConvUTF8),
wxString(gi->description().c_str(), wxConvUTF8));
Connect(i, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(CGTeaFrame::Generate));
i++;
}
auto menuReport = new wxMenu;
for (auto& ri : availableReports) {
menuReport->Append(i, wxString(ri->name().c_str(), wxConvUTF8),
wxString(ri->description().c_str(), wxConvUTF8));
Connect(i, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(CGTeaFrame::Report));
i++;
}
auto menuAction = new wxMenu;
for (auto& ai : availableActions) {
menuAction->Append(i, wxString(ai->name().c_str(), wxConvUTF8),
wxString(ai->description().c_str(), wxConvUTF8));
Connect(i, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(CGTeaFrame::Action));
i++;
}
auto *menuLayout = new wxMenu;
menuLayout->Append(i, "Force-directed drawing", "Force-directed drawing");
Connect(i, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(CGTeaFrame::Layout));
auto menuHelp = new wxMenu;
menuHelp->Append(wxID_ABOUT);
wxMenuBar *menuBar = new wxMenuBar;
menuBar->Append(menuFile, "&File");
menuBar->Append(menuGenerate, "&Generate");
menuBar->Append(menuReport, "&Report");
menuBar->Append(menuAction, "&Action");
menuBar->Append(menuLayout, "&Layout");
menuBar->Append(menuHelp, "&Help");
SetMenuBar(menuBar);
CreateStatusBar();
SetStatusText("Welcome to CGTea!");
wxDir dir(wxGetCwd() + "/mats/");
if (!dir.IsOpened()) {
// deal with the error here - wxDir would already log an error message
// explaining the exact reason of the failure
return;
}
wxString filename;
bool cont = dir.GetFirst(&filename);//, filespec, flags);
while (cont) {
cout << filename.c_str() << endl;
cont = dir.GetNext(&filename);
}
}
void CGTeaFrame::OnExit(wxCommandEvent& event) {
Close(true);
}
void CGTeaFrame::OnAbout(wxCommandEvent& event) {
wxMessageBox("CGTea is a C++-version of GraphTea, a software for working with graphs.",
"CGTea 1.0", wxOK | wxICON_INFORMATION);
}
void CGTeaFrame::Generate(wxCommandEvent& event) {
wxString valueTyped;
wxTextEntryDialog myDialog(this, _("n,k"), _("Enter graph parameters"), _("10,0"));
if (myDialog.ShowModal() == wxID_OK) {
valueTyped = myDialog.GetValue();
}
long value_n, value_k;
int position_of_comma = valueTyped.find(",");
if (position_of_comma == -1) return;
if (!valueTyped.substr(0, position_of_comma).ToLong(&value_n)) { return; }
if (!valueTyped.substr(position_of_comma + 1).ToLong(&value_k)) { return; }
int id = event.GetId();
currentGraph = availableGenerators[id-1]->generate_with_positions(value_n, value_k, 300, 300);
Refresh();
}
void CGTeaFrame::Layout(wxCommandEvent& event) {
int id = event.GetId();
// currentGraph = availableGenerators[id]->generate_with_force_directed(10,0,500,500);
std::vector<cgtea_geometry::Point> pos = compute_force_directed(10, 10, 300, 300, currentGraph);
int i = 0;
for_each_v(currentGraph, [&](Ver v) {
boost::put(boost::vertex_distance, currentGraph, v, pos[i]);
i++;
});
Refresh();
}
void CGTeaFrame::Report(wxCommandEvent& event) {
int id = event.GetId();
std::string report_results = availableReports[id - availableGenerators.size() - 1]->report(currentGraph);
std::string report_name = availableReports[id - availableGenerators.size() - 1]->name();
((CGTeaSidebar*)this->GetSizer()->GetChildren()[0]->GetWindow())->statistics_text->SetValue(report_name + ": " +report_results);
}
void CGTeaFrame::Action(wxCommandEvent& event) {
int id = event.GetId();
currentGraph = availableActions[id - availableGenerators.size() - availableReports.size() - 1]->action(currentGraph);
Refresh();
}
void CGTeaFrame::Open(wxCommandEvent& event) {
wxFileDialog *openFileDialog = new wxFileDialog(this, _("Choose a file to open"), wxEmptyString, wxEmptyString,
_("G6 format files (*.g6)|*.g6|CGTea format files (*.tea)|*.tea|"
"MTX format files (*.mtx)|*.mtx"),
wxFD_OPEN);
if (openFileDialog->ShowModal() == wxID_OK) {
wxString fileName = openFileDialog->GetPath();
if (fileName.find(".g6") != std::string::npos) {
ifstream in(fileName.mb_str());
std::string g6;
in >> g6;
in.close();
G6Format g6Format;
currentGraph = g6Format.stringToGraph(g6);
std::vector<cgtea_geometry::Point> pos = compute_force_directed(10, 10, 300, 300, currentGraph);
int i = 0;
for_each_v(currentGraph, [&](Ver v) {
boost::put(boost::vertex_distance, currentGraph, v, pos[i]);
i++;
});
}
Refresh();
}
// wxFileDialog
// openFileDialog(this, _("Open XYZ file"), "", "",
// "XYZ files (*.xyz)|*.xyz", wxFD_OPEN|wxFD_FILE_MUST_EXIST);
// ifstream in("test.g6");
// std::string g6;
// in >> g6;
// in.close();
// G6Format g6Format;
// currentGraph = g6Format.stringToGraph(g6);
}
void CGTeaFrame::Save(wxCommandEvent& event) {
wxFileDialog *openFileDialog = new wxFileDialog(this, _("Save a file"), wxEmptyString, wxEmptyString,
_("G6 format files (*.g6)|*.g6|CGTea format files (*.tea)|*.tea|"
"MTX format files (*.mtx)|*.mtx"),
wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
if (openFileDialog->ShowModal() == wxID_OK) {
// wxString fileName = openFileDialog->GetPath();
// wxString fileName = openFileDialog->GetPath();
// if (fileName.find(".g6") != std::string::npos) {
}
G6Format g6Format;
std::string g6 = g6Format.graphToG6(currentGraph);
std::cerr << "hre " << g6 << endl;
ofstream out("test.g6");
out << g6;
out.flush();
out.close();
cerr << g6 << endl;
}