X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibmarklin%2Ftrain.cpp;h=5bc50d85ff23ee5011535e34e5e6142f6b08fccc;hb=2029c5e4220e0809a39744a28ca9e2ff22e8ad28;hp=8ddb66bee3c5047a7c287a6925220d3456a1af0b;hpb=9ddcd066e37e4c72685817c042c30897786ece05;p=r2c2.git diff --git a/source/libmarklin/train.cpp b/source/libmarklin/train.cpp index 8ddb66b..5bc50d8 100644 --- a/source/libmarklin/train.cpp +++ b/source/libmarklin/train.cpp @@ -13,37 +13,59 @@ Distributed under the GPL #include "catalogue.h" #include "driver.h" #include "layout.h" -#include "locotype.h" #include "route.h" -#include "simplephysics.h" +#include "simplecontroller.h" +#include "timetable.h" #include "tracktype.h" #include "train.h" #include "vehicle.h" +#include "vehicletype.h" using namespace std; using namespace Msp; +namespace { + +struct SetFlag +{ + bool &flag; + + SetFlag(bool &f): flag(f) { flag = true; } + ~SetFlag() { flag = false; } +}; + +} + + namespace Marklin { -Train::Train(Layout &l, const LocoType &t, unsigned a): +Train::Train(Layout &l, const VehicleType &t, unsigned a): layout(l), loco_type(t), address(a), + priority(0), + yielding_to(0), pending_block(0), - control(new AIControl(*this, new SimplePhysics)), + reserving(false), + advancing(false), + controller(new AIControl(*this, new SimpleController)), + timetable(0), active(false), current_speed(0), speed_changing(false), reverse(false), functions(0), - route(0), - next_route(0), end_of_route(false), status("Unplaced"), travel_dist(0), pure_speed(false), - real_speed(15) + real_speed(15), + accurate_position(false), + overshoot_dist(false) { + if(!loco_type.is_locomotive()) + throw InvalidParameterValue("Initial vehicle must be a locomotive"); + vehicles.push_back(new Vehicle(layout, loco_type)); layout.add_train(*this); @@ -55,10 +77,16 @@ Train::Train(Layout &l, const LocoType &t, unsigned a): layout.signal_block_reserved.connect(sigc::mem_fun(this, &Train::block_reserved)); layout.get_driver().signal_sensor.connect(sigc::mem_fun(this, &Train::sensor_event)); layout.get_driver().signal_turnout.connect(sigc::mem_fun(this, &Train::turnout_event)); + + layout.get_driver().signal_halt.connect(sigc::mem_fun(this, &Train::halt_event)); + + controller->signal_control_changed.connect(sigc::mem_fun(this, &Train::control_changed)); } Train::~Train() { + delete controller; + delete timetable; for(vector::iterator i=vehicles.begin(); i!=vehicles.end(); ++i) delete *i; layout.remove_train(*this); @@ -71,6 +99,40 @@ void Train::set_name(const string &n) signal_name_changed.emit(name); } +void Train::set_priority(int p) +{ + priority = p; +} + +void Train::yield_to(const Train &t) +{ + yielding_to = &t; +} + +void Train::add_vehicle(const VehicleType &vt) +{ + Vehicle *veh = new Vehicle(layout, vt); + vehicles.back()->attach_back(*veh); + vehicles.push_back(veh); +} + +void Train::remove_vehicle(unsigned i) +{ + if(i>=vehicles.size()) + throw InvalidParameterValue("Vehicle index out of range"); + if(i==0) + throw InvalidParameterValue("Can't remove the locomotive"); + delete vehicles[i]; + vehicles.erase(vehicles.begin()+i); + if(iattach_back(*vehicles[i]); +} + +unsigned Train::get_n_vehicles() const +{ + return vehicles.size(); +} + Vehicle &Train::get_vehicle(unsigned i) { if(i>=vehicles.size()) @@ -87,15 +149,14 @@ const Vehicle &Train::get_vehicle(unsigned i) const void Train::set_control(const string &n, float v) { - control->set_control(n, v); - signal_control_changed.emit(n, control->get_control(n).value); + controller->set_control(n, v); } void Train::set_active(bool a) { if(a==active) return; - if(!a && control->get_speed()) + if(!a && controller->get_speed()) throw InvalidState("Can't deactivate while moving"); active = a; @@ -121,80 +182,214 @@ void Train::set_function(unsigned func, bool state) layout.get_driver().set_loco_function(address+1, func-4, state); } +float Train::get_control(const string &ctrl) const +{ + return controller->get_control(ctrl).value; +} + +float Train::get_speed() const +{ + return controller->get_speed(); +} + bool Train::get_function(unsigned func) const { return (functions>>func)&1; } +void Train::set_timetable(Timetable *tt) +{ + delete timetable; + timetable = tt; +} + void Train::set_route(const Route *r) { - if(!rsv_blocks.empty()) - { - for(list::iterator i=rsv_blocks.begin(); i!=rsv_blocks.end(); ++i) - if(i->block->get_sensor_id()) - { - release_blocks(rsv_blocks, ++i, rsv_blocks.end()); - break; - } - } + free_noncritical_blocks(); - route = r; - next_route = 0; + routes.clear(); + if(r) + routes.push_back(r); end_of_route = false; - if(route) + if(r && !cur_blocks.empty()) { + BlockRef &first = cur_blocks.front(); BlockRef &last = (rsv_blocks.empty() ? cur_blocks.back() : rsv_blocks.back()); BlockRef next = last.next(); - const Block::Endpoint &ep = next.block->get_endpoints()[next.entry]; - if(!route->get_tracks().count(ep.track)) + const Block::Endpoint &first_ep = first.block->get_endpoints()[first.entry]; + const Block::Endpoint &next_ep = next.block->get_endpoints()[next.entry]; + if(!r->has_track(*next_ep.track)) { - next_route = route; - route = Route::find(*ep.track, ep.track_ep, *next_route); + Route *lead = Route::find(*next_ep.track, next_ep.track_ep, *r); + create_lead_route(lead, lead); + routes.push_front(lead); } + else if(!r->has_track(*first_ep.track)) + routes.push_front(create_lead_route(0, r)); } - if(active) - reserve_more(); + reserve_more(); - signal_route_changed.emit(route); + signal_route_changed.emit(get_route()); } -void Train::go_to(const Track &to) +void Train::go_to(Track &to) { for(list::const_iterator i=cur_blocks.begin(); i!=cur_blocks.end(); ++i) - if(i->block->get_tracks().count(const_cast(&to))) + if(i->block->has_track(to)) { signal_arrived.emit(); set_route(0); return; } - BlockRef *last = 0; - if(rsv_blocks.empty()) - last = &cur_blocks.back(); + free_noncritical_blocks(); + + BlockRef &last = (rsv_blocks.empty() ? cur_blocks.back() : rsv_blocks.back()); + BlockRef next = last.next(); + const Block::Endpoint &ep = next.block->get_endpoints()[next.entry]; + + Route *route = Route::find(*ep.track, ep.track_ep, to); + create_lead_route(route, route); + set_route(route); +} + +bool Train::divert(Track &from) +{ + if(!from.get_turnout_id()) + throw InvalidParameterValue("Can't divert from a non-turnout"); + if(routes.empty()) + return false; + + int path = -1; + unsigned from_ep = 0; + list::iterator route = routes.begin(); + Block *block = cur_blocks.back().block; + unsigned entry = cur_blocks.back().entry; + set visited; + + // Follow our routes to find out where we're entering the turnout + while(1) + { + Block *link = block->get_link(block->traverse(entry, route->route)); + entry = link->get_endpoint_by_link(*block); + block = link; + + const Block::Endpoint &entry_ep = block->get_endpoints()[entry]; + + if(visited.count(entry_ep.track)) + return false; + visited.insert(entry_ep.track); + + if(!advance_route(route, *entry_ep.track)) + return false; + + if(entry_ep.track==&from) + { + if(block->get_train()==this && !free_block(*block)) + return false; + + from_ep = entry_ep.track_ep; + path = route->route->get_turnout(from.get_turnout_id()); + break; + } + } + + // Check that more than one path is available + unsigned ep_paths = from.get_type().get_endpoints()[from_ep].paths; + if(!(ep_paths&(ep_paths-1))) + return false; + + // Choose some other path + for(int i=0; ep_paths>>i; ++i) + if((ep_paths&(1<get_endpoint_by_link(from); + + set tracks; + for(list::iterator i=routes.begin(); i!=routes.end(); ++i) + tracks.insert(i->route->get_tracks().begin(), i->route->get_tracks().end()); + Route *diversion = 0; + try + { + diversion = Route::find(*track, ep, tracks); + } + catch(const Msp::Exception &) + { + return false; + } + + diversion->set_name("Diversion"); + diversion->add_track(from); + diversion->set_turnout(from.get_turnout_id(), path); + + if(!is_valid_diversion(*diversion, from, from_ep)) + { + delete diversion; + return false; + } + + // Follow the diversion route until we get back to the original route + list::iterator end = routes.end(); + while(1) + { + path = 0; + if(track->get_turnout_id()) + path = diversion->get_turnout(track->get_turnout_id()); + Track *next = track->get_link(track->traverse(ep, path)); + + for(list::iterator i=route; (end==routes.end() && i!=routes.end()); ++i) + if(i->route->has_track(*next)) + end = i; + + if(end!=routes.end()) + break; + else if(!diversion->has_track(*next)) + throw Exception("Pathfinder returned a bad route"); + + ep = next->get_endpoint_by_link(*track); + track = next; + } + + if(route==end) + // We are rejoining the same route we diverted from, duplicate it + routes.insert(end, *route); else { - for(list::iterator i=rsv_blocks.begin(); (i!=rsv_blocks.end() && !last); ++i) - if(i->block->get_sensor_id()) - last = &*i; + ++route; + routes.erase(route, end); } + routes.insert(end, RouteRef(diversion, from.get_turnout_id())); - BlockRef next = last->next(); - const Block::Endpoint &ep = next.block->get_endpoints()[next.entry]; + return true; +} - set_route(Route::find(*ep.track, ep.track_ep, to)); +const Route *Train::get_route() const +{ + if(routes.empty()) + return 0; + return routes.front().route; } void Train::place(Block &block, unsigned entry) { - if(control->get_speed()) + if(controller->get_speed()) throw InvalidState("Must be stopped before placing"); release_blocks(rsv_blocks); release_blocks(cur_blocks); set_active(false); + accurate_position = false; if(!block.reserve(this)) { @@ -209,17 +404,38 @@ void Train::place(Block &block, unsigned entry) const Block::Endpoint &bep = block.get_endpoints()[exit]; Track *track = bep.track->get_link(bep.track_ep); unsigned ep = track->get_endpoint_by_link(*bep.track); - vehicles.front()->place(track, ep, 0, Vehicle::FRONT_BUFFER); + vehicles.front()->place(*track, ep, 0, Vehicle::FRONT_BUFFER); } else { const Block::Endpoint &bep = block.get_endpoints()[entry]; - vehicles.front()->place(bep.track, bep.track_ep, 0, Vehicle::BACK_BUFFER); + vehicles.back()->place(*bep.track, bep.track_ep, 0, Vehicle::BACK_BUFFER); } } +void Train::unplace() +{ + if(controller->get_speed()) + throw InvalidState("Must be stopped before unplacing"); + + release_blocks(rsv_blocks); + release_blocks(cur_blocks); + + set_active(false); + accurate_position = false; + + for(vector::iterator i=vehicles.begin(); i!=vehicles.end(); ++i) + (*i)->unplace(); + + set_status("Unplaced"); +} + bool Train::free_block(Block &block) { + float margin = 10*layout.get_catalogue().get_scale(); + if(get_reserved_distance_until(&block, false)get_braking_distance()*1.3+margin) + return false; + unsigned nsens = 0; for(list::iterator i=rsv_blocks.begin(); i!=rsv_blocks.end(); ++i) { @@ -237,59 +453,91 @@ bool Train::free_block(Block &block) return false; } -int Train::get_entry_to_block(Block &block) const +void Train::free_noncritical_blocks() { - for(list::const_iterator i=cur_blocks.begin(); i!=cur_blocks.end(); ++i) - if(i->block==&block) - return i->entry; - for(list::const_iterator i=rsv_blocks.begin(); i!=rsv_blocks.end(); ++i) - if(i->block==&block) - return i->entry; - return -1; -} + if(cur_blocks.empty() || rsv_blocks.empty()) + return; + + if(controller->get_speed()==0) + { + release_blocks(rsv_blocks); + return; + } + + float margin = 10*layout.get_catalogue().get_scale(); + float min_dist = controller->get_braking_distance()*1.3+margin; -float Train::get_reserved_distance() const -{ Vehicle &veh = *(reverse ? vehicles.back() : vehicles.front()); - const VehicleType &vtype = veh.get_type(); Track *track = veh.get_track(); - unsigned entry = veh.get_entry(); + list::iterator block = cur_blocks.begin(); + bool in_rsv = false; + while(block!=rsv_blocks.end() && !block->block->has_track(*track)) + { + ++block; + if(block==cur_blocks.end()) + { + block = rsv_blocks.begin(); + in_rsv = true; + } + } - float result = -vtype.get_length()/2; + unsigned entry = veh.get_entry(); + float dist = veh.get_offset(); if(reverse) - { entry = track->traverse(entry); - result += veh.get_offset(); - } else - result -= veh.get_offset(); + dist = track->get_type().get_path_length(track->get_active_path())-dist; + dist -= veh.get_type().get_length()/2; - bool first = true; - list::const_iterator block = cur_blocks.begin(); + bool nsens = 0; while(1) { - if(!first || !reverse) - result += track->get_type().get_path_length(track->get_active_path()); - first = false; - - unsigned exit = track->traverse(entry); - Track *next = track->get_link(exit); + Track *next = track->get_link(track->traverse(entry)); + entry = next->get_endpoint_by_link(*track); + track = next; - while(!block->block->get_tracks().count(next)) + if(!block->block->has_track(*track)) { ++block; if(block==cur_blocks.end()) + { block = rsv_blocks.begin(); + in_rsv = true; + } if(block==rsv_blocks.end()) - return result; + return; + + if(dist>min_dist && nsens>0) + { + release_blocks(rsv_blocks, block, rsv_blocks.end()); + return; + } + + if(in_rsv && block->block->get_sensor_id()) + ++nsens; } - entry = next->get_endpoint_by_link(*track); - track = next; + dist += track->get_type().get_path_length(track->get_active_path()); } } +int Train::get_entry_to_block(Block &block) const +{ + for(list::const_iterator i=cur_blocks.begin(); i!=cur_blocks.end(); ++i) + if(i->block==&block) + return i->entry; + for(list::const_iterator i=rsv_blocks.begin(); i!=rsv_blocks.end(); ++i) + if(i->block==&block) + return i->entry; + return -1; +} + +float Train::get_reserved_distance() const +{ + return get_reserved_distance_until(0, false); +} + void Train::tick(const Time::TimeStamp &t, const Time::TimeDelta &dt) { if(!active && stop_timeout && t>=stop_timeout) @@ -299,24 +547,28 @@ void Train::tick(const Time::TimeStamp &t, const Time::TimeDelta &dt) stop_timeout = Time::TimeStamp(); } - control->tick(dt); - float speed = control->get_speed(); - unsigned speed_notch = find_speed(abs(speed)); + Driver &driver = layout.get_driver(); + + if(timetable) + timetable->tick(t); + controller->tick(dt); + float speed = controller->get_speed(); + unsigned speed_notch = find_speed(speed); - if(speed && (speed<0)!=reverse) + if(controller->get_reverse()!=reverse) { - layout.get_driver().set_loco_reverse(address, speed<0); - reverse = speed<0; + reverse = controller->get_reverse(); + driver.set_loco_reverse(address, reverse); release_blocks(rsv_blocks); reverse_blocks(cur_blocks); reserve_more(); } - if(speed_notch!=current_speed && !speed_changing) + if(speed_notch!=current_speed && !speed_changing && !driver.is_halted() && driver.get_power()) { speed_changing = true; - layout.get_driver().set_loco_speed(address, speed_notch); + driver.set_loco_speed(address, speed_notch); pure_speed = false; @@ -331,16 +583,44 @@ void Train::tick(const Time::TimeStamp &t, const Time::TimeDelta &dt) if(!active) set_active(true); - Track *track = vehicles[0]->get_track(); + Vehicle &vehicle = *(reverse ? vehicles.back() : vehicles.front()); + Track *track = vehicle.get_track(); bool ok = false; for(list::const_iterator i=cur_blocks.begin(); (!ok && i!=cur_blocks.end()); ++i) - ok = i->block->get_tracks().count(track); + ok = i->block->has_track(*track); + float d = get_real_speed(current_speed)*(dt/Time::sec); if(ok) { - float d = get_real_speed(current_speed)*(dt/Time::sec); - vehicles[0]->advance(reverse ? -d : d); + SetFlag setf(advancing); + vehicle.advance(reverse ? -d : d); + } + else if(accurate_position) + { + overshoot_dist += d; + if(overshoot_dist>40*layout.get_catalogue().get_scale()) + { + layout.emergency(name+" has not arrived at sensor"); + accurate_position = false; + } + } + } + else if(end_of_route && rsv_blocks.empty()) + { + set_active(false); + signal_arrived.emit(); + set_route(0); + } + + if(!cur_blocks.empty() && !cur_blocks.front().block->get_sensor_id()) + { + float dist = get_reserved_distance_until(cur_blocks.front().block, true); + + if(dist>10*layout.get_catalogue().get_scale()) + { + cur_blocks.front().block->reserve(0); + cur_blocks.pop_front(); } } } @@ -348,6 +628,13 @@ void Train::tick(const Time::TimeStamp &t, const Time::TimeDelta &dt) void Train::save(list &st) const { st.push_back((DataFile::Statement("name"), name)); + + st.push_back((DataFile::Statement("priority"), priority)); + + for(vector::const_iterator i=vehicles.begin(); i!=vehicles.end(); ++i) + if(i!=vehicles.begin()) + st.push_back((DataFile::Statement("vehicle"), (*i)->get_type().get_article_number())); + for(unsigned i=0; i<=14; ++i) if(real_speed[i].weight) st.push_back((DataFile::Statement("real_speed"), i, real_speed[i].speed, real_speed[i].weight)); @@ -365,8 +652,25 @@ void Train::save(list &st) const st.push_back((DataFile::Statement("block"), i->block->get_id())); } - if(route) - st.push_back((DataFile::Statement("route"), route->get_name())); + if(!routes.empty()) + { + list::const_iterator i = routes.begin(); + for(; (i!=routes.end() && i->route->is_temporary()); ++i) ; + if(i!=routes.end()) + st.push_back((DataFile::Statement("route"), i->route->get_name())); + } + + if(timetable) + { + DataFile::Statement ss("timetable"); + timetable->save(ss.sub); + st.push_back(ss); + } +} + +void Train::control_changed(const Controller::Control &ctrl) +{ + signal_control_changed.emit(ctrl.name, ctrl.value); } void Train::loco_speed_event(unsigned addr, unsigned speed, bool) @@ -375,6 +679,7 @@ void Train::loco_speed_event(unsigned addr, unsigned speed, bool) { current_speed = speed; speed_changing = false; + pure_speed = false; } } @@ -399,19 +704,35 @@ void Train::sensor_event(unsigned addr, bool state) { // Find the first sensor block from our reserved blocks that isn't this sensor list::iterator i; + unsigned result = 0; for(i=rsv_blocks.begin(); i!=rsv_blocks.end(); ++i) - if(i->block->get_sensor_id() && i->block->get_sensor_id()!=addr) - break; + if(i->block->get_sensor_id()) + { + if(i->block->get_sensor_id()!=addr) + { + if(result==0) + result = 2; + else if(result==1) + break; + } + else if(result==0) + result = 1; + else if(result==2) + result = 3; + } - if(i!=rsv_blocks.begin()) + if(result==1 && i!=rsv_blocks.begin()) { // Compute speed and update related state float travel_time_secs = (Time::now()-last_entry_time)/Time::sec; if(pure_speed) { - RealSpeed &rs = real_speed[current_speed]; - rs.add(travel_dist/travel_time_secs, travel_time_secs); + if(current_speed) + { + RealSpeed &rs = real_speed[current_speed]; + rs.add(travel_dist/travel_time_secs, travel_time_secs); + } set_status(format("Traveling %d kmh", get_travel_speed())); } @@ -422,33 +743,34 @@ void Train::sensor_event(unsigned addr, bool state) j->block->traverse(j->entry, &block_len); travel_dist += block_len; - if(j->block->get_sensor_id()==addr) + if(j->block->get_sensor_id()==addr && !advancing) { const Block::Endpoint &bep = j->block->get_endpoints()[j->entry]; if(reverse) { Track *track = bep.track->get_link(bep.track_ep); unsigned ep = track->get_endpoint_by_link(*bep.track); - vehicles.back()->place(track, ep, 0, Vehicle::BACK_AXLE); + vehicles.back()->place(*track, ep, 0, Vehicle::BACK_AXLE); } else - vehicles.front()->place(bep.track, bep.track_ep, 0, Vehicle::FRONT_AXLE); + vehicles.front()->place(*bep.track, bep.track_ep, 0, Vehicle::FRONT_AXLE); } } last_entry_time = Time::now(); pure_speed = true; + accurate_position = true; + overshoot_dist = 0; // Check if we've reached the next route - if(next_route) + if(routes.size()>1) { - const set &rtracks = next_route->get_tracks(); + const set &rtracks = (++routes.begin())->route->get_tracks(); for(list::iterator j=rsv_blocks.begin(); j!=i; ++j) if(rtracks.count(j->block->get_endpoints()[j->entry].track)) { - route = next_route; - next_route = 0; + routes.pop_front(); // XXX Exceptions? - signal_route_changed.emit(route); + signal_route_changed.emit(routes.front().route); break; } } @@ -458,92 +780,127 @@ void Train::sensor_event(unsigned addr, bool state) // Try to get more blocks if we're moving if(active) - { - unsigned nsens = reserve_more(); - if(!nsens && end_of_route) - { - signal_arrived.emit(); - set_route(0); - } - } + reserve_more(); } + else if(result==3) + layout.emergency("Sensor for "+name+" triggered out of order"); } else { + const Vehicle &veh = *(reverse ? vehicles.front() : vehicles.back()); + // Find the first sensor in our current blocks that's still active list::iterator end = cur_blocks.begin(); for(list::iterator i=cur_blocks.begin(); i!=cur_blocks.end(); ++i) + { + if(i->block->has_track(*veh.get_track())) + break; if(i->block->get_sensor_id()) { if(layout.get_driver().get_sensor(i->block->get_sensor_id())) break; else + { end = i; + ++end; + } } + } - if(end!=cur_blocks.begin()) - { + if(end!=cur_blocks.begin() && end!=cur_blocks.end()) // Free blocks up to the last inactive sensor - ++end; release_blocks(cur_blocks, cur_blocks.begin(), end); - } } } void Train::turnout_event(unsigned addr, bool) { - if(pending_block) + if(pending_block && (!pending_block->get_train() || pending_block->get_train()==this)) { unsigned pending_addr = pending_block->get_turnout_id(); bool double_addr = (*pending_block->get_tracks().begin())->get_type().is_double_address(); if(addr==pending_addr || (double_addr && addr==pending_addr+1)) - reserve_more(); + { + if(reserving) + pending_block = 0; + else + reserve_more(); + } } } +void Train::halt_event(bool h) +{ + if(h) + accurate_position = false; +} + void Train::block_reserved(const Block &block, const Train *train) { - if(&block==pending_block && !train) + if(&block==pending_block && !train && !reserving) reserve_more(); } unsigned Train::reserve_more() { - BlockRef *last = 0; + if(!active) + return 0; + + BlockRef *start = 0; if(!rsv_blocks.empty()) - last = &rsv_blocks.back(); + start = &rsv_blocks.back(); else if(!cur_blocks.empty()) - last = &cur_blocks.back(); - if(!last) + start = &cur_blocks.back(); + if(!start) return 0; pending_block = 0; - // See how many sensor blocks we already have + // See how many sensor blocks and how much track we already have unsigned nsens = 0; + float dist = 0; for(list::const_iterator i=rsv_blocks.begin(); i!=rsv_blocks.end(); ++i) + { if(i->block->get_sensor_id()) ++nsens; - - const Route *cur_route = 0; - if(route) - { - unsigned exit = last->block->traverse(last->entry); - Track *track = last->block->get_endpoints()[exit].track; - if(route->get_tracks().count(track)) - cur_route = route; - else if(next_route && next_route->get_tracks().count(track)) - cur_route = next_route; + if(nsens>0) + { + float length = 0; + i->block->traverse(i->entry, &length); + dist += length; + } } + + if(end_of_route) + return nsens; + + list::iterator cur_route = routes.begin(); + advance_route(cur_route, *start->block->get_endpoints()[start->entry].track); + + float approach_margin = 50*layout.get_catalogue().get_scale(); + float min_dist = controller->get_braking_distance()*1.3+approach_margin*2; - bool got_more = false; - BlockRef *good = last; + BlockRef *last = start; + BlockRef *good = start; + Track *divert_track = 0; + bool try_divert = false; unsigned good_sens = nsens; - while(good_sens<3) + float good_dist = dist; + Train *blocking_train = 0; + std::list contested_blocks; + + SetFlag setf(reserving); + + while(good_sens<3 || good_distblock->traverse(last->entry); - Block *link = last->block->get_link(exit); + float length = 0; + Block *link = 0; + { + const Route *route = (cur_route!=routes.end() ? cur_route->route : 0); + unsigned exit = last->block->traverse(last->entry, route, &length); + link = last->block->get_link(exit); + } if(!link) break; @@ -553,89 +910,272 @@ unsigned Train::reserve_more() const Block::Endpoint &entry_ep = link->get_endpoints()[entry]; - if(cur_route) + if(cur_route!=routes.end()) { - if(cur_route!=next_route && next_route && next_route->get_tracks().count(entry_ep.track)) - cur_route = next_route; - else if(!cur_route->get_tracks().count(entry_ep.track)) + if(!advance_route(cur_route, *entry_ep.track)) { // Keep the blocks if we arrived at the end of the route + if(!blocking_train) + { + good = last; + good_sens = nsens; + good_dist = dist; + end_of_route = true; + } + break; + } + } + else if(!routes.empty() && routes.front().route->has_track(*entry_ep.track)) + cur_route = routes.begin(); + + if(link->get_endpoints().size()<2) + { + if(!blocking_train) + { good = last; good_sens = nsens; - end_of_route = true; - break; + good_dist = dist; + } + break; + } + + if(blocking_train) + { + if(link->get_train()!=blocking_train) + { + if(blocking_train->free_block(*contested_blocks.back().block)) + { + // Roll back and start actually reserving the blocks + last = &rsv_blocks.back(); + cur_route = routes.begin(); + advance_route(cur_route, *last->block->get_endpoints()[last->entry].track); + if(blocking_train->get_priority()==priority) + blocking_train->yield_to(*this); + blocking_train = 0; + continue; + } + else + { + yield_to(*blocking_train); + pending_block = contested_blocks.front().block; + try_divert = divert_track; + break; + } + } + else + { + contested_blocks.push_back(BlockRef(link, entry)); + last = &contested_blocks.back(); + continue; } } - else if(route && route->get_tracks().count(entry_ep.track)) - cur_route = route; - if(!link->reserve(this)) + bool reserved = link->reserve(this); + if(!reserved) { - // If we found another train and it's not headed straight for us, we can keep the blocks we got - int other_entry = link->get_train()->get_entry_to_block(*link); + /* We've found another train. If it wants to exit the block from the + same endpoint we're trying to enter from or the other way around, + treat it as coming towards us. Otherwise treat it as going in the + same direction. */ + Train *other_train = link->get_train(); + int other_entry = other_train->get_entry_to_block(*link); if(other_entry<0) throw LogicError("Block reservation inconsistency"); - if(static_cast(entry)!=link->traverse(other_entry)) + + bool entry_conflict = (static_cast(entry)==link->traverse(other_entry)); + bool exit_conflict = (link->traverse(entry)==static_cast(other_entry)); + if(!entry_conflict && !last->block->get_turnout_id()) { + /* The other train is not coming to the blocks we're holding, so we + can keep them. */ good = last; good_sens = nsens; + good_dist = dist; + } + + int other_prio = other_train->get_priority(); + + if(!entry_conflict && !exit_conflict && other_priofree_block(*link)) + reserved = link->reserve(this); + } + else if(other_train!=yielding_to && (other_prioget_turnout_id()) { const Endpoint &track_ep = entry_ep.track->get_type().get_endpoints()[entry_ep.track_ep]; + bool multiple_paths = (track_ep.paths&(track_ep.paths-1)); - // Keep the blocks reserved so far, as either us or the other train can diverge - good = last; - good_sens = nsens; + if(multiple_paths || !last->block->get_turnout_id()) + { + /* We can keep the blocks reserved so far if we are facing the + points or if there was no turnout immediately before this one. + With multiple successive turnouts (as is common in crossovers) it's + best to hold at one we can divert from. */ + good = last; + good_sens = nsens; + good_dist = dist; + } // Figure out what path we'd like to take on the turnout int path = -1; - if(cur_route) - path = cur_route->get_turnout(link->get_turnout_id()); + for(list::iterator i=cur_route; (path<0 && i!=routes.end()); ++i) + path = i->route->get_turnout(link->get_turnout_id()); if(path<0) path = entry_ep.track->get_active_path(); - if(!((track_ep.paths>>path)&1)) + if(!(track_ep.paths&(1<>i; ++i) - if((track_ep.paths>>i)&1) + if(track_ep.paths&(1<(entry_ep.track->get_active_path())) { // The turnout is set to wrong path - switch and wait for it - link->reserve(0); pending_block = link; entry_ep.track->set_active_path(path); - break; + if(pending_block) + { + link->reserve(0); + break; + } } + + if(multiple_paths && cur_route!=routes.end() && cur_route->diversion!=link->get_turnout_id()) + /* There's multiple paths to be taken and we are on a route - take + note of the diversion possibility */ + divert_track = entry_ep.track; } + if(!contested_blocks.empty() && contested_blocks.front().block==link) + contested_blocks.pop_front(); + rsv_blocks.push_back(BlockRef(link, entry)); last = &rsv_blocks.back(); if(last->block->get_sensor_id()) - { ++nsens; - got_more = true; - } + if(nsens>0) + dist += length; } // Unreserve blocks that were not good - while(!rsv_blocks.empty() && last!=good) + while(!rsv_blocks.empty() && &rsv_blocks.back()!=good) { - last->block->reserve(0); - rsv_blocks.erase(--rsv_blocks.end()); - if(!rsv_blocks.empty()) - last = &rsv_blocks.back(); + rsv_blocks.back().block->reserve(0); + rsv_blocks.pop_back(); } + if(!rsv_blocks.empty() && &rsv_blocks.back()!=start) + // We got some new blocks, so no longer need to yield + yielding_to = 0; + + // Make any sensorless blocks at the beginning immediately current + list::iterator i; + for(i=rsv_blocks.begin(); (i!=rsv_blocks.end() && !i->block->get_sensor_id()); ++i) ; + if(i!=rsv_blocks.begin()) + cur_blocks.splice(cur_blocks.end(), rsv_blocks, rsv_blocks.begin(), i); + + if(try_divert && divert(*divert_track)) + return reserve_more(); + return good_sens; } +float Train::get_reserved_distance_until(const Block *until_block, bool back) const +{ + if(cur_blocks.empty()) + return 0; + + Vehicle &veh = *(reverse!=back ? vehicles.back() : vehicles.front()); + const VehicleType &vtype = veh.get_type(); + + Track *track = veh.get_track(); + if(!track) + return 0; + + list::const_iterator block = cur_blocks.begin(); + while(block!=rsv_blocks.end() && !block->block->has_track(*track)) + { + ++block; + if(block==cur_blocks.end()) + { + if(back) + return 0; + block = rsv_blocks.begin(); + } + } + if(block==rsv_blocks.end() || block->block==until_block) + return 0; + + unsigned entry = veh.get_entry(); + + float result = veh.get_offset(); + if(reverse!=back) + entry = track->traverse(entry); + else + result = track->get_type().get_path_length(track->get_active_path())-result; + result -= vtype.get_length()/2; + + while(1) + { + if(track->get_type().get_endpoints().size()<2) + break; + + Track *next = track->get_link(track->traverse(entry)); + + if(!block->block->has_track(*next)) + { + if(back) + { + if(block==cur_blocks.begin()) + break; + --block; + } + else + { + ++block; + if(block==cur_blocks.end()) + block = rsv_blocks.begin(); + if(block==rsv_blocks.end()) + break; + } + + if(block->block==until_block) + break; + } + + entry = next->get_endpoint_by_link(*track); + track = next; + + result += track->get_type().get_path_length(track->get_active_path()); + } + + return result; +} + float Train::get_real_speed(unsigned i) const { if(real_speed[i].weight) @@ -673,9 +1213,11 @@ unsigned Train::find_speed(float real) const unsigned low = 0; unsigned high = 0; + unsigned last = 0; for(unsigned i=0; (!high && i<=14); ++i) if(real_speed[i].weight) { + last = i; if(real_speed[i].speed(low*real/real_speed[low].speed), 14U); + { + if(real) + return 3; + else + return 0; + } + return min(min(static_cast(low*real/real_speed[low].speed), 14U), last+3); } float f = (real-real_speed[low].speed)/(real_speed[high].speed-real_speed[low].speed); @@ -727,6 +1274,100 @@ void Train::reverse_blocks(list &blocks) const i->entry = i->block->traverse(i->entry); } +bool Train::advance_route(list::iterator &iter, Track &track) +{ + while(iter!=routes.end() && !iter->route->has_track(track)) + ++iter; + if(iter==routes.end()) + return false; + + list::iterator next = iter; + ++next; + if(next!=routes.end() && next->diversion && next->route->has_track(track)) + iter = next; + + return true; +} + +Route *Train::create_lead_route(Route *lead, const Route *target) +{ + if(!lead) + { + lead = new Route(layout); + lead->set_name("Lead"); + lead->set_temporary(true); + } + + set tracks; + for(list::iterator i=cur_blocks.begin(); i!=rsv_blocks.end(); ) + { + const set &btracks = i->block->get_tracks(); + for(set::const_iterator j=btracks.begin(); j!=btracks.end(); ++j) + if(!target || !target->has_track(**j)) + tracks.insert(*j); + + if(++i==cur_blocks.end()) + i = rsv_blocks.begin(); + } + + lead->add_tracks(tracks); + + return lead; +} + +bool Train::is_valid_diversion(const Route &diversion, Track &from, unsigned from_ep) +{ + float diversion_len = 0; + Track *track = &from; + unsigned ep = from_ep; + while(diversion.has_track(*track)) + { + unsigned path = 0; + if(track->get_turnout_id()) + path = diversion.get_turnout(track->get_turnout_id()); + diversion_len += track->get_type().get_path_length(path); + + Track *next = track->get_link(track->traverse(ep, path)); + ep = next->get_endpoint_by_link(*track); + track = next; + + if(track==&from) + return false; + } + + list::iterator route = routes.begin(); + if(!advance_route(route, from)) + return false; + + set visited; + float route_len = 0; + track = &from; + ep = from_ep; + while(1) + { + unsigned path = 0; + if(track->get_turnout_id()) + path = route->route->get_turnout(track->get_turnout_id()); + route_len += track->get_type().get_path_length(path); + + if(track!=&from && diversion.has_track(*track)) + break; + + if(visited.count(track)) + return false; + visited.insert(track); + + Track *next = track->get_link(track->traverse(ep, path)); + ep = next->get_endpoint_by_link(*track); + track = next; + + if(!advance_route(route, *track)) + return false; + } + + return diversion_len(t), - prev_block(0) + prev_block(0), + blocks_valid(true) { add("block", &Loader::block); add("block_hint", &Loader::block_hint); add("name", &Loader::name); + add("priority", &Train::priority); add("real_speed", &Loader::real_speed); add("route", &Loader::route); + add("timetable", &Loader::timetable); + add("vehicle", &Loader::vehicle); +} + +void Train::Loader::finish() +{ + if(!obj.cur_blocks.empty()) + { + const BlockRef &blkref = obj.cur_blocks.front(); + const Block::Endpoint &bep = blkref.block->get_endpoints()[blkref.entry]; + float offset = 2*obj.layout.get_catalogue().get_scale(); + obj.vehicles.back()->place(*bep.track, bep.track_ep, offset, Vehicle::BACK_BUFFER); + + obj.set_status("Stopped"); + } } void Train::Loader::block(unsigned id) { - Block &blk = obj.layout.get_block(id); + if(!blocks_valid) + return; + + Block *blk; + try + { + blk = &obj.layout.get_block(id); + } + catch(const KeyError &) + { + blocks_valid = false; + return; + } + int entry = -1; if(prev_block) - entry = blk.get_endpoint_by_link(*prev_block); + entry = blk->get_endpoint_by_link(*prev_block); if(entry<0) entry = 0; - blk.reserve(&obj); - obj.cur_blocks.push_back(BlockRef(&blk, entry)); - obj.set_status("Stopped"); - const Block::Endpoint &bep = blk.get_endpoints()[entry]; - obj.vehicles.back()->place(bep.track, bep.track_ep, 0, Vehicle::BACK_BUFFER); + blk->reserve(&obj); + obj.cur_blocks.push_back(BlockRef(blk, entry)); - if(blk.get_sensor_id()) - obj.layout.get_driver().set_sensor(blk.get_sensor_id(), true); + if(blk->get_sensor_id()) + obj.layout.get_driver().set_sensor(blk->get_sensor_id(), true); - prev_block = &blk; + prev_block = blk; } void Train::Loader::block_hint(unsigned id) { - prev_block = &obj.layout.get_block(id); + try + { + prev_block = &obj.layout.get_block(id); + } + catch(const KeyError &) + { + blocks_valid = false; + } } void Train::Loader::name(const string &n) @@ -812,4 +1493,21 @@ void Train::Loader::route(const string &n) obj.set_route(&obj.layout.get_route(n)); } +void Train::Loader::timetable() +{ + if(obj.timetable) + throw InvalidState("A timetable has already been loaded"); + + obj.timetable = new Timetable(obj); + load_sub(*obj.timetable); +} + +void Train::Loader::vehicle(unsigned n) +{ + const VehicleType &vtype = obj.layout.get_catalogue().get_vehicle(n); + Vehicle *veh = new Vehicle(obj.layout, vtype); + obj.vehicles.back()->attach_back(*veh); + obj.vehicles.push_back(veh); +} + } // namespace Marklin