/*
* ORXONOX - the hottest 3D action shooter ever to exist
* > www.orxonox.net <
*
*
* License notice:
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Author:
* Damian 'Mozork' Frick
* Co-authors:
* ...
*
*/
/**
@file
@brief Definition of the QuestEffectBeacon class.
*/
#ifndef _QuestEffectBeacon_H__
#define _QuestEffectBeacon_H__
#include "OrxonoxPrereqs.h"
#include "orxonox/objects/worldentities/StaticEntity.h"
namespace orxonox
{
namespace QuestEffectBeaconStatus
{
//! The status of the beacon, can be either active or inactive.
enum Enum
{
inactive,
active
};
}
/**
@brief
A QuestEffectBeacon is a physical entity in the game which can (under some condition(s)) invoke a number QuestEffects on players meeting the condition(s).
The conditions under which the QuestEffects are invoked on the player are defined by Triggers.
A QuestEffectBeacon can be executed a defined number of times.
A QuestEffectBeacon can be inactive or active.
Creating a QuestEffectBeacon through XML goes as follows:
//Where 'n' is eighter a number >= 0, which means the QuestEffectBeacon can be executed n times. Or n = -1, which means the QuestEffectBeacon can be executed an infinite number of times.
//A list of QuestEffects, invoked when the QuestEffectBeacon is executed, see QuestEffect for the full XML representation.
...
//A PlayerTrigger triggering the execution of the QuestEffectBeacon.
@author
Damian 'Mozork' Frick
*/
class _OrxonoxExport QuestEffectBeacon : public StaticEntity
{
public:
QuestEffectBeacon(BaseObject* creator);
virtual ~QuestEffectBeacon();
virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a QuestEffectBeacon object through XML.
virtual void processEvent(Event& event); //!< Processes an event for this QuestEffectBeacon.
bool execute(bool b, PlayerTrigger* trigger); //!< Executes the QuestEffects of the QuestEffectBeacon.
/**
@brief Tests whether the QuestEffectBeacon is active.
@return Returns true if the QuestEffectBeacon is active, fals if not.
*/
inline bool isActive(void)
{ return this->status_ == QuestEffectBeaconStatus::active; }
bool setActive(bool activate); //!< Set the status of the QuestEffectBeacon.
protected:
bool decrementTimes(void); //!< Decrement the number of times the QuestEffectBeacon can still be executed.
/**
@brief Returns the number of times the QUestEffectBeacon can still be executed.
@return Returns the number of times the QUestEffectBeacon can still be executed.
*/
inline const int & getTimes(void) const
{ return this->times_; }
private:
static const int INFINITE_TIME = -1; //!< Constant to avoid using magic numbers.
std::list effects_; //!< The list of QuestEffects to be invoked on the executing player.
int times_; //!< Number of times the beacon can be exectued.
QuestEffectBeaconStatus::Enum status_; //!< The status of the QUestEffectBeacon, Can be eighter active or inactive.
bool setTimes(const int & n); //!< Set the number of times the QuestEffectBeacon can be executed.
bool addEffect(QuestEffect* effect); //!< Add a QuestEffect to the QuestEffectBeacon.
const QuestEffect* getEffect(unsigned int index) const; //!< Get the QuestEffect at a given index.
};
}
#endif /* _QuestEffectBeacon_H__ */