Defining Commands
Commands are plain Go structs that embedBaseCommand and implement the Command interface. This interface requires a single Name() method that returns a unique string identifier.
Handling Commands
Just like with components, you must declare the commands a system can access in its state struct. Add aWithCommand[T] field to your system state type, where T is your command type:
A system cannot have multiple
WithCommand[T] fields with the same command type. However,
different systems can handle the same command type. This is useful for when you want a single
command to trigger multiple game logic and/or side effects.Iterating Over Commands
UseIter to loop through all commands received this tick. Each iteration yields a CommandContext that provides access to the command data and metadata.
To access the command’s payload, use Payload:
Personas
A persona is the unique identity associated with a player’s account. All commands include metadata containing the sender’s persona, which you can use for authorization checks like verifying entity ownership. If your client is authenticated, commands sent from it will automatically include your account’s persona. In multi-shard setups, personas remain consistent across shards, allowing any shard to verify and act on the same player identity. You can get a command’s persona usingPersona:
Sending Commands
Use the client SDK to send commands to the server:- Unity C#
- TypeScript
Command-Reply Pattern
Commands are asynchronous by design. When you send a command, you receive an acknowledgment, but not the result of the command’s execution. If you need a result, you typically emit an event from the system that processes the command and subscribe to it from the client. Some command types are more synchronous in nature, like updating game config, where every command has a corresponding result event. For these cases, use the synchronous command method, which handles the temporary event subscription for you and returns the result event directly:- Unity C#
- TypeScript
Inter-Shard Commands
In a multi-shard setup, you can send commands from within a system to another shard. This allows you to trigger systems in other shards or coordinate game state.Defining Shard Targets
To send an inter-shard command, you must first define anOtherWorld variable for each shard you want to communicate with:
The convention is to place this in
pkg/other_worlds/other_world.go.OtherWorld represents a specific remote shard and is used to route commands to the correct destination.
Sending Inter-Shard Commands
UseSendCommand to dispatch a command to another shard. Pass the system’s BaseSystemState and the command you want to send:
WithCommand in its system state.
The target shard must have a system that handles the command type you’re sending. If no system
handles the command, it will be discarded.