You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
864 B
C++
36 lines
864 B
C++
#ifndef OPENMW_MECHANICS_SUMMONING_H
|
|
#define OPENMW_MECHANICS_SUMMONING_H
|
|
|
|
#include <set>
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
#include "magiceffects.hpp"
|
|
|
|
namespace MWMechanics
|
|
{
|
|
|
|
class CreatureStats;
|
|
|
|
struct UpdateSummonedCreatures : public EffectSourceVisitor
|
|
{
|
|
UpdateSummonedCreatures(const MWWorld::Ptr& actor);
|
|
virtual ~UpdateSummonedCreatures();
|
|
|
|
virtual void visit (MWMechanics::EffectKey key,
|
|
const std::string& sourceName, const std::string& sourceId, int casterActorId,
|
|
float magnitude, float remainingTime = -1, float totalTime = -1);
|
|
|
|
/// To call after all effect sources have been visited
|
|
void process(bool cleanup);
|
|
|
|
private:
|
|
MWWorld::Ptr mActor;
|
|
|
|
std::set<std::pair<int, std::string> > mActiveEffects;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|