Update vrpc's syntax in Entity.

This commit is contained in:
Relintai 2023-01-08 16:36:47 +01:00
parent f6958acd6c
commit 951ae259e2
2 changed files with 25 additions and 17 deletions

View File

@ -5767,33 +5767,28 @@ int Entity::seen_by_gets_count() {
return _s_seen_by.size();
}
void Entity::vrpc(const StringName &p_method, VARIANT_ARG_DECLARE) {
VARIANT_ARGPTRS;
int argc = 0;
for (int i = 0; i < VARIANT_ARG_MAX; i++) {
if (argptr[i]->get_type() == Variant::NIL)
break;
argc++;
}
Error Entity::_vrpc(const StringName &p_method, const Variant **p_arg, int p_argcount) {
for (int i = 0; i < _s_seen_by.size(); ++i) {
Entity *e = _s_seen_by.get(i);
if (unlikely(!INSTANCE_VALIDATE(e))) {
_s_seen_by.remove(i);
_s_seen_by.remove_at(i);
--i;
continue;
}
int netm = e->get_network_master();
int netm = e->get_multiplayer_authority();
if (netm != 1)
rpcp(netm, false, p_method, argptr, argc);
if (netm != 1) {
rpcp(netm, p_method, p_arg, p_argcount);
}
}
if (get_network_master() != 1)
rpcp(get_network_master(), false, p_method, argptr, argc);
if (get_multiplayer_authority() != 1) {
rpcp(get_multiplayer_authority(), p_method, p_arg, p_argcount);
}
return OK;
}
#if VERSION_MAJOR < 4

View File

@ -1082,7 +1082,10 @@ public:
void seen_by_adds_bind(Node *entity);
int seen_by_gets_count();
void vrpc(const StringName &p_method, VARIANT_ARG_LIST);
template <typename... VarArgs>
Error vrpc(const StringName &p_method, VarArgs... p_args);
Error _vrpc(const StringName &p_method, const Variant **p_arg, int p_argcount);
#if VERSION_MAJOR < 4
Variant _vrpc_bind(const Variant **p_args, int p_argcount, Variant::CallError &r_error);
#else
@ -1346,4 +1349,14 @@ private:
Vector<Ref<SpellCastInfo>> _physics_process_scis;
};
template <typename... VarArgs>
Error Entity::vrpc(const StringName &p_method, VarArgs... p_args) {
Variant args[sizeof...(p_args) + 1] = { p_args..., Variant() }; // +1 makes sure zero sized arrays are also supported.
const Variant *argptrs[sizeof...(p_args) + 1];
for (uint32_t i = 0; i < sizeof...(p_args); i++) {
argptrs[i] = &args[i];
}
return _vrpc(p_method, sizeof...(p_args) == 0 ? nullptr : (const Variant **)argptrs, sizeof...(p_args));
}
#endif