TDME2 1.9.121
ModelEditorTabView.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
11#include <tdme/math/fwd-tdme.h>
12#include <tdme/math/Vector3.h>
19
20using std::string;
21
40
41/**
42 * Model editor tab view
43 * @author Andreas Drewke
44 * @version $Id$
45 */
47 : public TabView
48 , public PlayableSoundView
50{
51protected:
52 Engine* engine { nullptr };
53 Audio* audio { nullptr };
54
55private:
56 EditorView* editorView { nullptr };
57 string tabId;
58 PopUps* popUps { nullptr };
63 Prototype* prototype { nullptr };
67 int64_t audioStarted;
68 int64_t audioOffset;
71 Model* attachment1Model { nullptr };
73
74 /**
75 * Init model
76 * @param resetup resetup flag which would mean to leave camera and lighting as is
77 */
78 void initModel(bool resetup);
79
80 /**
81 * Load settings
82 */
83 void loadSettings();
84
85 /**
86 * Store settings
87 */
88 void storeSettings();
89
90 /**
91 * Load a model
92 */
93 void loadModel();
94
95 /**
96 * Load model prototype
97 * @param name name
98 * @param description description
99 * @param pathName path name
100 * @param fileName file name
101 * @param pivot pivot
102 * @return prototype
103 * @throws tdme::utilities::Exception
104 */
105 virtual Prototype* loadModelPrototype(const string& name, const string& description, const string& pathName, const string& fileName, const Vector3& pivot);
106
107 // overridden methods
108 void onCameraRotation() override;
109 void onCameraScale() override;
110
111public:
112 /**
113 * Public constructor
114 * @param editorView editor view
115 * @param tabId tab id
116 * @param prototype prototype
117 */
119
120 /**
121 * Destructor
122 */
124
125 /**
126 * @return editor view
127 */
129
130 /**
131 * @return pop up views
132 */
133 PopUps* getPopUps();
134
135 /**
136 * @return prototype
137 */
139
140 /**
141 * Set prototype
142 * @param prototype prototype
143 */
145
146 /**
147 * Reset prototype
148 */
149 void resetPrototype();
150
151 /**
152 * Reload prototype
153 */
154 void reloadPrototype();
155
156 /**
157 * Reimport prototype
158 */
159 void reimportPrototype();
160
161 /**
162 * @return current model file name
163 */
164 const string& getFileName();
165
166 /**
167 * @return LOD level
168 */
169 int getLODLevel() const;
170
171 /**
172 * Set LOD level to display
173 * @param lodLevel lod level
174 */
175 void setLODLevel(int lodLevel);
176
177 /**
178 * Update LOD level
179 */
180 void updateLODLevel();
181
182 /**
183 * Issue file loading
184 * @param pathName path name
185 * @param fileName file name
186 */
187 void loadModel(const string& pathName, const string& fileName);
188
189 /**
190 * Issue reimport model file
191 * @param pathName path name
192 * @param fileName file name
193 */
194 void reimportModel(const string& pathName, const string& fileName);
195
196 /**
197 * Saving prototype as tmodel prototype
198 * @param pathName path name
199 * @param fileName file name
200 */
201 void saveFile(const string& pathName, const string& fileName);
202
203 /**
204 * Issue file reloading
205 */
206 void reloadFile();
207
208 /**
209 * Apply pivot
210 * @param x x
211 * @param y y
212 * @param z z
213 */
214 void pivotApply(float x, float y, float z);
215
216 /**
217 * Compute normals
218 */
219 void computeNormals();
220
221 /**
222 * Optimize model
223 */
224 void optimizeModel();
225
226 // overridden methods
227 void handleInputEvents() override;
228 void display() override;
229 inline const string& getTabId() override {
230 return tabId;
231 }
232 void initialize() override;
233 void dispose() override;
234 void activate() override;
235 void deactivate() override;
236 Engine* getEngine() override;
238 void reloadOutliner() override;
239 void playSound(const string& soundId) override;
240 void stopSound() override;
241 void updateRendering() override;
242 inline bool hasFixedSize() override { return false; };
243
244 /**
245 * Play animation
246 * @param baseAnimationId base animation id
247 * @param overlay1AnimationId overlay 1 animation id
248 * @param overlay2AnimationId overlay 2 animation id
249 * @param overlay3AnimationId overlay 3 animation id
250 */
251 void playAnimation(const string& baseAnimationId, const string& overlay1AnimationId = string(), const string& overlay2AnimationId = string(), const string& overlay3AnimationId = string());
252
253 /**
254 * Add attachment 1
255 * @param nodeId node id to attach model to
256 * @param attachmentModelFile attachment model mile
257 */
258 void addAttachment1(const string& nodeId, const string& attachmentModelFile);
259
260 /**
261 * Update shader parameters
262 */
264
265};
Interface to audio module.
Definition: Audio.h:30
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
Representation of a 3d model.
Definition: Model.h:32
Prototype definition.
Definition: Prototype.h:49
3D vector 3 class
Definition: Vector3.h:22
Pop ups controller accessor class.
Definition: PopUps.h:19
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tmodel prototype.
void playSound(const string &soundId) override
Play sound.
bool hasFixedSize() override
If this viewport framebuffer has a fixed size.
void onCameraRotation() override
On rotation event to be overloaded.
ModelEditorTabView(EditorView *editorView, const string &tabId, Prototype *prototype)
Public constructor.
void addAttachment1(const string &nodeId, const string &attachmentModelFile)
Add attachment 1.
void handleInputEvents() override
Handle input events that have not yet been processed.
void setLODLevel(int lodLevel)
Set LOD level to display.
virtual Prototype * loadModelPrototype(const string &name, const string &description, const string &pathName, const string &fileName, const Vector3 &pivot)
Load model prototype.
void pivotApply(float x, float y, float z)
Apply pivot.
CameraRotationInputHandler * cameraRotationInputHandler
void playAnimation(const string &baseAnimationId, const string &overlay1AnimationId=string(), const string &overlay2AnimationId=string(), const string &overlay3AnimationId=string())
Play animation.
void setPrototype(Prototype *prototype)
Set prototype.
void updateShaderParemeters()
Update shader parameters.
void reimportModel(const string &pathName, const string &fileName)
Issue reimport model file.
void onCameraScale() override
On scale event to be overloaded.
GUI input event handler interface.
Tab controller, which connects UI with logic.
Definition: TabController.h:23
Playable sound view interface, which represents a view that supports playing sounds additionally.