2010-07-03 12:12:13 +02:00
|
|
|
#include "cellextensions.hpp"
|
|
|
|
|
2015-06-03 23:04:35 +02:00
|
|
|
#include <limits>
|
|
|
|
|
2012-10-01 19:17:04 +04:00
|
|
|
#include "../mwworld/esmstore.hpp"
|
2012-07-03 12:30:50 +02:00
|
|
|
|
2013-08-06 20:38:41 -04:00
|
|
|
#include <components/compiler/opcodes.hpp>
|
2010-07-03 12:12:13 +02:00
|
|
|
|
|
|
|
#include <components/interpreter/interpreter.hpp>
|
|
|
|
#include <components/interpreter/runtime.hpp>
|
|
|
|
#include <components/interpreter/opcodes.hpp>
|
|
|
|
|
2019-11-24 17:40:19 +04:00
|
|
|
#include "../mwworld/actionteleport.hpp"
|
|
|
|
#include "../mwworld/cellstore.hpp"
|
2012-04-23 15:27:03 +02:00
|
|
|
#include "../mwbase/environment.hpp"
|
2019-11-24 17:40:19 +04:00
|
|
|
#include "../mwbase/statemanager.hpp"
|
|
|
|
#include "../mwbase/windowmanager.hpp"
|
|
|
|
#include "../mwbase/world.hpp"
|
2010-07-03 15:04:00 +02:00
|
|
|
|
2015-08-21 21:12:39 +12:00
|
|
|
#include "../mwmechanics/actorutil.hpp"
|
|
|
|
|
2010-07-03 12:12:13 +02:00
|
|
|
#include "interpretercontext.hpp"
|
|
|
|
|
|
|
|
namespace MWScript
|
|
|
|
{
|
|
|
|
namespace Cell
|
|
|
|
{
|
|
|
|
class OpCellChanged : public Interpreter::Opcode0
|
|
|
|
{
|
|
|
|
public:
|
2010-08-20 13:33:03 +02:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void execute (Interpreter::Runtime& runtime) override
|
2010-07-03 12:12:13 +02:00
|
|
|
{
|
2012-04-23 15:27:03 +02:00
|
|
|
runtime.push (MWBase::Environment::get().getWorld()->hasCellChanged() ? 1 : 0);
|
2010-08-20 13:33:03 +02:00
|
|
|
}
|
2010-07-03 12:12:13 +02:00
|
|
|
};
|
2010-07-22 12:29:23 +02:00
|
|
|
|
2019-11-24 17:40:19 +04:00
|
|
|
class OpTestCells : public Interpreter::Opcode0
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void execute (Interpreter::Runtime& runtime) override
|
2019-11-24 17:40:19 +04:00
|
|
|
{
|
|
|
|
if (MWBase::Environment::get().getStateManager()->getState() != MWBase::StateManager::State_NoGame)
|
|
|
|
{
|
|
|
|
runtime.getContext().report("Use TestCells from the main menu, when there is no active game session.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wasConsole = MWBase::Environment::get().getWindowManager()->isConsoleMode();
|
|
|
|
if (wasConsole)
|
|
|
|
MWBase::Environment::get().getWindowManager()->toggleConsole();
|
|
|
|
|
|
|
|
MWBase::Environment::get().getWorld()->testExteriorCells();
|
|
|
|
|
|
|
|
if (wasConsole)
|
|
|
|
MWBase::Environment::get().getWindowManager()->toggleConsole();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class OpTestInteriorCells : public Interpreter::Opcode0
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void execute (Interpreter::Runtime& runtime) override
|
2019-11-24 17:40:19 +04:00
|
|
|
{
|
|
|
|
if (MWBase::Environment::get().getStateManager()->getState() != MWBase::StateManager::State_NoGame)
|
|
|
|
{
|
|
|
|
runtime.getContext().report("Use TestInteriorCells from the main menu, when there is no active game session.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wasConsole = MWBase::Environment::get().getWindowManager()->isConsoleMode();
|
|
|
|
if (wasConsole)
|
|
|
|
MWBase::Environment::get().getWindowManager()->toggleConsole();
|
|
|
|
|
|
|
|
MWBase::Environment::get().getWorld()->testInteriorCells();
|
|
|
|
|
|
|
|
if (wasConsole)
|
|
|
|
MWBase::Environment::get().getWindowManager()->toggleConsole();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-07-22 12:29:23 +02:00
|
|
|
class OpCOC : public Interpreter::Opcode0
|
|
|
|
{
|
|
|
|
public:
|
2010-08-20 13:33:03 +02:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void execute (Interpreter::Runtime& runtime) override
|
2010-07-22 12:29:23 +02:00
|
|
|
{
|
|
|
|
std::string cell = runtime.getStringLiteral (runtime[0].mInteger);
|
2010-08-20 13:33:03 +02:00
|
|
|
runtime.pop();
|
|
|
|
|
2010-07-22 12:29:23 +02:00
|
|
|
ESM::Position pos;
|
2013-07-06 12:42:29 +04:00
|
|
|
MWBase::World *world = MWBase::Environment::get().getWorld();
|
2018-09-13 13:21:38 +04:00
|
|
|
const MWWorld::Ptr playerPtr = world->getPlayerPtr();
|
2010-09-11 11:55:28 +02:00
|
|
|
|
2013-12-31 20:40:23 +01:00
|
|
|
if (world->findExteriorPosition(cell, pos))
|
|
|
|
{
|
2018-09-13 13:21:38 +04:00
|
|
|
MWWorld::ActionTeleport("", pos, false).execute(playerPtr);
|
|
|
|
world->adjustPosition(playerPtr, false);
|
2010-09-11 11:55:28 +02:00
|
|
|
}
|
2013-12-31 20:40:23 +01:00
|
|
|
else
|
|
|
|
{
|
2013-07-06 12:42:29 +04:00
|
|
|
// Change to interior even if findInteriorPosition()
|
|
|
|
// yields false. In this case position will be zero-point.
|
2013-07-07 15:03:06 +04:00
|
|
|
world->findInteriorPosition(cell, pos);
|
2018-09-13 13:21:38 +04:00
|
|
|
MWWorld::ActionTeleport(cell, pos, false).execute(playerPtr);
|
2010-09-11 11:55:28 +02:00
|
|
|
}
|
2010-08-20 13:33:03 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class OpCOE : public Interpreter::Opcode0
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void execute (Interpreter::Runtime& runtime) override
|
2010-08-20 13:33:03 +02:00
|
|
|
{
|
|
|
|
Interpreter::Type_Integer x = runtime[0].mInteger;
|
|
|
|
runtime.pop();
|
|
|
|
|
|
|
|
Interpreter::Type_Integer y = runtime[0].mInteger;
|
|
|
|
runtime.pop();
|
|
|
|
|
|
|
|
ESM::Position pos;
|
2013-12-31 20:40:23 +01:00
|
|
|
MWBase::World *world = MWBase::Environment::get().getWorld();
|
2018-09-13 13:21:38 +04:00
|
|
|
const MWWorld::Ptr playerPtr = world->getPlayerPtr();
|
2017-02-20 20:26:45 +01:00
|
|
|
|
2013-12-31 20:40:23 +01:00
|
|
|
world->indexToPosition (x, y, pos.pos[0], pos.pos[1], true);
|
2010-08-20 13:33:03 +02:00
|
|
|
pos.pos[2] = 0;
|
2010-08-22 21:30:48 +02:00
|
|
|
|
2010-08-20 13:33:03 +02:00
|
|
|
pos.rot[0] = pos.rot[1] = pos.rot[2] = 0;
|
2010-08-22 21:30:48 +02:00
|
|
|
|
2018-09-13 13:21:38 +04:00
|
|
|
MWWorld::ActionTeleport("", pos, false).execute(playerPtr);
|
|
|
|
world->adjustPosition(playerPtr, false);
|
2010-08-20 13:33:03 +02:00
|
|
|
}
|
2010-07-22 12:29:23 +02:00
|
|
|
};
|
2010-08-20 13:33:03 +02:00
|
|
|
|
2011-01-17 10:18:12 +01:00
|
|
|
class OpGetInterior : public Interpreter::Opcode0
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void execute (Interpreter::Runtime& runtime) override
|
2011-01-17 10:18:12 +01:00
|
|
|
{
|
2015-08-21 21:12:39 +12:00
|
|
|
if (!MWMechanics::getPlayer().isInCell())
|
2014-05-25 07:50:19 +10:00
|
|
|
{
|
|
|
|
runtime.push (0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-01-17 10:18:12 +01:00
|
|
|
bool interior =
|
2015-08-21 21:12:39 +12:00
|
|
|
!MWMechanics::getPlayer().getCell()->getCell()->isExterior();
|
2011-01-17 10:18:12 +01:00
|
|
|
|
|
|
|
runtime.push (interior ? 1 : 0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-04-04 15:10:37 +02:00
|
|
|
class OpGetPCCell : public Interpreter::Opcode0
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void execute (Interpreter::Runtime& runtime) override
|
2011-04-04 15:10:37 +02:00
|
|
|
{
|
|
|
|
std::string name = runtime.getStringLiteral (runtime[0].mInteger);
|
|
|
|
runtime.pop();
|
|
|
|
|
2015-08-21 21:12:39 +12:00
|
|
|
if (!MWMechanics::getPlayer().isInCell())
|
2014-05-19 14:09:16 +02:00
|
|
|
{
|
|
|
|
runtime.push(0);
|
|
|
|
return;
|
|
|
|
}
|
2015-08-21 21:12:39 +12:00
|
|
|
const MWWorld::CellStore *cell = MWMechanics::getPlayer().getCell();
|
2011-04-04 15:10:37 +02:00
|
|
|
|
2014-12-18 17:48:46 +01:00
|
|
|
std::string current = MWBase::Environment::get().getWorld()->getCellName(cell);
|
2015-12-07 22:49:15 +01:00
|
|
|
Misc::StringUtils::lowerCaseInPlace(current);
|
2011-04-04 15:10:37 +02:00
|
|
|
|
|
|
|
bool match = current.length()>=name.length() &&
|
|
|
|
current.substr (0, name.length())==name;
|
|
|
|
|
|
|
|
runtime.push (match ? 1 : 0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-03-29 15:50:15 +02:00
|
|
|
class OpGetWaterLevel : public Interpreter::Opcode0
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void execute (Interpreter::Runtime& runtime) override
|
2012-03-29 15:50:15 +02:00
|
|
|
{
|
2015-08-21 21:12:39 +12:00
|
|
|
if (!MWMechanics::getPlayer().isInCell())
|
2014-05-25 15:06:53 +02:00
|
|
|
{
|
|
|
|
runtime.push(0.f);
|
|
|
|
return;
|
|
|
|
}
|
2015-08-21 21:12:39 +12:00
|
|
|
MWWorld::CellStore *cell = MWMechanics::getPlayer().getCell();
|
2015-12-03 15:48:27 +01:00
|
|
|
if (cell->isExterior())
|
|
|
|
runtime.push(0.f); // vanilla oddity, return 0 even though water is actually at -1
|
|
|
|
else if (cell->getCell()->hasWater())
|
2014-02-23 17:34:18 +01:00
|
|
|
runtime.push (cell->getWaterLevel());
|
2014-01-08 20:19:47 +01:00
|
|
|
else
|
2014-10-12 23:26:03 +02:00
|
|
|
runtime.push (-std::numeric_limits<float>::max());
|
2012-03-29 15:50:15 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class OpSetWaterLevel : public Interpreter::Opcode0
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void execute (Interpreter::Runtime& runtime) override
|
2012-03-29 15:50:15 +02:00
|
|
|
{
|
|
|
|
Interpreter::Type_Float level = runtime[0].mFloat;
|
|
|
|
|
2015-08-21 21:12:39 +12:00
|
|
|
if (!MWMechanics::getPlayer().isInCell())
|
2014-05-25 15:06:53 +02:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-21 21:12:39 +12:00
|
|
|
MWWorld::CellStore *cell = MWMechanics::getPlayer().getCell();
|
2012-03-29 16:23:02 +02:00
|
|
|
|
2014-02-21 11:35:46 +01:00
|
|
|
if (cell->getCell()->isExterior())
|
2012-03-29 16:23:02 +02:00
|
|
|
throw std::runtime_error("Can't set water level in exterior cell");
|
|
|
|
|
2014-02-23 17:34:18 +01:00
|
|
|
cell->setWaterLevel (level);
|
|
|
|
MWBase::Environment::get().getWorld()->setWaterHeight (cell->getWaterLevel());
|
2012-03-29 15:50:15 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class OpModWaterLevel : public Interpreter::Opcode0
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void execute (Interpreter::Runtime& runtime) override
|
2012-03-29 15:50:15 +02:00
|
|
|
{
|
|
|
|
Interpreter::Type_Float level = runtime[0].mFloat;
|
|
|
|
|
2015-08-21 21:12:39 +12:00
|
|
|
if (!MWMechanics::getPlayer().isInCell())
|
2014-05-25 15:06:53 +02:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-21 21:12:39 +12:00
|
|
|
MWWorld::CellStore *cell = MWMechanics::getPlayer().getCell();
|
2012-03-29 16:23:02 +02:00
|
|
|
|
2014-02-21 11:35:46 +01:00
|
|
|
if (cell->getCell()->isExterior())
|
2012-03-29 16:23:02 +02:00
|
|
|
throw std::runtime_error("Can't set water level in exterior cell");
|
2012-04-23 15:27:03 +02:00
|
|
|
|
2014-02-23 17:34:18 +01:00
|
|
|
cell->setWaterLevel (cell->getWaterLevel()+level);
|
|
|
|
MWBase::Environment::get().getWorld()->setWaterHeight(cell->getWaterLevel());
|
2012-03-29 15:50:15 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-08-20 13:33:03 +02:00
|
|
|
|
2010-07-03 12:12:13 +02:00
|
|
|
void installOpcodes (Interpreter::Interpreter& interpreter)
|
|
|
|
{
|
2013-08-06 20:38:41 -04:00
|
|
|
interpreter.installSegment5 (Compiler::Cell::opcodeCellChanged, new OpCellChanged);
|
2019-11-24 17:40:19 +04:00
|
|
|
interpreter.installSegment5 (Compiler::Cell::opcodeTestCells, new OpTestCells);
|
|
|
|
interpreter.installSegment5 (Compiler::Cell::opcodeTestInteriorCells, new OpTestInteriorCells);
|
2013-08-06 20:38:41 -04:00
|
|
|
interpreter.installSegment5 (Compiler::Cell::opcodeCOC, new OpCOC);
|
|
|
|
interpreter.installSegment5 (Compiler::Cell::opcodeCOE, new OpCOE);
|
|
|
|
interpreter.installSegment5 (Compiler::Cell::opcodeGetInterior, new OpGetInterior);
|
|
|
|
interpreter.installSegment5 (Compiler::Cell::opcodeGetPCCell, new OpGetPCCell);
|
|
|
|
interpreter.installSegment5 (Compiler::Cell::opcodeGetWaterLevel, new OpGetWaterLevel);
|
|
|
|
interpreter.installSegment5 (Compiler::Cell::opcodeSetWaterLevel, new OpSetWaterLevel);
|
|
|
|
interpreter.installSegment5 (Compiler::Cell::opcodeModWaterLevel, new OpModWaterLevel);
|
2010-07-03 12:12:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|