Skip to content

Commit

Permalink
Lua: Initial support for passing Vector types to functions
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Jun 26, 2024
1 parent 0bbc7ae commit 5286661
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions lua-api/lib/src/ScriptContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,39 @@ sol::object call_function(sol::this_state s, uevr::API::UObject* self, uevr::API
*(uevr::API::UClass**)&params[offset] = arg;
continue;
}
case L"StructProperty"_fnv:
{
const auto arg_obj = args[args_index++];
const auto struct_desc = ((uevr::API::FStructProperty*)prop_desc)->get_struct();

if (struct_desc == nullptr) {
throw sol::error("Struct property has no struct");
}

if (struct_desc == get_vector_struct()) {
if (arg_obj.is<lua::datatypes::Vector3f>()) {
const auto arg = arg_obj.as<lua::datatypes::Vector3f>();

if (is_ue5()) {
*(lua::datatypes::Vector3d*)&params[offset] = arg;
} else {
*(lua::datatypes::Vector3f*)&params[offset] = arg;
}
} else if (arg_obj.is<lua::datatypes::Vector3d>()) {
const auto arg = arg_obj.as<lua::datatypes::Vector3d>();

if (is_ue5()) {
*(lua::datatypes::Vector3d*)&params[offset] = arg;
} else {
*(lua::datatypes::Vector3f*)&params[offset] = arg;
}
} else {
throw sol::error("Invalid argument type for FVector");
}
}

continue;
}
case L"ArrayProperty"_fnv:
// TODO
throw sol::error("Array properties are not supported (yet)");
Expand Down

0 comments on commit 5286661

Please sign in to comment.