56 engine = Engine::createOffScreenInstance(512, 512,
true,
true,
true);
80 skySpherePrototype = PrototypeReader::read(
"resources/engine/models",
"sky_sphere.tmodel");
81 skyDomePrototype = PrototypeReader::read(
"resources/engine/models",
"sky_dome.tmodel");
84 Console::print(
string(
"EnvMapEditorTabView::initialize(): An error occurred: "));
85 Console::println(
string(exception.what()));
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);
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));
108 SceneConnector::addScene(
engine,
scene,
true,
true,
true,
true);
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));
151 skySphere->setContributesShadows(
false);
152 skySphere->setReceivesShadows(
false);
153 skySphere->setExcludeEffectPass(Engine::EFFECTPASS_LIGHTSCATTERING);
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);
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);
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);
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));
190 environmentMapping->update();
207 skyPanorama->update();
220 environmentMapping->update();
244 PrototypeWriter::write(pathName, fileName,
prototype);
const Vector3 & getLookFrom() const
void setZNear(float zNear)
Set z near.
void display()
Renders the scene.
Light * getLightAt(int32_t idx)
Returns light at idx (0 <= idx < 8)
void addEntity(Entity *entity)
Adds an entity by id.
Entity * getEntity(const string &id)
Returns a entity by given id.
void reset()
Removes all entities and caches.
void setSceneColor(const Color4 &sceneColor)
Set scene color.
virtual void setTranslation(const Vector3 &translation)=0
Set translation.
Environment mapping entity.
void setTranslation(const Vector3 &translation) override
Set translation.
int64_t getTimeRenderUpdateFrequency()
void setRenderPassMask(int32_t renderPassMask)
Set up render pass mask.
int32_t getRenderPassMask()
const Vector3 & getTranslation() const override
void setTimeRenderUpdateFrequency(int64_t frequency)
Set up render update time frequency.
void setEnabled(bool enabled)
Set enabled.
void setAmbient(const Color4 &ambient)
Set ambient light component.
Object 3D to be used with engine class.
void setTranslation(const Vector3 &translation) override
Set translation.
Scene engine/physics connector.
Represents specular material properties.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
int64_t getEnvironmentMapTimeRenderUpdateFrequency()
int getEnvironmentMapRenderPassMask()
Vector3 & normalize()
Normalize the vector.
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
MutableString & append(char c)
Append character.
std::exception Exception
Exception base class.