X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibmarklin%2Ftrack.cpp;h=3c2a410fa9d55bf2ab131985a76f7ea4266d4f1c;hb=c47f3fad07af11210c9cbd65d87964794189065e;hp=617328a64b7d24e474b39a50deae8e2f12dbda1b;hpb=6109a2122226e1c71e9cc71e4c21036e99e43601;p=r2c2.git diff --git a/source/libmarklin/track.cpp b/source/libmarklin/track.cpp index 617328a..3c2a410 100644 --- a/source/libmarklin/track.cpp +++ b/source/libmarklin/track.cpp @@ -223,7 +223,7 @@ Track *Track::get_link(unsigned i) const return links[i]; } -int Track::traverse(unsigned i, unsigned route) const +unsigned Track::traverse(unsigned i, unsigned path) const { const vector &eps = type.get_endpoints(); if(i>=eps.size()) @@ -231,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()) @@ -257,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; @@ -264,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; @@ -282,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;