TDME2 1.9.121
EditorScreenController.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5#include <unordered_map>
6#include <vector>
7
8#include <tdme/tdme.h>
28
29using std::map;
30using std::string;
31using std::unordered_map;
32using std::vector;
33
57
58/**
59 * Editor screen controller
60 * @author Andreas Drewke
61 * @version $Id$
62 */
64 : public ScreenController
65 , public GUIActionListener
66 , public GUIChangeListener
67 , public GUIFocusListener
69{
70public:
71 enum FileType {
86 };
87
88 /**
89 * Editor tab view
90 */
92 public:
94
95 private:
96 string id;
98 TabView* tabView { nullptr };
100
101 public:
102 /**
103 * Public default constructor
104 */
106
107 /**
108 * Public constructor
109 * @param id id
110 * @param type type
111 * @param tabView tab view
112 * @param frameBufferNode frame buffer node
113 */
115 string id,
119 ):
120 id(id),
121 type(type),
124 {}
125
126 /**
127 * @return id
128 */
129 inline const string& getId() {
130 return id;
131 }
132
133 /**
134 * @return tab type
135 */
136 inline TabType getType() {
137 return type;
138 }
139
140 /**
141 * @return tab view
142 */
143 inline TabView* getTabView() {
144 return tabView;
145 }
146
147 /**
148 * @return frame buffer GUI node
149 */
151 return frameBufferNode;
152 }
153
154 };
155
156private:
157 EditorView* view { nullptr };
161 GUIParentNode* tabs { nullptr };
170 unordered_map<string, EditorTabView> tabViews;
172 int64_t timeFileNameSearchTerm { -1LL };
173
174 //
175 class FileOpenThread: public Thread {
176 public:
177 /**
178 * Constructor
179 * @param tabId tab id
180 * @param fileType file type
181 * @param absoluteFileName absolute file name
182 */
184
185 /**
186 * @return tab id
187 */
188 inline const string& getTabId() {
189 return tabId;
190 }
191
192 /**
193 * @return file type
194 */
196 return fileType;
197 }
198
199 /**
200 * @return absolute filename
201 */
202 inline const string& getAbsoluteFileName() {
203 return absoluteFileName;
204 }
205
206 /**
207 * @return error message
208 */
209 inline const string& getErrorMessage() {
210 return errorMessage;
211 }
212
213 /**
214 * @return progress
215 */
216 inline float getProgress() {
217 return progress;
218 }
219
220 /**
221 * @return prototype
222 */
224 return prototype;
225 }
226
227 /**
228 * @return scene
229 */
230 inline Scene* getScene() {
231 return scene;
232 }
233
234 /**
235 * @return if error occurred during opening files
236 */
237 inline bool isError() {
238 return error;
239 }
240
241 /**
242 * @return if thread has finished
243 */
244 inline volatile bool isFinished() {
245 return finished;
246 }
247
248 /**
249 * Run
250 */
251 virtual void run();
252 private:
254 string tabId;
257 float progress { 0.0f };
258
259 Prototype* prototype { nullptr };
260 Scene* scene { nullptr };
261 bool error { false };
262 volatile bool finished { false };
263 };
264
266
267 struct FileEntity {
268 string id;
269 string buttonXML;
271 };
272
273 //
274 class ScanFilesThread: public Thread {
275 public:
276 /**
277 * Constructor
278 * @param pathName path name
279 */
281
282 /**
283 * @return path name
284 */
285 inline const string& getPathName() {
286 return pathName;
287 }
288
289 /**
290 * @return error message
291 */
292 inline const string& getErrorMessage() {
293 return errorMessage;
294 }
295
296 /**
297 * @return progress
298 */
299 inline float getProgress() {
300 return progress;
301 }
302
303 /**
304 * @return if error occurred during opening files
305 */
306 inline bool isError() {
307 return error;
308 }
309
310 /**
311 * @return if thread has finished
312 */
313 inline volatile bool isFinished() {
314 return finished;
315 }
316
317 /**
318 * Run
319 */
320 virtual void run();
321 private:
323 string pathName;
326 float progress { 0.0f };
327
328 bool error { false };
329 volatile bool finished { false };
330 };
331
333 vector<FileEntity*> fileEntities;
334
336
337 /**
338 * Lock file entities mutex
339 */
340 inline void lockFileEntities() {
342 }
343
344 /**
345 * Unlock file entities mutex
346 */
347 inline void unlockFileEntities() {
349 }
350
351 /**
352 * @return file entities
353 */
354 inline vector<FileEntity*>& getFileEntities() {
355 return fileEntities;
356 }
357
359 vector<FileEntity*> pendingFileEntities;
360
361public:
362
363 /**
364 * Public constructor
365 * @param view view
366 */
368
369 /**
370 * Public destructor
371 */
373
374 // overridden methods
375 GUIScreenNode* getScreenNode() override;
376 void initialize() override;
377 void dispose() override;
378
379 /**
380 * Set screen caption
381 * @param text text
382 */
383 void setScreenCaption(const string& text);
384
385 // overridden methods
386 void onValueChanged(GUIElementNode* node) override;
387 void onActionPerformed(GUIActionListenerType type, GUIElementNode* node) override;
388 void onFocus(GUIElementNode* node) override;
389 void onUnfocus(GUIElementNode* node) override;
390 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY) override;
391
392 /**
393 * @return project path
394 */
395 const string& getProjectPath() {
396 return projectPath;
397 }
398
399 /**
400 * Open project
401 * @param path path
402 */
403 void openProject(const string& path);
404
405 /**
406 * On open project
407 */
408 void onOpenProject();
409
410 /**
411 * Scan project paths
412 */
413 void scanProjectPaths();
414
415 /**
416 * Scan project paths
417 * @param path path
418 * @param xml xml
419 */
420 void scanProjectPaths(const string& path, string& xml);
421
422 /**
423 * Close tabs
424 */
425 void closeTabs();
426
427 /**
428 * Close project
429 */
430 void closeProject();
431
432 /**
433 * Clear project path files
434 */
436
437 /**
438 * Scan project path files
439 */
441
442 /**
443 * Start scan files
444 */
445 void startScanFiles();
446
447 /**
448 * Stop scan files
449 */
450 void stopScanFiles();
451
452 /**
453 * Add project path files pending file entities
454 */
456
457 /**
458 * Set relative project path
459 * @param relativeProjectPath relative project path
460 */
462
463 /**
464 * On add file
465 * @param type type
466 */
467 void onAddFile(const string& type);
468
469 /**
470 * On add file
471 * @param pathName path name
472 * @param fileName file name
473 * @param type type
474 */
475 void addFile(const string& pathName, const string& fileName, const string& type);
476
477 /**
478 * On open file
479 * @param absoluteProjectFileName absolute project file name
480 */
481 inline void onOpenFile(const string& absoluteFileName) {
482 openFile(absoluteFileName);
483 }
484
485 /**
486 * Open file
487 * @param absoluteProjectFileName absolute project file name
488 */
489 void openFile(const string& absoluteFileName);
490
491 /**
492 * On open file finish
493 * @param tabId tab id
494 * @param fileType file type
495 * @param absoluteFileName absolute file name
496 * @param prototype prototype
497 * @param scene scene
498 */
499 void onOpenFileFinish(const string& tabId, FileType fileType, const string& absoluteFileName, Prototype* prototype, Scene* scene);
500
501 /**
502 * Store outliner state
503 * @param outlinerState outliner state
504 */
505 void storeOutlinerState(TabView::OutlinerState& outlinerState);
506
507 /**
508 * Restore outliner state
509 * @param outlinerState outliner state
510 */
511 void restoreOutlinerState(const TabView::OutlinerState& outlinerState);
512
513 /**
514 * @return outliner selection
515 */
516 const string getOutlinerSelection();
517
518 /**
519 * Set outliner selection
520 * @param newSelectionValue new selection value
521 */
522 void setOutlinerSelection(const string& newSelectionValue);
523
524 /**
525 * Set outliner content
526 * @param xml xml
527 */
528 void setOutlinerContent(const string& xml);
529
530 /**
531 * Set outliner add content
532 * @param xml xml
533 */
534 void setOutlinerAddDropDownContent(const string& xml);
535
536 /**
537 * Set details content
538 * @param xml xml
539 */
540 void setDetailsContent(const string& xml);
541
542 /**
543 * @return is full screen
544 */
545 bool isFullScreen();
546
547 /**
548 * Update full screen menu entry
549 */
551
552 /**
553 * Set fullscreen
554 * @param fullScreen full screen
555 */
556 void setFullScreen(bool fullScreen);
557
558 /**
559 * On save current tab
560 */
561 void onSaveCurrentTab();
562
563 /**
564 * On save as current tab
565 */
566 void onSaveAsCurrentTab();
567
568 /**
569 * On save all tabs
570 */
571 void onSaveAllTabs();
572
573 /**
574 * Shows the error pop up
575 * @param caption caption
576 * @param message message
577 */
578 void showErrorPopUp(const string& caption, const string& message);
579
580 /**
581 * Get engine viewport constraints
582 * @param viewPortNode view port node
583 * @param left left
584 * @param top top
585 * @param width width
586 * @param height height
587 */
588 void getViewPort(GUINode* viewPortNode, int& left, int& top, int& width, int& height);
589
590 /**
591 * @return selected tab id
592 */
593 const string getSelectedTabId();
594
595 /**
596 * @return tabs views
597 */
598 inline unordered_map<string, EditorTabView>& getTabViews() {
599 return tabViews;
600 }
601
602 /**
603 * Returns editor tab view by given tab id
604 * @param tabId editor tab id
605 * @return tab
606 */
607 inline EditorTabView* getTab(const string& tabId) {
608 auto tabViewIt = tabViews.find(tabId);
609 if (tabViewIt != tabViews.end()){
610 return &tabViewIt->second;
611 }
612 return nullptr;
613 }
614
615 /**
616 * @return selected tab
617 */
619 return getTab(getSelectedTabId());
620 }
621
622 /**
623 * Tick
624 */
625 void tick();
626
627 /**
628 * On quit
629 */
630 void onQuit();
631};
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
Prototype definition.
Definition: Prototype.h:49
Scene definition.
Definition: Scene.h:41
GUI node base class.
Definition: GUINode.h:63
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
Mutex implementation.
Definition: Mutex.h:27
void unlock()
Unlocks this mutex.
Definition: Mutex.cpp:48
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
Definition: Mutex.cpp:39
Base class for threads.
Definition: Thread.h:26
EditorTabView(string id, TabType type, TabView *tabView, GUIFrameBufferNode *frameBufferNode)
Public constructor.
FileOpenThread(const string &tabId, FileType fileType, const string &absoluteFileName)
Constructor.
ScanFilesThread(EditorScreenController *editorScreenController, const string &pathName, const string &searchTerm)
Constructor.
void onOpenFile(const string &absoluteFileName)
On open file.
void setOutlinerSelection(const string &newSelectionValue)
Set outliner selection.
void setOutlinerAddDropDownContent(const string &xml)
Set outliner add content.
void setOutlinerContent(const string &xml)
Set outliner content.
void restoreOutlinerState(const TabView::OutlinerState &outlinerState)
Restore outliner state.
void addPendingFileEntities()
Add project path files pending file entities.
void setScreenCaption(const string &text)
Set screen caption.
EditorTabView * getTab(const string &tabId)
Returns editor tab view by given tab id.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void storeOutlinerState(TabView::OutlinerState &outlinerState)
Store outliner state.
void setRelativeProjectPath(const string &relativeProjectPath)
Set relative project path.
void onUnfocus(GUIElementNode *node) override
On unfocus.
void onValueChanged(GUIElementNode *node) override
On value changed.
void setDetailsContent(const string &xml)
Set details content.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void onFocus(GUIElementNode *node) override
On focus.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
unordered_map< string, EditorTabView > & getTabViews()
void onOpenFileFinish(const string &tabId, FileType fileType, const string &absoluteFileName, Prototype *prototype, Scene *scene)
On open file finish.
void getViewPort(GUINode *viewPortNode, int &left, int &top, int &width, int &height)
Get engine viewport constraints.
void addFile(const string &pathName, const string &fileName, const string &type)
On add file.
void openFile(const string &absoluteFileName)
Open file.
Mutable string class.
Definition: MutableString.h:16
GUI action listener interface.
GUI change listener interface.
GUI focus listener interface.
Screen controller, which connects GUI screen definition with code.
Tab controller, which connects UI with logic.
Definition: TabController.h:23