X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2F3d%2Ftrack.h;h=7b8c23565f3024ecb1c954f6839a7f3c48fd8925;hb=1ff06c5bc46a677fa389ef86c6b26664368f1653;hp=fe24b9a9e1a9e0fd3740d90c531841a44785d3d5;hpb=7e382cc3cad8c4f6945b0c9d89e2ca917b42b740;p=r2c2.git diff --git a/source/3d/track.h b/source/3d/track.h index fe24b9a..7b8c235 100644 --- a/source/3d/track.h +++ b/source/3d/track.h @@ -1,46 +1,54 @@ /* $Id$ -This file is part of the MSP Märklin suite +This file is part of R²C² Copyright © 2006-2010 Mikkosoft Productions, Mikko Rasa Distributed under the GPL */ -#ifndef MARKLIN3D_TRACK_H_ -#define MARKLIN3D_TRACK_H_ +#ifndef R2C2_3D_TRACK_H_ +#define R2C2_3D_TRACK_H_ #include -#include +#include #include #include -#include "libmarklin/track.h" -#include "libmarklin/trackpart.h" +#include "libr2c2/track.h" +#include "libr2c2/trackpart.h" +#include "object.h" -namespace Marklin { +namespace R2C2 { +class Endpoint3D; class Layout3D; +class Path3D; class TrackType3D; -class Track3D +class Track3D: public Object3D, public Msp::GL::Renderable { private: Layout3D &layout; Track &track; const TrackType3D &type; - Msp::GL::Color color; + std::vector endpoints; + Path3D *path; public: Track3D(Layout3D &, Track &); + ~Track3D(); + Layout3D &get_layout() const { return layout; } Track &get_track() const { return track; } - void set_color(const Msp::GL::Color &); + const TrackType3D &get_type() const { return type; } void get_bounds(float, Point &, Point &) const; - void render() const; - void render_endpoints() const; - void render_path(int) const; -private: - void prepare_render(bool) const; + Path3D &get_path() { return *path; } + + virtual Point get_node() const; + virtual bool is_visible() const { return true; } + + void apply_matrix() const; + virtual void render(const Msp::GL::Tag &) const; }; -} // namespace Marklin +} // namespace R2C2 #endif