X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2F3d%2Fpath.cpp;h=8c36a3088f249f65305e9c13c5ea4e0a7f1d1e7f;hb=5929b101ee38b5668b328e7b1eac4bf49c912412;hp=1128b67bb9d61e9b4d0995da236650257e7b90f2;hpb=90790c9a28793d31b9ea38eea2f55652a0e9297b;p=r2c2.git diff --git a/source/3d/path.cpp b/source/3d/path.cpp index 1128b67..8c36a30 100644 --- a/source/3d/path.cpp +++ b/source/3d/path.cpp @@ -1,32 +1,35 @@ -/* $Id$ - -This file is part of the MSP Märklin suite -Copyright © 2010 Mikkosoft Productions, Mikko Rasa -Distributed under the GPL -*/ - #include -#include "libmarklin/tracktype.h" +#include +#include "libr2c2/tracktype.h" #include "layout.h" #include "path.h" #include "track.h" #include "tracktype.h" +using namespace std; using namespace Msp; -namespace Marklin { +namespace R2C2 { Path3D::Path3D(const Track3D &t): + Utility3D(t.get_layout()), track(t), - paths(0), - automatic(true) + 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() @@ -34,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) @@ -55,23 +57,41 @@ void Path3D::set_color(const GL::Color &c) color = c; } -void Path3D::render(const GL::Tag &tag) const +void Path3D::set_layer(float l) { - if(tag==0) + z_offs = l*track.get_track().get_type().get_appearance().get_gauge()*0.01; +} + +void Path3D::path_changed(unsigned p) +{ + if(automatic) { - unsigned mask = (automatic ? 1<(&track.get_type()); +} + +void Path3D::render(GL::Renderer &renderer, const GL::Tag &tag) const +{ + if(tag=="unlit") + { + GL::MatrixStack::Push push_mtx(renderer.matrix_stack()); + renderer.matrix_stack() *= track.Object3D::get_matrix(); + renderer.matrix_stack() *= GL::Matrix::translation(0, 0, z_offs); glColor4f(color.r, color.g, color.b, color.a); - for(unsigned i=0; mask; ++i, mask>>=1) - if(mask&1) - track.get_type().get_path_mesh(i).draw(); + mesh->draw(renderer); } } -} // namespace Marklin +} // namespace R2C2