X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibmarklin%2Ftrack.cpp;h=3c2a410fa9d55bf2ab131985a76f7ea4266d4f1c;hb=c47f3fad07af11210c9cbd65d87964794189065e;hp=01b789373c6fb655b712a6558533ec588adc08f9;hpb=38fb8d56efde037a71c46a58bda314655e68ab6c;p=r2c2.git diff --git a/source/libmarklin/track.cpp b/source/libmarklin/track.cpp index 01b7893..3c2a410 100644 --- a/source/libmarklin/track.cpp +++ b/source/libmarklin/track.cpp @@ -151,7 +151,12 @@ bool Track::snap_to(Track &other, bool link) if(dx*dx+dy*dy &eps = type.get_endpoints(); if(i>=eps.size()) @@ -226,25 +231,25 @@ int Track::traverse(unsigned i, unsigned route) const const Endpoint &ep = eps[i]; - if(ep.routes&(1< &eps = type.get_endpoints(); if(epi>=eps.size()) @@ -252,6 +257,17 @@ Point Track::get_point(unsigned epi, unsigned route, float d) const float x = eps[epi].pos.x; float y = eps[epi].pos.y; + float z = 0; + float slope_norm = 0; + if(eps.size()==2) + { + slope_norm = slope/type.get_total_length(); + if(epi==1) + { + z = slope; + slope_norm = -slope_norm; + } + } const vector &parts = type.get_parts(); const TrackPart *last_part = 0; @@ -259,7 +275,7 @@ Point Track::get_point(unsigned epi, unsigned route, float d) const { for(vector::const_iterator i=parts.begin(); i!=parts.end(); ++i) { - if((eps[epi].routes&(1<route!=route) + if((eps[epi].paths&(1<path!=path) continue; if(&*i==last_part) continue; @@ -277,18 +293,20 @@ Point Track::get_point(unsigned epi, unsigned route, float d) const plen *= abs(i->radius); if(dget_point(d); float c = cos(rot); float s = sin(rot); - return Point(pos.x+c*p.x-s*p.y, pos.y+c*p.y+s*p.x); + return Point(pos.x+c*p.x-s*p.y, pos.y+c*p.y+s*p.x, pos.z+z); } else if(part_eps.size()>1) { d -= plen; x = part_eps[1-j].pos.x; y = part_eps[1-j].pos.y; + z += plen*slope_norm; last_part = &*i; i = parts.begin(); break;