|
|
|
@ -516,6 +516,35 @@ namespace MWScript
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<class R>
|
|
|
|
|
class OpSetAngle : public Interpreter::Opcode0
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
virtual void execute (Interpreter::Runtime& runtime)
|
|
|
|
|
{
|
|
|
|
|
MWWorld::Ptr ptr = R()(runtime);
|
|
|
|
|
|
|
|
|
|
std::string axis = runtime.getStringLiteral (runtime[0].mInteger);
|
|
|
|
|
runtime.pop();
|
|
|
|
|
Interpreter::Type_Float angle = runtime[0].mInteger;
|
|
|
|
|
runtime.pop();
|
|
|
|
|
|
|
|
|
|
if(axis == "X")
|
|
|
|
|
{
|
|
|
|
|
MWBase::Environment::get().getWorld()->setObjectRotation(ptr,angle,0,0);
|
|
|
|
|
}
|
|
|
|
|
if(axis == "Y")
|
|
|
|
|
{
|
|
|
|
|
MWBase::Environment::get().getWorld()->setObjectRotation(ptr,0,angle,0);
|
|
|
|
|
}
|
|
|
|
|
if(axis == "Z")
|
|
|
|
|
{
|
|
|
|
|
MWBase::Environment::get().getWorld()->setObjectRotation(ptr,0,0,angle);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const int numberOfAttributes = 8;
|
|
|
|
|
|
|
|
|
|
const int opcodeGetAttribute = 0x2000027;
|
|
|
|
@ -562,6 +591,9 @@ namespace MWScript
|
|
|
|
|
const int opcodeModDisposition = 0x200014d;
|
|
|
|
|
const int opcodeModDispositionExplicit = 0x200014e;
|
|
|
|
|
|
|
|
|
|
const int opcodeSetScale = 0x2000153;
|
|
|
|
|
const int opcodeSetAngle = 0x2000154;
|
|
|
|
|
|
|
|
|
|
void registerExtensions (Compiler::Extensions& extensions)
|
|
|
|
|
{
|
|
|
|
|
static const char *attributes[numberOfAttributes] =
|
|
|
|
@ -644,6 +676,9 @@ namespace MWScript
|
|
|
|
|
extensions.registerInstruction("moddisposition","l",opcodeModDisposition,
|
|
|
|
|
opcodeModDispositionExplicit);
|
|
|
|
|
extensions.registerFunction("getpcrank",'l',"/S",opcodeGetPCRank,opcodeGetPCRankExplicit);
|
|
|
|
|
|
|
|
|
|
extensions.registerInstruction("setscale","/l",opcodeSetScale);
|
|
|
|
|
extensions.registerInstruction("setangle","/Sl",opcodeSetAngle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void installOpcodes (Interpreter::Interpreter& interpreter)
|
|
|
|
@ -715,6 +750,9 @@ namespace MWScript
|
|
|
|
|
interpreter.installSegment5(opcodeModDispositionExplicit,new OpModDisposition<ExplicitRef>);
|
|
|
|
|
interpreter.installSegment3(opcodeGetPCRank,new OpGetPCRank<ImplicitRef>);
|
|
|
|
|
interpreter.installSegment3(opcodeGetPCRankExplicit,new OpGetPCRank<ExplicitRef>);
|
|
|
|
|
|
|
|
|
|
interpreter.installSegment5(opcodeSetScale,new OpSetScale<ImplicitRef>);
|
|
|
|
|
interpreter.installSegment5(opcodeSetAngle,new OpSetAngle<ImplicitRef>);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|