]> git.tdb.fi Git - r2c2.git/blobdiff - source/libr2c2/object.h
Don't crash if a train has no router
[r2c2.git] / source / libr2c2 / object.h
index 33b99a1443acb3b2f7452c8236e91354ab5ed8a4..a0bd4f362714313bd72c5bc28b7c120bfd4f119f 100644 (file)
@@ -11,12 +11,17 @@ class Layout;
 
 class Object
 {
+public:
+       sigc::signal<void> signal_moved;
+
 protected:
        Layout &layout;
        Vector position;
-       float rotation;
+       Angle rotation;
+       Angle tilt;
+       Shape *shape;
 
-       Object(Layout &l): layout(l) { }
+       Object(Layout &);
 public:
        virtual ~Object() { }
 
@@ -24,9 +29,11 @@ public:
        virtual const ObjectType &get_type() const = 0;
        Layout &get_layout() const { return layout; }
        virtual void set_position(const Vector &) = 0;
-       virtual void set_rotation(float) = 0;
+       virtual void set_rotation(const Angle &) = 0;
+       virtual void set_tilt(const Angle &) = 0;
        const Vector &get_position() const { return position; }
-       float get_rotation() const { return rotation; }
+       const Angle &get_rotation() const { return rotation; }
+       const Angle &get_tilt() const { return tilt; }
        virtual Object *get_parent() const { return 0; }
 
        virtual unsigned get_n_snap_nodes() const { return 0; }
@@ -45,7 +52,9 @@ public:
        virtual bool break_link(unsigned) { return false; }
        virtual void break_links();
 
-       virtual bool collide_ray(const Vector &, const Vector &) const = 0;
+       const Shape *get_shape() const;
+       virtual bool collide_ray(const Ray &, float * = 0) const;
+       virtual BoundingBox get_bounding_box() const;
 };
 
 } // namespace R2C2