1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-30 21:32:42 +00:00
OpenMW/apps/openmw/mwlua/localscripts.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

245 lines
11 KiB
C++
Raw Normal View History

2020-12-18 23:21:10 +01:00
#include "localscripts.hpp"
2022-01-23 20:49:42 +01:00
#include <components/esm3/loadcell.hpp>
#include <components/misc/strings/lower.hpp>
2022-01-23 20:49:42 +01:00
2021-01-29 01:54:54 +01:00
#include "../mwmechanics/aicombat.hpp"
2022-01-23 20:49:42 +01:00
#include "../mwmechanics/aiescort.hpp"
#include "../mwmechanics/aifollow.hpp"
#include "../mwmechanics/aipackage.hpp"
#include "../mwmechanics/aipursue.hpp"
2021-01-29 01:54:54 +01:00
#include "../mwmechanics/aisequence.hpp"
2022-01-23 20:49:42 +01:00
#include "../mwmechanics/aitravel.hpp"
#include "../mwmechanics/aiwander.hpp"
#include "../mwmechanics/creaturestats.hpp"
2021-01-29 01:54:54 +01:00
#include "../mwworld/class.hpp"
#include "../mwworld/ptr.hpp"
2022-08-17 19:09:38 +02:00
#include "context.hpp"
#include "worldview.hpp"
2021-03-28 17:44:08 +02:00
namespace MWLua
{
struct LocalMWScript
{
LObject mSelf;
};
}
2020-12-18 23:21:10 +01:00
namespace sol
{
template <>
struct is_automagical<MWBase::LuaManager::ActorControls> : std::false_type
{
};
template <>
struct is_automagical<MWLua::LocalScripts::SelfObject> : std::false_type
{
};
template <>
struct is_automagical<MWLua::LocalMWScript> : std::false_type
{
};
2020-12-18 23:21:10 +01:00
}
namespace MWLua
{
void LocalScripts::initializeSelfPackage(const Context& context)
{
using ActorControls = MWBase::LuaManager::ActorControls;
sol::usertype<ActorControls> controls = context.mLua->sol().new_usertype<ActorControls>("ActorControls");
#define CONTROL(TYPE, FIELD) \
sol::property([](const ActorControls& c) { return c.FIELD; }, \
[](ActorControls& c, const TYPE& v) { \
c.FIELD = v; \
c.mChanged = true; \
})
controls["movement"] = CONTROL(float, mMovement);
controls["sideMovement"] = CONTROL(float, mSideMovement);
controls["pitchChange"] = CONTROL(float, mPitchChange);
controls["yawChange"] = CONTROL(float, mYawChange);
controls["run"] = CONTROL(bool, mRun);
controls["sneak"] = CONTROL(bool, mSneak);
controls["jump"] = CONTROL(bool, mJump);
controls["use"] = CONTROL(int, mUse);
#undef CONTROL
2020-12-18 23:21:10 +01:00
sol::usertype<SelfObject> selfAPI = context.mLua->sol().new_usertype<SelfObject>(
"SelfObject", sol::base_classes, sol::bases<LObject, Object>());
2020-12-18 23:21:10 +01:00
selfAPI[sol::meta_function::to_string]
= [](SelfObject& self) { return "openmw.self[" + self.toString() + "]"; };
selfAPI["object"] = sol::readonly_property([](SelfObject& self) -> LObject { return LObject(self); });
selfAPI["controls"] = sol::readonly_property([](SelfObject& self) { return &self.mControls; });
selfAPI["isActive"] = [](SelfObject& self) { return &self.mIsActive; };
2021-04-23 02:49:12 +02:00
selfAPI["enableAI"] = [](SelfObject& self, bool v) { self.mControls.mDisableAI = !v; };
selfAPI["mwscript"] = sol::readonly_property([](SelfObject& self) -> sol::optional<LocalMWScript> {
if (self.ptr().getRefData().getLocals().getScriptId().empty())
return sol::nullopt;
else
return LocalMWScript{ LObject(self.id()) };
});
sol::usertype<LocalMWScript> mwscript = context.mLua->sol().new_usertype<LocalMWScript>("LocalMWScript");
mwscript[sol::meta_function::to_string] = [](const LocalMWScript& s) {
return s.mSelf.ptr().getRefData().getLocals().getScriptId().getRefIdString();
};
mwscript[sol::meta_function::index] = [](const LocalMWScript& s, std::string_view var) {
MWScript::Locals& locals = s.mSelf.ptr().getRefData().getLocals();
return locals.getVarAsDouble(locals.getScriptId(), Misc::StringUtils::lowerCase(var));
};
mwscript[sol::meta_function::new_index] = [](const LocalMWScript& s, std::string_view var, double val) {
MWScript::Locals& locals = s.mSelf.ptr().getRefData().getLocals();
if (!locals.setVar(locals.getScriptId(), Misc::StringUtils::lowerCase(var), val))
throw std::runtime_error("No variable \"" + std::string(var) + "\" in mwscript \""
+ locals.getScriptId().getRefIdString() + "\"");
};
2022-01-23 20:49:42 +01:00
using AiPackage = MWMechanics::AiPackage;
sol::usertype<AiPackage> aiPackage = context.mLua->sol().new_usertype<AiPackage>("AiPackage");
aiPackage["type"] = sol::readonly_property([](const AiPackage& p) -> std::string_view {
switch (p.getTypeId())
{
case MWMechanics::AiPackageTypeId::Wander:
return "Wander";
case MWMechanics::AiPackageTypeId::Travel:
return "Travel";
case MWMechanics::AiPackageTypeId::Escort:
return "Escort";
case MWMechanics::AiPackageTypeId::Follow:
return "Follow";
case MWMechanics::AiPackageTypeId::Activate:
return "Activate";
case MWMechanics::AiPackageTypeId::Combat:
return "Combat";
case MWMechanics::AiPackageTypeId::Pursue:
return "Pursue";
case MWMechanics::AiPackageTypeId::AvoidDoor:
return "AvoidDoor";
case MWMechanics::AiPackageTypeId::Face:
return "Face";
case MWMechanics::AiPackageTypeId::Breathe:
return "Breathe";
case MWMechanics::AiPackageTypeId::Cast:
return "Cast";
default:
return "Unknown";
}
});
aiPackage["target"] = sol::readonly_property([](const AiPackage& p) -> sol::optional<LObject> {
MWWorld::Ptr target = p.getTarget();
if (target.isEmpty())
return sol::nullopt;
else
return LObject(getId(target));
});
2022-01-23 20:49:42 +01:00
aiPackage["sideWithTarget"] = sol::readonly_property([](const AiPackage& p) { return p.sideWithTarget(); });
2022-06-21 21:06:37 +02:00
aiPackage["destPosition"] = sol::readonly_property([](const AiPackage& p) { return p.getDestination(); });
2022-01-23 20:49:42 +01:00
selfAPI["_getActiveAiPackage"] = [](SelfObject& self) -> sol::optional<std::shared_ptr<AiPackage>> {
2021-01-29 01:54:54 +01:00
const MWWorld::Ptr& ptr = self.ptr();
MWMechanics::AiSequence& ai = ptr.getClass().getCreatureStats(ptr).getAiSequence();
2022-01-23 20:49:42 +01:00
if (ai.isEmpty())
return sol::nullopt;
2021-01-29 01:54:54 +01:00
else
2022-01-23 20:49:42 +01:00
return *ai.begin();
2021-01-29 01:54:54 +01:00
};
2022-01-23 20:49:42 +01:00
selfAPI["_iterateAndFilterAiSequence"] = [](SelfObject& self, sol::function callback) {
2021-01-29 01:54:54 +01:00
const MWWorld::Ptr& ptr = self.ptr();
MWMechanics::AiSequence& ai = ptr.getClass().getCreatureStats(ptr).getAiSequence();
2022-02-12 23:50:41 +00:00
ai.erasePackagesIf([&](auto& entry) {
bool keep = LuaUtil::call(callback, entry).template get<bool>();
return !keep;
});
2021-01-29 01:54:54 +01:00
};
2022-01-23 20:49:42 +01:00
selfAPI["_startAiCombat"] = [](SelfObject& self, const LObject& target) {
2021-01-29 01:54:54 +01:00
const MWWorld::Ptr& ptr = self.ptr();
MWMechanics::AiSequence& ai = ptr.getClass().getCreatureStats(ptr).getAiSequence();
ai.stack(MWMechanics::AiCombat(target.ptr()), ptr);
};
2022-01-23 20:49:42 +01:00
selfAPI["_startAiPursue"] = [](SelfObject& self, const LObject& target) {
const MWWorld::Ptr& ptr = self.ptr();
MWMechanics::AiSequence& ai = ptr.getClass().getCreatureStats(ptr).getAiSequence();
ai.stack(MWMechanics::AiPursue(target.ptr()), ptr);
};
selfAPI["_startAiFollow"] = [](SelfObject& self, const LObject& target) {
const MWWorld::Ptr& ptr = self.ptr();
MWMechanics::AiSequence& ai = ptr.getClass().getCreatureStats(ptr).getAiSequence();
ai.stack(MWMechanics::AiFollow(target.ptr()), ptr);
};
selfAPI["_startAiEscort"] = [](SelfObject& self, const LObject& target, LCell cell, float duration,
const osg::Vec3f& dest) {
const MWWorld::Ptr& ptr = self.ptr();
MWMechanics::AiSequence& ai = ptr.getClass().getCreatureStats(ptr).getAiSequence();
// TODO: change AiEscort implementation to accept ptr instead of a non-unique refId.
Initial commit: In ESM structures, replace the string members that are RefIds to other records, to a new strong type The strong type is actually just a string underneath, but this will help in the future to have a distinction so it's easier to search and replace when we use an integer ID Slowly going through all the changes to make, still hundreds of errors a lot of functions/structures use std::string or stringview to designate an ID. So it takes time Continues slowly replacing ids. There are technically more and more compilation errors I have good hope that there is a point where the amount of errors will dramatically go down as all the main functions use the ESM::RefId type Continue moving forward, changes to the stores slowly moving along Starting to see the fruit of those changes. still many many error, but more and more Irun into a situation where a function is sandwiched between two functions that use the RefId type. More replacements. Things are starting to get easier I can see more and more often the issue is that the function is awaiting a RefId, but is given a string there is less need to go down functions and to fix a long list of them. Still moving forward, and for the first time error count is going down! Good pace, not sure about topics though, mId and mName are actually the same thing and are used interchangeably Cells are back to using string for the name, haven't fixed everything yet. Many other changes Under the bar of 400 compilation errors. more good progress <100 compile errors! More progress Game settings store can use string for find, it was a bit absurd how every use of it required to create refId from string some more progress on other fronts Mostly game settings clean one error opened a lot of other errors. Down to 18, but more will prbably appear only link errors left?? Fixed link errors OpenMW compiles, and launches, with some issues, but still!
2022-09-25 13:17:09 +02:00
const ESM::RefId& refId = target.ptr().getCellRef().getRefId();
2022-01-23 20:49:42 +01:00
int gameHoursDuration = static_cast<int>(std::ceil(duration / 3600.0));
auto* esmCell = cell.mStore->getCell();
2022-01-23 20:49:42 +01:00
if (esmCell->isExterior())
ai.stack(MWMechanics::AiEscort(refId, gameHoursDuration, dest.x(), dest.y(), dest.z(), false), ptr);
else
ai.stack(MWMechanics::AiEscort(
refId, esmCell->getEditorName(), gameHoursDuration, dest.x(), dest.y(), dest.z(), false),
2022-01-23 20:49:42 +01:00
ptr);
};
selfAPI["_startAiWander"] = [](SelfObject& self, int distance, float duration) {
const MWWorld::Ptr& ptr = self.ptr();
MWMechanics::AiSequence& ai = ptr.getClass().getCreatureStats(ptr).getAiSequence();
int gameHoursDuration = static_cast<int>(std::ceil(duration / 3600.0));
ai.stack(MWMechanics::AiWander(distance, gameHoursDuration, 0, {}, false), ptr);
};
selfAPI["_startAiTravel"] = [](SelfObject& self, const osg::Vec3f& target) {
const MWWorld::Ptr& ptr = self.ptr();
MWMechanics::AiSequence& ai = ptr.getClass().getCreatureStats(ptr).getAiSequence();
ai.stack(MWMechanics::AiTravel(target.x(), target.y(), target.z(), false), ptr);
};
2020-12-18 23:21:10 +01:00
}
2022-05-20 21:47:13 +02:00
LocalScripts::LocalScripts(LuaUtil::LuaState* lua, const LObject& obj)
: LuaUtil::ScriptsContainer(lua, "L" + idToString(obj.id()))
, mData(obj)
2020-12-18 23:21:10 +01:00
{
this->addPackage("openmw.self", sol::make_object(lua->sol(), &mData));
registerEngineHandlers(
{ &mOnActiveHandlers, &mOnInactiveHandlers, &mOnConsumeHandlers, &mOnActivatedHandlers });
}
void LocalScripts::receiveEngineEvent(const EngineEvent& event)
{
std::visit(
[this](auto&& arg) {
using EventT = std::decay_t<decltype(arg)>;
if constexpr (std::is_same_v<EventT, OnActive>)
{
mData.mIsActive = true;
callEngineHandlers(mOnActiveHandlers);
}
else if constexpr (std::is_same_v<EventT, OnInactive>)
{
mData.mIsActive = false;
callEngineHandlers(mOnInactiveHandlers);
}
else if constexpr (std::is_same_v<EventT, OnActivated>)
{
callEngineHandlers(mOnActivatedHandlers, arg.mActivatingActor);
}
else
{
static_assert(std::is_same_v<EventT, OnConsume>);
callEngineHandlers(mOnConsumeHandlers, arg.mConsumable);
}
},
event);
2020-12-18 23:21:10 +01:00
}
2022-03-25 20:03:13 +00:00
void LocalScripts::applyStatsCache()
{
const auto& ptr = mData.ptr();
for (auto& [stat, value] : mData.mStatsCache)
stat(ptr, value);
mData.mStatsCache.clear();
}
2020-12-18 23:21:10 +01:00
}