/usr/include/OGRE/Sample.h is in libogre-dev 1.7.4-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2011 Torus Knot Software Ltd
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
#ifndef __Sample_H__
#define __Sample_H__
#include "Ogre.h"
#include <iostream>
#include "OIS.h"
#ifdef USE_RTSHADER_SYSTEM
#include "OgreRTShaderSystem.h"
// Remove the comment below in order to make the RTSS use valid path for writing down the generated shaders.
// If cache path is not set - all shaders are generated to system memory.
//#define _RTSS_WRITE_SHADERS_TO_DISK
#endif
#ifdef USE_RTSHADER_SYSTEM
/** This class demonstrates basic usage of the RTShader system.
It sub class the material manager listener class and when a target scheme callback
is invoked with the shader generator scheme it tries to create an equivalent shader
based technique based on the default technique of the given material.
*/
class ShaderGeneratorTechniqueResolverListener : public Ogre::MaterialManager::Listener
{
public:
ShaderGeneratorTechniqueResolverListener(Ogre::RTShader::ShaderGenerator* pShaderGenerator)
{
mShaderGenerator = pShaderGenerator;
}
/** This is the hook point where shader based technique will be created.
It will be called whenever the material manager won't find appropriate technique
that satisfy the target scheme name. If the scheme name is out target RT Shader System
scheme name we will try to create shader generated technique for it.
*/
virtual Ogre::Technique* handleSchemeNotFound(unsigned short schemeIndex,
const Ogre::String& schemeName, Ogre::Material* originalMaterial, unsigned short lodIndex,
const Ogre::Renderable* rend)
{
Ogre::Technique* generatedTech = NULL;
// Case this is the default shader generator scheme.
if (schemeName == Ogre::RTShader::ShaderGenerator::DEFAULT_SCHEME_NAME)
{
bool techniqueCreated;
// Create shader generated technique for this material.
techniqueCreated = mShaderGenerator->createShaderBasedTechnique(
originalMaterial->getName(),
Ogre::MaterialManager::DEFAULT_SCHEME_NAME,
schemeName);
// Case technique registration succeeded.
if (techniqueCreated)
{
// Force creating the shaders for the generated technique.
mShaderGenerator->validateMaterial(schemeName, originalMaterial->getName());
// Grab the generated technique.
Ogre::Material::TechniqueIterator itTech = originalMaterial->getTechniqueIterator();
while (itTech.hasMoreElements())
{
Ogre::Technique* curTech = itTech.getNext();
if (curTech->getSchemeName() == schemeName)
{
generatedTech = curTech;
break;
}
}
}
}
return generatedTech;
}
protected:
Ogre::RTShader::ShaderGenerator* mShaderGenerator; // The shader generator instance.
};
#endif
namespace OgreBites
{
class FileSystemLayer;
/*=============================================================================
| Base class responsible for everything specific to one sample.
| Designed to be subclassed for each sample.
=============================================================================*/
class Sample : public Ogre::GeneralAllocatedObject
{
public:
/*=============================================================================
| Utility comparison structure for sorting samples using SampleSet.
=============================================================================*/
struct Comparer
{
bool operator() (Sample* a, Sample* b)
{
Ogre::NameValuePairList::iterator aTitle = a->getInfo().find("Title");
Ogre::NameValuePairList::iterator bTitle = b->getInfo().find("Title");
if (aTitle != a->getInfo().end() && bTitle != b->getInfo().end())
return aTitle->second.compare(bTitle->second) < 0;
else return false;
}
};
Sample()
{
mRoot = Ogre::Root::getSingletonPtr();
mWindow = 0;
mSceneMgr = 0;
mDone = true;
mResourcesLoaded = false;
mContentSetup = false;
#if OGRE_PLATFORM == OGRE_PLATFORM_IPHONE
mMouse = 0;
mAccelerometer = 0;
#else
mKeyboard = 0;
mMouse = 0;
#endif
mFSLayer = 0;
#ifdef USE_RTSHADER_SYSTEM
mShaderGenerator = NULL;
mMaterialMgrListener = NULL;
#endif
}
virtual ~Sample() {}
/*-----------------------------------------------------------------------------
| Retrieves custom sample info.
-----------------------------------------------------------------------------*/
Ogre::NameValuePairList& getInfo()
{
return mInfo;
}
/*-----------------------------------------------------------------------------
| Tests to see if target machine meets any special requirements of
| this sample. Signal a failure by throwing an exception.
-----------------------------------------------------------------------------*/
virtual void testCapabilities(const Ogre::RenderSystemCapabilities* caps) {}
/*-----------------------------------------------------------------------------
| If this sample requires a specific render system to run, this method
| will be used to return its name.
-----------------------------------------------------------------------------*/
virtual Ogre::String getRequiredRenderSystem()
{
return "";
}
/*-----------------------------------------------------------------------------
| If this sample requires specific plugins to run, this method will be
| used to return their names.
-----------------------------------------------------------------------------*/
virtual Ogre::StringVector getRequiredPlugins()
{
return Ogre::StringVector();
}
Ogre::SceneManager* getSceneManager()
{
return mSceneMgr;
}
bool isDone()
{
return mDone;
}
/*-----------------------------------------------------------------------------
| Sets up a sample. Used by the SampleContext class. Do not call directly.
-----------------------------------------------------------------------------*/
#if OGRE_PLATFORM == OGRE_PLATFORM_IPHONE
virtual void _setup(Ogre::RenderWindow* window, OIS::MultiTouch* mouse, FileSystemLayer* fsLayer)
#else
virtual void _setup(Ogre::RenderWindow* window, OIS::Keyboard* keyboard, OIS::Mouse* mouse, FileSystemLayer* fsLayer)
#endif
{
// assign mRoot here in case Root was initialised after the Sample's constructor ran.
mRoot = Ogre::Root::getSingletonPtr();
mWindow = window;
#if OGRE_PLATFORM != OGRE_PLATFORM_IPHONE
mKeyboard = keyboard;
#endif
mMouse = mouse;
mFSLayer = fsLayer;
locateResources();
createSceneManager();
setupView();
#ifdef USE_RTSHADER_SYSTEM
// Initialize shader generator.
// Must be before resource loading in order to allow parsing extended material attributes.
bool success = initializeRTShaderSystem(mSceneMgr);
if (!success)
{
OGRE_EXCEPT(Ogre::Exception::ERR_FILE_NOT_FOUND,
"Shader Generator Initialization failed - Core shader libs path not found",
"Sample::_setup");
}
#endif
loadResources();
mResourcesLoaded = true;
setupContent();
mContentSetup = true;
mDone = false;
}
/*-----------------------------------------------------------------------------
| Shuts down a sample. Used by the SampleContext class. Do not call directly.
-----------------------------------------------------------------------------*/
virtual void _shutdown()
{
#ifdef USE_RTSHADER_SYSTEM
// Finalize the RT Shader System.
finalizeRTShaderSystem();
#endif
if (mContentSetup) cleanupContent();
if (mSceneMgr) mSceneMgr->clearScene();
mContentSetup = false;
if (mResourcesLoaded) unloadResources();
mResourcesLoaded = false;
if (mSceneMgr) mRoot->destroySceneManager(mSceneMgr);
mSceneMgr = 0;
mDone = true;
}
/*-----------------------------------------------------------------------------
| Actions to perform when the context stops sending frame listener events
| and input device events to this sample.
-----------------------------------------------------------------------------*/
virtual void paused() {}
/*-----------------------------------------------------------------------------
| Actions to perform when the context continues sending frame listener
| events and input device events to this sample.
-----------------------------------------------------------------------------*/
virtual void unpaused() {}
/*-----------------------------------------------------------------------------
| Saves the sample state. Optional. Used during reconfiguration.
-----------------------------------------------------------------------------*/
virtual void saveState(Ogre::NameValuePairList& state) {}
/*-----------------------------------------------------------------------------
| Restores the sample state. Optional. Used during reconfiguration.
-----------------------------------------------------------------------------*/
virtual void restoreState(Ogre::NameValuePairList& state) {}
// callback interface copied from various listeners to be used by SampleContext
virtual bool frameStarted(const Ogre::FrameEvent& evt) { return true; }
virtual bool frameRenderingQueued(const Ogre::FrameEvent& evt) { return true; }
virtual bool frameEnded(const Ogre::FrameEvent& evt) { return true; }
virtual void windowMoved(Ogre::RenderWindow* rw) {}
virtual void windowResized(Ogre::RenderWindow* rw) {}
virtual bool windowClosing(Ogre::RenderWindow* rw) { return true; }
virtual void windowClosed(Ogre::RenderWindow* rw) {}
virtual void windowFocusChange(Ogre::RenderWindow* rw) {}
virtual bool keyPressed(const OIS::KeyEvent& evt) { return true; }
virtual bool keyReleased(const OIS::KeyEvent& evt) { return true; }
#if OGRE_PLATFORM == OGRE_PLATFORM_IPHONE
virtual bool touchMoved(const OIS::MultiTouchEvent& evt) { return true; }
virtual bool touchPressed(const OIS::MultiTouchEvent& evt) { return true; }
virtual bool touchReleased(const OIS::MultiTouchEvent& evt) { return true; }
#else
virtual bool mouseMoved(const OIS::MouseEvent& evt) { return true; }
virtual bool mousePressed(const OIS::MouseEvent& evt, OIS::MouseButtonID id) { return true; }
virtual bool mouseReleased(const OIS::MouseEvent& evt, OIS::MouseButtonID id) { return true; }
#endif
protected:
/*-----------------------------------------------------------------------------
| Finds sample-specific resources. No such effort is made for most samples,
| but this is useful for special samples with large, exclusive resources.
-----------------------------------------------------------------------------*/
virtual void locateResources() {}
/*-----------------------------------------------------------------------------
| Loads sample-specific resources. No such effort is made for most samples,
| but this is useful for special samples with large, exclusive resources.
-----------------------------------------------------------------------------*/
virtual void loadResources() {}
/*-----------------------------------------------------------------------------
| Creates a scene manager for the sample. A generic one is the default,
| but many samples require a special kind of scene manager.
-----------------------------------------------------------------------------*/
virtual void createSceneManager()
{
mSceneMgr = Ogre::Root::getSingleton().createSceneManager(Ogre::ST_GENERIC);
}
/*-----------------------------------------------------------------------------
| Sets up viewport layout and camera.
-----------------------------------------------------------------------------*/
virtual void setupView() {}
/*-----------------------------------------------------------------------------
| Sets up the scene (and anything else you want for the sample).
-----------------------------------------------------------------------------*/
virtual void setupContent() {}
/*-----------------------------------------------------------------------------
| Cleans up the scene (and anything else you used).
-----------------------------------------------------------------------------*/
virtual void cleanupContent() {}
/*-----------------------------------------------------------------------------
| Unloads sample-specific resources. My method here is simple and good
| enough for most small samples, but your needs may vary.
-----------------------------------------------------------------------------*/
virtual void unloadResources()
{
Ogre::ResourceGroupManager::ResourceManagerIterator resMgrs =
Ogre::ResourceGroupManager::getSingleton().getResourceManagerIterator();
while (resMgrs.hasMoreElements())
{
resMgrs.getNext()->unloadUnreferencedResources();
}
}
#ifdef USE_RTSHADER_SYSTEM
/*-----------------------------------------------------------------------------
| Initialize the RT Shader system.
-----------------------------------------------------------------------------*/
virtual bool initializeRTShaderSystem(Ogre::SceneManager* sceneMgr)
{
if (Ogre::RTShader::ShaderGenerator::initialize())
{
mShaderGenerator = Ogre::RTShader::ShaderGenerator::getSingletonPtr();
mShaderGenerator->addSceneManager(sceneMgr);
// Setup core libraries and shader cache path.
Ogre::StringVector groupVector = Ogre::ResourceGroupManager::getSingleton().getResourceGroups();
Ogre::StringVector::iterator itGroup = groupVector.begin();
Ogre::StringVector::iterator itGroupEnd = groupVector.end();
Ogre::String shaderCoreLibsPath;
Ogre::String shaderCachePath;
for (; itGroup != itGroupEnd; ++itGroup)
{
Ogre::ResourceGroupManager::LocationList resLocationsList = Ogre::ResourceGroupManager::getSingleton().getResourceLocationList(*itGroup);
Ogre::ResourceGroupManager::LocationList::iterator it = resLocationsList.begin();
Ogre::ResourceGroupManager::LocationList::iterator itEnd = resLocationsList.end();
bool coreLibsFound = false;
// Try to find the location of the core shader lib functions and use it
// as shader cache path as well - this will reduce the number of generated files
// when running from different directories.
for (; it != itEnd; ++it)
{
if ((*it)->archive->getName().find("RTShaderLib") != Ogre::String::npos)
{
shaderCoreLibsPath = (*it)->archive->getName() + "/";
shaderCachePath = shaderCoreLibsPath;
coreLibsFound = true;
break;
}
}
// Core libs path found in the current group.
if (coreLibsFound)
break;
}
// Core shader libs not found -> shader generating will fail.
if (shaderCoreLibsPath.empty())
return false;
#ifdef _RTSS_WRITE_SHADERS_TO_DISK
// Set shader cache path.
mShaderGenerator->setShaderCachePath(shaderCachePath);
#endif
// Create and register the material manager listener.
mMaterialMgrListener = new ShaderGeneratorTechniqueResolverListener(mShaderGenerator);
Ogre::MaterialManager::getSingleton().addListener(mMaterialMgrListener);
}
return true;
}
/*-----------------------------------------------------------------------------
| Finalize the RT Shader system.
-----------------------------------------------------------------------------*/
virtual void finalizeRTShaderSystem()
{
// Restore default scheme.
Ogre::MaterialManager::getSingleton().setActiveScheme(Ogre::MaterialManager::DEFAULT_SCHEME_NAME);
// Unregister the material manager listener.
if (mMaterialMgrListener != NULL)
{
Ogre::MaterialManager::getSingleton().removeListener(mMaterialMgrListener);
delete mMaterialMgrListener;
mMaterialMgrListener = NULL;
}
// Finalize RTShader system.
if (mShaderGenerator != NULL)
{
Ogre::RTShader::ShaderGenerator::finalize();
mShaderGenerator = NULL;
}
}
#endif
Ogre::Root* mRoot; // OGRE root object
Ogre::RenderWindow* mWindow; // context render window
#if OGRE_PLATFORM == OGRE_PLATFORM_IPHONE
OIS::MultiTouch* mMouse; // context multitouch device
OIS::JoyStick* mAccelerometer; // context accelerometer device
#else
OIS::Keyboard* mKeyboard; // context keyboard device
OIS::Mouse* mMouse; // context mouse device
#endif
FileSystemLayer* mFSLayer; // file system abstraction layer
Ogre::SceneManager* mSceneMgr; // scene manager for this sample
Ogre::NameValuePairList mInfo; // custom sample info
bool mDone; // flag to mark the end of the sample
bool mResourcesLoaded; // whether or not resources have been loaded
bool mContentSetup; // whether or not scene was created
#ifdef USE_RTSHADER_SYSTEM
Ogre::RTShader::ShaderGenerator* mShaderGenerator; // The Shader generator instance.
ShaderGeneratorTechniqueResolverListener* mMaterialMgrListener; // Shader generator material manager listener.
#endif
};
typedef std::set<Sample*, Sample::Comparer> SampleSet;
}
#endif
|