]> git.tdb.fi Git - r2c2.git/blob - source/designer/designer.h
b78ad81becf8db1650f4b9d8a691269148743c4d
[r2c2.git] / source / designer / designer.h
1 #ifndef DESIGNER_H_
2 #define DESIGNER_H_
3
4 #include <string>
5 #include <msp/core/application.h>
6 #include <msp/graphics/simplewindow.h>
7 #include <msp/gl/camera.h>
8 #include <msp/gl/font.h>
9 #include <msp/gl/light.h>
10 #include <msp/gl/lighting.h>
11 #include <msp/gl/object.h>
12 #include <msp/gl/pipeline.h>
13 #include <msp/gltk/label.h>
14 #include <msp/gltk/layout.h>
15 #include <msp/gltk/resources.h>
16 #include <msp/gltk/root.h>
17 #include <msp/time/timestamp.h>
18 #include "libr2c2/catalogue.h"
19 #include "libr2c2/layout.h"
20 #include "3d/layout.h"
21 #include "3d/overlay.h"
22 #include "3d/track.h"
23 #include "3d/view.h"
24 #include "cameracontroller.h"
25 #include "manipulator.h"
26 #include "measure.h"
27 #include "selection.h"
28 #include "selectionwrap.h"
29
30 class Toolbar;
31
32 class Designer: public Msp::RegisteredApplication<Designer>
33 {
34 private:
35         enum Mode
36         {
37                 SELECT,
38                 CATALOGUE,
39                 MANIPULATE,
40                 MANIPULATE_DONE,
41                 MEASURE
42         };
43
44         Msp::Graphics::SimpleGLWindow window;
45         Msp::Input::Keyboard keyboard;
46         Msp::Input::Mouse mouse;
47         Msp::GLtk::Resources ui_res;
48         Msp::GLtk::Root root;
49         Msp::GLtk::Layout *root_layout;
50
51         std::vector<Toolbar *> toolbars;
52         Msp::GLtk::Label *lbl_status;
53
54         R2C2::Catalogue catalogue;
55         R2C2::Layout3D *cat_layout_3d;
56         R2C2::View3D *cat_view;
57
58         std::string filename;
59         R2C2::Layout *layout;
60         R2C2::Layout3D *layout_3d;
61         R2C2::View3D *main_view;
62         R2C2::Overlay3D *overlay;
63         Msp::GL::Object *base_object;
64         R2C2::Route *cur_route;
65         R2C2::Zone *cur_zone;
66         std::list<R2C2::Track *> new_tracks;
67
68         Mode mode;
69         Selection selection;
70         SelectionWrap sel_wrap;
71         Manipulator manipulator;
72         Measure measure;
73         CameraController *camera_ctl;
74
75         Msp::Time::TimeStamp last_tick;
76
77 public:
78         Designer(int, char **);
79         ~Designer();
80
81         int main();
82         void save();
83         void quit();
84
85         const R2C2::Catalogue &get_catalogue() const { return catalogue; }
86         R2C2::Layout &get_layout() { return *layout; }
87         R2C2::Layout3D &get_layout_3d() { return *layout_3d; }
88         const CameraController &get_camera_controller() const { return *camera_ctl; }
89
90         void new_track();
91         void erase_tracks();
92         void track_properties();
93         void extend_track();
94         void connect_tracks();
95         void flatten_tracks();
96         void svg_export();
97
98         void edit_route(R2C2::Route *);
99         void rename_route();
100         R2C2::Route *get_current_route() const { return cur_route; }
101         void add_selection_to_route();
102
103         void edit_zone(R2C2::Zone *);
104         void zone_properties();
105         R2C2::Zone *get_current_zone() const { return cur_zone; }
106         void add_selection_to_zone();
107
108         R2C2::Vector map_pointer_to_ground(const R2C2::Vector &);
109 private:
110         void tick();
111         void key_press(unsigned);
112         void button_press(unsigned);
113         void axis_motion(unsigned, float, float);
114         void apply_camera();
115         void render();
116         void object_added(R2C2::Object &);
117         void object_removed(R2C2::Object &);
118         R2C2::Object *pick_object(const R2C2::Vector &);
119         void update_track_icon(R2C2::Track3D &);
120         void selection_changed();
121         void manipulation_status(const std::string &);
122         void manipulation_done(bool);
123         void measure_changed();
124         void measure_done();
125         void track_properties_response(int);
126         void route_name_accept(const std::string &);
127         void svg_export_accept(const std::string &);
128         std::string tooltip(int, int);
129         void clear_paths();
130         void show_route(const R2C2::Route &);
131         void show_zone(const R2C2::Zone &);
132 };
133
134 #endif