]> git.tdb.fi Git - r2c2.git/blob - source/libmarklin/route.cpp
Mark generated routes as temporary and don't show or save them
[r2c2.git] / source / libmarklin / route.cpp
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2007-2010  Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #include <queue>
9 #include <msp/strings/formatter.h>
10 #include "layout.h"
11 #include "route.h"
12 #include "track.h"
13 #include "tracktype.h"
14
15 using namespace std;
16 using namespace Msp;
17
18 namespace {
19
20 using namespace Marklin;
21
22 typedef std::pair<const Track *, unsigned> Key;
23
24 struct Node
25 {
26         const Track *track;
27         unsigned ep;
28         Node *prev;
29         float dist;
30
31         Node():
32                 track(0), ep(0), prev(0), dist(0)
33         { }
34
35         Node(const Track &t, unsigned e):
36                 track(&t), ep(e), prev(0), dist(0)
37         { }
38
39         Node(const Track &t, unsigned e, Node &r, float d):
40                 track(&t), ep(e), prev(&r), dist(prev->dist+d)
41         { }
42
43         bool operator<(const Node &other) const
44         { return dist>other.dist; }
45 };
46
47 struct TrackMatch
48 {
49         const Track &track;
50
51         TrackMatch(const Track &t): track(t) { }
52
53         bool operator()(const Track &t) const { return &t==&track; }
54 };
55
56 struct TrackInRoute
57 {
58         const Route &route;
59
60         TrackInRoute(const Route &r): route(r) { }
61
62         bool operator()(const Track &t) const { return route.get_tracks().count(&t); }
63 };
64
65 template<typename Pred>
66 list<const Track *> dijkstra(const Track &from, unsigned ep, const Pred &goal)
67 {
68         map<Key, Node> track_nodes;
69         priority_queue<Node> nodes;
70         Node *final = 0;
71
72         nodes.push(Node(from, ep));
73
74         while(!nodes.empty())
75         {
76                 Node lowest = nodes.top();
77                 nodes.pop();
78
79                 Key key(lowest.track, lowest.ep);
80                 if(track_nodes.count(key))
81                         continue;
82
83                 Node &ref = track_nodes[key] = lowest;
84                 if(goal(*lowest.track))
85                 {
86                         final = &ref;
87                         break;
88                 }
89
90                 const TrackType &type = lowest.track->get_type();
91                 const vector<Endpoint> &eps = type.get_endpoints();
92                 const vector<Track *> &links = lowest.track->get_links();
93                 for(unsigned i=0; i<eps.size(); ++i)
94                 {
95                         if(i==lowest.ep || !links[i])
96                                 continue;
97
98                         unsigned link_ep = links[i]->get_endpoint_by_link(*lowest.track);
99                         if(track_nodes.count(Key(links[i], link_ep)))
100                                 continue;
101
102                         unsigned mask = eps[i].paths&eps[lowest.ep].paths;
103                         if(!mask)
104                                 continue;
105
106                         unsigned path=0;
107                         for(; !(mask&1); ++path, mask>>=1) ;
108                         nodes.push(Node(*links[i], links[i]->get_endpoint_by_link(*lowest.track), ref, type.get_path_length(path)));
109                 }
110         }
111
112         if(!final)
113                 throw InvalidParameterValue("Could not find a route");
114
115         list<const Track *> result;
116         for(Node *node=final; node; node=node->prev)
117                 result.push_front(node->track);
118
119         return result;
120 }
121
122 unsigned count = 0;
123
124 template<typename Pred>
125 Route *create_route(const Track &from, unsigned ep, const Pred &goal)
126 {
127         list<const Track *> tracks = dijkstra(from, ep, goal);
128
129         Route *route = new Route(from.get_layout(), format("-%d-", ++count));
130         for(list<const Track *>::iterator i=tracks.begin(); i!=tracks.end(); ++i)
131                 route->add_track(**i);
132
133         route->set_temporary(true);
134
135         return route;
136 }
137
138 }
139
140
141 namespace Marklin {
142
143 Route::Route(Layout &l, const string &n):
144         layout(l),
145         name(n),
146         temporary(false)
147 {
148         layout.add_route(*this);
149         layout.signal_track_removed.connect(sigc::mem_fun(this, &Route::track_removed));
150 }
151
152 Route::~Route()
153 {
154         layout.remove_route(*this);
155 }
156
157 void Route::set_temporary(bool t)
158 {
159         temporary = t;
160 }
161
162 int Route::get_turnout(unsigned id) const
163 {
164         map<unsigned, int>::const_iterator i = turnouts.find(id);
165         if(i!=turnouts.end())
166                 return i->second;
167         return -1;
168 }
169
170 void Route::add_track(const Track &trk)
171 {
172         if(tracks.count(&trk))
173                 return;
174
175         if(!tracks.empty())
176         {
177                 unsigned valid = check_validity(trk);
178                 if(!(valid&1))
179                         throw Exception("Not linked to existing tracks");
180                 else if(!(valid&2))
181                         throw Exception("Branching routes not allowed");
182                 else if(!(valid&4))
183                         throw Exception("Route must be smooth");
184         }
185
186         tracks.insert(&trk);
187         update_turnouts();
188 }
189
190 void Route::add_tracks(const set<const Track *> &trks)
191 {
192         set<const Track *> pending;
193         for(set<const Track *>::const_iterator i=trks.begin(); i!=trks.end(); ++i)
194                 if(!tracks.count(*i))
195                         pending.insert(*i);
196
197         while(!pending.empty())
198         {
199                 bool found = false;
200                 for(set<const Track *>::const_iterator i=pending.begin(); i!=pending.end(); ++i)
201                         if(tracks.empty() || check_validity(**i)==7)
202                         {
203                                 tracks.insert(*i);
204                                 pending.erase(*i);
205                                 found = true;
206                                 break;
207                         }
208
209                 if(!found)
210                         throw Exception("Could not add all tracks to route");
211         }
212
213         update_turnouts();
214 }
215
216 void Route::save(list<DataFile::Statement> &st) const
217 {
218         for(map<unsigned, int>::const_iterator i=turnouts.begin(); i!=turnouts.end(); ++i)
219                 st.push_back((DataFile::Statement("turnout"), i->first, i->second));
220 }
221
222 void Route::update_turnouts()
223 {
224         set<unsigned> found;
225         for(set<const Track *>::const_iterator i=tracks.begin(); i!=tracks.end(); ++i)
226                 if(unsigned tid=(*i)->get_turnout_id())
227                 {
228                         found.insert(tid);
229
230                         const vector<Endpoint> &endpoints = (*i)->get_type().get_endpoints();
231                         const vector<Track *> &links = (*i)->get_links();
232
233                         // Build a combined path mask from linked endpoints
234                         unsigned mask = 15;
235                         for(unsigned j=0; j<endpoints.size(); ++j)
236                         {
237                                 if(!tracks.count(links[j]))
238                                         continue;
239
240                                 if(unsigned tid2=links[j]->get_turnout_id())
241                                 {
242                                         const Endpoint &ep = links[j]->get_type().get_endpoints()[links[j]->get_endpoint_by_link(**i)];
243                                         int p = get_turnout(tid2);
244                                         if(p>=0 && !(ep.paths&(1<<p)))
245                                         {
246                                                 // The linked track is a turnout and has a path which is incompatible with this endpoint
247                                                 mask &= ~endpoints[j].paths;
248                                                 continue;
249                                         }
250                                 }
251                                 mask &= endpoints[j].paths;
252                         }
253
254                         if(mask && !(mask&(mask-1)))
255                         {
256                                 // Exactly one possible choice, set the path accordingly
257                                 unsigned path = 0;
258                                 for(; (mask && !(mask&1)); mask>>=1, ++path) ;
259                                 turnouts[tid] = path;
260                         }
261                         else if(!turnouts.count(tid))
262                                 // More than one possible choice, and no existing entry - set as undecided
263                                 turnouts[tid] = -1;
264                 }
265
266         // Remove any turnouts that do not exist in the route
267         for(map<unsigned, int>::iterator i=turnouts.begin(); i!=turnouts.end();)
268         {
269                 if(!found.count(i->first))
270                         turnouts.erase(i++);
271                 else
272                         ++i;
273         }
274 }
275
276 unsigned Route::check_validity(const Track &trk) const
277 {
278         unsigned result = 4;
279         for(set<const Track *>::const_iterator i=tracks.begin(); i!=tracks.end(); ++i)
280         {
281                 int epi=(*i)->get_endpoint_by_link(trk);
282                 if(epi>=0)
283                 {
284                         // Linked to an existing track - good
285                         result |= 1;
286                         const vector<Endpoint> &endpoints = (*i)->get_type().get_endpoints();
287                         if(unsigned tid=(*i)->get_turnout_id())
288                         {
289                                 int r = get_turnout(tid);
290                                 if(r>=0)
291                                 {
292                                         // Linking to a turnout with path set is only good if we're continuing that path
293                                         if(endpoints[epi].paths&(1<<r))
294                                                 result |= 2;
295                                 }
296                                 else
297                                 {
298                                         // Linked to a turnout with no path set - find out other linked tracks 
299                                         unsigned count = 0;
300                                         const vector<Track *> &links = (*i)->get_links();
301                                         int epj = -1;
302                                         for(unsigned k=0; k<endpoints.size(); ++k)
303                                                 if(tracks.count(links[k]))
304                                                 {
305                                                         ++count;
306                                                         epj = k;
307                                                 }
308
309                                         // Only good if at most one other track is linked to the turnout
310                                         if(count<=1)
311                                         {
312                                                 result |= 2;
313                                                 if(epj>=0 && !(endpoints[epi].paths&endpoints[epj].paths))
314                                                         // Impossible path through the turnout - not good
315                                                         result &= 3;
316                                         }
317                                 }
318                         }
319                         else
320                                 // Linked to something linear - good
321                                 result |= 2;
322                 }
323         }
324
325         return result;
326 }
327
328 void Route::track_removed(Track &t)
329 {
330         tracks.erase(&t);
331 }
332
333 Route *Route::find(const Track &from, unsigned ep, const Track &to)
334 {
335         return create_route(from, ep, TrackMatch(to));
336 }
337
338 Route *Route::find(const Track &from, unsigned ep, const Route &to)
339 {
340         return create_route(from, ep, TrackInRoute(to));
341 }
342
343
344 Route::Loader::Loader(Route &r):
345         DataFile::BasicLoader<Route>(r)
346 {
347         add("turnout", &Loader::turnout);
348 }
349
350 void Route::Loader::turnout(unsigned id, unsigned path)
351 {
352         obj.turnouts[id] = path;
353 }
354
355 } // namespace Marklin