TDME2 1.9.121
TDMEEditor.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
12
13using std::string;
14
20
21/**
22 * TDME editor
23 * @author andreas.drewke
24 * @version $Id$
25 */
27 : public virtual Application
28{
29private:
31 Engine* engine { nullptr };
32 View* view { nullptr };
34 View* viewNew { nullptr };
36 PopUps* popUps { nullptr };
37 EditorView* editorView { nullptr };
38
39public:
40
41 /**
42 * Main
43 * @param argc argument count
44 * @param argv argument values
45 */
46 static void main(int argc, char** argv);
47
48public:
49
50 /**
51 * @return particle system instance
52 */
53 inline static TDMEEditor* getInstance() {
54 return instance;
55 }
56
57 /**
58 * Public constructor
59 */
60 TDMEEditor();
61
62 /**
63 * Destructor
64 */
66
67 /**
68 * Set up new view
69 * @param view view
70 */
71 void setView(View* view);
72
73 /**
74 * @return current view
75 */
76 View* getView();
77
78 /**
79 * Request to exit the viewer
80 */
81 void quit();
82
83 /**
84 * Renders the scene
85 */
86 void display();
87
88 /**
89 * Shutdown tdme viewer
90 */
91 void dispose();
92
93 /**
94 * Initialize tdme scene editor
95 */
96 void initialize();
97
98 /**
99 * Reshape tdme scene editor
100 * @param width width
101 * @param height height
102 */
103 void reshape(int width, int height);
104
105};
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
Engine main class.
Definition: Engine.h:122
static TDMEEditor * getInstance()
Definition: TDMEEditor.h:53
void display()
Renders the scene.
Definition: TDMEEditor.cpp:87
void quit()
Request to exit the viewer.
Definition: TDMEEditor.cpp:82
void initialize()
Initialize tdme scene editor.
Definition: TDMEEditor.cpp:131
TDMEEditor()
Public constructor.
Definition: TDMEEditor.cpp:43
void reshape(int width, int height)
Reshape tdme scene editor.
Definition: TDMEEditor.cpp:144
static void main(int argc, char **argv)
Main.
Definition: TDMEEditor.cpp:62
void setView(View *view)
Set up new view.
Definition: TDMEEditor.cpp:72
static TDMEEditor * instance
Definition: TDMEEditor.h:30
void dispose()
Shutdown tdme viewer.
Definition: TDMEEditor.cpp:119
Pop ups controller accessor class.
Definition: PopUps.h:19
View interface, this combines application logic, regarding a application view, with screen controller...
Definition: View.h:12