TDME2 1.9.121
EnvMapEditorTabView.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
12#include <tdme/engine/Camera.h>
13#include <tdme/engine/Engine.h>
15#include <tdme/engine/Light.h>
18#include <tdme/engine/Timing.h>
25
26using std::string;
27
29
48
49EnvMapEditorTabView::EnvMapEditorTabView(EditorView* editorView, const string& tabId, Scene* scene, Prototype* prototype)
50{
51 this->editorView = editorView;
52 this->tabId = tabId;
53 this->popUps = editorView->getPopUps();
54 this->scene = scene;
55 this->prototype = prototype;
56 engine = Engine::createOffScreenInstance(512, 512, true, true, true);
57 engine->setSceneColor(Color4(125.0f / 255.0f, 125.0f / 255.0f, 125.0f / 255.0f, 1.0f));
58}
59
61 delete scene;
62}
63
65{
66}
67
69{
70 updateSky();
72 engine->display();
73}
74
76{
77 try {
80 skySpherePrototype = PrototypeReader::read("resources/engine/models", "sky_sphere.tmodel");
81 skyDomePrototype = PrototypeReader::read("resources/engine/models", "sky_dome.tmodel");
82 skyPanoramaPrototype = PrototypeReader::read("resources/engine/models", "sky_panorama.tmodel");
83 } catch (Exception& exception) {
84 Console::print(string("EnvMapEditorTabView::initialize(): An error occurred: "));
85 Console::println(string(exception.what()));
86 }
87 // TODO: load settings
88 // TODO: reloadTabOutliner
89 for (auto i = 1; i < engine->getLightCount(); i++) engine->getLightAt(i)->setEnabled(false);
90 auto light0 = engine->getLightAt(0);
91 light0->setAmbient(Color4(0.7f, 0.7f, 0.7f, 1.0f));
92 light0->setDiffuse(Color4(0.3f, 0.3f, 0.3f, 1.0f));
93 light0->setSpecular(Color4(1.0f, 1.0f, 1.0f, 1.0f));
94 light0->setPosition(Vector4(0.0f, 20000.0f, 0.0f, 0.0f));
95 light0->setSpotDirection(Vector3(0.0f, 0.0f, 0.0f).sub(Vector3(light0->getPosition().getX(), light0->getPosition().getY(), light0->getPosition().getZ())).normalize());
96 light0->setConstantAttenuation(0.5f);
97 light0->setLinearAttenuation(0.0f);
98 light0->setQuadraticAttenuation(0.0f);
99 light0->setSpotExponent(0.0f);
100 light0->setSpotCutOff(180.0f);
101 light0->setEnabled(true);
102 auto cam = engine->getCamera();
103 cam->setZNear(0.1f);
104 cam->setZFar(150.0f);
105 cam->setLookFrom(Vector3(81.296799f, 15.020234f, 101.091347f));
106 cam->setLookAt(Vector3(57.434414f, 0.695241f, 67.012329f));
107 SceneConnector::setLights(engine, scene, Vector3());
108 SceneConnector::addScene(engine, scene, true, true, true, true);
109 initSky();
110}
111
113{
114 engine->reset();
116}
117
119}
120
122 return engine;
123}
124
130}
131
134}
135
139}
140
141
143 // sky sphere
144 auto skySphere = new Object3D("sky_sphere", skySpherePrototype->getModel());
145 skySphere->setRenderPass(Entity::RENDERPASS_NOFRUSTUMCULLING);
146 skySphere->setShader("sky");
147 skySphere->setFrustumCulling(false);
148 skySphere->setTranslation(Vector3(0.0f, -20.0f, 0.0f));
149 skySphere->setScale(Vector3(300.0f/200.0f, 300.0f/200.0f, 300.0f/200.0f));
150 skySphere->update();
151 skySphere->setContributesShadows(false);
152 skySphere->setReceivesShadows(false);
153 skySphere->setExcludeEffectPass(Engine::EFFECTPASS_LIGHTSCATTERING);
154 engine->addEntity(skySphere);
155
156 // sky dome
157 auto skyDome = new Object3D("sky_dome", skyDomePrototype->getModel());
158 skyDome->setRenderPass(Entity::RENDERPASS_NOFRUSTUMCULLING);
159 skyDome->setShader("sky");
160 skyDome->setFrustumCulling(false);
161 skyDome->setTranslation(Vector3(0.0f, -20.0f, 0.0f));
162 skyDome->setScale(Vector3(295.0f/190.0f, 295.0f/190.0f, 295.0f/190.0f));
163 skyDome->getModel()->getMaterials().begin()->second->getSpecularMaterialProperties()->setDiffuseTextureMaskedTransparency(true);
164 skyDome->update();
165 skyDome->setContributesShadows(false);
166 skyDome->setReceivesShadows(false);
167 skyDome->setEffectColorMul(Color4(1.0f, 1.0f, 1.0f, 0.7f));
168 skyDome->setExcludeEffectPass(Engine::EFFECTPASS_LIGHTSCATTERING);
169 engine->addEntity(skyDome);
170
171 // sky panorama
172 auto skyPanorama = new Object3D("sky_panorama", skyPanoramaPrototype->getModel());
173 skyPanorama->setRenderPass(Entity::RENDERPASS_NOFRUSTUMCULLING);
174 skyPanorama->setShader("sky");
175 skyPanorama->setFrustumCulling(false);
176 skyPanorama->setTranslation(Vector3(0.0f, -20.0f, 0.0f));
177 skyPanorama->setScale(Vector3(280.0f/190.0f, 280.0f/180.0f, 280.0f/180.0f));
178 skyPanorama->addRotation(Vector3(0.0f, 1.0f, 0.0f), 0.0f);
179 skyPanorama->update();
180 skyPanorama->setContributesShadows(false);
181 skyPanorama->setReceivesShadows(false);
182 skyPanorama->setExcludeEffectPass(Engine::EFFECTPASS_LIGHTSCATTERING);
183 engine->addEntity(skyPanorama);
184
185 auto environmentMapping = new EnvironmentMapping("sky_environment_mapping", Engine::getEnvironmentMappingWidth(), Engine::getEnvironmentMappingHeight(), BoundingBox(Vector3(-30.0f, 0.0f, -30.0f), Vector3(30.0f, 60.0f, -30.0f)));
186 environmentMapping->setFrustumCulling(false);
187 environmentMapping->setTranslation(Vector3(64.0f, -5.0f, 73.0f));
188 environmentMapping->setTimeRenderUpdateFrequency(prototype->getEnvironmentMapTimeRenderUpdateFrequency());
189 environmentMapping->setRenderPassMask(prototype->getEnvironmentMapRenderPassMask());
190 environmentMapping->update();
191 engine->addEntity(environmentMapping);
192}
193
195 auto skySphere = engine->getEntity("sky_sphere");
196 skySphere->setTranslation(engine->getCamera()->getLookFrom().clone().sub(Vector3(0.0f, 20.0f, 0.0f)));
197 skySphere->update();
198
199 auto skyDome = static_cast<Object3D*>(engine->getEntity("sky_dome"));
200 skyDome->setTranslation(engine->getCamera()->getLookFrom().clone().sub(Vector3(0.0f, 20.0f, 0.0f)));
201 skyDome->setTextureMatrix((Matrix2D3x3()).identity().translate(Vector2(0.0f, skyDomeTranslation * 0.01f)));
202 skyDome->update();
203
204 auto skyPanorama = engine->getEntity("sky_panorama");
205 skyPanorama->setTranslation(engine->getCamera()->getLookFrom().clone().sub(Vector3(0.0f, 20.0f, 0.0f)));
206 skyPanorama->setRotationAngle(0, skyDomeTranslation * 1.0f * 0.1f);
207 skyPanorama->update();
208
209 skyDomeTranslation+= 1.0f / 60.0;
210}
211
213 auto environmentMapping = dynamic_cast<EnvironmentMapping*>(engine->getEntity("sky_environment_mapping"));
214 return environmentMapping->getTranslation();
215}
216
218 auto environmentMapping = dynamic_cast<EnvironmentMapping*>(engine->getEntity("sky_environment_mapping"));
219 environmentMapping->setTranslation(translation);
220 environmentMapping->update();
221}
222
224 auto environmentMapping = dynamic_cast<EnvironmentMapping*>(engine->getEntity("sky_environment_mapping"));
225 return environmentMapping->getRenderPassMask();
226}
227
229 auto environmentMapping = dynamic_cast<EnvironmentMapping*>(engine->getEntity("sky_environment_mapping"));
230 environmentMapping->setRenderPassMask(renderPassMask);
231}
232
234 auto environmentMapping = dynamic_cast<EnvironmentMapping*>(engine->getEntity("sky_environment_mapping"));
235 return environmentMapping->getTimeRenderUpdateFrequency();
236}
237
239 auto environmentMapping = dynamic_cast<EnvironmentMapping*>(engine->getEntity("sky_environment_mapping"));
240 environmentMapping->setTimeRenderUpdateFrequency(frequency);
241}
242
243void EnvMapEditorTabView::saveFile(const string& pathName, const string& fileName) {
244 PrototypeWriter::write(pathName, fileName, prototype);
245}
const Vector3 & getLookFrom() const
Definition: Camera.h:213
void setZNear(float zNear)
Set z near.
Definition: Camera.h:146
Engine main class.
Definition: Engine.h:122
Timing * getTiming()
Definition: Engine.h:900
int32_t getLightCount()
Definition: Engine.h:941
void display()
Renders the scene.
Definition: Engine.cpp:1269
Light * getLightAt(int32_t idx)
Returns light at idx (0 <= idx < 8)
Definition: Engine.h:950
void addEntity(Entity *entity)
Adds an entity by id.
Definition: Engine.cpp:364
Entity * getEntity(const string &id)
Returns a entity by given id.
Definition: Engine.h:981
void reset()
Removes all entities and caches.
Definition: Engine.cpp:652
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Definition: Engine.h:965
Camera * getCamera()
Definition: Engine.h:907
virtual void setTranslation(const Vector3 &translation)=0
Set translation.
Environment mapping entity.
void setTranslation(const Vector3 &translation) override
Set translation.
void setRenderPassMask(int32_t renderPassMask)
Set up render pass mask.
const Vector3 & getTranslation() const override
void setTimeRenderUpdateFrequency(int64_t frequency)
Set up render update time frequency.
Light representation.
Definition: Light.h:32
void setEnabled(bool enabled)
Set enabled.
Definition: Light.h:82
void setAmbient(const Color4 &ambient)
Set ambient light component.
Definition: Light.h:97
Object 3D to be used with engine class.
Definition: Object3D.h:60
void setTranslation(const Vector3 &translation) override
Set translation.
Definition: Object3D.h:271
Scene engine/physics connector.
Timing class.
Definition: Timing.h:17
float getAvarageFPS()
Definition: Timing.h:100
Color 4 definition.
Definition: Color4.h:20
Represents a material.
Definition: Material.h:21
Represents specular material properties.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
Prototype definition.
Definition: Prototype.h:49
int64_t getEnvironmentMapTimeRenderUpdateFrequency()
Definition: Prototype.h:546
Scene definition.
Definition: Scene.h:41
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
2D vector 2 class
Definition: Vector2.h:19
3D vector 3 class
Definition: Vector3.h:22
Vector3 & normalize()
Normalize the vector.
Definition: Vector3.h:288
Vector3 clone() const
Clones the vector.
Definition: Vector3.h:372
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
3D vector 4 class
Definition: Vector4.h:19
void restoreOutlinerState(const TabView::OutlinerState &outlinerState)
Restore outliner state.
void storeOutlinerState(TabView::OutlinerState &outlinerState)
Store outliner state.
void updateInfoText(const MutableString &text)
Update info text line.
void updateDetails(const string &outlinerNode)
Update details panel.
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tenvmap prototype.
void handleInputEvents() override
Handle input events that have not yet been processed.
void setEnvironmentMapTranslation(const Vector3 &translation)
Set environment map translation.
void setEnvironmentMapRenderPassMask(int32_t renderPassMask)
Set environment map render passes.
void setEnvironmentMapFrequency(int64_t frequency)
Set environment map frequency.
EditorScreenController * getScreenController()
Definition: EditorView.h:57
Console class.
Definition: Console.h:26
Mutable string class.
Definition: MutableString.h:16
MutableString & append(char c)
Append character.
std::exception Exception
Exception base class.
Definition: Exception.h:19