mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
32 lines
941 B
C++
32 lines
941 B
C++
#include "markupbindings.hpp"
|
|
|
|
#include <components/lua/luastate.hpp>
|
|
#include <components/lua/yamlloader.hpp>
|
|
#include <components/resource/resourcesystem.hpp>
|
|
#include <components/vfs/manager.hpp>
|
|
#include <components/vfs/pathutil.hpp>
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
|
|
#include "context.hpp"
|
|
|
|
namespace MWLua
|
|
{
|
|
sol::table initMarkupPackage(const Context& context)
|
|
{
|
|
sol::state_view lua = context.sol();
|
|
sol::table api(lua, sol::create);
|
|
|
|
auto vfs = MWBase::Environment::get().getResourceSystem()->getVFS();
|
|
|
|
api["loadYaml"] = [lua, vfs](std::string_view fileName) {
|
|
Files::IStreamPtr file = vfs->get(VFS::Path::Normalized(fileName));
|
|
return LuaUtil::loadYaml(*file, lua);
|
|
};
|
|
api["decodeYaml"]
|
|
= [lua](std::string_view inputData) { return LuaUtil::loadYaml(std::string(inputData), lua); };
|
|
|
|
return LuaUtil::makeReadOnly(api);
|
|
}
|
|
}
|