[61] | 1 | #include <OgreNoMemoryMacros.h>
|
---|
| 2 | #include <CEGUI/CEGUI.h>
|
---|
| 3 | #include <../CEGUIRenderer/include/OgreCEGUIRenderer.h>
|
---|
| 4 | #include <../CEGUIRenderer/include/OgreCEGUIResourceProvider.h>
|
---|
| 5 | #include <../CEGUIRenderer/include/OgreCEGUITexture.h>
|
---|
| 6 | #include <OgreMemoryMacros.h>
|
---|
| 7 |
|
---|
[100] | 8 | #include <Ogre.h>
|
---|
[161] | 9 |
|
---|
[115] | 10 | //#include "OgreReferenceAppLayer.h"
|
---|
[100] | 11 | //#include "OgreRefAppWorld.h"
|
---|
[61] | 12 | #include "TestCullingTerrainApplication.h"
|
---|
[173] | 13 | #include "TerrainFrameListener.h"
|
---|
[61] | 14 |
|
---|
| 15 | #define WIN32_LEAN_AND_MEAN
|
---|
[94] | 16 | #include <windows.h>
|
---|
[61] | 17 |
|
---|
[160] | 18 |
|
---|
[173] | 19 | /**********************************************/
|
---|
| 20 | /* EntityState implementation */
|
---|
| 21 | /**********************************************/
|
---|
[164] | 22 |
|
---|
[173] | 23 |
|
---|
[164] | 24 | Vector3 EntityState::msMinPos = Vector3::ZERO;
|
---|
| 25 | Vector3 EntityState::msMaxPos = Vector3::ZERO;
|
---|
| 26 |
|
---|
[161] | 27 | EntityState::EntityState(Entity *ent, State entityState, Real speed):
|
---|
| 28 | mEntity(ent), mState(entityState), mAnimationSpeed(speed)
|
---|
| 29 | {
|
---|
| 30 | switch(entityState)
|
---|
| 31 | {
|
---|
| 32 | case MOVING:
|
---|
| 33 | mAnimationState = mEntity->getAnimationState("Walk");
|
---|
| 34 | break;
|
---|
| 35 | case WAITING:
|
---|
| 36 | mAnimationState = mEntity->getAnimationState("Idle");
|
---|
| 37 | break;
|
---|
| 38 | case STOP:
|
---|
| 39 | mAnimationState = NULL;
|
---|
| 40 | break;
|
---|
| 41 | default:
|
---|
| 42 | break;
|
---|
| 43 | }
|
---|
| 44 | // enable animation state
|
---|
| 45 | if (mAnimationState)
|
---|
| 46 | {
|
---|
| 47 | mAnimationState->setLoop(true);
|
---|
| 48 | mAnimationState->setEnabled(true);
|
---|
| 49 | }
|
---|
| 50 | mTimeElapsed = Math::RangeRandom(1, 5);
|
---|
| 51 | }
|
---|
| 52 | //-----------------------------------------------------------------------
|
---|
[164] | 53 | EntityState::~EntityState()
|
---|
| 54 | {
|
---|
| 55 | mAnimationState = NULL;
|
---|
| 56 | mEntity = NULL;
|
---|
| 57 | }
|
---|
| 58 | //-----------------------------------------------------------------------
|
---|
[161] | 59 | Entity *EntityState::GetEntity()
|
---|
| 60 | {
|
---|
| 61 | return mEntity;
|
---|
| 62 | }
|
---|
| 63 | //-----------------------------------------------------------------------
|
---|
| 64 | EntityState::State EntityState::GetState()
|
---|
| 65 | {
|
---|
| 66 | return mState;
|
---|
| 67 | }
|
---|
| 68 | //-----------------------------------------------------------------------
|
---|
| 69 | void EntityState::update(Real timeSinceLastFrame)
|
---|
| 70 | {
|
---|
| 71 | mTimeElapsed -= timeSinceLastFrame * mAnimationSpeed;
|
---|
[164] | 72 |
|
---|
| 73 | if (!mEntity || !mAnimationState)
|
---|
| 74 | return;
|
---|
[161] | 75 |
|
---|
| 76 | if (mState == MOVING) // toggle between moving (longer) and waiting (short)
|
---|
| 77 | {
|
---|
| 78 | SceneNode *parent = mEntity->getParentSceneNode();
|
---|
[164] | 79 |
|
---|
| 80 | if (!parent)
|
---|
| 81 | return;
|
---|
[161] | 82 |
|
---|
| 83 | if (mTimeElapsed <= 0) // toggle animation state
|
---|
| 84 | {
|
---|
| 85 | if (mAnimationState->getAnimationName() == "Idle")
|
---|
| 86 | {
|
---|
| 87 | SetAnimationState("Walk", true);
|
---|
[164] | 88 |
|
---|
| 89 | mTimeElapsed = walk_duration; // walk for mTimeElapsed units
|
---|
[161] | 90 |
|
---|
[164] | 91 | // choose random rotation
|
---|
| 92 | Radian rnd = Radian(Math::UnitRandom() * Math::PI * rotate_factor);
|
---|
[161] | 93 |
|
---|
| 94 | //mEntity->getParentSceneNode()->rotate();
|
---|
| 95 | parent->yaw(rnd);
|
---|
| 96 | }
|
---|
| 97 | else
|
---|
| 98 | {
|
---|
| 99 | SetAnimationState("Idle", true);
|
---|
[164] | 100 | mTimeElapsed = wait_duration; // wait for mTimeElapsed seconds
|
---|
[161] | 101 | }
|
---|
| 102 | }
|
---|
| 103 |
|
---|
[164] | 104 | if (mAnimationState->getAnimationName() == "Walk") // move forward
|
---|
[161] | 105 | {
|
---|
[164] | 106 | // store old position, just in case we get out of bounds
|
---|
[161] | 107 | Vector3 oldPos = parent->getPosition();
|
---|
[164] | 108 | parent->translate(parent->getLocalAxes(), Vector3(move_factor * mAnimationSpeed, 0, 0));
|
---|
[161] | 109 |
|
---|
[164] | 110 | // HACK: if out of bounds => reset to old position and set animationstate to idle
|
---|
[161] | 111 | if (OutOfBounds(parent))
|
---|
| 112 | {
|
---|
| 113 | parent->setPosition(oldPos);
|
---|
[164] | 114 | SetAnimationState("Idle", true);
|
---|
[161] | 115 |
|
---|
[164] | 116 | mTimeElapsed = wait_duration;
|
---|
[161] | 117 | }
|
---|
| 118 | }
|
---|
| 119 | }
|
---|
| 120 |
|
---|
[164] | 121 | // add time to drive animation
|
---|
| 122 | mAnimationState->addTime(timeSinceLastFrame * mAnimationSpeed);
|
---|
[161] | 123 | }
|
---|
| 124 | //-----------------------------------------------------------------------
|
---|
| 125 | void EntityState::SetAnimationState(String stateStr, bool loop)
|
---|
| 126 | {
|
---|
[164] | 127 | if (!mEntity)
|
---|
| 128 | return;
|
---|
| 129 |
|
---|
[161] | 130 | mAnimationState = mEntity->getAnimationState(stateStr);
|
---|
| 131 | mAnimationState->setLoop(loop);
|
---|
| 132 | mAnimationState->setEnabled(true);
|
---|
| 133 | }
|
---|
| 134 | //-----------------------------------------------------------------------
|
---|
| 135 | bool EntityState::OutOfBounds(SceneNode *node)
|
---|
| 136 | {
|
---|
| 137 | Vector3 pos = node->getPosition();
|
---|
| 138 |
|
---|
| 139 | if ((pos > msMinPos) && (pos < msMaxPos))
|
---|
[164] | 140 | return false;
|
---|
[161] | 141 |
|
---|
[164] | 142 | return true;
|
---|
[161] | 143 | }
|
---|
[164] | 144 |
|
---|
| 145 |
|
---|
| 146 |
|
---|
[160] | 147 | /*********************************************************/
|
---|
| 148 | /* TestCullingTerrainApplication implementation */
|
---|
| 149 | /*********************************************************/
|
---|
| 150 |
|
---|
| 151 |
|
---|
[145] | 152 | TestCullingTerrainApplication::TestCullingTerrainApplication():
|
---|
[164] | 153 | mTerrainContentGenerator(NULL), mRayQueryExecutor(NULL)
|
---|
[145] | 154 | {
|
---|
| 155 | }
|
---|
[100] | 156 | //-----------------------------------------------------------------------
|
---|
[61] | 157 | TestCullingTerrainApplication::~TestCullingTerrainApplication()
|
---|
| 158 | {
|
---|
[161] | 159 | OGRE_DELETE(mTerrainContentGenerator);
|
---|
| 160 | OGRE_DELETE(mRayQueryExecutor);
|
---|
[164] | 161 |
|
---|
[161] | 162 | deleteEntityStates();
|
---|
| 163 | }
|
---|
| 164 | //-----------------------------------------------------------------------
|
---|
| 165 | void TestCullingTerrainApplication::deleteEntityStates()
|
---|
| 166 | {
|
---|
| 167 | for (int i = 0; i < (int)mEntityStates.size(); ++i)
|
---|
[122] | 168 | {
|
---|
[164] | 169 | OGRE_DELETE(mEntityStates[i]);
|
---|
[122] | 170 | }
|
---|
[164] | 171 |
|
---|
[161] | 172 | mEntityStates.clear();
|
---|
[61] | 173 | }
|
---|
| 174 | //-----------------------------------------------------------------------
|
---|
[93] | 175 | void TestCullingTerrainApplication::createCamera()
|
---|
[61] | 176 | {
|
---|
[99] | 177 | // create the camera
|
---|
[103] | 178 | mCamera = mSceneMgr->createCamera("PlayerCam");
|
---|
[93] | 179 |
|
---|
[100] | 180 | /** set a nice viewpoint
|
---|
| 181 | * we use a camera node here and apply all transformations on it instead
|
---|
| 182 | * of applying all transformations directly to the camera
|
---|
| 183 | * because then the camera is displayed correctly in the visualization
|
---|
| 184 | */
|
---|
[137] | 185 | mCamNode = mSceneMgr->getRootSceneNode()->
|
---|
| 186 | createChildSceneNode("CamNode1", Vector3(707, 5000, 528));
|
---|
[100] | 187 | //mCamera->setPosition(707, 5000, 528);
|
---|
| 188 | mCamNode->setOrientation(Quaternion(-0.3486, 0.0122, 0.9365, 0.0329));
|
---|
| 189 | mCamNode->attachObject(mCamera);
|
---|
[61] | 190 |
|
---|
[100] | 191 | //-- create visualization camera
|
---|
| 192 | mVizCamera = mSceneMgr->createCamera("VizCam");
|
---|
| 193 | mVizCamera->setPosition(mCamNode->getPosition());
|
---|
| 194 |
|
---|
| 195 | mVizCamera->setNearClipDistance(1);
|
---|
[93] | 196 | mCamera->setNearClipDistance(1);
|
---|
[61] | 197 |
|
---|
[99] | 198 | // infinite far plane?
|
---|
[93] | 199 | if (mRoot->getRenderSystem()->getCapabilities()->hasCapability(RSC_INFINITE_FAR_PLANE))
|
---|
| 200 | {
|
---|
[100] | 201 | mVizCamera->setFarClipDistance(0);
|
---|
[93] | 202 | mCamera->setFarClipDistance(0);
|
---|
| 203 | }
|
---|
| 204 | else
|
---|
| 205 | {
|
---|
[104] | 206 | mVizCamera->setFarClipDistance(20000);
|
---|
| 207 | mCamera->setFarClipDistance(20000);
|
---|
[99] | 208 | }
|
---|
[61] | 209 | }
|
---|
[99] | 210 |
|
---|
[61] | 211 | //-----------------------------------------------------------------------
|
---|
[99] | 212 | bool TestCullingTerrainApplication::setup()
|
---|
| 213 | {
|
---|
[145] | 214 | bool carryOn = ExampleApplication::setup();
|
---|
[99] | 215 |
|
---|
[145] | 216 | if (carryOn)
|
---|
[144] | 217 | createRenderTargetListener();
|
---|
[99] | 218 |
|
---|
[145] | 219 | return carryOn;
|
---|
[99] | 220 | }
|
---|
| 221 | //-----------------------------------------------------------------------
|
---|
| 222 | void TestCullingTerrainApplication::createRenderTargetListener()
|
---|
| 223 | {
|
---|
| 224 | mWindow->addListener(new VisualizationRenderTargetListener(mSceneMgr));
|
---|
| 225 | }
|
---|
| 226 | //-----------------------------------------------------------------------
|
---|
[75] | 227 | void TestCullingTerrainApplication::createScene()
|
---|
[61] | 228 | {
|
---|
[187] | 229 | Real scale = 3;
|
---|
| 230 | mSceneMgr->setOption("NodeVizScale", &scale);
|
---|
| 231 |
|
---|
[61] | 232 | // Set ambient light
|
---|
[175] | 233 | mAmbientLight = ColourValue(0.5 , 0.5, 0.5);
|
---|
[139] | 234 | mSceneMgr->setAmbientLight(mAmbientLight);
|
---|
[113] | 235 |
|
---|
[110] | 236 | //-- create light
|
---|
[111] | 237 | mSunLight = mSceneMgr->createLight("SunLight");
|
---|
| 238 | mSunLight->setType(Light::LT_DIRECTIONAL);
|
---|
| 239 | //mSunLight->setType(Light::LT_SPOTLIGHT);
|
---|
[112] | 240 | //mSunLight->setSpotlightRange(Degree(30), Degree(50));
|
---|
| 241 |
|
---|
[111] | 242 | mSunLight->setPosition(707, 2000, 500);
|
---|
| 243 | mSunLight->setCastShadows(true);
|
---|
| 244 |
|
---|
[173] | 245 | // set light angle not too small over the surface, otherwise shadows textures will be broken
|
---|
[113] | 246 | Vector3 dir(0.5, 1, 0.5);
|
---|
[110] | 247 | dir.normalise();
|
---|
[112] | 248 | mSunLight->setDirection(dir);
|
---|
| 249 | //mSunLight->setDirection(Vector3::NEGATIVE_UNIT_Y);
|
---|
[111] | 250 | mSunLight->setDiffuseColour(1, 1, 1);
|
---|
| 251 | mSunLight->setSpecularColour(1, 1, 1);
|
---|
[110] | 252 |
|
---|
[137] | 253 | // -- Fog
|
---|
[61] | 254 | // NB it's VERY important to set this before calling setWorldGeometry
|
---|
| 255 | // because the vertex program picked will be different
|
---|
| 256 | ColourValue fadeColour(0.93, 0.86, 0.76);
|
---|
| 257 | mWindow->getViewport(0)->setBackgroundColour(fadeColour);
|
---|
| 258 | //mSceneMgr->setFog( FOG_LINEAR, fadeColour, .001, 500, 1000);
|
---|
[94] | 259 |
|
---|
[61] | 260 | // Create a skybox
|
---|
[175] | 261 | mSceneMgr->setSkyBox(true, "Examples/CloudyNoonSkyBox", 5000, true);
|
---|
[103] | 262 |
|
---|
[61] | 263 | std::string terrain_cfg("terrain.cfg");
|
---|
| 264 | #if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
|
---|
| 265 | terrain_cfg = mResourcePath + terrain_cfg;
|
---|
| 266 | #endif
|
---|
[74] | 267 | mSceneMgr->setWorldGeometry(terrain_cfg);
|
---|
[75] | 268 |
|
---|
[161] | 269 |
|
---|
[100] | 270 | //-- CEGUI setup
|
---|
[61] | 271 | setupGui();
|
---|
[100] | 272 |
|
---|
[159] | 273 | /* // occluder plane to test visibility
|
---|
[160] | 274 | Plane plane; plane.normal = Vector3::UNIT_Y; plane.d = -60;
|
---|
[111] | 275 | MeshManager::getSingleton().createPlane("Myplane",
|
---|
| 276 | ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME, plane,
|
---|
| 277 | 5000,5000,100,100,true,1,5,5,Vector3::UNIT_Z);
|
---|
| 278 | Entity* pPlaneEnt = mSceneMgr->createEntity( "plane", "Myplane" );
|
---|
| 279 | pPlaneEnt->setMaterialName("Examples/Rockwall");
|
---|
| 280 | pPlaneEnt->setCastShadows(true);
|
---|
[159] | 281 | mSceneMgr->getRootSceneNode()->createChildSceneNode()->attachObject(pPlaneEnt); */
|
---|
| 282 |
|
---|
[173] | 283 | // Use 512x512 texture in GL since we can't go higher than the window res
|
---|
| 284 | mSceneMgr->setShadowTextureSettings(512, 2);
|
---|
| 285 |
|
---|
[112] | 286 | mSceneMgr->setShadowColour(ColourValue(0.5, 0.5, 0.5));
|
---|
[159] | 287 |
|
---|
[111] | 288 |
|
---|
[100] | 289 | //-- terrain content setup
|
---|
| 290 |
|
---|
[80] | 291 | // HACK: necessary to call once before the content creation for
|
---|
| 292 | // terrain initialisation
|
---|
| 293 | mSceneMgr->_renderScene(mCamera, mWindow->getViewport(0), true);
|
---|
[74] | 294 |
|
---|
[164] | 295 | // ray query executor: needed to clamp to terrain
|
---|
| 296 | mRayQueryExecutor = new RayQueryExecutor(mSceneMgr);
|
---|
| 297 |
|
---|
| 298 | mTerrainMinPos = EntityState::msMinPos = Vector3(0, 0, 0);
|
---|
[346] | 299 | mTerrainMaxPos = EntityState::msMaxPos = Vector3(5000, 5000, 5000);
|
---|
[164] | 300 |
|
---|
[82] | 301 | mTerrainContentGenerator = new TerrainContentGenerator(mSceneMgr);
|
---|
[110] | 302 |
|
---|
[160] | 303 | // if no objects in file, we generate new objects
|
---|
[346] | 304 | if (!mTerrainContentGenerator->LoadObjects("objects.out"))
|
---|
| 305 | {
|
---|
[160] | 306 | // the objects are generated randomly distributed over the terrain
|
---|
[346] | 307 | generateScene(1000, 0); // create soldiers, trees, ninjas
|
---|
[350] | 308 | generateScene(500, 1);
|
---|
| 309 | generateScene(100, 2);
|
---|
[346] | 310 | }
|
---|
[61] | 311 | }
|
---|
| 312 | //-----------------------------------------------------------------------
|
---|
[160] | 313 | void TestCullingTerrainApplication::generateScene(int num, int objectType)
|
---|
| 314 | {
|
---|
[345] | 315 | float val = TerrainFrameListener::msObjectScales[objectType];
|
---|
| 316 | Vector3 scale(val, val, val);
|
---|
[347] | 317 | const float maxHeight = 75;
|
---|
[175] | 318 | // to provide much occlusion,
|
---|
[347] | 319 | // height is restricted to maxHeight => no objects are created on peaks
|
---|
[175] | 320 | mTerrainContentGenerator->SetMinPos(Vector3(mTerrainMinPos));
|
---|
[346] | 321 | mTerrainContentGenerator->SetMaxPos(Vector3(mTerrainMaxPos.x, maxHeight, mTerrainMaxPos.z));
|
---|
[345] | 322 | std::stringstream d; d << "objscale: " << scale[0];
|
---|
| 323 | Ogre::LogManager::getSingleton().logMessage(d.str());
|
---|
[173] | 324 | mTerrainContentGenerator->SetScale(scale);
|
---|
| 325 | mTerrainContentGenerator->SetOffset(TerrainFrameListener::msObjectTerrainOffsets[objectType]);
|
---|
| 326 | mTerrainContentGenerator->GenerateScene(num, TerrainFrameListener::msObjectCaptions[objectType]);
|
---|
| 327 |
|
---|
[160] | 328 | if (objectType != 0) // from our objects, only robot has animation phases
|
---|
| 329 | return;
|
---|
| 330 |
|
---|
| 331 | EntityList *entList = mTerrainContentGenerator->GetGeneratedEntities();
|
---|
| 332 |
|
---|
| 333 | //-- add animation state for new robots (located at the end of the list)
|
---|
[175] | 334 | for (int i = (int)entList->size() - num; i < (int)entList->size(); ++i)
|
---|
[160] | 335 | {
|
---|
[161] | 336 | mEntityStates.push_back(new EntityState((*entList)[i],
|
---|
| 337 | EntityState::WAITING, Math::RangeRandom(0.5, 1.5)));
|
---|
[160] | 338 | }
|
---|
[175] | 339 |
|
---|
[347] | 340 | // release limitations on height => it is possible for the user to put single
|
---|
| 341 | // objects on peaks of the terrain (will be only few, not relevant for occlusion)
|
---|
[175] | 342 | mTerrainContentGenerator->SetMaxPos(mTerrainMaxPos);
|
---|
[160] | 343 | }
|
---|
| 344 | //-----------------------------------------------------------------------
|
---|
[161] | 345 | void TestCullingTerrainApplication::updateAnimations(Real timeSinceLastFrame)
|
---|
[160] | 346 | {
|
---|
[161] | 347 | for (int i = 0; i < (int)mEntityStates.size(); ++i)
|
---|
| 348 | {
|
---|
[164] | 349 | SceneNode *sn = mEntityStates[i]->GetEntity()->getParentSceneNode();
|
---|
[161] | 350 |
|
---|
| 351 | mEntityStates[i]->update(timeSinceLastFrame);
|
---|
| 352 |
|
---|
| 353 | if (mEntityStates[i]->GetState() == EntityState::MOVING)
|
---|
| 354 | {
|
---|
[164] | 355 | Clamp2Terrain(sn, 0); //sn->setNodeVisible(false);
|
---|
[161] | 356 | }
|
---|
| 357 | }
|
---|
[160] | 358 | }
|
---|
| 359 | //-----------------------------------------------------------------------
|
---|
[161] | 360 | EntityStates &TestCullingTerrainApplication::getEntityStates()
|
---|
[160] | 361 | {
|
---|
[161] | 362 | return mEntityStates;
|
---|
[160] | 363 | }
|
---|
| 364 | //-----------------------------------------------------------------------
|
---|
[80] | 365 | void TestCullingTerrainApplication::setupGui()
|
---|
[61] | 366 | {
|
---|
[75] | 367 | mGUIRenderer = new CEGUI::OgreCEGUIRenderer(mWindow, Ogre::RENDER_QUEUE_OVERLAY,
|
---|
| 368 | false, 3000, ST_EXTERIOR_CLOSE);
|
---|
[61] | 369 | mGUISystem = new CEGUI::System(mGUIRenderer);
|
---|
| 370 |
|
---|
| 371 | // Mouse
|
---|
| 372 | CEGUI::SchemeManager::getSingleton().loadScheme((CEGUI::utf8*)"TaharezLook.scheme");
|
---|
| 373 | CEGUI::MouseCursor::getSingleton().setImage("TaharezLook", "MouseArrow");
|
---|
[133] | 374 | mGUISystem->setDefaultMouseCursor((CEGUI::utf8*)"TaharezLook",
|
---|
| 375 | (CEGUI::utf8*)"MouseArrow");
|
---|
[61] | 376 |
|
---|
[75] | 377 | CEGUI::MouseCursor::getSingleton().show();
|
---|
[61] | 378 | }
|
---|
| 379 | //-----------------------------------------------------------------------
|
---|
[80] | 380 | void TestCullingTerrainApplication::createFrameListener()
|
---|
[61] | 381 | {
|
---|
[133] | 382 | mTerrainFrameListener = new TerrainFrameListener(mWindow, mCamera, mSceneMgr,
|
---|
[160] | 383 | mGUIRenderer, mTerrainContentGenerator, mVizCamera, mCamNode, mSunLight, this);
|
---|
[120] | 384 |
|
---|
[115] | 385 | mRoot->addFrameListener(mTerrainFrameListener);
|
---|
[61] | 386 | }
|
---|
| 387 | //-----------------------------------------------------------------------
|
---|
[80] | 388 | void TestCullingTerrainApplication::chooseSceneManager()
|
---|
[61] | 389 | {
|
---|
| 390 | mSceneMgr = mRoot->getSceneManager(ST_EXTERIOR_CLOSE);
|
---|
| 391 | }
|
---|
[161] | 392 | //-----------------------------------------------------------------------
|
---|
| 393 | bool TestCullingTerrainApplication::Clamp2Terrain(SceneNode *node, int terrainOffs)
|
---|
| 394 | {
|
---|
| 395 | // clamp scene node to terrain
|
---|
| 396 | Vector3 pos = node->getPosition();
|
---|
| 397 | Vector3 queryResult;
|
---|
| 398 |
|
---|
| 399 | if (mRayQueryExecutor->executeRayQuery(&queryResult,
|
---|
| 400 | Vector3(pos.x, MAX_HEIGHT, pos.z), Vector3::NEGATIVE_UNIT_Y))
|
---|
| 401 | {
|
---|
| 402 | node->setPosition(pos.x, queryResult.y + terrainOffs, pos.z);
|
---|
| 403 | return true;
|
---|
| 404 | }
|
---|
| 405 |
|
---|
| 406 | return false;
|
---|
| 407 | }
|
---|
| 408 |
|
---|
| 409 |
|
---|
[99] | 410 | /**************************************************************/
|
---|
| 411 | /* VisualizationRenderTargetListener implementation */
|
---|
| 412 | /**************************************************************/
|
---|
[107] | 413 | //-----------------------------------------------------------------------
|
---|
[99] | 414 | VisualizationRenderTargetListener::VisualizationRenderTargetListener(SceneManager *sceneMgr)
|
---|
| 415 | :RenderTargetListener(), mSceneMgr(sceneMgr)
|
---|
| 416 | {
|
---|
| 417 | }
|
---|
[61] | 418 | //-----------------------------------------------------------------------
|
---|
[99] | 419 | void VisualizationRenderTargetListener::preViewportUpdate(const RenderTargetViewportEvent &evt)
|
---|
| 420 | {
|
---|
[133] | 421 | // visualization viewport
|
---|
| 422 | const bool showViz = evt.source->getZOrder() == VIZ_VIEWPORT_Z_ORDER;
|
---|
[100] | 423 | const bool nShowViz = !showViz;
|
---|
| 424 |
|
---|
[139] | 425 | mSavedShadowTechnique = mSceneMgr->getShadowTechnique();
|
---|
| 426 | mSavedAmbientLight = mSceneMgr->getAmbientLight();
|
---|
| 427 |
|
---|
| 428 | // -- ambient light must be full for visualization, shadows disabled
|
---|
[113] | 429 | if (showViz)
|
---|
| 430 | {
|
---|
| 431 | mSceneMgr->setAmbientLight(ColourValue(1, 1, 1));
|
---|
[139] | 432 | mSceneMgr->setShadowTechnique(SHADOWTYPE_NONE);
|
---|
[113] | 433 | }
|
---|
[139] | 434 |
|
---|
| 435 | mSceneMgr->setOption("PrepareVisualization", &showViz);
|
---|
[100] | 436 | mSceneMgr->setOption("SkyBoxEnabled", &nShowViz);
|
---|
| 437 | //mSceneMgr->setOption("SkyPlaneEnabled", &showViz);
|
---|
[99] | 438 |
|
---|
| 439 | RenderTargetListener::preViewportUpdate(evt);
|
---|
| 440 | }
|
---|
| 441 | //-----------------------------------------------------------------------
|
---|
| 442 | void VisualizationRenderTargetListener::postRenderTargetUpdate(const RenderTargetEvent &evt)
|
---|
| 443 | {
|
---|
[139] | 444 | // reset values
|
---|
| 445 | mSceneMgr->setShadowTechnique(mSavedShadowTechnique);
|
---|
| 446 | mSceneMgr->setAmbientLight(mSavedAmbientLight);
|
---|
| 447 |
|
---|
[99] | 448 | RenderTargetListener::postRenderTargetUpdate(evt);
|
---|
| 449 | }
|
---|
| 450 | //-----------------------------------------------------------------------
|
---|
[61] | 451 | INT WINAPI WinMain( HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT )
|
---|
| 452 | {
|
---|
| 453 | // Create application object
|
---|
| 454 | TestCullingTerrainApplication app;
|
---|
| 455 |
|
---|
| 456 | try
|
---|
| 457 | {
|
---|
| 458 | app.go();
|
---|
| 459 | }
|
---|
| 460 | catch( Ogre::Exception& e )
|
---|
| 461 | {
|
---|
[75] | 462 | MessageBox( NULL, e.getFullDescription().c_str(),
|
---|
| 463 | "An exception has occured!", MB_OK | MB_ICONERROR | MB_TASKMODAL);
|
---|
[61] | 464 | }
|
---|
| 465 |
|
---|
| 466 | return 0;
|
---|
[160] | 467 | }
|
---|