namespace R2C2 {
TrainRoutePlanner::TrainRoutePlanner(Layout &layout):
- result(PENDING)
+ goal(0),
+ result(PENDING),
+ thread(0)
{
const map<unsigned, Train *> &trains = layout.get_trains();
for(map<unsigned, Train *>::const_iterator i=trains.begin(); i!=trains.end(); ++i)
}
}
-void TrainRoutePlanner::plan()
+TrainRoutePlanner::~TrainRoutePlanner()
{
- steps.clear();
- queue.clear();
- result = PENDING;
+ delete thread;
+}
- queue.push_back(RoutingStep());
- RoutingStep &start = queue.back();
- for(vector<TrainRoutingInfo>::iterator i=routed_trains.begin(); i!=routed_trains.end(); ++i)
- start.trains.push_back(TrainRoutingState(*i));
- start.update_estimate();
+TrainRoutePlanner::Result TrainRoutePlanner::plan()
+{
+ prepare_plan();
+ create_plan();
+ if(result==PENDING)
+ finalize_plan();
- const RoutingStep *goal = 0;
- while(!queue.empty())
- {
- const RoutingStep &step = get_step();
- if(step.is_goal())
- {
- goal = &step;
- break;
- }
+ return result;
+}
- add_steps(step);
- }
+void TrainRoutePlanner::plan_async()
+{
+ if(thread)
+ throw logic_error("already planning");
+
+ prepare_plan();
+ thread = new PlanningThread(*this);
+}
- if(goal)
+TrainRoutePlanner::Result TrainRoutePlanner::check()
+{
+ if(result==PENDING && goal)
{
- create_routes(*goal);
- result = COMPLETE;
+ finalize_plan();
+ delete thread;
+ thread = 0;
}
- else
- result = FAILED;
+
+ return result;
}
const list<Route *> &TrainRoutePlanner::get_routes_for(const Train &train) const
return steps.back();
}
+void TrainRoutePlanner::prepare_plan()
+{
+ steps.clear();
+ queue.clear();
+ goal = 0;
+ result = PENDING;
+
+ queue.push_back(RoutingStep());
+ RoutingStep &start = queue.back();
+ for(vector<TrainRoutingInfo>::iterator i=routed_trains.begin(); i!=routed_trains.end(); ++i)
+ start.trains.push_back(TrainRoutingState(*i));
+ start.update_estimate();
+}
+
+void TrainRoutePlanner::create_plan()
+{
+ while(!queue.empty())
+ {
+ const RoutingStep &step = get_step();
+ if(step.is_goal())
+ {
+ goal = &step;
+ return;
+ }
+
+ add_steps(step);
+ }
+
+ result = FAILED;
+}
+
void TrainRoutePlanner::add_steps(const RoutingStep &step)
{
list<RoutingStep> new_steps;
queue.merge(new_steps);
}
-void TrainRoutePlanner::create_routes(const RoutingStep &goal)
+void TrainRoutePlanner::finalize_plan()
{
for(vector<TrainRoutingInfo>::iterator i=routed_trains.begin(); i!=routed_trains.end(); ++i)
{
map<Track *, TrainRouter::SequencePoint *> sequenced_tracks;
unsigned sequence = steps.size();
- for(const RoutingStep *i=&goal; i; i=i->prev)
+ for(const RoutingStep *i=goal; i; i=i->prev)
for(vector<TrainRoutingState>::const_iterator j=i->trains.begin(); j!=i->trains.end(); ++j)
{
Track **history = j->info->track_history;
--sequence;
}
}
+
+ result = COMPLETE;
}
return cost_estimate<other.cost_estimate;
}
+
+TrainRoutePlanner::PlanningThread::PlanningThread(TrainRoutePlanner &p):
+ planner(p)
+{
+ launch();
+}
+
+void TrainRoutePlanner::PlanningThread::main()
+{
+ planner.create_plan();
+}
+
} // namespace R2C2
#include <list>
#include <vector>
+#include <msp/core/thread.h>
#include <msp/time/timedelta.h>
#include "trackiter.h"
#include "trainrouter.h"
bool operator<(const RoutingStep &) const;
};
+ class PlanningThread: public Msp::Thread
+ {
+ private:
+ TrainRoutePlanner &planner;
+
+ public:
+ PlanningThread(TrainRoutePlanner &);
+
+ private:
+ virtual void main();
+ };
+
std::vector<TrainRoutingInfo> routed_trains;
std::list<RoutingStep> steps;
std::list<RoutingStep> queue;
+ const RoutingStep *goal;
Result result;
+ PlanningThread *thread;
public:
TrainRoutePlanner(Layout &);
+ ~TrainRoutePlanner();
- void plan();
+ Result plan();
+ void plan_async();
+ Result check();
Result get_result() { return result; }
const std::list<Route *> &get_routes_for(const Train &) const;
const std::list<TrainRouter::SequencePoint> &get_sequence_for(const Train &) const;
private:
const TrainRoutingInfo &get_train_info(const Train &) const;
const RoutingStep &get_step();
+ void prepare_plan();
+ void create_plan();
void add_steps(const RoutingStep &);
- void create_routes(const RoutingStep &);
+ void finalize_plan();
};
} // namespace R2C2