X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2F3d%2Fpath.cpp;h=8c36a3088f249f65305e9c13c5ea4e0a7f1d1e7f;hb=5929b101ee38b5668b328e7b1eac4bf49c912412;hp=1a1a16ba92902f3fcd0db9f41deae4f6243d20d2;hpb=754ac497179474d0266b55e881a084fef7d5d6a1;p=r2c2.git diff --git a/source/3d/path.cpp b/source/3d/path.cpp index 1a1a16b..8c36a30 100644 --- a/source/3d/path.cpp +++ b/source/3d/path.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of R²C² -Copyright © 2010-2011 Mikkosoft Productions, Mikko Rasa -Distributed under the GPL -*/ - #include #include #include "libr2c2/tracktype.h" @@ -13,22 +6,30 @@ Distributed under the GPL #include "track.h" #include "tracktype.h" +using namespace std; using namespace Msp; namespace R2C2 { Path3D::Path3D(const Track3D &t): + Utility3D(t.get_layout()), track(t), - paths(0), + path(t.get_track().get_active_path()), + side(0), automatic(true), + mesh(0), z_offs(0) { - track.get_layout().get_path_scene().add(*this); + update_mesh(); + + layout.get_path_scene().add(*this); + if(track.get_track().get_type().is_turnout()) + track.get_track().signal_path_changed.connect(sigc::mem_fun(this, &Path3D::path_changed)); } Path3D::~Path3D() { - track.get_layout().get_path_scene().remove(*this); + layout.get_path_scene().remove(*this); } void Path3D::set_automatic() @@ -36,20 +37,19 @@ void Path3D::set_automatic() automatic = true; } -void Path3D::set_path(unsigned p) +void Path3D::set_path(int p) { - if(!(track.get_track().get_type().get_paths()&(1<=0 && !(track.get_track().get_type().get_paths()&(1<0 ? 1 : 0); + update_mesh(); } void Path3D::set_color(const GL::Color &c) @@ -59,7 +59,21 @@ void Path3D::set_color(const GL::Color &c) void Path3D::set_layer(float l) { - z_offs = l*track.get_track().get_layout().get_catalogue().get_gauge()*0.01; + z_offs = l*track.get_track().get_type().get_appearance().get_gauge()*0.01; +} + +void Path3D::path_changed(unsigned p) +{ + if(automatic) + { + path = p; + update_mesh(); + } +} + +void Path3D::update_mesh() +{ + mesh = &track.get_type().get_path_mesh(path, side); } long Path3D::get_instance_key() const @@ -71,20 +85,12 @@ void Path3D::render(GL::Renderer &renderer, const GL::Tag &tag) const { if(tag=="unlit") { - unsigned mask = (automatic ? 1<>=1) - if(mask&1) - track.get_type().get_path_mesh(i).draw(renderer); + mesh->draw(renderer); } }