hegyi@1876
|
1 |
#include <algobox.h>
|
hegyi@1876
|
2 |
|
hegyi@1876
|
3 |
enum {N_DEMO1, N_DEMO2, NODE_INPUT_NUM}; // input IDs for nodes;
|
hegyi@1876
|
4 |
enum {E_DEMO1, EDGE_INPUT_NUM}; // input IDs for edges;
|
hegyi@1876
|
5 |
|
hegyi@1878
|
6 |
AlgoBox::AlgoBox(std::vector<std::string> tabnames)
|
hegyi@1876
|
7 |
{
|
hegyi@1878
|
8 |
init(tabnames);
|
hegyi@1876
|
9 |
}
|
hegyi@1876
|
10 |
|
hegyi@1878
|
11 |
void AlgoBox::init(std::vector<std::string> tabnames)
|
hegyi@1876
|
12 |
{
|
hegyi@1876
|
13 |
set_spacing(5);
|
hegyi@1876
|
14 |
|
hegyi@1876
|
15 |
update_tablist(tabnames);
|
hegyi@1876
|
16 |
|
hegyi@1876
|
17 |
//if active tab is changed, the map names in cbt/s have to be updated
|
hegyi@1876
|
18 |
tabcbt.signal_changed().connect(sigc::mem_fun(*this, &AlgoBox::emit_tab_change));
|
hegyi@1876
|
19 |
|
hegyi@1876
|
20 |
pack_start(tabcbt);
|
hegyi@1876
|
21 |
build_box();
|
hegyi@1876
|
22 |
|
hegyi@1876
|
23 |
show_all_children();
|
hegyi@1876
|
24 |
};
|
hegyi@1876
|
25 |
|
hegyi@1876
|
26 |
void AlgoBox::update_cbt(std::vector< std::string > stringlist, Gtk::ComboBoxText & cbt)
|
hegyi@1876
|
27 |
{
|
hegyi@1876
|
28 |
std::string actname=cbt.get_active_text();
|
hegyi@1876
|
29 |
int prev_act=-1;
|
hegyi@1876
|
30 |
|
hegyi@1876
|
31 |
cbt.clear();
|
hegyi@1876
|
32 |
int actptr=0;
|
hegyi@1876
|
33 |
|
hegyi@1876
|
34 |
std::vector< std::string >::iterator emsi=stringlist.begin();
|
hegyi@1876
|
35 |
for(;emsi!=stringlist.end();emsi++)
|
hegyi@1876
|
36 |
{
|
hegyi@1876
|
37 |
if(actname==*emsi)
|
hegyi@1876
|
38 |
{
|
hegyi@1876
|
39 |
prev_act=actptr;
|
hegyi@1876
|
40 |
}
|
hegyi@1876
|
41 |
|
hegyi@1876
|
42 |
cbt.append_text(*emsi);
|
hegyi@1876
|
43 |
actptr++;
|
hegyi@1876
|
44 |
}
|
hegyi@1876
|
45 |
|
hegyi@1876
|
46 |
if(prev_act!=-1)
|
hegyi@1876
|
47 |
{
|
hegyi@1876
|
48 |
cbt.set_active(prev_act);
|
hegyi@1876
|
49 |
}
|
hegyi@1876
|
50 |
else if(actptr>0) //so there is item in the list
|
hegyi@1876
|
51 |
{
|
hegyi@1878
|
52 |
//cbt.set_active(0);
|
hegyi@1876
|
53 |
}
|
hegyi@1876
|
54 |
}
|
hegyi@1876
|
55 |
|
hegyi@1876
|
56 |
void AlgoBox::update_tablist( std::vector< std::string > tl )
|
hegyi@1876
|
57 |
{
|
hegyi@1876
|
58 |
update_cbt(tl, tabcbt);
|
hegyi@1876
|
59 |
emit_tab_change();
|
hegyi@1876
|
60 |
}
|
hegyi@1876
|
61 |
|
hegyi@1879
|
62 |
void AlgoBox::update_maplist(MapStorage * ms)
|
hegyi@1876
|
63 |
{
|
hegyi@1879
|
64 |
mapstorage=ms;
|
hegyi@1878
|
65 |
std::vector<std::string> nml;
|
hegyi@1878
|
66 |
std::vector<std::string> eml;
|
hegyi@1878
|
67 |
if(mapstorage!=NULL)
|
hegyi@1878
|
68 |
{
|
hegyi@1878
|
69 |
mapstorage->signal_node_map_ch().connect(sigc::mem_fun(*this, &AlgoBox::nodemaplist_changed));
|
hegyi@1878
|
70 |
mapstorage->signal_edge_map_ch().connect(sigc::mem_fun(*this, &AlgoBox::edgemaplist_changed));
|
hegyi@1878
|
71 |
nml=mapstorage->getNodeMapList();
|
hegyi@1879
|
72 |
eml=mapstorage->getEdgeMapList();
|
hegyi@1878
|
73 |
}
|
hegyi@1876
|
74 |
for(int i=0;i<(int)nodemapcbts.size();i++)
|
hegyi@1876
|
75 |
{
|
hegyi@1884
|
76 |
(nodemapcbts[i])->update_list(nml);
|
hegyi@1884
|
77 |
//update_cbt(nml, *(nodemapcbts[i]));
|
hegyi@1876
|
78 |
}
|
hegyi@1876
|
79 |
for(int i=0;i<(int)edgemapcbts.size();i++)
|
hegyi@1876
|
80 |
{
|
hegyi@1884
|
81 |
(edgemapcbts[i])->update_list(eml);
|
hegyi@1884
|
82 |
//update_cbt(eml, *(edgemapcbts[i]));
|
hegyi@1876
|
83 |
}
|
hegyi@1876
|
84 |
}
|
hegyi@1876
|
85 |
|
hegyi@1878
|
86 |
void AlgoBox::nodemaplist_changed(std::string newmap)
|
hegyi@1878
|
87 |
{
|
hegyi@1878
|
88 |
for(int i=0;i<(int)nodemapcbts.size();i++)
|
hegyi@1878
|
89 |
{
|
hegyi@1878
|
90 |
(nodemapcbts[i])->append_text(newmap);
|
hegyi@1878
|
91 |
}
|
hegyi@1878
|
92 |
}
|
hegyi@1878
|
93 |
|
hegyi@1878
|
94 |
void AlgoBox::edgemaplist_changed(std::string newmap)
|
hegyi@1878
|
95 |
{
|
hegyi@1878
|
96 |
for(int i=0;i<(int)edgemapcbts.size();i++)
|
hegyi@1878
|
97 |
{
|
hegyi@1878
|
98 |
(edgemapcbts[i])->append_text(newmap);
|
hegyi@1878
|
99 |
}
|
hegyi@1878
|
100 |
}
|
hegyi@1878
|
101 |
|
hegyi@1876
|
102 |
void AlgoBox::run()
|
hegyi@1876
|
103 |
{
|
hegyi@1876
|
104 |
std::cout << "Start algorithm." << std::endl;
|
hegyi@1876
|
105 |
}
|
hegyi@1876
|
106 |
|
hegyi@1876
|
107 |
void AlgoBox::build_box()
|
hegyi@1876
|
108 |
{
|
hegyi@1876
|
109 |
pack_start(*(new Gtk::HSeparator()));
|
hegyi@1876
|
110 |
|
hegyi@1884
|
111 |
Gtk::Label * label=new Gtk::Label("Specific part for each algorithm.");
|
hegyi@1876
|
112 |
|
hegyi@1876
|
113 |
pack_start(*label);
|
hegyi@1876
|
114 |
pack_start(*(new Gtk::HSeparator()));
|
hegyi@1876
|
115 |
|
hegyi@1876
|
116 |
label=new Gtk::Label("Maps in chosen tab:");
|
hegyi@1876
|
117 |
|
hegyi@1876
|
118 |
pack_start(*label);
|
hegyi@1876
|
119 |
|
hegyi@1886
|
120 |
for(int i=0;i<NODE_INPUT_NUM;i++)
|
hegyi@1876
|
121 |
{
|
hegyi@1876
|
122 |
std::ostringstream o;
|
hegyi@1876
|
123 |
o << "NodeInput " << i+1 << ":";
|
hegyi@1876
|
124 |
|
hegyi@1886
|
125 |
addMapSelector(o.str(), false);
|
hegyi@1876
|
126 |
}
|
hegyi@1876
|
127 |
|
hegyi@1876
|
128 |
pack_start(*(new Gtk::HSeparator()));
|
hegyi@1876
|
129 |
|
hegyi@1886
|
130 |
for(int i=0;i<EDGE_INPUT_NUM;i++)
|
hegyi@1876
|
131 |
{
|
hegyi@1876
|
132 |
|
hegyi@1876
|
133 |
std::ostringstream o;
|
hegyi@1876
|
134 |
o << "EdgeInput " << i+1 << ":";
|
hegyi@1876
|
135 |
|
hegyi@1886
|
136 |
addMapSelector(o.str(), true);
|
hegyi@1876
|
137 |
}
|
hegyi@1876
|
138 |
|
hegyi@1876
|
139 |
pack_start(*(new Gtk::HSeparator()));
|
hegyi@1876
|
140 |
}
|
hegyi@1876
|
141 |
|
hegyi@1886
|
142 |
void AlgoBox::addMapSelector(std::string inputname, bool itisedge)
|
hegyi@1886
|
143 |
{
|
hegyi@1886
|
144 |
std::vector<std::string> empty_vector;
|
hegyi@1886
|
145 |
|
hegyi@1886
|
146 |
MapSelector * msp=new MapSelector(empty_vector,"",inputname,itisedge, false);
|
hegyi@1886
|
147 |
|
hegyi@1886
|
148 |
if(itisedge)
|
hegyi@1886
|
149 |
{
|
hegyi@1886
|
150 |
edgemapcbts.resize(edgemapcbts.size()+1);
|
hegyi@1886
|
151 |
edgemapcbts[edgemapcbts.size()-1]=msp;
|
hegyi@1886
|
152 |
}
|
hegyi@1886
|
153 |
else
|
hegyi@1886
|
154 |
{
|
hegyi@1886
|
155 |
nodemapcbts.resize(nodemapcbts.size()+1);
|
hegyi@1886
|
156 |
nodemapcbts[nodemapcbts.size()-1]=msp;
|
hegyi@1886
|
157 |
}
|
hegyi@1886
|
158 |
|
hegyi@1886
|
159 |
msp->signal_newmapwin_needed().connect(sigc::mem_fun(*this, &AlgoBox::emit_new_map_signal));
|
hegyi@1886
|
160 |
|
hegyi@1886
|
161 |
pack_start(*msp);
|
hegyi@1886
|
162 |
}
|
hegyi@1886
|
163 |
|
hegyi@1876
|
164 |
sigc::signal<void, std::string> AlgoBox::signal_maplist_needed()
|
hegyi@1876
|
165 |
{
|
hegyi@1876
|
166 |
return signal_maplist_need;
|
hegyi@1876
|
167 |
}
|
hegyi@1876
|
168 |
|
hegyi@1876
|
169 |
void AlgoBox::emit_tab_change()
|
hegyi@1876
|
170 |
{
|
hegyi@1878
|
171 |
std::string active_tab=tabcbt.get_active_text();
|
hegyi@1878
|
172 |
if(active_tab!="")
|
hegyi@1878
|
173 |
{
|
hegyi@1878
|
174 |
signal_maplist_need.emit(active_tab);
|
hegyi@1878
|
175 |
}
|
hegyi@1878
|
176 |
else
|
hegyi@1878
|
177 |
{
|
hegyi@1878
|
178 |
std::vector<std::string> empty_vector;
|
hegyi@1878
|
179 |
update_maplist(NULL);
|
hegyi@1878
|
180 |
}
|
hegyi@1876
|
181 |
}
|
hegyi@1884
|
182 |
|
hegyi@1884
|
183 |
void AlgoBox::emit_new_map_signal(bool itisedge)
|
hegyi@1884
|
184 |
{
|
hegyi@1884
|
185 |
signal_newmapwin_need.emit(tabcbt.get_active_text(), itisedge);
|
hegyi@1884
|
186 |
}
|