/usr/include/OGRE/OgreParticleSystemManager.h is in libogre-1.8-dev 1.8.0+dfsg1-7+b1.
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 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2012 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 __ParticleSystemManager_H__
#define __ParticleSystemManager_H__
#include "OgrePrerequisites.h"
#include "OgreParticleSystem.h"
#include "OgreFrameListener.h"
#include "OgreSingleton.h"
#include "OgreIteratorWrappers.h"
#include "OgreScriptLoader.h"
#include "OgreResourceGroupManager.h"
namespace Ogre {
// Forward decl
class ParticleSystemFactory;
/** \addtogroup Core
* @{
*/
/** \addtogroup Effects
* @{
*/
/** Manages particle systems, particle system scripts (templates) and the
available emitter & affector factories.
@remarks
This singleton class is responsible for creating and managing particle
systems. All particle systems must be created and destroyed using this
object, although the user interface to creating them is via
SceneManager. Remember that like all other MovableObject
subclasses, ParticleSystems do not get rendered until they are
attached to a SceneNode object.
@par
This class also manages factories for ParticleEmitter and
ParticleAffector classes. To enable easy extensions to the types of
emitters (particle sources) and affectors (particle modifiers), the
ParticleSystemManager lets plugins or applications register factory
classes which submit new subclasses to ParticleEmitter and
ParticleAffector. Ogre comes with a number of them already provided,
such as cone, sphere and box-shaped emitters, and simple affectors such
as constant directional force and colour faders. However using this
registration process, a plugin can create any behaviour required.
@par
This class also manages the loading and parsing of particle system
scripts, which are text files describing named particle system
templates. Instances of particle systems using these templates can
then be created easily through the createParticleSystem method.
*/
class _OgreExport ParticleSystemManager:
public Singleton<ParticleSystemManager>, public ScriptLoader, public FXAlloc
{
friend class ParticleSystemFactory;
public:
typedef map<String, ParticleSystem*>::type ParticleTemplateMap;
typedef map<String, ParticleAffectorFactory*>::type ParticleAffectorFactoryMap;
typedef map<String, ParticleEmitterFactory*>::type ParticleEmitterFactoryMap;
typedef map<String, ParticleSystemRendererFactory*>::type ParticleSystemRendererFactoryMap;
protected:
OGRE_AUTO_MUTEX
/// Templates based on scripts
ParticleTemplateMap mSystemTemplates;
/// Factories for named emitter types (can be extended using plugins)
ParticleEmitterFactoryMap mEmitterFactories;
/// Factories for named affector types (can be extended using plugins)
ParticleAffectorFactoryMap mAffectorFactories;
/// Map of renderer types to factories
ParticleSystemRendererFactoryMap mRendererFactories;
StringVector mScriptPatterns;
// Factory instance
ParticleSystemFactory* mFactory;
/** Internal script parsing method. */
void parseNewEmitter(const String& type, DataStreamPtr& chunk, ParticleSystem* sys);
/** Internal script parsing method. */
void parseNewAffector(const String& type, DataStreamPtr& chunk, ParticleSystem* sys);
/** Internal script parsing method. */
void parseAttrib(const String& line, ParticleSystem* sys);
/** Internal script parsing method. */
void parseEmitterAttrib(const String& line, ParticleEmitter* sys);
/** Internal script parsing method. */
void parseAffectorAttrib(const String& line, ParticleAffector* sys);
/** Internal script parsing method. */
void skipToNextCloseBrace(DataStreamPtr& chunk);
/** Internal script parsing method. */
void skipToNextOpenBrace(DataStreamPtr& chunk);
/// Internal implementation of createSystem
ParticleSystem* createSystemImpl(const String& name, size_t quota,
const String& resourceGroup);
/// Internal implementation of createSystem
ParticleSystem* createSystemImpl(const String& name, const String& templateName);
/// Internal implementation of destroySystem
void destroySystemImpl(ParticleSystem* sys);
public:
ParticleSystemManager();
virtual ~ParticleSystemManager();
/** Adds a new 'factory' object for emitters to the list of available emitter types.
@remarks
This method allows plugins etc to add new particle emitter types to Ogre. Particle emitters
are sources of particles, and generate new particles with their start positions, colours and
momentums appropriately. Plugins would create new subclasses of ParticleEmitter which
emit particles a certain way, and register a subclass of ParticleEmitterFactory to create them (since multiple
emitters can be created for different particle systems).
@par
All particle emitter factories have an assigned name which is used to identify the emitter
type. This must be unique.
@par
Note that the object passed to this function will not be destroyed by the ParticleSystemManager,
since it may have been allocated on a different heap in the case of plugins. The caller must
destroy the object later on, probably on plugin shutdown.
@param
factory Pointer to a ParticleEmitterFactory subclass created by the plugin or application code.
*/
void addEmitterFactory(ParticleEmitterFactory* factory);
/** Adds a new 'factory' object for affectors to the list of available affector types.
@remarks
This method allows plugins etc to add new particle affector types to Ogre. Particle
affectors modify the particles in a system a certain way such as affecting their direction
or changing their colour, lifespan etc. Plugins would
create new subclasses of ParticleAffector which affect particles a certain way, and register
a subclass of ParticleAffectorFactory to create them.
@par
All particle affector factories have an assigned name which is used to identify the affector
type. This must be unique.
@par
Note that the object passed to this function will not be destroyed by the ParticleSystemManager,
since it may have been allocated on a different heap in the case of plugins. The caller must
destroy the object later on, probably on plugin shutdown.
@param
factory Pointer to a ParticleAffectorFactory subclass created by the plugin or application code.
*/
void addAffectorFactory(ParticleAffectorFactory* factory);
/** Registers a factory class for creating ParticleSystemRenderer instances.
@par
Note that the object passed to this function will not be destroyed by the ParticleSystemManager,
since it may have been allocated on a different heap in the case of plugins. The caller must
destroy the object later on, probably on plugin shutdown.
@param
factory Pointer to a ParticleSystemRendererFactory subclass created by the plugin or application code.
*/
void addRendererFactory(ParticleSystemRendererFactory* factory);
/** Adds a new particle system template to the list of available templates.
@remarks
Instances of particle systems in a scene are not normally unique - often you want to place the
same effect in many places. This method allows you to register a ParticleSystem as a named template,
which can subsequently be used to create instances using the createSystem method.
@par
Note that particle system templates can either be created programmatically by an application
and registered using this method, or they can be defined in a script file (*.particle) which is
loaded by the engine at startup, very much like Material scripts.
@param
name The name of the template. Must be unique across all templates.
@param
sysTemplate A pointer to a particle system to be used as a template. The manager
will take over ownership of this pointer.
*/
void addTemplate(const String& name, ParticleSystem* sysTemplate);
/** Removes a specified template from the ParticleSystemManager.
@remarks
This method removes a given template from the particle system manager, optionally deleting
the template if the deleteTemplate method is called. Throws an exception if the template
could not be found.
@param
name The name of the template to remove.
@param
deleteTemplate Whether or not to delete the template before removing it.
*/
void removeTemplate(const String& name, bool deleteTemplate = true);
/** Removes a specified template from the ParticleSystemManager.
@remarks
This method removes all templates from the ParticleSystemManager.
@param
deleteTemplate Whether or not to delete the templates before removing them.
*/
void removeAllTemplates(bool deleteTemplate = true);
/** Removes all templates that belong to a secific Resource Group from the ParticleSystemManager.
@remarks
This method removes all templates that belong in a particular resource group from the ParticleSystemManager.
@param
resourceGroup to delete templates for
*/
void removeTemplatesByResourceGroup(const String& resourceGroup);
/** Create a new particle system template.
@remarks
This method is similar to the addTemplate method, except this just creates a new template
and returns a pointer to it to be populated. Use this when you don't already have a system
to add as a template and just want to create a new template which you will build up in-place.
@param
name The name of the template. Must be unique across all templates.
@param
resourceGroup The name of the resource group which will be used to
load any dependent resources.
*/
ParticleSystem* createTemplate(const String& name, const String& resourceGroup);
/** Retrieves a particle system template for possible modification.
@remarks
Modifying a template does not affect the settings on any ParticleSystems already created
from this template.
*/
ParticleSystem* getTemplate(const String& name);
/** Internal method for creating a new emitter from a factory.
@remarks
Used internally by the engine to create new ParticleEmitter instances from named
factories. Applications should use the ParticleSystem::addEmitter method instead,
which calls this method to create an instance.
@param
emitterType String name of the emitter type to be created. A factory of this type must have been registered.
@param
psys The particle system this is being created for
*/
ParticleEmitter* _createEmitter(const String& emitterType, ParticleSystem* psys);
/** Internal method for destroying an emitter.
@remarks
Because emitters are created by factories which may allocate memory from separate heaps,
the memory allocated must be freed from the same place. This method is used to ask the factory
to destroy the instance passed in as a pointer.
@param
emitter Pointer to emitter to be destroyed. On return this pointer will point to invalid (freed) memory.
*/
void _destroyEmitter(ParticleEmitter* emitter);
/** Internal method for creating a new affector from a factory.
@remarks
Used internally by the engine to create new ParticleAffector instances from named
factories. Applications should use the ParticleSystem::addAffector method instead,
which calls this method to create an instance.
@param
effectorType String name of the affector type to be created. A factory of this type must have been registered.
@param
psys The particle system it is being created for
*/
ParticleAffector* _createAffector(const String& affectorType, ParticleSystem* psys);
/** Internal method for destroying an affector.
@remarks
Because affectors are created by factories which may allocate memory from separate heaps,
the memory allocated must be freed from the same place. This method is used to ask the factory
to destroy the instance passed in as a pointer.
@param
affector Pointer to affector to be destroyed. On return this pointer will point to invalid (freed) memory.
*/
void _destroyAffector(ParticleAffector* affector);
/** Internal method for creating a new renderer from a factory.
@remarks
Used internally by the engine to create new ParticleSystemRenderer instances from named
factories. Applications should use the ParticleSystem::setRenderer method instead,
which calls this method to create an instance.
@param
rendererType String name of the renderer type to be created. A factory of this type must have been registered.
*/
ParticleSystemRenderer* _createRenderer(const String& rendererType);
/** Internal method for destroying a renderer.
@remarks
Because renderer are created by factories which may allocate memory from separate heaps,
the memory allocated must be freed from the same place. This method is used to ask the factory
to destroy the instance passed in as a pointer.
@param
renderer Pointer to renderer to be destroyed. On return this pointer will point to invalid (freed) memory.
*/
void _destroyRenderer(ParticleSystemRenderer* renderer);
/** Init method to be called by OGRE system.
@remarks
Due to dependencies between various objects certain initialisation tasks cannot be done
on construction. OGRE will call this method when the rendering subsystem is initialised.
*/
void _initialise(void);
/// @copydoc ScriptLoader::getScriptPatterns
const StringVector& getScriptPatterns(void) const;
/// @copydoc ScriptLoader::parseScript
void parseScript(DataStreamPtr& stream, const String& groupName);
/// @copydoc ScriptLoader::getLoadingOrder
Real getLoadingOrder(void) const;
typedef MapIterator<ParticleAffectorFactoryMap> ParticleAffectorFactoryIterator;
typedef MapIterator<ParticleEmitterFactoryMap> ParticleEmitterFactoryIterator;
typedef MapIterator<ParticleSystemRendererFactoryMap> ParticleRendererFactoryIterator;
/** Return an iterator over the affector factories currently registered */
ParticleAffectorFactoryIterator getAffectorFactoryIterator(void);
/** Return an iterator over the emitter factories currently registered */
ParticleEmitterFactoryIterator getEmitterFactoryIterator(void);
/** Return an iterator over the renderer factories currently registered */
ParticleRendererFactoryIterator getRendererFactoryIterator(void);
typedef MapIterator<ParticleTemplateMap> ParticleSystemTemplateIterator;
/** Gets an iterator over the list of particle system templates. */
ParticleSystemTemplateIterator getTemplateIterator(void)
{
return ParticleSystemTemplateIterator(
mSystemTemplates.begin(), mSystemTemplates.end());
}
/** Get an instance of ParticleSystemFactory (internal use). */
ParticleSystemFactory* _getFactory(void) { return mFactory; }
/** Override standard Singleton retrieval.
@remarks
Why do we do this? Well, it's because the Singleton
implementation is in a .h file, which means it gets compiled
into anybody who includes it. This is needed for the
Singleton template to work, but we actually only want it
compiled into the implementation of the class based on the
Singleton, not all of them. If we don't change this, we get
link errors when trying to use the Singleton-based class from
an outside dll.
@par
This method just delegates to the template version anyway,
but the implementation stays in this single compilation unit,
preventing link errors.
*/
static ParticleSystemManager& getSingleton(void);
/** Override standard Singleton retrieval.
@remarks
Why do we do this? Well, it's because the Singleton
implementation is in a .h file, which means it gets compiled
into anybody who includes it. This is needed for the
Singleton template to work, but we actually only want it
compiled into the implementation of the class based on the
Singleton, not all of them. If we don't change this, we get
link errors when trying to use the Singleton-based class from
an outside dll.
@par
This method just delegates to the template version anyway,
but the implementation stays in this single compilation unit,
preventing link errors.
*/
static ParticleSystemManager* getSingletonPtr(void);
};
/** Factory object for creating ParticleSystem instances */
class _OgreExport ParticleSystemFactory : public MovableObjectFactory
{
protected:
MovableObject* createInstanceImpl(const String& name, const NameValuePairList* params);
public:
ParticleSystemFactory() {}
~ParticleSystemFactory() {}
static String FACTORY_TYPE_NAME;
const String& getType(void) const;
void destroyInstance( MovableObject* obj);
};
/** @} */
/** @} */
}
#endif
|