X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2F3d%2Ftracktype.h;h=e43dc428f1867a217a19ef8204fdeb159d6caca7;hb=f8a7788cee0261babfc4c804a58515aad6dfbc3d;hp=7bf1b2d5b9241ab931afefe140ec242366afa6e1;hpb=1ff06c5bc46a677fa389ef86c6b26664368f1653;p=r2c2.git diff --git a/source/3d/tracktype.h b/source/3d/tracktype.h index 7bf1b2d..e43dc42 100644 --- a/source/3d/tracktype.h +++ b/source/3d/tracktype.h @@ -1,7 +1,7 @@ /* $Id$ This file is part of R²C² -Copyright © 2010 Mikkosoft Productions, Mikko Rasa +Copyright © 2010-2011 Mikkosoft Productions, Mikko Rasa Distributed under the GPL */ @@ -10,7 +10,7 @@ Distributed under the GPL #include #include -#include +#include #include "libr2c2/profile.h" #include "libr2c2/tracktype.h" @@ -18,28 +18,27 @@ namespace R2C2 { class Catalogue3D; -class TrackType3D: public Msp::GL::Renderable +class TrackType3D { private: - const Catalogue3D &catalogue; - Msp::GL::Mesh ballast_mesh; - Msp::GL::Mesh rail_mesh; + Catalogue3D &catalogue; + Msp::GL::Mesh *mesh; + Msp::GL::Object *object; std::vector path_meshes; - std::vector border; + std::vector border; float min_z; float max_z; public: - TrackType3D(const Catalogue3D &, const TrackType &); + TrackType3D(Catalogue3D &, const TrackType &); ~TrackType3D(); - void get_bounds(float, Point &, Point &) const; + void get_bounds(float, Vector &, Vector &) const; + const Msp::GL::Object &get_object() const { return *object; } const Msp::GL::Mesh &get_path_mesh(unsigned) const; - virtual void render(const Msp::GL::Tag &) const; - private: - void build_part(const TrackPart &, const Profile &, const Point &, Msp::GL::MeshBuilder &, unsigned &); + void build_part(const TrackPart &, const Profile &, const Vector &, bool, Msp::GL::MeshBuilder &, unsigned &); }; } // namespace R2C2