1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/apps/openmw/mwscript/interpretercontext.cpp

79 lines
2.1 KiB
C++
Raw Normal View History

2010-07-02 18:08:00 +02:00
#include "interpretercontext.hpp"
#include <stdexcept>
#include <iostream>
#include "locals.hpp"
2010-07-03 12:12:13 +02:00
#include "../world.hpp"
2010-07-02 18:08:00 +02:00
namespace MWScript
{
InterpreterContext::InterpreterContext (OMW::World& world, MWScript::Locals *locals)
: mWorld (world), mLocals (locals)
{}
int InterpreterContext::getLocalShort (int index) const
{
if (!mLocals)
throw std::runtime_error ("local variables not available in this context");
return mLocals->mShorts.at (index);
}
int InterpreterContext::getLocalLong (int index) const
{
if (!mLocals)
throw std::runtime_error ("local variables not available in this context");
return mLocals->mLongs.at (index);
}
float InterpreterContext::getLocalFloat (int index) const
{
if (!mLocals)
throw std::runtime_error ("local variables not available in this context");
return mLocals->mFloats.at (index);
}
void InterpreterContext::setLocalShort (int index, int value)
{
if (!mLocals)
throw std::runtime_error ("local variables not available in this context");
mLocals->mShorts.at (index) = value;
}
void InterpreterContext::setLocalLong (int index, int value)
{
if (!mLocals)
throw std::runtime_error ("local variables not available in this context");
mLocals->mLongs.at (index) = value;
}
void InterpreterContext::setLocalFloat (int index, float value)
{
if (!mLocals)
throw std::runtime_error ("local variables not available in this context");
mLocals->mFloats.at (index) = value;
}
void InterpreterContext::messageBox (const std::string& message,
const std::vector<std::string>& buttons)
{
std::cout << "message box: " << message << std::endl;
if (!buttons.empty())
std::cerr << "error: message box buttons not supported" << std::endl;
}
2010-07-03 12:12:13 +02:00
OMW::World& InterpreterContext::getWorld()
2010-07-03 12:12:13 +02:00
{
return mWorld;
2010-07-03 12:12:13 +02:00
}
2010-07-02 18:08:00 +02:00
}