1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 15:39:02 +00:00
OpenMW/apps/openmw/mwscript/cellextensions.cpp

108 lines
3.6 KiB
C++
Raw Normal View History

2010-07-03 10:12:13 +00:00
#include "cellextensions.hpp"
#include <components/compiler/extensions.hpp>
#include <components/interpreter/interpreter.hpp>
#include <components/interpreter/runtime.hpp>
#include <components/interpreter/opcodes.hpp>
2010-07-03 13:41:20 +00:00
#include "../mwworld/world.hpp"
2010-07-03 10:12:13 +00:00
#include "interpretercontext.hpp"
namespace MWScript
{
namespace Cell
{
class OpCellChanged : public Interpreter::Opcode0
{
public:
2010-07-03 10:12:13 +00:00
virtual void execute (Interpreter::Runtime& runtime)
{
InterpreterContext& context
= static_cast<InterpreterContext&> (runtime.getContext());
runtime.push (context.getWorld().hasCellChanged() ? 1 : 0);
}
2010-07-03 10:12:13 +00:00
};
2010-07-22 10:29:23 +00:00
class OpCOC : public Interpreter::Opcode0
{
public:
2010-07-22 10:29:23 +00:00
virtual void execute (Interpreter::Runtime& runtime)
{
InterpreterContext& context
= static_cast<InterpreterContext&> (runtime.getContext());
2010-07-22 10:29:23 +00:00
std::string cell = runtime.getStringLiteral (runtime[0].mInteger);
runtime.pop();
2010-07-22 10:29:23 +00:00
ESM::Position pos;
pos.rot[0] = pos.rot[1] = pos.rot[2] = 0;
2010-09-11 09:55:28 +00:00
pos.pos[2] = 0;
if (const ESM::Cell *exterior = context.getWorld().getExterior (cell))
{
context.getWorld().indexToPosition (exterior->data.gridX, exterior->data.gridY,
pos.pos[0], pos.pos[1]);
context.getWorld().changeToExteriorCell (pos);
}
else
{
pos.pos[0] = pos.pos[1] = 0;
context.getWorld().changeCell (cell, pos);
}
}
};
class OpCOE : public Interpreter::Opcode0
{
public:
virtual void execute (Interpreter::Runtime& runtime)
{
InterpreterContext& context
= static_cast<InterpreterContext&> (runtime.getContext());
Interpreter::Type_Integer x = runtime[0].mInteger;
runtime.pop();
Interpreter::Type_Integer y = runtime[0].mInteger;
runtime.pop();
ESM::Position pos;
context.getWorld().indexToPosition (x, y, pos.pos[0], pos.pos[1]);
pos.pos[2] = 0;
pos.rot[0] = pos.rot[1] = pos.rot[2] = 0;
context.getWorld().changeToExteriorCell (pos);
}
2010-07-22 10:29:23 +00:00
};
2010-07-03 10:12:13 +00:00
const int opcodeCellChanged = 0x2000000;
2010-07-22 10:29:23 +00:00
const int opcodeCOC = 0x2000026;
2010-09-10 11:01:37 +00:00
const int opcodeCOE = 0x200008e;
2010-07-03 10:12:13 +00:00
void registerExtensions (Compiler::Extensions& extensions)
{
extensions.registerFunction ("cellchanged", 'l', "", opcodeCellChanged);
2010-07-22 10:29:23 +00:00
extensions.registerInstruction ("coc", "S", opcodeCOC);
extensions.registerInstruction ("centeroncell", "S", opcodeCOC);
extensions.registerInstruction ("coe", "ll", opcodeCOE);
extensions.registerInstruction ("centeronexterior", "ll", opcodeCOE);
2010-07-03 10:12:13 +00:00
}
2010-07-03 10:12:13 +00:00
void installOpcodes (Interpreter::Interpreter& interpreter)
{
interpreter.installSegment5 (opcodeCellChanged, new OpCellChanged);
2010-07-22 10:29:23 +00:00
interpreter.installSegment5 (opcodeCOC, new OpCOC);
interpreter.installSegment5 (opcodeCOE, new OpCOE);
2010-07-03 10:12:13 +00:00
}
}
}