X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2F3d%2Fvehicle.h;h=aa5042e4b73c3d2643c2850106ac8ab4a7c10eae;hb=e621dd4120cb253417167b4295e436cee095ccb0;hp=06e78ef4409130094fc922d9e0ff79d1b93352d2;hpb=1ff06c5bc46a677fa389ef86c6b26664368f1653;p=r2c2.git diff --git a/source/3d/vehicle.h b/source/3d/vehicle.h index 06e78ef..aa5042e 100644 --- a/source/3d/vehicle.h +++ b/source/3d/vehicle.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of R²C² -Copyright © 2010 Mikkosoft Productions, Mikko Rasa -Distributed under the GPL -*/ - #ifndef LIBR2C23D_VEHICLE_H_ #define LIBR2C23D_VEHICLE_H_ @@ -14,26 +7,34 @@ Distributed under the GPL namespace R2C2 { +class Axle3D; +class Bogie3D; class Layout3D; +class Rod3D; class VehicleType3D; -class Vehicle3D: public Object3D, public Msp::GL::Renderable +class Vehicle3D: public Object3D, public Msp::GL::ObjectInstance { private: Layout3D &layout; Vehicle &vehicle; const VehicleType3D &type; + std::vector axles; + std::vector bogies; + std::vector rods; public: Vehicle3D(Layout3D &, Vehicle &); ~Vehicle3D(); Vehicle &get_vehicle() const { return vehicle; } + const VehicleType3D &get_type() const { return type; } - virtual Point get_node() const; + virtual Vector get_node() const; virtual bool is_visible() const; - virtual void render(const Msp::GL::Tag &) const; + virtual void render(Msp::GL::Renderer &, const Msp::GL::Tag &) const; + virtual void setup_render(Msp::GL::Renderer &, const Msp::GL::Tag &) const; }; } // namespace R2C2