axmol/extensions/Particle3D/PU/CCPUObserver.cpp

343 lines
12 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (C) 2013 Henry van Merode. All rights reserved.
Copyright (c) 2015-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2021-12-25 10:04:45 +08:00
2022-08-08 18:02:17 +08:00
https://axys1.github.io/
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08: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:
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
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.
****************************************************************************/
#include "extensions/Particle3D/PU/CCPUObserver.h"
#include "extensions/Particle3D/PU/CCPUEventHandler.h"
#include "extensions/Particle3D/PU/CCPUEventHandlerManager.h"
#include "base/ccMacros.h"
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
// Constants
2021-12-25 10:04:45 +08:00
const bool PUObserver::DEFAULT_ENABLED = true;
2019-11-23 20:27:39 +08:00
const PUParticle3D::ParticleType PUObserver::DEFAULT_PARTICLE_TYPE = PUParticle3D::PT_VISUAL;
2021-12-25 10:04:45 +08:00
const float PUObserver::DEFAULT_INTERVAL = 0.05f;
const bool PUObserver::DEFAULT_UNTIL_EVENT = false;
2019-11-23 20:27:39 +08:00
//-----------------------------------------------------------------------
2021-12-25 10:04:45 +08:00
PUObserver::PUObserver()
: _particleSystem(nullptr)
, _enabled(DEFAULT_ENABLED)
, _originalEnabled(DEFAULT_ENABLED)
, _originalEnabledSet(false)
, _observe(true)
, _observeUntilEvent(DEFAULT_UNTIL_EVENT)
, _eventHandlersExecuted(false)
, _observerScale(Vec3::ONE)
, _particleTypeToObserve(DEFAULT_PARTICLE_TYPE)
, _particleTypeToObserveSet(false)
, _observerInterval(DEFAULT_INTERVAL)
, _observerIntervalRemainder(0.0)
, _observerIntervalSet(false)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
// mAliasType = AT_OBSERVER;
2019-11-23 20:27:39 +08:00
}
//-----------------------------------------------------------------------
PUObserver::~PUObserver()
{
destroyAllEventHandlers();
}
//-----------------------------------------------------------------------
2021-12-25 10:04:45 +08:00
void PUObserver::notifyStart()
2019-11-23 20:27:39 +08:00
{
_eventHandlersExecuted = false;
2021-12-25 10:04:45 +08:00
_observe = true;
2019-11-23 20:27:39 +08:00
setEnabled(_originalEnabled);
}
//-----------------------------------------------------------------------
bool PUObserver::isEnabled() const
{
return _enabled;
}
//-----------------------------------------------------------------------
bool PUObserver::_getOriginalEnabled() const
{
return _originalEnabled;
}
//-----------------------------------------------------------------------
void PUObserver::setEnabled(bool enabled)
{
_enabled = enabled;
if (!_originalEnabledSet)
{
// Only one time is permitted
2021-12-25 10:04:45 +08:00
_originalEnabled = enabled;
2019-11-23 20:27:39 +08:00
_originalEnabledSet = true;
}
}
//-----------------------------------------------------------------------
void PUObserver::_resetEnabled()
{
_originalEnabledSet = false;
}
//-----------------------------------------------------------------------
float PUObserver::getObserverInterval() const
{
return _observerInterval;
}
//-----------------------------------------------------------------------
void PUObserver::setObserverInterval(float observerInterval)
{
2021-12-25 10:04:45 +08:00
_observerInterval = observerInterval;
2019-11-23 20:27:39 +08:00
_observerIntervalSet = true;
}
//-----------------------------------------------------------------------
bool PUObserver::getObserveUntilEvent() const
{
return _observeUntilEvent;
}
//-----------------------------------------------------------------------
void PUObserver::setObserveUntilEvent(bool observeUntilEvent)
{
_observeUntilEvent = observeUntilEvent;
}
//-----------------------------------------------------------------------
void PUObserver::notifyRescaled(const Vec3& scale)
{
_observerScale = scale;
if (_eventHandlers.empty())
return;
ParticleEventHandlerConstIterator it;
ParticleEventHandlerConstIterator itEnd = _eventHandlers.end();
for (it = _eventHandlers.begin(); it != itEnd; ++it)
{
(*it)->notifyRescaled(scale);
}
}
//-----------------------------------------------------------------------
PUEventHandler* PUObserver::createEventHandler(std::string_view eventHandlerType)
2019-11-23 20:27:39 +08:00
{
PUEventHandler* eventHandler = PUEventHandlerManager::Instance()->createEventHandler(eventHandlerType);
addEventHandler(eventHandler);
return eventHandler;
}
//-----------------------------------------------------------------------
void PUObserver::addEventHandler(PUEventHandler* eventHandler)
{
eventHandler->retain();
_eventHandlers.emplace_back(eventHandler);
2019-11-23 20:27:39 +08:00
eventHandler->setParentObserver(this);
eventHandler->notifyRescaled(_observerScale);
}
//-----------------------------------------------------------------------
void PUObserver::removeEventHandler(PUEventHandler* eventHandler)
{
ParticleEventHandlerIterator it;
for (it = _eventHandlers.begin(); it != _eventHandlers.end(); ++it)
{
if (*it == eventHandler)
{
// Remove it
(*it)->release();
_eventHandlers.erase(it);
break;
}
}
eventHandler->setParentObserver(0);
}
//-----------------------------------------------------------------------
2021-12-25 10:04:45 +08:00
PUEventHandler* PUObserver::getEventHandler(size_t index) const
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AXASSERT(index < _eventHandlers.size(), "EventHandler index out of bounds!");
2019-11-23 20:27:39 +08:00
return _eventHandlers[index];
}
//-----------------------------------------------------------------------
PUEventHandler* PUObserver::getEventHandler(std::string_view eventHandlerName) const
2019-11-23 20:27:39 +08:00
{
if (eventHandlerName.empty())
return nullptr;
ParticleEventHandlerConstIterator it;
ParticleEventHandlerConstIterator itEnd = _eventHandlers.end();
for (it = _eventHandlers.begin(); it != itEnd; ++it)
{
if ((*it)->getName() == eventHandlerName)
{
return *it;
}
}
return nullptr;
}
//-----------------------------------------------------------------------
2021-12-25 10:04:45 +08:00
size_t PUObserver::getNumEventHandlers() const
2019-11-23 20:27:39 +08:00
{
return _eventHandlers.size();
}
//-----------------------------------------------------------------------
void PUObserver::destroyEventHandler(PUEventHandler* eventHandler)
{
2022-07-16 10:43:05 +08:00
AXASSERT(eventHandler, "EventHandler is null!");
2019-11-23 20:27:39 +08:00
ParticleEventHandlerIterator it;
for (it = _eventHandlers.begin(); it != _eventHandlers.end(); ++it)
{
if (*it == eventHandler)
{
// Destroy it
2021-12-25 10:04:45 +08:00
// ParticleSystemManager::getSingletonPtr()->destroyEventHandler(*it);
2019-11-23 20:27:39 +08:00
(*it)->release();
_eventHandlers.erase(it);
break;
}
}
}
//-----------------------------------------------------------------------
2021-12-25 10:04:45 +08:00
void PUObserver::destroyEventHandler(size_t index)
2019-11-23 20:27:39 +08:00
{
destroyEventHandler(getEventHandler(index));
}
//-----------------------------------------------------------------------
2021-12-25 10:04:45 +08:00
void PUObserver::destroyAllEventHandlers()
2019-11-23 20:27:39 +08:00
{
ParticleEventHandlerIterator it;
for (it = _eventHandlers.begin(); it != _eventHandlers.end(); ++it)
{
(*it)->release();
2021-12-25 10:04:45 +08:00
// ParticleSystemManager::getSingletonPtr()->destroyEventHandler(*it);
2019-11-23 20:27:39 +08:00
}
_eventHandlers.clear();
}
//-----------------------------------------------------------------------
void PUObserver::setParticleTypeToObserve(const PUParticle3D::ParticleType particleTypeToObserve)
{
2021-12-25 10:04:45 +08:00
_particleTypeToObserve = particleTypeToObserve;
2019-11-23 20:27:39 +08:00
_particleTypeToObserveSet = true;
}
//-----------------------------------------------------------------------
2021-12-25 10:04:45 +08:00
void PUObserver::handleObserve(PUParticle3D* particle, float timeElapsed)
2019-11-23 20:27:39 +08:00
{
if (_enabled && _observe)
{
if (_observeUntilEvent && _eventHandlersExecuted)
{
// Don't continue if mObserveUntilEvent is set and the event handlers are already called once.
return;
}
if (observe(particle, timeElapsed))
{
// Handle the event
2021-12-25 10:04:45 +08:00
handleEvent(particle, timeElapsed);
2019-11-23 20:27:39 +08:00
}
}
}
//-----------------------------------------------------------------------
2021-12-25 10:04:45 +08:00
void PUObserver::handleEvent(PUParticle3D* particle, float timeElapsed)
2019-11-23 20:27:39 +08:00
{
if (_eventHandlers.empty())
return;
ParticleEventHandlerConstIterator it;
ParticleEventHandlerConstIterator itEnd = _eventHandlers.end();
for (it = _eventHandlers.begin(); it != itEnd; ++it)
{
(*it)->handle(_particleSystem, particle, timeElapsed);
}
_eventHandlersExecuted = true;
}
//-----------------------------------------------------------------------
bool PUObserver::isParticleTypeToObserveSet() const
{
return _particleTypeToObserveSet;
}
2021-12-25 10:04:45 +08:00
void PUObserver::preUpdateObserver(float deltaTime)
2019-11-23 20:27:39 +08:00
{
if (!_enabled)
return;
if (_observerIntervalSet)
{
_observerIntervalRemainder -= deltaTime;
if (_observerIntervalRemainder < 0)
{
_observerIntervalRemainder += _observerInterval;
_observe = true;
}
else
{
_observe = false;
}
}
}
2021-12-25 10:04:45 +08:00
void PUObserver::updateObserver(PUParticle3D* particle, float deltaTime, bool firstParticle)
2019-11-23 20:27:39 +08:00
{
if (!_enabled)
return;
// Call the _firstParticle() function if the first particle in the update loop is encountered.
if (firstParticle)
{
firstParticleUpdate(particle, deltaTime);
}
if (_particleTypeToObserveSet && particle->particleType != _particleTypeToObserve)
return;
// Observe
handleObserve(particle, deltaTime);
}
2021-12-25 10:04:45 +08:00
void PUObserver::postUpdateObserver(float /*deltaTime*/) {}
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
void PUObserver::firstParticleUpdate(PUParticle3D* /*particle*/, float /*deltaTime*/) {}
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
void PUObserver::copyAttributesTo(PUObserver* observer)
2019-11-23 20:27:39 +08:00
{
// Copy attributes
observer->setName(_name);
observer->setObserverType(_observerType);
2021-12-25 10:04:45 +08:00
observer->_particleTypeToObserve = _particleTypeToObserve;
observer->_particleTypeToObserveSet = _particleTypeToObserveSet;
observer->_particleSystem = _particleSystem;
observer->_observerScale = _observerScale;
observer->_observerInterval = _observerInterval;
2019-11-23 20:27:39 +08:00
observer->_observerIntervalRemainder = _observerIntervalRemainder;
2021-12-25 10:04:45 +08:00
observer->_observerIntervalSet = _observerIntervalSet;
observer->_observeUntilEvent = _observeUntilEvent;
observer->_eventHandlersExecuted = _eventHandlersExecuted;
observer->_enabled = _enabled;
observer->_originalEnabled = _originalEnabled;
observer->_originalEnabledSet = _originalEnabledSet;
2019-11-23 20:27:39 +08:00
// Copy event handlers
2021-12-25 10:04:45 +08:00
size_t i = 0;
2019-11-23 20:27:39 +08:00
PUEventHandler* eventHandler = 0;
2021-12-25 10:04:45 +08:00
for (i = 0; i < getNumEventHandlers(); ++i)
2019-11-23 20:27:39 +08:00
{
eventHandler = getEventHandler(i);
2021-12-25 10:04:45 +08:00
PUEventHandler* clonedEventHandler =
PUEventHandlerManager::Instance()->createEventHandler(eventHandler->getEventHandlerType());
2019-11-23 20:27:39 +08:00
eventHandler->copyAttributesTo(clonedEventHandler);
observer->addEventHandler(clonedEventHandler);
}
}
NS_AX_END