]> git.tdb.fi Git - r2c2.git/blob - source/designer/designer.h
Separate track wrap to its own class
[r2c2.git] / source / designer / designer.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 DESIGNER_H_
9 #define DESIGNER_H_
10
11 #include <string>
12 #include <msp/core/application.h>
13 #include <msp/gbase/simplewindow.h>
14 #include <msp/gl/camera.h>
15 #include <msp/gl/font.h>
16 #include <msp/gl/light.h>
17 #include <msp/gl/lighting.h>
18 #include <msp/gl/object.h>
19 #include <msp/gl/pipeline.h>
20 #include <msp/gltk/label.h>
21 #include <msp/gltk/resources.h>
22 #include <msp/gltk/root.h>
23 #include <msp/time/timestamp.h>
24 #include "libmarklin/catalogue.h"
25 #include "libmarklin/layout.h"
26 #include "3d/layout.h"
27 #include "3d/overlay.h"
28 #include "3d/track.h"
29 #include "cameracontroller.h"
30 #include "manipulator.h"
31 #include "measure.h"
32 #include "selection.h"
33 #include "trackwrap.h"
34
35 class Toolbar;
36
37 class Designer: public Msp::Application
38 {
39 private:
40         enum Mode
41         {
42                 SELECT,
43                 CATALOGUE,
44                 MANIPULATE,
45                 MEASURE
46         };
47
48         Msp::Graphics::SimpleGLWindow window;
49         Msp::GLtk::Resources ui_res;
50         Msp::GLtk::Root *root;
51
52         Toolbar *toolbar;
53         Msp::GLtk::Label *lbl_status;
54
55         Marklin::Catalogue catalogue;
56         Marklin::Layout3D *cat_layout_3d;
57         std::string filename;
58         Marklin::Layout *layout;
59         Marklin::Layout3D *layout_3d;
60         Marklin::Overlay3D *overlay;
61         Msp::GL::Object *base_object;
62         Marklin::Route *cur_route;
63         Msp::GL::Pipeline *pipeline;
64         Msp::GL::Camera camera;
65         Msp::GL::Lighting lighting;
66         Msp::GL::Light light;
67
68         Mode mode;
69         Selection selection;
70         Manipulator manipulator;
71         Measure measure;
72         CameraController camera_ctl;
73         TrackWrap track_wrap;
74
75         Msp::Time::TimeStamp last_tick;
76
77         static Msp::Application::RegApp<Designer> reg;
78
79 public:
80         Designer(int, char **);
81         ~Designer();
82
83         int main();
84         void save();
85         void quit();
86
87         Marklin::Layout *get_layout() { return layout; }
88         Marklin::Layout3D *get_layout_3d() { return layout_3d; }
89         const Msp::GL::Camera &get_camera() const { return camera; }
90         const Msp::GLtk::Resources &get_ui_resources() const { return ui_res; }
91         Msp::GLtk::Root &get_root() const { return *root; }
92
93         void new_track();
94         void set_turnout_id();
95         void set_sensor_id();
96         void rename_route();
97
98         void edit_route(Marklin::Route *);
99         Marklin::Route *get_current_route() const { return cur_route; }
100         void add_selection_to_route();
101
102         Marklin::Point map_pointer_coords(int, int);
103 private:
104         void tick();
105         void key_press(unsigned, unsigned, wchar_t);
106         void button_press(int, int, unsigned, unsigned);
107         void pointer_motion(int, int);
108         void apply_camera();
109         void render();
110         Marklin::Track3D *pick_track(int, int);
111         void update_track_icon(Marklin::Track3D &);
112         void selection_changed();
113         void manipulation_status(const std::string &);
114         void manipulation_done(bool);
115         void measure_changed();
116         void measure_done();
117         void turnout_id_accept(const std::string &);
118         void sensor_id_accept(const std::string &);
119         void route_name_accept(const std::string &);
120         void view_all();
121         std::string tooltip(int, int);
122         void show_route(const Marklin::Route *);
123 };
124
125 #endif