]> git.tdb.fi Git - r2c2.git/blob - source/libmarklin/catalogue.h
Add an internal layout to Catalogue for selecting tracks
[r2c2.git] / source / libmarklin / catalogue.h
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2006-2010  Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #ifndef LIBMARKLIN_CATALOGUE_H_
9 #define LIBMARKLIN_CATALOGUE_H_
10
11 #include <map>
12 #include <msp/datafile/loader.h>
13 #include "layout.h"
14 #include "profile.h"
15
16 namespace Marklin {
17
18 class LocoType;
19 class TrackType;
20
21 class Catalogue
22 {
23 public:
24         class Loader: public Msp::DataFile::BasicLoader<Catalogue>
25         {
26         public:
27                 Loader(Catalogue &);
28         private:
29                 void ballast_profile();
30                 void gauge(float);
31                 void layout();
32                 void locomotive(unsigned);
33                 void rail_profile();
34                 void scale(float, float);
35                 void track(unsigned);
36         };
37
38 private:
39         float scale;
40         float gauge;
41         Profile rail_profile;
42         Profile ballast_profile;
43         std::map<unsigned, TrackType *> tracks;
44         std::map<unsigned, LocoType *> locos;
45         Layout layout;
46
47 public:
48         Catalogue();
49         ~Catalogue();
50
51         float get_scale() const { return scale; }
52         float get_gauge() const { return gauge; }
53         const Profile &get_rail_profile() const { return rail_profile; }
54         const Profile &get_ballast_profile() const { return ballast_profile; }
55         TrackType &get_track(unsigned) const;
56         const std::map<unsigned, TrackType *> &get_tracks() const { return tracks; }
57         LocoType &get_locomotive(unsigned) const;
58         const std::map<unsigned, LocoType *> &get_locomotives() const { return locos; }
59         Layout &get_layout() { return layout; }
60 };
61
62 } // namespace Marklin
63
64 #endif