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.
163 lines
4.5 KiB
C++
163 lines
4.5 KiB
C++
13 years ago
|
|
||
|
#include "activespells.hpp"
|
||
|
|
||
|
#include <cstdlib>
|
||
|
|
||
|
#include "../mwbase/environment.hpp"
|
||
|
|
||
|
#include "../mwworld/world.hpp"
|
||
|
|
||
|
namespace MWMechanics
|
||
|
{
|
||
|
void ActiveSpells::update() const
|
||
|
{
|
||
|
bool rebuild = false;
|
||
|
|
||
|
MWWorld::TimeStamp now = MWBase::Environment::get().getWorld()->getTimeStamp();
|
||
|
|
||
|
if (mLastUpdate!=now)
|
||
|
{
|
||
|
TContainer::iterator iter (mSpells.begin());
|
||
|
while (iter!=mSpells.end())
|
||
|
if (!timeToExpire (iter))
|
||
|
{
|
||
|
mSpells.erase (iter++);
|
||
|
rebuild = true;
|
||
|
}
|
||
|
else
|
||
|
++iter;
|
||
|
|
||
|
mLastUpdate = now;
|
||
|
}
|
||
|
|
||
|
if (mSpellsChanged)
|
||
|
{
|
||
|
mSpellsChanged = false;
|
||
|
rebuild = true;
|
||
|
}
|
||
|
|
||
|
if (rebuild)
|
||
|
{
|
||
|
mEffects = MagicEffects();
|
||
|
|
||
|
for (TIterator iter (begin()); iter!=end(); ++iter)
|
||
|
{
|
||
|
const ESM::Spell& spell =
|
||
|
*MWBase::Environment::get().getWorld()->getStore().spells.find (iter->first);
|
||
|
|
||
|
const MWWorld::TimeStamp& start = iter->second.first;
|
||
|
float magnitude = iter->second.second;
|
||
|
|
||
|
for (std::vector<ESM::ENAMstruct>::const_iterator iter (spell.effects.list.begin());
|
||
|
iter!=spell.effects.list.end(); ++iter)
|
||
|
{
|
||
|
if (iter->duration)
|
||
|
{
|
||
|
MWWorld::TimeStamp end = start;
|
||
|
end += static_cast<double> (iter->duration)*
|
||
|
MWBase::Environment::get().getWorld()->getTimeScaleFactor()/(60*60);
|
||
|
|
||
|
if (end>now)
|
||
|
{
|
||
|
EffectParam param;
|
||
|
param.mMagnitude = static_cast<int> (
|
||
|
(iter->magnMax-iter->magnMin+1)*magnitude + iter->magnMin);
|
||
|
mEffects.add (*iter, param);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ActiveSpells::ActiveSpells()
|
||
|
: mSpellsChanged (false), mLastUpdate (MWBase::Environment::get().getWorld()->getTimeStamp())
|
||
|
{}
|
||
|
|
||
|
void ActiveSpells::addSpell (const std::string& id)
|
||
|
{
|
||
|
const ESM::Spell& spell = *MWBase::Environment::get().getWorld()->getStore().spells.find (id);
|
||
|
|
||
|
bool found = false;
|
||
|
|
||
|
for (std::vector<ESM::ENAMstruct>::const_iterator iter (spell.effects.list.begin());
|
||
|
iter!=spell.effects.list.end(); ++iter)
|
||
|
{
|
||
|
if (iter->duration)
|
||
|
{
|
||
|
found = true;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (!found)
|
||
|
return;
|
||
|
|
||
|
TContainer::iterator iter = mSpells.find (id);
|
||
|
|
||
|
float random = static_cast<float> (std::rand()) / RAND_MAX;
|
||
|
|
||
|
if (iter==mSpells.end())
|
||
|
mSpells.insert (std::make_pair (id,
|
||
|
std::make_pair (MWBase::Environment::get().getWorld()->getTimeStamp(), random)));
|
||
|
else
|
||
|
iter->second = std::make_pair (MWBase::Environment::get().getWorld()->getTimeStamp(), random);
|
||
|
|
||
|
mSpellsChanged = true;
|
||
|
}
|
||
|
|
||
|
void ActiveSpells::removeSpell (const std::string& id)
|
||
|
{
|
||
|
TContainer::iterator iter = mSpells.find (id);
|
||
|
|
||
|
if (iter!=mSpells.end())
|
||
|
{
|
||
|
mSpells.erase (iter);
|
||
|
mSpellsChanged = true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const MagicEffects& ActiveSpells::getMagicEffects() const
|
||
|
{
|
||
|
update();
|
||
|
return mEffects;
|
||
|
}
|
||
|
|
||
|
ActiveSpells::TIterator ActiveSpells::begin() const
|
||
|
{
|
||
|
update();
|
||
|
return mSpells.begin();
|
||
|
}
|
||
|
|
||
|
ActiveSpells::TIterator ActiveSpells::end() const
|
||
|
{
|
||
|
update();
|
||
|
return mSpells.end();
|
||
|
}
|
||
|
|
||
|
double ActiveSpells::timeToExpire (const TIterator& iterator) const
|
||
|
{
|
||
|
const ESM::Spell& spell =
|
||
|
*MWBase::Environment::get().getWorld()->getStore().spells.find (iterator->first);
|
||
|
|
||
|
int duration = 0;
|
||
|
|
||
|
for (std::vector<ESM::ENAMstruct>::const_iterator iter (spell.effects.list.begin());
|
||
|
iter!=spell.effects.list.end(); ++iter)
|
||
|
{
|
||
|
if (iter->duration>duration)
|
||
|
duration = iter->duration;
|
||
|
}
|
||
|
|
||
|
double scaledDuration = duration *
|
||
|
MWBase::Environment::get().getWorld()->getTimeScaleFactor()/(60*60);
|
||
|
|
||
|
double usedUp = MWBase::Environment::get().getWorld()->getTimeStamp()-iterator->second.first;
|
||
|
|
||
|
if (usedUp>=scaledDuration)
|
||
|
return 0;
|
||
|
|
||
|
return scaledDuration-usedUp;
|
||
|
}
|
||
|
}
|