1 #ifndef LIBR2C2_TRACK_H_
2 #define LIBR2C2_TRACK_H_
6 #include <sigc++/trackable.h>
7 #include <msp/datafile/objectloader.h>
10 #include "tracktype.h"
16 class TrackAttachment;
18 class Track: public Object, public sigc::trackable
21 class Loader: public Msp::DataFile::ObjectLoader<Track>
26 void position(float, float, float);
28 void sensor_address(unsigned);
31 void turnout_address(unsigned);
34 typedef std::list<TrackAttachment *> AttachmentList;
36 sigc::signal<void, unsigned, Track *> signal_link_changed;
37 sigc::signal<void, unsigned> signal_path_changing;
38 sigc::signal<void, unsigned> signal_path_changed;
41 const TrackType &type;
45 unsigned turnout_addr;
48 std::vector<Track *> links;
51 AttachmentList attachments;
54 Track &operator=(const Track &);
56 Track(Layout &, const TrackType &);
59 virtual Track *clone(Layout * = 0) const;
60 virtual const TrackType &get_type() const { return type; }
62 void set_block(Block *);
63 Block &get_block() const;
64 virtual void set_position(const Vector &);
65 virtual void set_rotation(const Angle &);
66 virtual void set_tilt(const Angle &);
68 bool get_flex() const { return flex; }
70 void propagate_slope();
74 void set_turnout_address(unsigned);
75 void set_sensor_address(unsigned);
76 unsigned get_turnout_address() const { return turnout_addr; }
77 unsigned get_sensor_address() const { return sensor_addr; }
78 void set_active_path(unsigned);
79 unsigned get_active_path() const { return active_path; }
80 bool is_path_changing() const { return path_changing; }
81 float get_path_length(int = -1) const;
83 OrientedPoint get_point(unsigned, unsigned, float) const;
84 OrientedPoint get_point(unsigned, float) const;
86 virtual unsigned get_n_snap_nodes() const;
87 virtual Snap get_snap_node(unsigned) const;
88 virtual bool snap(Snap &, float, SnapType = SNAP_DEFAULT) const;
90 virtual SnapType get_default_snap_type_to(const Object &) const;
93 virtual unsigned get_n_link_slots() const;
94 virtual Track *get_link(unsigned) const;
95 const std::vector<Track *> &get_links() const { return links; }
96 virtual int get_link_slot(const Object &) const;
97 virtual bool link_to(Object &);
98 using Object::break_link;
99 virtual bool break_link(unsigned);
101 void add_attachment(TrackAttachment &);
102 void remove_attachment(TrackAttachment &);
103 const AttachmentList &get_attachments() const { return attachments; }
104 AttachmentList get_attachments_ordered(unsigned) const;
106 void save(std::list<Msp::DataFile::Statement> &) const;
108 void turnout_event(unsigned, unsigned);
109 void turnout_failed(unsigned);