2011-12-15 19:20:09 +01:00
|
|
|
/*
|
2013-01-08 19:21:54 +01:00
|
|
|
* Copyright (c) 2010-2013 OTClient <https://github.com/edubart/otclient>
|
2011-12-15 19:20:09 +01:00
|
|
|
*
|
|
|
|
* 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 PARTICLESYSTEM_H
|
|
|
|
#define PARTICLESYSTEM_H
|
|
|
|
|
2011-12-15 21:07:57 +01:00
|
|
|
#include "declarations.h"
|
2012-07-29 14:04:47 +02:00
|
|
|
#include "particle.h"
|
2011-12-15 19:20:09 +01:00
|
|
|
#include "particleemitter.h"
|
2011-12-16 02:59:29 +01:00
|
|
|
#include "particleaffector.h"
|
2011-12-15 19:20:09 +01:00
|
|
|
|
2012-07-29 05:34:40 +02:00
|
|
|
class ParticleSystem : public stdext::shared_object {
|
2011-12-15 19:20:09 +01:00
|
|
|
public:
|
2011-12-16 00:48:15 +01:00
|
|
|
ParticleSystem();
|
|
|
|
|
2011-12-15 19:20:09 +01:00
|
|
|
bool load(const OTMLNodePtr& node);
|
|
|
|
|
2011-12-15 21:54:42 +01:00
|
|
|
void addParticle(const ParticlePtr& particle);
|
|
|
|
|
2011-12-15 19:20:09 +01:00
|
|
|
void render();
|
|
|
|
void update();
|
|
|
|
|
2011-12-16 00:48:15 +01:00
|
|
|
bool hasFinished() { return m_finished; }
|
|
|
|
|
2011-12-15 19:20:09 +01:00
|
|
|
private:
|
2011-12-16 00:48:15 +01:00
|
|
|
bool m_finished;
|
2012-03-20 16:17:10 +01:00
|
|
|
float m_lastUpdateTime;
|
2011-12-15 21:54:42 +01:00
|
|
|
std::list<ParticlePtr> m_particles;
|
2011-12-15 19:20:09 +01:00
|
|
|
std::list<ParticleEmitterPtr> m_emitters;
|
2011-12-16 02:59:29 +01:00
|
|
|
std::list<ParticleAffectorPtr> m_affectors;
|
2011-12-15 19:20:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|