X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibr2c2%2Ftrainrouter.cpp;h=f0870d250f2b7b95293797a2c86a8c72addf56c1;hb=d3d1850e950f3c38c8ef983228013fc82c287ec4;hp=122b91a3bd195837f90455cc3da66289d37ea453;hpb=68877070660f2806cc2a7f0ccb69153059ef6ce7;p=r2c2.git diff --git a/source/libr2c2/trainrouter.cpp b/source/libr2c2/trainrouter.cpp index 122b91a..f0870d2 100644 --- a/source/libr2c2/trainrouter.cpp +++ b/source/libr2c2/trainrouter.cpp @@ -16,11 +16,10 @@ namespace R2C2 { TrainRouter::TrainRouter(Train &t): TrainAI(t), priority(0), - arrival(ON_THE_WAY), + state(ON_THE_WAY), waypoints_changed(false), metrics_stale(false), - current_sequence(0), - sequence_check_pending(false) + current_sequence(0) { train.get_layout().signal_block_reserved.connect(sigc::mem_fun(this, &TrainRouter::block_reserved)); train.signal_advanced.connect(sigc::mem_fun(this, &TrainRouter::train_advanced)); @@ -50,7 +49,6 @@ bool TrainRouter::set_route(const Route *r) waypoints.clear(); sequence_points.clear(); current_sequence = 0; - sequence_check_pending = false; route_changed(); @@ -79,7 +77,6 @@ void TrainRouter::use_planned_route() sequence_points = planner->get_sequence_for(train); current_sequence = 0; - sequence_check_pending = false; route_changed(); } @@ -88,7 +85,7 @@ void TrainRouter::route_changed() { BlockIter fncb = train.get_last_critical_block().next(); - arrival = ON_THE_WAY; + state = ON_THE_WAY; reserving_route = routes.begin(); if(!routes.empty()) { @@ -102,7 +99,7 @@ void TrainRouter::route_changed() { if(!advance_to_track(reserving_route, track)) { - arrival = (allocator.is_block_current(track->get_block()) ? ADVANCED_TO_END : RESERVED_TO_END); + state = (allocator.is_block_current(track->get_block()) ? ADVANCED_TO_END : RESERVED_TO_END); break; } if(&track->get_block()==fncb.block()) @@ -122,21 +119,18 @@ void TrainRouter::route_changed() { const SequencePoint &sp = sequence_points.front(); if(sp.block==fncb.block() && sp.preceding_train) - { - arrival = WAITING_FOR_SEQUENCE; - sequence_check_pending = true; - } + state = SEQUENCE_CHECK_PENDING; } } /* Refresh from the first non-critical block to pick up any changes in the - route. Set stop marker first in case an arrival condition was met within the + route. Set stop marker first in case a stopping state was set within the critical blocks. */ - if(arrival) + if(state!=ON_THE_WAY) train.stop_at(&*fncb.flip()); train.refresh_blocks_from(*fncb); - // If no arrival condition was found, clear a possible previous stop marker. - if(!arrival) + // If we don't need to stop, clear a possible previous stop marker. + if(state==ON_THE_WAY) train.stop_at(0); const Route *route = get_route(); @@ -147,26 +141,26 @@ void TrainRouter::route_changed() void TrainRouter::set_destination(const TrackChain &d) { if(waypoints.empty()) - waypoints.push_back(&d); + waypoints.push_back(Waypoint(d)); else - waypoints.back() = &d; + waypoints.back() = Waypoint(d); waypoints_changed = true; metrics_stale = true; } -void TrainRouter::add_waypoint(const TrackChain &wp) +void TrainRouter::add_waypoint(const TrackChain &chain, TrackChain::Direction dir) { - waypoints.push_back(&wp); + waypoints.push_back(Waypoint(chain, dir)); waypoints_changed = true; metrics_stale = true; } -const TrackChain &TrainRouter::get_waypoint(unsigned index) const +const TrainRouter::Waypoint &TrainRouter::get_waypoint(unsigned index) const { if(index>=waypoints.size()) throw out_of_range("TrainRouter::is_waypoint"); - return *waypoints[index]; + return waypoints[index]; } const TrainRouteMetric &TrainRouter::get_metric(int index) const @@ -215,7 +209,12 @@ void TrainRouter::message(const Message &msg) } else if(msg.type=="add-waypoint") { - if(msg.value.check_type()) + if(msg.value.check_type()) + { + Waypoint wp = msg.value.value(); + add_waypoint(*wp.chain, wp.direction); + } + else if(msg.value.check_type()) add_waypoint(*msg.value.value()); else add_waypoint(*msg.value.value()); @@ -250,23 +249,24 @@ void TrainRouter::tick(const Time::TimeDelta &dt) duration = max(duration-dt, Time::zero); } - if(sequence_check_pending) + if(state==SEQUENCE_CHECK_PENDING) { if(sequence_points.front().is_cleared()) { - arrival = ON_THE_WAY; + state = ON_THE_WAY; train.stop_at(0); } - sequence_check_pending = false; + else + state = WAITING_FOR_SEQUENCE; } - if(arrival==ADVANCED_TO_END && !train.get_speed()) + if(state==ADVANCED_TO_END && !train.get_speed()) { - signal_arrived.emit(waypoints.back()); - signal_event.emit(Message("arrived", waypoints.back())); - arrival = ARRIVED; + signal_arrived.emit(waypoints.back().chain); + signal_event.emit(Message("arrived", waypoints.back().chain)); + state = ARRIVED; } - else if(arrival==ARRIVED && !train.get_block_allocator().is_active()) + else if(state==ARRIVED && !train.get_block_allocator().is_active()) set_route(0); } @@ -298,7 +298,7 @@ void TrainRouter::block_reserved(Block &block, Train *t) if(sp.preceding_train==t && sp.block==&block) /* The other train's router will advance its sequence on the same signal and may not have handled it yet. */ - sequence_check_pending = true; + state = SEQUENCE_CHECK_PENDING; return; } @@ -329,7 +329,7 @@ void TrainRouter::block_reserved(Block &block, Train *t) if(reserving_route==routes.end() || !(*reserving_route)->has_track(*track)) { reserving_route = routes.begin(); - arrival = ON_THE_WAY; + state = ON_THE_WAY; track = t->get_block_allocator().first().track_iter(); for(; track; track=track.next()) { @@ -347,7 +347,7 @@ void TrainRouter::block_reserved(Block &block, Train *t) if(!advance_to_track(reserving_route, track)) { // We've reached the end of the route. Stop here. - arrival = RESERVED_TO_END; + state = RESERVED_TO_END; train.stop_at(&block); return; } @@ -361,7 +361,7 @@ void TrainRouter::block_reserved(Block &block, Train *t) SequencePoint &sp = sequence_points.front(); if(sp.block==&track->get_block() && !sp.is_cleared()) { - arrival = WAITING_FOR_SEQUENCE; + state = WAITING_FOR_SEQUENCE; train.stop_at(&block); } } @@ -369,35 +369,45 @@ void TrainRouter::block_reserved(Block &block, Train *t) void TrainRouter::train_advanced(Block &block) { - BlockIter b_iter = train.get_block_allocator().iter_for(block); - if(!waypoints.empty()) { // A waypoint is considered reached when the train has advanced through it. - const TrackChain &wp = *waypoints.front(); + BlockIter b_iter = train.get_block_allocator().iter_for(block); + const Waypoint &wp = waypoints.front(); TrackIter t_iter = b_iter.track_iter(); - if(wp.has_track(*t_iter)) + if(wp.chain->has_track(*t_iter)) { - for(; t_iter; t_iter=t_iter.next()) + while(1) { - if(!wp.has_track(*t_iter)) + TrackIter next = t_iter.next(); + if(!next) + break; + + if(!wp.chain->has_track(*next)) { + if(wp.direction!=TrackChain::UNSPECIFIED) + if(t_iter!=wp.chain->iter_for(*t_iter, wp.direction)) + break; + if(waypoints.size()==1) { - if(arrival==RESERVED_TO_END) - arrival = ADVANCED_TO_END; + if(state==RESERVED_TO_END) + state = ADVANCED_TO_END; } else { + const TrackChain *chain = wp.chain; waypoints.erase(waypoints.begin()); metrics_stale = true; - signal_waypoint_reached.emit(&wp); - signal_event.emit(Message("waypoint-reached", &wp)); + signal_waypoint_reached.emit(chain); + signal_event.emit(Message("waypoint-reached", chain)); } break; } - else if(!block.has_track(*t_iter)) + else if(!block.has_track(*next)) break; + + t_iter = next; } } } @@ -433,8 +443,8 @@ void TrainRouter::create_metrics() if(waypoints.empty()) return; - for(vector::const_iterator i=waypoints.begin(); i!=waypoints.end(); ++i) - metrics.push_back(new TrainRouteMetric(**i)); + for(vector::const_iterator i=waypoints.begin(); i!=waypoints.end(); ++i) + metrics.push_back(new TrainRouteMetric(*i->chain, i->direction)); for(unsigned i=metrics.size()-1; i-->0; ) metrics[i]->chain_to(*metrics[i+1]); @@ -559,6 +569,12 @@ void TrainRouter::apply_plan(Layout &layout, TrainRoutePlanner &planner) } +TrainRouter::Waypoint::Waypoint(const TrackChain &c, TrackChain::Direction d): + chain(&c), + direction(d) +{ } + + TrainRouter::SequencePoint::SequencePoint(Block &b, unsigned o): block(&b), preceding_train(0),