Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C#: New RPCAttribute #62805

Merged
merged 1 commit into from
Jul 7, 2022
Merged

C#: New RPCAttribute #62805

merged 1 commit into from
Jul 7, 2022

Conversation

raulsntos
Copy link
Member

Replace old RPC attributes with a new single RPCAttribute which works like the GDScript @rpc annotation.

Follow-up to #49882

Usage

I copied the examples from the original core PR and adapted them to C# for comparison.

Example 1

# defaults are authority, no call_local, reliable, "default channel" (i.e. 0).
@rpc
func ping():
	print("Ping from: ", multiplayer.get_remote_sender_id())
// defaults are authority, no call_local, reliable, "default channel" (i.e. 0).
[RPC]
public void Ping()
{
	GD.Print($"Ping from: {Multiplayer.GetRemoteSenderId()}");
}

Example 2

# makes the RPC callable by anyone, "call_local", use "unreliable" transfer, channel 1
@rpc(any_peer, call_local, unreliable, 1)
func ping():
	print("Ping from: ", multiplayer.get_remote_sender_id())
// makes the RPC callable by anyone, "call_local", use "unreliable" transfer, channel 1
[RPC(RPCMode.AnyPeer, CallLocal = true, TransferMode = TransferMode.Unreliable, TransferChannel = 1)]
public void Ping()
{
	GD.Print($"Ping from: {Multiplayer.GetRemoteSenderId()}");
}

Alternative Designs

CallLocal

The CallLocal property is currently implemented as a boolean just like it is defined in the RPCConfig struct but it could be implemented as an enum with members Local and Remote to more closely resemble the GDScript syntax which uses call_local/call_remote.

public enum CallMode { Local, Remote }

Example

@rpc(..., call_local, ...)
@rpc(..., call_remote, ...)
[RPC(..., CallLocal = true, ...)] // Current
[RPC(..., CallMode = CallMode.Local, ...)] // Alternative

[RPC(..., CallLocal = false, ...)] // Current
[RPC(..., CallMode = CallMode.Remote, ...)] // Alternative

Replace old RPC attributes with a new single `RPCAttribute` which works
like the GDScript `@rpc` annotation.
@raulsntos raulsntos added this to the 4.0 milestone Jul 7, 2022
@raulsntos raulsntos requested a review from a team as a code owner July 7, 2022 02:22
Copy link
Contributor

@neikeq neikeq left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one is fine as well, but I prefer any future PRs be hold until the dotnet6 branch is merged.

@akien-mga akien-mga merged commit 31974aa into godotengine:master Jul 7, 2022
@akien-mga
Copy link
Member

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants