TDME2
1.9.121
src
tdme
tools
editor
TDMEEditor.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/application/Application.h
>
7
#include <
tdme/engine/fwd-tdme.h
>
8
#include <
tdme/tools/editor/fwd-tdme.h
>
9
#include <
tdme/tools/editor/misc/fwd-tdme.h
>
10
#include <
tdme/tools/editor/views/fwd-tdme.h
>
11
#include <
tdme/tools/editor/views/EditorView.h
>
12
13
using
std::string;
14
15
using
tdme::application::Application
;
16
using
tdme::engine::Engine
;
17
using
tdme::tools::editor::misc::PopUps
;
18
using
tdme::tools::editor::views::EditorView
;
19
using
tdme::tools::editor::views::View
;
20
21
/**
22
* TDME editor
23
* @author andreas.drewke
24
* @version $Id$
25
*/
26
class
tdme::tools::editor::TDMEEditor
final
27
:
public
virtual
Application
28
{
29
private
:
30
static
TDMEEditor
*
instance
;
31
Engine
*
engine
{
nullptr
};
32
View
*
view
{
nullptr
};
33
bool
viewInitialized
;
34
View
*
viewNew
{
nullptr
};
35
bool
quitRequested
;
36
PopUps
*
popUps
{
nullptr
};
37
EditorView
*
editorView
{
nullptr
};
38
39
public
:
40
41
/**
42
* Main
43
* @param argc argument count
44
* @param argv argument values
45
*/
46
static
void
main
(
int
argc,
char
** argv);
47
48
public
:
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
*/
65
~TDMEEditor
();
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.h
EditorView.h
tdme::application::Application
Application base class, please make sure to allocate application on heap to have correct application ...
Definition:
Application.h:37
tdme::engine::Engine
Engine main class.
Definition:
Engine.h:122
tdme::tools::editor::TDMEEditor
TDME editor.
Definition:
TDMEEditor.h:28
tdme::tools::editor::TDMEEditor::engine
Engine * engine
Definition:
TDMEEditor.h:31
tdme::tools::editor::TDMEEditor::getInstance
static TDMEEditor * getInstance()
Definition:
TDMEEditor.h:53
tdme::tools::editor::TDMEEditor::display
void display()
Renders the scene.
Definition:
TDMEEditor.cpp:87
tdme::tools::editor::TDMEEditor::quit
void quit()
Request to exit the viewer.
Definition:
TDMEEditor.cpp:82
tdme::tools::editor::TDMEEditor::initialize
void initialize()
Initialize tdme scene editor.
Definition:
TDMEEditor.cpp:131
tdme::tools::editor::TDMEEditor::viewNew
View * viewNew
Definition:
TDMEEditor.h:34
tdme::tools::editor::TDMEEditor::TDMEEditor
TDMEEditor()
Public constructor.
Definition:
TDMEEditor.cpp:43
tdme::tools::editor::TDMEEditor::quitRequested
bool quitRequested
Definition:
TDMEEditor.h:35
tdme::tools::editor::TDMEEditor::reshape
void reshape(int width, int height)
Reshape tdme scene editor.
Definition:
TDMEEditor.cpp:144
tdme::tools::editor::TDMEEditor::main
static void main(int argc, char **argv)
Main.
Definition:
TDMEEditor.cpp:62
tdme::tools::editor::TDMEEditor::viewInitialized
bool viewInitialized
Definition:
TDMEEditor.h:33
tdme::tools::editor::TDMEEditor::setView
void setView(View *view)
Set up new view.
Definition:
TDMEEditor.cpp:72
tdme::tools::editor::TDMEEditor::instance
static TDMEEditor * instance
Definition:
TDMEEditor.h:30
tdme::tools::editor::TDMEEditor::dispose
void dispose()
Shutdown tdme viewer.
Definition:
TDMEEditor.cpp:119
tdme::tools::editor::TDMEEditor::popUps
PopUps * popUps
Definition:
TDMEEditor.h:36
tdme::tools::editor::TDMEEditor::~TDMEEditor
~TDMEEditor()
Destructor.
Definition:
TDMEEditor.cpp:57
tdme::tools::editor::TDMEEditor::getView
View * getView()
Definition:
TDMEEditor.cpp:77
tdme::tools::editor::TDMEEditor::editorView
EditorView * editorView
Definition:
TDMEEditor.h:37
tdme::tools::editor::TDMEEditor::view
View * view
Definition:
TDMEEditor.h:32
tdme::tools::editor::misc::PopUps
Pop ups controller accessor class.
Definition:
PopUps.h:19
tdme::tools::editor::views::EditorView
Editor View.
Definition:
EditorView.h:30
fwd-tdme.h
tdme::tools::editor::views::View
View interface, this combines application logic, regarding a application view, with screen controller...
Definition:
View.h:12
tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
Generated by
1.9.3