TDME2 1.9.121
PrototypeDisplaySubView.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
11
12using std::string;
13using std::vector;
14
18
19/**
20 * Prototype display view
21 * @author Andreas Drewke
22 * @version $Id$
23 */
25{
26private:
27 Engine* engine { nullptr };
29 bool displayGroundPlate { true };
30 bool displayShadowing { true };
31
32public:
33 /**
34 * Public constructor
35 * @param engine engine
36 * @param prototypeDisplaySubController entity display sub screen controller
37 */
39
40 /**
41 * Destructor
42 */
44
45 /**
46 * @return display ground plate
47 */
48 inline bool isDisplayGroundPlate() {
49 return this->displayGroundPlate;
50 }
51
52 /**
53 * Set up ground plate visibility
54 * @param groundPlate ground plate visible
55 */
56 inline void setDisplayGroundPlate(bool groundPlate) {
57 this->displayGroundPlate = groundPlate;
58 }
59
60 /**
61 * @return display shadowing
62 */
63 inline bool isDisplayShadowing() {
64 return displayShadowing;
65 }
66
67 /**
68 * Set up shadow rendering
69 * @param shadowing shadow rendering
70 */
71 inline void setDisplayShadowing(bool shadowing) {
72 this->displayShadowing = shadowing;
73 }
74
75 /**
76 * Update shader parameters
77 * @param prototype prototype
78 */
79 void updateShaderParameters(Prototype* prototype);
80
81 /**
82 * Display
83 * @param prototype prototype
84 */
85 void display(Prototype* prototype);
86
87};
Engine main class.
Definition: Engine.h:122
Prototype definition.
Definition: Prototype.h:49
void updateShaderParameters(Prototype *prototype)
Update shader parameters.
void setDisplayShadowing(bool shadowing)
Set up shadow rendering.
void setDisplayGroundPlate(bool groundPlate)
Set up ground plate visibility.
PrototypeDisplaySubView(Engine *engine, PrototypeDisplaySubController *prototypeDisplaySubController)
Public constructor.