3 This file is part of R²C²
4 Copyright © 2006-2011 Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
8 #ifndef R2C2_3D_LAYOUT_H_
9 #define R2C2_3D_LAYOUT_H_
11 #include <sigc++/trackable.h>
12 #include <msp/gl/instancescene.h>
13 #include <msp/gl/simplescene.h>
14 #include "libr2c2/layout.h"
15 #include "catalogue.h"
22 class Layout3D: public sigc::trackable
25 typedef std::map<Track *, Track3D *> TrackMap;
26 typedef std::map<Vehicle *, Vehicle3D *> VehicleMap;
30 Catalogue3D catalogue;
33 Msp::GL::InstanceScene scene;
34 Msp::GL::SimpleScene ep_scene;
35 Msp::GL::InstanceScene path_scene;
41 const Catalogue3D &get_catalogue() const { return catalogue; }
43 void add_track(Track3D &);
44 void remove_track(Track3D &);
45 const TrackMap &get_tracks() const { return tracks; }
46 Track3D &get_track(Track &) const;
48 void add_vehicle(Vehicle3D &);
49 void remove_vehicle(Vehicle3D &);
50 Vehicle3D &get_vehicle(Vehicle &) const;
52 Msp::GL::Scene &get_scene() { return scene; }
53 Msp::GL::Scene &get_endpoint_scene() { return ep_scene; }
54 Msp::GL::Scene &get_path_scene() { return path_scene; }
57 void track_added(Track &);
58 void track_removed(Track &);
59 void vehicle_added(Vehicle &);
60 void vehicle_removed(Vehicle &);