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.
80 lines
2.0 KiB
C++
80 lines
2.0 KiB
C++
|
|
#include "globalscripts.hpp"
|
|
|
|
#include <cassert>
|
|
|
|
#include "../mwworld/esmstore.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwbase/scriptmanager.hpp"
|
|
|
|
#include "interpretercontext.hpp"
|
|
|
|
namespace MWScript
|
|
{
|
|
GlobalScripts::GlobalScripts (const MWWorld::ESMStore& store)
|
|
: mStore (store)
|
|
{
|
|
reset();
|
|
}
|
|
|
|
void GlobalScripts::reset()
|
|
{
|
|
mScripts.clear();
|
|
addScript ("Main");
|
|
|
|
MWWorld::Store<ESM::StartScript>::iterator iter =
|
|
mStore.get<ESM::StartScript>().begin();
|
|
|
|
for (; iter != mStore.get<ESM::StartScript>().end(); ++iter) {
|
|
addScript (iter->mScript);
|
|
}
|
|
}
|
|
|
|
void GlobalScripts::addScript (const std::string& name)
|
|
{
|
|
if (mScripts.find (name)==mScripts.end())
|
|
if (const ESM::Script *script = mStore.get<ESM::Script>().find (name))
|
|
{
|
|
Locals locals;
|
|
|
|
locals.configure (*script);
|
|
|
|
mScripts.insert (std::make_pair (name, std::make_pair (true, locals)));
|
|
}
|
|
}
|
|
|
|
void GlobalScripts::removeScript (const std::string& name)
|
|
{
|
|
std::map<std::string, std::pair<bool, Locals> >::iterator iter = mScripts.find (name);
|
|
|
|
if (iter!=mScripts.end())
|
|
iter->second.first = false;
|
|
}
|
|
|
|
bool GlobalScripts::isRunning (const std::string& name) const
|
|
{
|
|
std::map<std::string, std::pair<bool, Locals> >::const_iterator iter =
|
|
mScripts.find (name);
|
|
|
|
if (iter==mScripts.end())
|
|
return false;
|
|
|
|
return iter->second.first;
|
|
}
|
|
|
|
void GlobalScripts::run()
|
|
{
|
|
for (std::map<std::string, std::pair<bool, Locals> >::iterator iter (mScripts.begin());
|
|
iter!=mScripts.end(); ++iter)
|
|
{
|
|
if (iter->second.first)
|
|
{
|
|
MWScript::InterpreterContext interpreterContext (
|
|
&iter->second.second, MWWorld::Ptr());
|
|
MWBase::Environment::get().getScriptManager()->run (iter->first, interpreterContext);
|
|
}
|
|
}
|
|
}
|
|
}
|