]> git.tdb.fi Git - r2c2.git/commitdiff
Filter out non-viable routing steps before adding them to the list
authorMikko Rasa <tdb@tdb.fi>
Sat, 29 Mar 2014 16:16:51 +0000 (18:16 +0200)
committerMikko Rasa <tdb@tdb.fi>
Sat, 29 Mar 2014 16:16:51 +0000 (18:16 +0200)
source/libr2c2/trainrouteplanner.cpp
source/libr2c2/trainrouteplanner.h

index 1c7d996c5773dac66228e21be3632c31e64620a7..c5519e45d7db1c581932b7a48e4efe8d5aba8181 100644 (file)
@@ -146,7 +146,8 @@ void TrainRoutePlanner::add_steps(RoutingStep &step, unsigned train_index)
                        if(next_entry_ep.has_path(i))
                        {
                                next.trains[train_index].path = i;
-                               new_steps.push_back(next);
+                               if(next.is_viable())
+                                       new_steps.push_back(next);
                        }
 
                if(next_entry_ep.paths!=next_track->get_type().get_paths())
@@ -154,7 +155,8 @@ void TrainRoutePlanner::add_steps(RoutingStep &step, unsigned train_index)
                        RoutingStep wait(&step);
                        wait.advance(dt);
                        wait.trains[train_index].state = WAITING;
-                       new_steps.push_back(wait);
+                       if(wait.is_viable())
+                               new_steps.push_back(wait);
                }
        }
 
@@ -360,6 +362,15 @@ void TrainRoutePlanner::RoutingStep::advance(const Time::TimeDelta &dt)
        }
 }
 
+bool TrainRoutePlanner::RoutingStep::is_viable() const
+{
+       for(vector<TrainRoutingState>::const_iterator i=trains.begin(); i!=trains.end(); ++i)
+               if(i->state==MOVING)
+                       return true;
+
+       return false;
+}
+
 bool TrainRoutePlanner::RoutingStep::is_goal() const
 {
        for(vector<TrainRoutingState>::const_iterator i=trains.begin(); i!=trains.end(); ++i)
index 2ae7dc4ef6e502d6f27f263cb67c24a453321a8d..b241150413905f718ca1eb6255603430fc8c4f64 100644 (file)
@@ -83,6 +83,7 @@ private:
                RoutingStep(RoutingStep *);
 
                void advance(const Msp::Time::TimeDelta &);
+               bool is_viable() const;
                bool is_goal() const;
 
                bool operator<(const RoutingStep &) const;