]> git.tdb.fi Git - r2c2.git/blob - source/designer/designer.h
5d22afb1c924c8b0a872d763820dc8567b8bff1f
[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
34 class Toolbar;
35
36 class Designer: public Msp::Application
37 {
38 private:
39         enum Mode
40         {
41                 SELECT,
42                 CATALOGUE,
43                 MANIPULATE,
44                 MEASURE
45         };
46
47         Msp::Graphics::SimpleGLWindow window;
48         Msp::GLtk::Resources ui_res;
49         Msp::GLtk::Root *root;
50
51         Toolbar *toolbar;
52         Msp::GLtk::Label *lbl_status;
53
54         Marklin::Catalogue catalogue;
55         Marklin::Layout3D *cat_layout_3d;
56         std::string filename;
57         Marklin::Layout *layout;
58         Marklin::Layout3D *layout_3d;
59         Marklin::Overlay3D *overlay;
60         Msp::GL::Object *base_object;
61         Marklin::Route *cur_route;
62         Msp::GL::Pipeline *pipeline;
63         Msp::GL::Camera camera;
64         Msp::GL::Lighting lighting;
65         Msp::GL::Light light;
66
67         Mode mode;
68         Selection selection;
69         Manipulator manipulator;
70         Measure measure;
71         CameraController camera_ctl;
72
73         Msp::Time::TimeStamp last_tick;
74
75         static Msp::Application::RegApp<Designer> reg;
76
77 public:
78         Designer(int, char **);
79         ~Designer();
80
81         int main();
82         void save();
83         void quit();
84
85         Marklin::Layout *get_layout() { return layout; }
86         Marklin::Layout3D *get_layout_3d() { return layout_3d; }
87         const Msp::GL::Camera &get_camera() const { return camera; }
88         const Msp::GLtk::Resources &get_ui_resources() const { return ui_res; }
89         Msp::GLtk::Root &get_root() const { return *root; }
90
91         void new_track();
92         void set_turnout_id();
93         void set_sensor_id();
94
95         void edit_route(Marklin::Route &);
96         Marklin::Route *get_current_route() const { return cur_route; }
97         void add_selection_to_route();
98
99         Marklin::Point map_pointer_coords(int, int);
100 private:
101         void tick();
102         void key_press(unsigned, unsigned, wchar_t);
103         void button_press(int, int, unsigned, unsigned);
104         void pointer_motion(int, int);
105         void apply_camera();
106         void render();
107         Marklin::Track3D *pick_track(int, int);
108         void update_track_icon(Marklin::Track3D &);
109         void manipulation_status(const std::string &);
110         void manipulation_done(bool);
111         void measure_changed();
112         void measure_done();
113         void turnout_id_accept(const std::string &);
114         void sensor_id_accept(const std::string &);
115         void view_all();
116         std::string tooltip(int, int);
117         void show_route(const Marklin::Route &);
118 };
119
120 #endif