In-game roles
Last updated
Was this helpful?
Last updated
Was this helpful?
The web platform provides an interface to control what "roles" a user has access to, which we can then use in-game to limit or enable particular functionality. For more details on this, see Setting Role Groups
BPMC_M2Example_RolesComponent
is our example usage of this, demonstrating how you can read this information from the web platform and use it to affect gameplay.
To make sure the web platform knows what the in-game roles are, you need to provide them when you upload content.
In your level's World Settings
, there is a Role List Provider
field, which takes a M2_WorldRoleListProvider
class.
The CDO of the provided class has its GetWorldRoleNames
function called. This is expected to return a list of names, which will be used as the list of possible in-game roles by the web platform.
The M2_WebServicesRoleDataProvider
world service (see World Services) can be used to fetch the roles granted to a given user. If the character does not have access to a given role (e.g. the role was not ticked), it will not show up in the resulting list.
This can either be done on the client or the server (the client will be able to fetch its own roles, the server will be able to fetch any user's roles). To obtain the UserId on the server, you can use The User ID Replication Component.
In the example plugin, we have a E_M2Example_Roles
enum, which we use as the list of roles.
The BP_M2Example_RoleListProvider
converts this enum to a list of names, to inform the web platform
The BPMC_M2Example_RolesComponent
, we communicate withthe M2_WebServicesRoleDataProvider
to determine which roles we have access to. (On the Authoritative Client)
In the editor, since we won't have an associated world to grant us roles (and for bots, which don't have web platform profiles), we skip the lookup step and give everyone access to every role.
The client replicates the role to all other connections using a background replicated integer property.
If the client has access to no roles, we give them a default role
We then use this replicated role to drive gameplay effects (by triggering a OnRoleUpdated
event, and adding handlers). In our example, we have two:
The "elevated" role forces the character into the network and rendering foregrounds, so the character is prioritized over other regular participants (this can be used to make a "presenter"/VIP client)
The "fancy" role is a simple example of how the role can affect visuals. In this case, it attaches a prop to the character. (For more details on this, see Attachments)
We could also swap out the render target actor completely, using ApplyPawnSet
NOTE: Since the role in this example is replicated on the background, it runs on every client. For small scale events this is no problem, but when scaling to 18k+, any such property needs to be handled with care, especially when writing logic in BPs. If thousands of OnReps are triggered on the same frame, there will likely be a small hitch, even if each isn't doing all that much.
We are happy with this consideration for the example roles system; since it is not intended to be used frequently, we are happy that it won't cause performance issues.
TL;DR: Users shouldn't be changing roles frequently. That should just be for high level capabilities gated by the web platform. For pure gameplay features (e.g. which "character" a player is playing as), the roles system shouldn't be needed.
Since the old roles system has been deprecated, and is not usable with the example character, we advise any users of said system to migrate over when appropriate. However, the example roles system is much lighter than the original roles table, so doesn't do everything that the old system did. However, equivalents should be possible in your own project:
Using a data table:
If you use a custom M2_RoleListProvider
, you could make it take a data table's row names to provide to the web platform:
In your OnRoleUpdated
handler, you could convert the replicated RoleIndex
back to a data table row, and then apply the details to your character
LOD level set:
This can be modified using the ApplyPawnSet
helper function
Capabilities:
Capabilities aren't currently used by the example character, but the capabilities component could be added, and then the capabilities can be granted or removed as a result of the role change, same as before
Gait speeds: (TODO)
Similar story, this could be overridden in your project as a result of the role change.
However, the character movement setup in our base character is currently under review, so this flow may change.
Resizing: (TODO)
Character resizing in the deprecated character is tied to the JM_ResizeableActorComponent
, which is not compatible with the simplified base character. Making/enabling resizing in a simpler way is planned as upcoming work for the M2 team.
BPMC_M2Example_RolesComponent
where we look up the roles list for the authoritative client.