]> git.tdb.fi Git - r2c2.git/blobdiff - source/libmarklin/train.h
Reserve two ids for double-address turnouts
[r2c2.git] / source / libmarklin / train.h
index 319119b93828fd745639a7a37b8c1ae3d6a69794..02d1d52de1b8751d411bc5aa063300f46d2fb110 100644 (file)
@@ -74,10 +74,13 @@ private:
        unsigned address;
        std::string name;
        int priority;
+       const Train *yielding_to;
        std::vector<Vehicle *> vehicles;
        std::list<BlockRef> cur_blocks;
        std::list<BlockRef> rsv_blocks;
        Block *pending_block;
+       bool reserving;
+       bool advancing;
        Controller *controller;
        Timetable *timetable;
        bool active;
@@ -108,6 +111,7 @@ public:
        void set_name(const std::string &);
        const std::string &get_name() const { return name; }
        void set_priority(int);
+       void yield_to(const Train &);
        int get_priority() const { return priority; }
        Controller &get_controller() const { return *controller; }
 
@@ -133,6 +137,7 @@ public:
        void go_to(const Track &);
        const Route *get_route() const { return route; }
        void place(Block &, unsigned);
+       void unplace();
        bool is_placed() const { return !cur_blocks.empty(); }
        bool free_block(Block &);
        int get_entry_to_block(Block &) const;
@@ -152,6 +157,7 @@ private:
        void halt_event(bool);
        void block_reserved(const Block &, const Train *);
        unsigned reserve_more();
+       float get_reserved_distance_until(const Block *, bool) const;
        float get_real_speed(unsigned) const;
        unsigned find_speed(float) const;
        float get_travel_speed() const;