X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2F3d%2Ftracktype.h;h=3923ab1ac35f28d2835c04b8ed7189d597023875;hb=9f0d428e974defa64cdf8e7b7072967327250958;hp=e0bd9388af3814d5c00da2f4ee62cfd9730f740f;hpb=7e382cc3cad8c4f6945b0c9d89e2ca917b42b740;p=r2c2.git diff --git a/source/3d/tracktype.h b/source/3d/tracktype.h index e0bd938..3923ab1 100644 --- a/source/3d/tracktype.h +++ b/source/3d/tracktype.h @@ -1,43 +1,36 @@ -/* $Id$ - -This file is part of the MSP Märklin suite -Copyright © 2010 Mikkosoft Productions, Mikko Rasa -Distributed under the GPL -*/ - -#ifndef MARKLIN3D_TRACKTYPE_H_ -#define MARKLIN3D_TRACKTYPE_H_ +#ifndef R2C2_3D_TRACKTYPE_H_ +#define R2C2_3D_TRACKTYPE_H_ +#include #include #include -#include "libmarklin/profile.h" -#include "libmarklin/tracktype.h" +#include +#include "libr2c2/profile.h" +#include "libr2c2/tracktype.h" +#include "objecttype.h" -namespace Marklin { +namespace R2C2 { -class Catalogue3D; - -class TrackType3D +class TrackType3D: public ObjectType3D { private: - Msp::GL::Mesh ballast_mesh; - Msp::GL::Mesh rail_mesh; - std::vector border; - float min_z; - float max_z; + Msp::GL::Mesh *mesh; + Msp::GL::Object *object; + bool own_data; + std::map path_meshes; public: - TrackType3D(const Catalogue3D &, const TrackType &); - - void get_bounds(float, Point &, Point &) const; + TrackType3D(Catalogue3D &, const TrackType &); + ~TrackType3D(); - void render() const; + const Msp::GL::Object &get_object() const { return *object; } + const Msp::GL::Mesh &get_path_mesh(int, int) const; private: - void build_part(const TrackPart &, const Profile &, const Point &, Msp::GL::MeshBuilder &, unsigned &); - //void optimize_border(); + void build_part(const TrackPart &, const Profile &, const Vector &, bool, Msp::GL::MeshBuilder &, unsigned &); + void build_ties(const TrackPart &, const Profile &, float, float, const Vector &, Msp::GL::MeshBuilder &, unsigned &); }; -} // namespace Marklin +} // namespace R2C2 #endif