]> git.tdb.fi Git - r2c2.git/blob - source/libmarklin/trafficmanager.h
Attempt to estimate the exact positions of trains from measured speed data
[r2c2.git] / source / libmarklin / trafficmanager.h
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2006-2009 Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #ifndef LIBMARKLIN_TRAFFICMANAGER_H_
9 #define LIBMARKLIN_TRAFFICMANAGER_H_
10
11 #include "block.h"
12 #include "train.h"
13
14 namespace Marklin {
15
16 class Control;
17 class Layout;
18 class Turnout;
19
20 class TrafficManager
21 {
22 private:
23         Control &control;
24         Layout &layout;
25         std::list<Block *> blocks;
26         std::list<Train *> trains;
27         Msp::Time::TimeStamp last_tick;
28
29 public:
30         sigc::signal<void, const Block &, const Train *> signal_block_reserved;
31
32         TrafficManager(Control &, Layout &);
33         ~TrafficManager();
34
35         Control &get_control() const { return control; }
36         const std::list<Block *> &get_blocks() const { return blocks; }
37         Block &get_block_by_track(const Track &) const;
38         const std::list<Train *> &get_trains() const { return trains; }
39         void add_train(Train *);
40         void tick();
41 private:
42         void turnout_route_changed(unsigned, Turnout *);
43 };
44
45 } // namespace Marklin
46
47 #endif